This commit is contained in:
jl
2023-09-14 10:49:07 +08:00
parent cc78693b7d
commit 29bfe4c6aa
8 changed files with 752 additions and 695 deletions

View File

@ -1055,5 +1055,14 @@ namespace Epost.BLL
return dal.GetlocationInfo(location);
}
#endregion
}
public bool UpOrdersState(string Area,string block)
{
return dal.UpdateState(Area, block);
}
public bool IsFinishWorkArea(string block, string usercode = "", string area = "", string sku = "", string shopid = "", string orderid = "")
{
return dal.IsFinishWorkArea(block,usercode,area,sku,shopid,orderid);
}
}
}

View File

@ -490,7 +490,7 @@ namespace Epost.BLL
dal.UpdateState(model.Area, model.Block);
bool WorkArea = dal.IsFinishWorkArea("", "", "99", "", "", "");
if (skuInish)
if (WorkArea)
{
comBLL.DISPLAY_LIGHT_BLOCK_Out("", model.Area, "0");
}

View File

@ -127,9 +127,9 @@ namespace Epost.BLL
}
#endregion
#region
public bool updateOrderQueueState(string usercode, string block)
public bool updateOrderQueueState()
{
return dal.updateOrderQueueState(usercode,block);
return dal.updateOrderQueueState();
}
#endregion