1.出库单据、生成出库单据、计算物料时增加货架类型用于区分信息化货架和智能货架的物料 实现分开出
This commit is contained in:
@ -58,6 +58,14 @@ namespace 货架标准上位机.ViewModels
|
||||
SetProperty(ref matName, value);
|
||||
}
|
||||
}
|
||||
|
||||
private int shelfTypeId;
|
||||
public int ShelfTypeId
|
||||
{
|
||||
get => shelfTypeId;
|
||||
set { SetProperty(ref shelfTypeId, value); }
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
#region Command
|
||||
@ -74,6 +82,7 @@ namespace 货架标准上位机.ViewModels
|
||||
{
|
||||
MatName = MatName,
|
||||
MatCode = MatCode,
|
||||
ShelfTypeId = ShelfTypeId,
|
||||
};
|
||||
var Result = ApiHelp.GetDataFromHttp<ResponseCommon<List<MatInventorySummaryModel>>>(LocalFile.Config.ApiIpHost + "matInventoryDetail/getMatInventorySummary", body, "POST");
|
||||
if (Result != null && Result.Data != null)
|
||||
|
Reference in New Issue
Block a user