|
|
@ -156,7 +156,7 @@ namespace BBWY.Client.APIServices |
|
|
|
string sdOperator, |
|
|
|
string flag, |
|
|
|
string venderRemark, |
|
|
|
decimal platformCommissionRatio) |
|
|
|
Shop shop) |
|
|
|
{ |
|
|
|
return SendRequest<object>(globalContext.BBYWApiHost, "api/order/SDCalculationCost", new |
|
|
|
{ |
|
|
@ -167,15 +167,15 @@ namespace BBWY.Client.APIServices |
|
|
|
sdType, |
|
|
|
sdCommissionAmount, |
|
|
|
deliveryExpressFreight, |
|
|
|
platformCommissionRatio, |
|
|
|
platformCommissionRatio = shop.PlatformCommissionRatio ?? 0.05M, |
|
|
|
sdKey, |
|
|
|
sdPayChannel, |
|
|
|
sdPaybillNo, |
|
|
|
sdOperator, |
|
|
|
Platform = globalContext.User.Shop.Platform, |
|
|
|
AppKey = globalContext.User.Shop.AppKey, |
|
|
|
AppSecret = globalContext.User.Shop.AppSecret, |
|
|
|
AppToken = globalContext.User.Shop.AppToken |
|
|
|
Platform = shop.Platform, |
|
|
|
AppKey = shop.AppKey, |
|
|
|
AppSecret = shop.AppSecret, |
|
|
|
AppToken = shop.AppToken |
|
|
|
}, null, HttpMethod.Post); |
|
|
|
} |
|
|
|
|
|
|
|