改箱增加字段
This commit is contained in:
@@ -661,6 +661,16 @@
|
|||||||
操作人
|
操作人
|
||||||
</summary>
|
</summary>
|
||||||
</member>
|
</member>
|
||||||
|
<member name="P:WMS.Web.Core.Dto.ChangeBoxRecord.ChangeBoxRecordQueryInfoResponse.Qty">
|
||||||
|
<summary>
|
||||||
|
数量
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
|
<member name="P:WMS.Web.Core.Dto.ChangeBoxRecord.ChangeBoxRecordQueryInfoResponse.DestBoxOrg">
|
||||||
|
<summary>
|
||||||
|
目标箱组织编码
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
<member name="T:WMS.Web.Core.Dto.ChangeBoxRecord.SaveChangeBoxRecordRequest">
|
<member name="T:WMS.Web.Core.Dto.ChangeBoxRecord.SaveChangeBoxRecordRequest">
|
||||||
<summary>
|
<summary>
|
||||||
保存改箱
|
保存改箱
|
||||||
|
|||||||
@@ -66,5 +66,15 @@ namespace WMS.Web.Core.Dto.ChangeBoxRecord
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
[Column("操作人")]
|
[Column("操作人")]
|
||||||
public string Creator { get; set; }
|
public string Creator { get; set; }
|
||||||
|
/// <summary>
|
||||||
|
/// 数量
|
||||||
|
///</summary>
|
||||||
|
[Column("数量")]
|
||||||
|
public decimal Qty { get; set; }
|
||||||
|
/// <summary>
|
||||||
|
/// 目标箱组织编码
|
||||||
|
/// </summary>
|
||||||
|
[Column("目标箱组织")]
|
||||||
|
public string DestBoxOrg { get; set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -170,6 +170,8 @@ namespace WMS.Web.Repositories
|
|||||||
SerialNumbers = string.Join(",", s.changeBox.SerialNumbers),
|
SerialNumbers = string.Join(",", s.changeBox.SerialNumbers),
|
||||||
SrcBox = s.srcBox.BoxBillNo,
|
SrcBox = s.srcBox.BoxBillNo,
|
||||||
DestBox = s.destBox.BoxBillNo,
|
DestBox = s.destBox.BoxBillNo,
|
||||||
|
Qty=s.changeBox.Qty,
|
||||||
|
DestBoxOrg= _singleDataService.GetSingleData(SingleAction.Orgs, companyId, s.changeBox.DestBoxOrgCode),
|
||||||
SrcSubStock = _singleDataService.GetSingleData(SingleAction.SubStocks, companyId, s.changeBox.SrcSubStockId),
|
SrcSubStock = _singleDataService.GetSingleData(SingleAction.SubStocks, companyId, s.changeBox.SrcSubStockId),
|
||||||
DestSubStock = _singleDataService.GetSingleData(SingleAction.SubStocks, companyId, s.changeBox.DestSubStockId),
|
DestSubStock = _singleDataService.GetSingleData(SingleAction.SubStocks, companyId, s.changeBox.DestSubStockId),
|
||||||
Creator = _singleDataService.GetSingleData(SingleAction.Staffs, companyId, s.changeBox.CreatorId),
|
Creator = _singleDataService.GetSingleData(SingleAction.Staffs, companyId, s.changeBox.CreatorId),
|
||||||
|
|||||||
Reference in New Issue
Block a user