部署
This commit is contained in:
@@ -3,6 +3,7 @@ package erp
|
||||
type BusinessType = string // 业务类型
|
||||
const (
|
||||
BusinessTypeSaleAudit BusinessType = "saleAudit" // 销售合同审核
|
||||
BusinessTypeSaleAuditClose BusinessType = "saleAuditClose" // 销售合同关单审核
|
||||
BusinessTypePurchaseAudit BusinessType = "purchaseAudit" // 采购合同审核
|
||||
BusinessTypeShipmentAudit BusinessType = "shipmentAudit" // 订舱单审核
|
||||
BusinessTypeAccountingAudit BusinessType = "accountingAudit" // 做账合同审核
|
||||
@@ -10,6 +11,7 @@ const (
|
||||
|
||||
var BusinessTypeName = map[BusinessType]string{
|
||||
BusinessTypeSaleAudit: "销售合同审核",
|
||||
BusinessTypeSaleAuditClose: "销售合同关单审核",
|
||||
BusinessTypePurchaseAudit: "采购合同审核",
|
||||
BusinessTypeShipmentAudit: "订舱单审核",
|
||||
BusinessTypeAccountingAudit: "做账合同审核",
|
||||
@@ -24,6 +26,12 @@ const (
|
||||
AuditStatusCancel AuditStatus = 5 // 审核撤回
|
||||
)
|
||||
|
||||
type ProductMold = int64 // 产品类型
|
||||
const (
|
||||
ProductMoldSingle ProductMold = 1 // 单件
|
||||
ProductMoldSuite ProductMold = 2 // 套件
|
||||
)
|
||||
|
||||
type IsOpen = int64 // 开启状态
|
||||
const (
|
||||
IsOpenTrue IsOpen = 1 // 开启
|
||||
|
||||
Reference in New Issue
Block a user