重试脚本
This commit is contained in:
parent
b523b035ad
commit
91f7db4caa
|
|
@ -43,11 +43,6 @@ func NewCmbService(
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *CmbService) OrderRetry(ctx context.Context, request *v1.OrderRetryRequest) (*v1.Empty, error) {
|
|
||||||
|
|
||||||
return nil, c.VoucherBiz.OrderRetry(ctx, request.GetTransactionIds())
|
|
||||||
}
|
|
||||||
|
|
||||||
func (c *CmbService) GetResponse(ctx context.Context, replyBizContent []byte) (*v1.CmbReply, error) {
|
func (c *CmbService) GetResponse(ctx context.Context, replyBizContent []byte) (*v1.CmbReply, error) {
|
||||||
|
|
||||||
req := &bo.CmbResponseBo{
|
req := &bo.CmbResponseBo{
|
||||||
|
|
@ -96,6 +91,11 @@ func (this *CmbService) QueryOrder(ctx http.Context) error {
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (c *CmbService) OrderRetry(ctx context.Context, request *v1.OrderRetryRequest) (*v1.Empty, error) {
|
||||||
|
|
||||||
|
return nil, c.VoucherBiz.OrderRetry(ctx, request.GetTransactionIds())
|
||||||
|
}
|
||||||
|
|
||||||
func (this *CmbService) RegisterTag(ctx http.Context) error {
|
func (this *CmbService) RegisterTag(ctx http.Context) error {
|
||||||
|
|
||||||
productNo := ctx.Vars().Get("product_no")
|
productNo := ctx.Vars().Get("product_no")
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue