zhangqian
2023-08-25 11af32523705ea3e550abbb7477a8f176382e6f7
constvar/receipt.go
@@ -15,9 +15,9 @@
type ReceiptSourceType int //来源类型(1销售明细单2服务合同3销售发票4收款计划5出库单)
const (
   ReceiptSourceTypeSalesDetails    ReceiptSourceType = 1
   ReceiptSourceTypeServiceContract ReceiptSourceType = 2
   ReceiptSourceTypeInvoice         ReceiptSourceType = 3
   ReceiptSourceTypeCollectionPlan  ReceiptSourceType = 4
   ReceiptSourceTypeChuKuDan        ReceiptSourceType = 5
   ReceiptSourceTypeSalesDetails    ReceiptSourceType = 1 //销售明细单
   ReceiptSourceTypeServiceContract ReceiptSourceType = 2 //服务合同
   ReceiptSourceTypeInvoice         ReceiptSourceType = 3 //销售发票
   ReceiptSourceTypeCollectionPlan  ReceiptSourceType = 4 //收款计划
   ReceiptSourceTypeChuKuDan        ReceiptSourceType = 5 //出库单it
)