This commit is contained in:
邹宗楠
2023-04-10 14:19:50 +08:00
parent 12423cfd83
commit 7a6e9d8ed7
3 changed files with 10 additions and 11 deletions

View File

@@ -567,7 +567,7 @@ func IsWaybillFinalStatus(status int) bool {
const (
JXC4AppId = "wx4b5930c13f8b1170" // 京西菜市appId type=weixinmini
JXC4BusinessAppId = "wx08a5c2a8581414ff" // 京西商家appId type=weixinmini
JXC4TiktokAppId = "tta6a1d01c399f264201" // 抖音appID
JXC4TiktokAppId = "ttaceeda5333d7a7ab01" // 抖音appID
JXC4ClientAppID = "wxf3657c94aa01a3f0" //京西菜市客户端APP ID type="weixinapp"

View File

@@ -218,8 +218,7 @@ func (p *PurchaseHandler) getOrder(vendorOrgCode, vendorOrderID, vendorStoreID s
}
// 用户保密信息脱敏
name, tel, address, err := api.OrderUserInfoDecrypt(vendorOrderID, result.EncryptPostReceiver, result.EncryptPostTel, result.PostAddr.EncryptDetail)
globals.SugarLogger.Debugf("===========err OrderUserInfoDecrypt :%v", err)
name, tel, address, _ := api.OrderUserInfoDecrypt(vendorOrderID, result.EncryptPostReceiver, result.EncryptPostTel, result.PostAddr.EncryptDetail)
order.ConsigneeName = name
order.ConsigneeMobile = tel
order.ConsigneeAddress = fmt.Sprintf("%s%s%s%s%s", result.PostAddr.Province.Name, result.PostAddr.City.Name, result.PostAddr.Town.Name, result.PostAddr.Street.Name, address)