出库签收,业务代码调整

This commit is contained in:
2023-06-29 15:31:01 +08:00
parent 23a78917b9
commit 2cb5fedeed

View File

@@ -86,15 +86,16 @@ namespace Tnb.WarehouseMgr
case "齐套出库": case "齐套出库":
case "一般出库": case "一般出库":
{ {
WareHouseUpInput upInput = new() { loginType = "web", bizTypeId = disTask.biz_type, requireId = disTask.require_id, carryIds = new List<string> { input.carryId } };
WareHouseUpInput upInput = new() { loginType = "web", bizTypeId = disTask.biz_type, requireId = disTask.require_id, carryIds = new List<string> { input.carryId }, distaskCodes = input.distaskCodes };
await DoUpdate(upInput); //回更业务 await DoUpdate(upInput); //回更业务
} }
break; break;
case "载具移出": case "载具移出":
{ {
WareHouseUpInput upInput = new() { loginType = "web", bizTypeId = disTask.biz_type, requireId = disTask.require_id, carryIds = new List<string> { input.carryId } }; WareHouseUpInput upInput = new() { loginType = "web", bizTypeId = disTask.biz_type, requireId = disTask.require_id, carryIds = new List<string> { input.carryId }, distaskCodes = input.distaskCodes };
await DoUpdate(upInput); //回更业务 await DoUpdate(upInput); //回更业务
} }
break; break;