纽威
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

237 lines
5.8 KiB

3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
2 years ago
2 years ago
2 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
2 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
2 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
2 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
2 years ago
2 years ago
2 years ago
2 years ago
3 years ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Linq;
  5. using System.Text;
  6. namespace ICSSoft.Common
  7. {
  8. public enum TransTypeEnum
  9. {
  10. [Description("采购入库-采购订单")]
  11. [DBValue("1")]
  12. PurchaseReceiveDoc,
  13. [Description("采购入库-采购到货单")]
  14. [DBValue("2")]
  15. DeliveryNotice,
  16. [Description("采购拒收")]
  17. [DBValue("42")]
  18. PurchaseRejectDoc,
  19. [Description("采购退货-采购退货单")]
  20. [DBValue("3")]
  21. PurchaseReceiveDoctNegative,
  22. [Description("采购退货-红字采购入库单")]
  23. [DBValue("4")]
  24. PurchaseReceive,
  25. [Description("委外发料-委外订单备料表")]
  26. [DBValue("5")]
  27. OutsourcingIssueDoc, //(合并发料)
  28. [Description("委外发料-委外领料申请单")]
  29. [DBValue("6")]
  30. OOApply, //(合并发料)
  31. [Description("委外发料-委外材料出库单")]
  32. [DBValue("7")]
  33. OOIssue, //(合并发料)
  34. [Description("委外退料-委外退料单")]
  35. [DBValue("8")]
  36. ICSOutsourcingIssueDoNegative,
  37. [Description("委外退料-委外退料单-领料申请单")]
  38. [DBValue("8")]
  39. ICSOutsourcingIssueDoNegativeApply,
  40. [Description("委外退料-委外退料单-材料出库单")]
  41. [DBValue("8")]
  42. ICSOutsourcingIssueDoNegativeIssue,
  43. [Description("委外入库-委外订单")]
  44. [DBValue("9")]
  45. OutsourcingReceiveDoc,
  46. [Description("委外入库-委外到货单")]
  47. [DBValue("10")]
  48. ODeliveryNotice,
  49. [Description("委外拒收")]
  50. [DBValue("43")]
  51. OutsourcingRejectDoc,
  52. [Description("委外退货-委外退货单")]
  53. [DBValue("11")]
  54. OutsourcingReturnBack,
  55. [Description("委外退货-红字委外入库单")]
  56. [DBValue("12")]
  57. OutsourcingReceiveDocNegative,
  58. [Description("生产发料-生产订单备料表")]
  59. [DBValue("13")]
  60. MOIssueDoc, //(合并发料)
  61. [Description("生产发料-领料申请单")]
  62. [DBValue("14")]
  63. MOApply, //(合并发料)
  64. [Description("生产发料-材料出库单")]
  65. [DBValue("15")]
  66. MOIssue, //(合并发料)
  67. [Description("生产退料-生产退料单")]
  68. [DBValue("16")]
  69. MOIssueDocNegative,
  70. [Description("生产退料-生产退料单-领料申请单")]
  71. [DBValue("16")]
  72. MOIssueDocNegativeApply,
  73. [Description("生产退料-生产退料单-材料出库单")]
  74. [DBValue("16")]
  75. MOIssueDocNegativeIssue,
  76. [Description("产成品入库-生产订单")]
  77. [DBValue("17")]
  78. ManufactureReceiveDoc,
  79. [Description("产成品入库-产成品入库单")]
  80. [DBValue("18")]
  81. ManufactureReceive,
  82. [Description("销售发货-销售发货单")]
  83. [DBValue("19")]
  84. SalesShipmentDoc, //(合并发料)
  85. [Description("销售退货-销售退货单")]
  86. [DBValue("20")]
  87. SalesShipmentDocNegative,
  88. [Description("一步调拨")]
  89. [DBValue("21")]
  90. OneStepTransferDocIn, //(合并发料)
  91. [Description("调拨")]
  92. [DBValue("46")]
  93. StepTransferDocIn, //(合并发料)
  94. [Description("两步调出")]
  95. [DBValue("22")]
  96. TwoStepTransferDocOut, //(合并发料)
  97. [Description("两步调入")]
  98. [DBValue("23")]
  99. TwoStepTransferDocIn,
  100. [Description("返工工单")]
  101. [DBValue("45")]
  102. ReWorkReceiveMo,
  103. [Description("销售退货-原条码")]
  104. [DBValue("44")]
  105. SalesReturnBack,
  106. [Description("杂发")]
  107. [DBValue("24")]
  108. OtherOutDoc, //(合并发料)
  109. [Description("杂收")]
  110. [DBValue("25")]
  111. OtherInDoc,
  112. [Description("借用")]
  113. [DBValue("26")]
  114. BrrowDoc, //(合并发料)
  115. [Description("归还")]
  116. [DBValue("27")]
  117. ReturnDoc,
  118. [Description("盘点")]
  119. //[DBValue("28")]
  120. [DBValue("8")] //TransType
  121. Check,
  122. [Description("移库")]
  123. [DBValue("29")]
  124. TransferLibrary,
  125. [Description("拆卸单")]
  126. [DBValue("38")]
  127. DisassemblyDoc,
  128. [Description("送货单")]
  129. [DBValue("65")]
  130. ASN,
  131. [Description("委外送货单")]
  132. [DBValue("66")]
  133. OASN,
  134. [Description("拆分")]
  135. [DBValue("67")]
  136. LOTSplit,
  137. [Description("拆分前")]
  138. [DBValue("31")]
  139. LOTSplitBefore,
  140. [Description("拆分后")]
  141. [DBValue("32")]
  142. LOTSplitAfter,
  143. [Description("合并")]
  144. [DBValue("68")]
  145. LOTMerge,
  146. [Description("库位查询")]
  147. [DBValue("69")]
  148. LocationSeatch,
  149. [Description("合并前")]
  150. [DBValue("33")]
  151. LOTMergeBefore,
  152. [Description("合并后")]
  153. [DBValue("34")]
  154. LOTMergeAfter,
  155. [Description("修改前")]
  156. [DBValue("40")]
  157. LOTCheckBefore,
  158. [Description("修改后")]
  159. [DBValue("41")]
  160. LOTCheckAfter,
  161. [Description("调拨申请单")]
  162. [DBValue("47")]
  163. StepTransferApplicationIn,
  164. [Description("条码查询")]
  165. [DBValue("70")]
  166. LOTInfoGet,
  167. [Description("绑定")]
  168. [DBValue("71")]
  169. ContainerBind,
  170. [Description("解绑")]
  171. [DBValue("72")]
  172. ContainerUnBind,
  173. [Description("生产发料-领料申请单(过账SAP)")]
  174. [DBValue("73")]
  175. MOApplyToSAP, //(合并发料)
  176. [Description("形态转换单")]
  177. [DBValue("74")]
  178. MTDOC,
  179. }
  180. }