调整出库任务单结构
This commit is contained in:
@@ -170,6 +170,8 @@ namespace WMS.Web.Domain.Entitys
|
||||
detail_new.AccruedQty += d.AccruedQty;//应出数量累加
|
||||
detail_new.SaleBillNos.AddRange(d.SaleBillNos);
|
||||
detail_new.SourceBillNos.AddRange(d.SourceBillNos);
|
||||
foreach (var dic in d.AccruedQty_Dic)
|
||||
detail_new.AccruedQty_Dic.Add(dic.Key, dic.Value);
|
||||
}
|
||||
else
|
||||
details_new.Add(d);
|
||||
|
||||
@@ -69,6 +69,16 @@ namespace WMS.Web.Domain.Entitys
|
||||
[Column("RealityQty")]
|
||||
public decimal RealityQty { get; set; }
|
||||
/// <summary>
|
||||
/// 已出库数量(合并后不同物料 分别出库多少)
|
||||
///</summary>
|
||||
[Column("RealityQty_Dic")]
|
||||
public Dictionary<string, decimal> RealityQty_Dic { get; set; } = new Dictionary<string, decimal>();
|
||||
/// <summary>
|
||||
/// 应出库数量(合并后不同物料 分别应出多少)
|
||||
///</summary>
|
||||
[Column("AccruedQty_Dic")]
|
||||
public Dictionary<string, decimal> AccruedQty_Dic { get; set; } = new Dictionary<string, decimal>();
|
||||
/// <summary>
|
||||
/// 订单明细备注
|
||||
///</summary>
|
||||
[Column("Remark")]
|
||||
|
||||
Reference in New Issue
Block a user