列表仓位
This commit is contained in:
@@ -100,6 +100,11 @@ namespace WMS.Web.Domain.Values.Single
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
[EnumRemark("菜单")]
|
[EnumRemark("菜单")]
|
||||||
Menus = 18,
|
Menus = 18,
|
||||||
|
/// <summary>
|
||||||
|
/// 仓位集合
|
||||||
|
/// </summary>
|
||||||
|
[EnumRemark("仓位")]
|
||||||
|
SubStocks = 19,
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -96,8 +96,8 @@ namespace WMS.Web.Repositories
|
|||||||
SerialNumber = "",
|
SerialNumber = "",
|
||||||
SrcBox = "",
|
SrcBox = "",
|
||||||
DestBox = "",
|
DestBox = "",
|
||||||
SrcSubStock = "",
|
SrcSubStock = _singleDataService.GetSingleData(SingleAction.SubStocks, _loginRepositories.CompanyId, s.SrcSubStockId),
|
||||||
DestSubStock = "",
|
DestSubStock = _singleDataService.GetSingleData(SingleAction.SubStocks, _loginRepositories.CompanyId, s.DestSubStockId),
|
||||||
Creator = _singleDataService.GetSingleData(SingleAction.Staffs, _loginRepositories.CompanyId, s.CreatorId),
|
Creator = _singleDataService.GetSingleData(SingleAction.Staffs, _loginRepositories.CompanyId, s.CreatorId),
|
||||||
CreateTime =s.CreateTime.DateToStringSeconds()
|
CreateTime =s.CreateTime.DateToStringSeconds()
|
||||||
#endregion
|
#endregion
|
||||||
|
|||||||
@@ -90,9 +90,9 @@ namespace WMS.Web.Repositories
|
|||||||
{
|
{
|
||||||
#region dto组装
|
#region dto组装
|
||||||
Box = "",
|
Box = "",
|
||||||
SrcSubStock = "",
|
SrcSubStock = _singleDataService.GetSingleData(SingleAction.SubStocks, _loginRepositories.CompanyId, s.SrcSubStockId),
|
||||||
Specifications = "",
|
Specifications = "",
|
||||||
DestSubStock = "",
|
DestSubStock = _singleDataService.GetSingleData(SingleAction.SubStocks, _loginRepositories.CompanyId, s.DestSubStockId),
|
||||||
Qty = s.Qty,
|
Qty = s.Qty,
|
||||||
Type = s.Type.GetRemark(),
|
Type = s.Type.GetRemark(),
|
||||||
Creator = _singleDataService.GetSingleData(SingleAction.Staffs, _loginRepositories.CompanyId, s.CreatorId),
|
Creator = _singleDataService.GetSingleData(SingleAction.Staffs, _loginRepositories.CompanyId, s.CreatorId),
|
||||||
|
|||||||
@@ -103,7 +103,7 @@ namespace WMS.Web.Repositories
|
|||||||
SourceBillNo=s.detail.SourceBillNo,
|
SourceBillNo=s.detail.SourceBillNo,
|
||||||
SaleBillNo = s.detail.SaleBillNo,
|
SaleBillNo = s.detail.SaleBillNo,
|
||||||
DeliveryOrg = "",
|
DeliveryOrg = "",
|
||||||
ReceiptCustomer = "",
|
ReceiptCustomer = _singleDataService.GetSingleData(SingleAction.Customers, _loginRepositories.CompanyId, s.detail.ReceiptCustomerId),
|
||||||
MaterialName = "",
|
MaterialName = "",
|
||||||
MaterialNumber = "",
|
MaterialNumber = "",
|
||||||
Specifications = "",
|
Specifications = "",
|
||||||
|
|||||||
@@ -186,7 +186,7 @@ namespace WMS.Web.Repositories
|
|||||||
SourceBillNo = s.detail.SourceBillNo,
|
SourceBillNo = s.detail.SourceBillNo,
|
||||||
SaleBillNo = s.detail.SaleBillNo,
|
SaleBillNo = s.detail.SaleBillNo,
|
||||||
DeliveryOrg = "",
|
DeliveryOrg = "",
|
||||||
ReceiptCustomer = "",
|
ReceiptCustomer = _singleDataService.GetSingleData(SingleAction.Customers, _loginRepositories.CompanyId, s.detail.ReceiptCustomerId),
|
||||||
MaterialName = "",
|
MaterialName = "",
|
||||||
MaterialNumber = "",
|
MaterialNumber = "",
|
||||||
Specifications = ""
|
Specifications = ""
|
||||||
|
|||||||
@@ -95,7 +95,7 @@ namespace WMS.Web.Repositories
|
|||||||
BillNo = s.order.BillNo,
|
BillNo = s.order.BillNo,
|
||||||
Unit = _singleDataService.GetSingleData(SingleAction.Units, _loginRepositories.CompanyId, s.detail.UnitId),
|
Unit = _singleDataService.GetSingleData(SingleAction.Units, _loginRepositories.CompanyId, s.detail.UnitId),
|
||||||
Stock = _singleDataService.GetSingleData(SingleAction.Stocks, _loginRepositories.CompanyId, s.detail.StockId),
|
Stock = _singleDataService.GetSingleData(SingleAction.Stocks, _loginRepositories.CompanyId, s.detail.StockId),
|
||||||
SubStock = "",
|
SubStock = _singleDataService.GetSingleData(SingleAction.SubStocks, _loginRepositories.CompanyId, s.detail.SubStockId),
|
||||||
BeforeQty = s.detail.BeforeQty,
|
BeforeQty = s.detail.BeforeQty,
|
||||||
AfterQty = s.detail.AfterQty,
|
AfterQty = s.detail.AfterQty,
|
||||||
FinalQty = s.detail.FinalQty,
|
FinalQty = s.detail.FinalQty,
|
||||||
|
|||||||
Reference in New Issue
Block a user