添加商品信息变动rpc

finance
杨赟 2 years ago
parent eac053e61f
commit cdb38b32e8

@ -193,3 +193,17 @@ func (g *goods) FindBySkuIds(ctx context.Context, skuIds []uint) (reply []ReplyB
err = xClient.Call(ctx, "FindBySkuIds", skuIds, &reply) err = xClient.Call(ctx, "FindBySkuIds", skuIds, &reply)
return return
} }
type ArgsGoodsChange struct {
GoodsId uint // 商品id
}
// Change @Title 商品信息变动
func (g *goods) Change(ctx context.Context, args ArgsGoodsChange) (err error) {
xClient, err := client.GetClient(g)
if err != nil {
return err
}
reply := 0
return xClient.Call(ctx, "Change", args, &reply)
}

@ -361,6 +361,7 @@ type ArgsSkuChangeData struct {
Unit string // 销售单位 Unit string // 销售单位
UpcCode string // 商品条码 UpcCode string // 商品条码
Source source // 商品来源 Source source // 商品来源
Imgs []string // 商品图片 第一张主图
Specifications []SkuSpecification // 商品参数信息 Specifications []SkuSpecification // 商品参数信息
} }

@ -10,6 +10,7 @@ type Wholesale struct {
Category category Category category
Source sourceRpc Source sourceRpc
Sku sku Sku sku
Order order
SkuAudit skuAudit SkuAudit skuAudit
Setting setting.Setting Setting setting.Setting
Channel channel.Channel Channel channel.Channel

Loading…
Cancel
Save