detached
黄伟 1 year ago
parent 9414f49953
commit 9481d37f9e

@ -163,6 +163,16 @@ func (s *supplier) InfoByRetailOrderSn(ctx context.Context, retailOrderSn string
return return
} }
// FindInfoByRetailOrderSn @Title 根据零售订单查询供应商信息
func (s *supplier) FindInfoByRetailOrderSn(ctx context.Context, retailOrderSns []string) (reply []ReplySupplierInfo, err error) {
xClient, err := client.GetClient(s)
if err != nil {
return nil, err
}
err = xClient.Call(ctx, "FindInfoByRetailOrderSn", retailOrderSns, &reply)
return
}
type ArgsSupplierEdit struct { type ArgsSupplierEdit struct {
SupplierId uint SupplierId uint
SupplierName string // 供应商名称 SupplierName string // 供应商名称

Loading…
Cancel
Save