|
|
@ -51,12 +51,11 @@ type OrderFreightFee struct {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// FreightFee @Title 运费处理
|
|
|
|
// FreightFee @Title 运费处理
|
|
|
|
func (o *order) FreightFee(ctx context.Context, args ArgsOrderFreightFee) {
|
|
|
|
func (o *order) FreightFee(ctx context.Context, args ArgsOrderFreightFee) (err error) {
|
|
|
|
xClient, err := client.GetClient(o)
|
|
|
|
xClient, err := client.GetClient(o)
|
|
|
|
if err != nil {
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
reply := 0
|
|
|
|
reply := 0
|
|
|
|
err = xClient.Call(ctx, "FreightFee", args, &reply)
|
|
|
|
return xClient.Call(ctx, "FreightFee", args, &reply)
|
|
|
|
return
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|