增加盘点模式

This commit is contained in:
hehaibing-1996
2024-05-09 09:43:28 +08:00
parent 311a695498
commit cb6090bf0b
43 changed files with 2909 additions and 423 deletions

View File

@ -144,6 +144,7 @@ namespace 货架标准上位机.ViewModel
if (SelectedOutOrder == null)
{
Growl.Warning("未选择单据!");
return;
}
#region
@ -157,7 +158,8 @@ namespace 货架标准上位机.ViewModel
var Result = ApiHelp.GetDataFromHttp<ResponseCommon>(LocalFile.Config.ApiIpHost + "outStore/goInOutstore", body, "POST");
if (Result != null && Result.Code == 200)
{
Growl.Warning("已成功开始库!");
Growl.Warning("已成功开始库!");
RefreshDataGridItemSource();
}
else if (Result != null)
{
@ -187,8 +189,8 @@ namespace 货架标准上位机.ViewModel
if (SelectedOutOrder == null)
{
Growl.Warning("未选择单据!");
return;
}
#region
var body = new GetOutOrderDetailRequest()
{
@ -200,7 +202,8 @@ namespace 货架标准上位机.ViewModel
var Result = ApiHelp.GetDataFromHttp<ResponseCommon>(LocalFile.Config.ApiIpHost + "outStore/goOutOutstore", body, "POST");
if (Result != null && Result.Code == 200)
{
Growl.Warning("已成功结束库!");
Growl.Warning("已成功结束库!");
RefreshDataGridItemSource();
}
else if (Result != null)
{