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