This commit is contained in:
邹宗楠
2023-10-18 18:35:20 +08:00
parent d598e4919f
commit 75c0404fe8
2 changed files with 7 additions and 1 deletions

View File

@@ -6,6 +6,7 @@ import (
"fmt"
"git.rosy.net.cn/jx-callback/business/bidding"
"git.rosy.net.cn/jx-callback/business/partner/delivery"
"git.rosy.net.cn/jx-callback/globals"
"strings"
"time"
@@ -110,6 +111,8 @@ func (c *OrderController) ConfirmSelfTake() {
func (c *OrderController) QueryOrderWaybillFeeInfo() {
c.callQueryOrderWaybillFeeInfo(func(params *tOrderQueryOrderWaybillFeeInfoParams) (retVal interface{}, errCode string, err error) {
retVal, err = defsch.FixedScheduler.QueryOrderWaybillFeeInfoEx(params.Ctx, params.VendorOrderID, params.VendorID)
globals.SugarLogger.Debugf("=====retVal := %s", utils.Format4Output(retVal, false))
globals.SugarLogger.Debugf("=====retVal := %v", err)
return retVal, "", err
})
}