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.
158 lines
4.5 KiB
158 lines
4.5 KiB
using System.ComponentModel;
|
|
|
|
namespace CK.SCP.Models.Enums
|
|
{
|
|
public enum BillType
|
|
{
|
|
[Description("原料收货")]
|
|
MaterialReceive = 101,
|
|
[Description("原料入库")]
|
|
MaterialIn = 102,
|
|
[Description("原料出库")]
|
|
MaterialDeliver = 103,
|
|
[Description("生产叫料")]
|
|
MaterialAsk = 104,
|
|
[Description("原料退货")]
|
|
MatertialReturn = 105,
|
|
[Description("生产退库")]
|
|
MaterialBack = 106,
|
|
|
|
|
|
[Description("委外出库")]
|
|
OutsourceDeliver = 109,
|
|
|
|
// [Description("原料退货")]
|
|
// MaterialBack = 105,
|
|
// [Description("生产退库")]
|
|
// MaterialReturn = 106,
|
|
|
|
[Description("成品收货")]
|
|
ProductReceive = 201,
|
|
[Description("成品入库")]
|
|
ProductIn = 202,
|
|
[Description("成品发货")]
|
|
DeliverPlan = 204,
|
|
[Description("客户退货")]
|
|
ProductReturn = 205,
|
|
[Description("成品顺序发货")]
|
|
ProductSortedDeliver = 206,
|
|
[Description("成品销售")]
|
|
ProductSell = 207,
|
|
[Description("成品返修")]
|
|
ProductRepair = 208,
|
|
|
|
[Description("委外入库")]
|
|
OutsourceReceive = 209,
|
|
|
|
|
|
[Description("其它入库")]
|
|
OtherIn = 300,
|
|
[Description("其它出库")]
|
|
OtherOut = 301,
|
|
[Description("移库")]
|
|
StockMove = 302,
|
|
[Description("打包")]
|
|
StockPack = 303,
|
|
[Description("拆包")]
|
|
StockUnpack = 304,
|
|
[Description("盘点计划")]
|
|
InventoryPlan = 305,
|
|
[Description("结算比对")]
|
|
BalanceCompare = 307,
|
|
[Description("盘点库位")]
|
|
InventoryLoc = 306,
|
|
|
|
[Description("器具初始化")]
|
|
EqptRecover = 401,
|
|
[Description("器具保养")]
|
|
EqptMaintain = 402,
|
|
[Description("器具报废")]
|
|
EqptScrap = 403,
|
|
[Description("码托")]
|
|
EqptLoad = 404,
|
|
|
|
[Description("JIS收货")]
|
|
VinReceive = 501,
|
|
[Description("JIS发货")]
|
|
VinDeliver = 502,
|
|
[Description("JIS销售")]
|
|
VinSell = 503,
|
|
|
|
[Description("报检")]
|
|
Inspect = 601,
|
|
[Description("追溯")]
|
|
TraceBack = 602,
|
|
[Description("备货单")]
|
|
PickPlan = 603,
|
|
[Description("发料单")]
|
|
PickFact = 604,
|
|
[Description("生产计划")]
|
|
ProducePlan = 605,
|
|
[Description("生产订单")]
|
|
ManuOrder = 607,
|
|
[Description("不合格品单")]
|
|
UnqualifiedProd = 608,
|
|
[Description("设备点检模板")]
|
|
CheckModeEquipment = 609,
|
|
[Description("设备点检单")]
|
|
CheckBillEquipment = 610,
|
|
[Description("产品点检模板")]
|
|
CheckModeProduct = 611,
|
|
[Description("产品点检单")]
|
|
CheckBillProduct = 612,
|
|
[Description("首检模板")]
|
|
SpotInspectFirstMode = 613,
|
|
[Description("首检单")]
|
|
SpotInspectionFirst = 615,
|
|
[Description("巡检模板")]
|
|
SpotInspectMedMode = 616,
|
|
[Description("巡检单")]
|
|
SpotInspectionMed = 617,
|
|
[Description("末检模板")]
|
|
SpotInspectLastMode = 618,
|
|
[Description("末检单")]
|
|
SpotInspectionLast = 619,
|
|
[Description("停线单")]
|
|
LineStopBill = 620,
|
|
[Description("产线识别码")]
|
|
WorkLineDoc = 621,
|
|
[Description("工位识别码")]
|
|
WorkStationDoc = 622,
|
|
[Description("路由识别码")]
|
|
RouteDoc = 623,
|
|
[Description("工位拆解识别码")]
|
|
RouteBOMDoc = 624,
|
|
[Description("参数识别码")]
|
|
RoutePDoc = 625,
|
|
[Description("工位部件识别码")]
|
|
MachinePart = 626,
|
|
[Description("停线发通知编号")]
|
|
LineStopNoticeBill = 627,
|
|
[Description("停线预计处理编号")]
|
|
LineStopPrepareBill = 628,
|
|
[Description("措施编号")]
|
|
LineStopMeasureBill = 629,
|
|
[Description("点检表编号")]
|
|
CheckCode = 630,
|
|
|
|
ReHandleVin = 701,
|
|
[Description("采购订单")]
|
|
PuchaseOrder = 702,
|
|
[Description("发货单")]
|
|
AsnOrder = 703,
|
|
[Description("销售订单")]
|
|
SaleOrder = 704,
|
|
|
|
|
|
[Description("确认订单")]
|
|
PO = 704,
|
|
[Description("收货")]
|
|
Receive = 704,
|
|
[Description("条码")]
|
|
BarCode = 704,
|
|
[Description("发票")]
|
|
Invoice = 704,
|
|
|
|
|
|
}
|
|
}
|