feat(材料管理):增加调拨出库

This commit is contained in:
2026-07-13 17:25:28 +08:00
parent 4df4d8bca3
commit 040de31eb1
14 changed files with 1102 additions and 29 deletions
+12 -4
View File
@@ -18,6 +18,8 @@ namespace BLL
= 50,
= 60,
= 70,
= 80,
= 90,
}
public enum Category : int
{
@@ -41,7 +43,9 @@ namespace BLL
{ "领料出库" ,(int)TypeInt.},
{ "补料出库" ,(int)TypeInt.},
{ "其他出库" ,(int)TypeInt.},
{ "散件出库" ,(int)TypeInt.}
{ "散件出库" ,(int)TypeInt.},
{ "调拨入库" ,(int)TypeInt.},
{ "调拨出库" ,(int)TypeInt.}
};
public static Dictionary<string, int> PlanPrintMap = new Dictionary<string, int>
{
@@ -51,7 +55,9 @@ namespace BLL
{ "材料领用申请单" ,(int)TypeInt.},
{ "补料申请单" ,(int)TypeInt.},
{ "其他出库申请单" ,(int)TypeInt.},
{ "散件出库申请单" ,(int)TypeInt.}
{ "散件出库申请单" ,(int)TypeInt.},
{ "调拨入库申请单" ,(int)TypeInt.},
{ "调拨出库申请单" ,(int)TypeInt.}
};
public static Dictionary<string, int> PrintMap = new Dictionary<string, int>
{
@@ -61,7 +67,9 @@ namespace BLL
{ "材料出库单" ,(int)TypeInt.},
{ "补料出库单" ,(int)TypeInt.},
{ "其他出库单" ,(int)TypeInt.},
{ "散件出库单" ,(int)TypeInt.}
{ "散件出库单" ,(int)TypeInt.},
{ "调拨入库单" ,(int)TypeInt.},
{ "调拨出库单" ,(int)TypeInt.}
};
public static Dictionary<string, int> StateMap = new Dictionary<string, int>
{
@@ -78,4 +86,4 @@ namespace BLL
{ "管段" ,(int)Category.},
};
}
}
}