fix
wangpengfei
2023-08-18 9a7e0a7da01a9f9625ceaca0c61a59c540c6438f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package constvar
 
type ReceiptQueryClass string
 
const (
    ReceiptQueryClassExpireLessThen60Days ReceiptQueryClass = ""
)
 
type ReceiptKeywordType string
 
const (
    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
)