feat: sale info

This commit is contained in:
zzw
2026-08-28 15:05:44 +08:00
parent 8bdd25dcb5
commit eb887198e9
14 changed files with 762 additions and 92 deletions
@@ -70,6 +70,12 @@ func (s *SaleServer) Info(ctx context.Context, in *sale.InfoReq) (*sale.Response
return l.Info(in)
}
// 服务间调用:销售详情(含分组;mobile 脱敏,origin_mobile 为加密串)
func (s *SaleServer) InfoInternal(ctx context.Context, in *sale.InfoReq) (*sale.InfoData, error) {
l := logic.NewInfoInternalLogic(ctx, s.svcCtx)
return l.InfoInternal(in)
}
func (s *SaleServer) Items(ctx context.Context, in *sale.ItemsReq) (*sale.Response, error) {
l := logic.NewItemsLogic(ctx, s.svcCtx)
return l.Items(in)