1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
| using System;
| using System.Collections.Generic;
| using System.ComponentModel;
| using System.Linq;
| using System.Text;
| using System.Threading.Tasks;
|
| namespace Tiger.Model
| {
| public enum BIZ_BILLTYPE
| {
|
| [Description("送货单")]
| ASN = 10,
|
| [Description("采购订单")]
| PO = 11,
|
| [Description("委外订单")]
| OutSourcePO = 12,
|
| [Description("收料通知单(到货单)")]
| Receipt = 13,
|
| [Description("来料入库单")]
| PurInstock = 14,
|
| [Description("采购退料单")]
| PurReturn = 15,
|
| [Description("拒收单")]
| Reject = 16,
|
| [Description("委外发料单")]
| OutSourcePick = 20,
|
| [Description("委外补料单")]
| OutSourceFeed = 21,
|
| [Description("委外退料单")]
| OutSourceReturn = 22,
|
| [Description("生产领料单 ")]
| ProductPick = 23,
|
| [Description("生产补料单")]
| ProductFeed = 24,
|
| [Description("生产退料单")]
| ProductReturn = 25,
|
| [Description("生产工单")]
| Mo = 30,
|
| [Description("领料申请单")]
| PickApply = 31,
|
| [Description("产成品入库单")]
| ProductInstock = 40,
|
| [Description("发货通知单")]
| SalesDelivery = 41,
|
| [Description("销售出库单")]
| SalesOutStock = 42,
|
| [Description("销售退货单")]
| SalesReturn = 43,
|
| [Description("销售订单")]
| SalesOrder = 44,
|
| [Description("网上订单")]
| SalesNetOrder = 45,
|
| [Description("调拨单")]
| Transfer = 50,
|
| [Description("其他入库单")]
| OtherInStock = 51,
|
| [Description("其他出库单")]
| OtherOutStock = 52,
|
| [Description("形态转换单")]
| Convert = 53,
|
| [Description("无订单入库 2022-12-12,weikaiyong")]
| NoPoInStock = 54,
|
| [Description("盘点单")]
| CheckStock = 60,
|
| [Description("拣货单")]
| Pick = 61,
|
| [Description("过期送检单")]
| Expired = 66,
|
| [Description("半成品入库单")]
| SelfInstock = 68,
|
| [Description("报废")]
| Scrap = 70,
|
| [Description("来料退货")]
| Return = 80
|
| }
| }
|
|