Merge branch 'master' of git.oa00.com:supply-chain/service

finance
黄伟 2 years ago
commit 63282473d6

@ -7,6 +7,12 @@ import (
"time" "time"
) )
const (
AuditHistoryAuditStatusNone = 1 // 待审核
AuditHistoryAuditStatusAdopt = 2 // 审核通过
AuditHistoryAuditStatusReject = 3 // 审核驳回
)
type audit struct { type audit struct {
} }
type AuditSearch struct { type AuditSearch struct {
@ -47,11 +53,13 @@ func (a *audit) Lists(ctx context.Context, args ArgsAuditLists) (reply ReplyAudi
type ArgsHistory struct { type ArgsHistory struct {
Page bean.Page Page bean.Page
CustomerId uint CustomerId uint
AuditStatus uint
} }
type ReplyHistoryLists struct { type ReplyHistoryLists struct {
Lists []HistoryItem `json:"lists"` Lists []HistoryItem `json:"lists"`
Total int64 `json:"total"` Total int64 `json:"total"`
AuditStatus uint `json:"auditStatus"` // 审核状态
} }
type HistoryItem struct { type HistoryItem struct {

@ -31,6 +31,7 @@ type SkuAuditEsSearch struct {
SourceSonId uint // 沙马供应商的供应商 SourceSonId uint // 沙马供应商的供应商
AdjustType uint // 加价类型 AdjustType uint // 加价类型
Status uint // 状态 1=未审核 2=通过 3=驳回 Status uint // 状态 1=未审核 2=通过 3=驳回
BrandName string // 品牌名称
AfterMinDiscount decimal.Decimal // 加价后最低折扣 AfterMinDiscount decimal.Decimal // 加价后最低折扣
AfterMaxDiscount decimal.Decimal // 加价后最高折扣 AfterMaxDiscount decimal.Decimal // 加价后最高折扣
} }

Loading…
Cancel
Save