feat(clgl): 支持历史出库数据导入

历史出库数据需要批量补录并同步形成出库申请单、出库单和库存扣减。
新增出库申请历史导入入口,按仓库、材料编码、炉号、批号、数量、
出库时间和领用单位校验模板数据,并按材料单位拆分管段/管件单据。
This commit is contained in:
2026-06-10 10:44:13 +08:00
parent a6b04d2671
commit c48972cc60
11 changed files with 662 additions and 2 deletions
+25
View File
@@ -0,0 +1,25 @@
using System;
namespace Model
{
public class Tw_OutHistoryImportRow
{
public string WarehouseCode { get; set; }
public string MaterialCode { get; set; }
public string Code { get; set; }
public string HeatNo { get; set; }
public string BatchNo { get; set; }
public string MaterialUnit { get; set; }
public decimal Num { get; set; }
public DateTime OutputDate { get; set; }
public string ReqUnitId { get; set; }
}
}