现场问题处理 erp添加unicode

This commit is contained in:
2024-10-28 10:45:24 +08:00
parent fad3f116aa
commit 44128eb79b
5 changed files with 13 additions and 8 deletions

View File

@@ -95,7 +95,7 @@ namespace Tnb.WarehouseMgr
}
if (wmsCarryH.carry_status != "1")
{
throw new AppFriendlyException($"【ArtificialInstock】载具{input.carry_code}未绑定物料", 500);
throw new AppFriendlyException($"【ArtificialInstock】载具{input.carry_code}未绑定物料,托盘状态不是占用状态", 500);
}
BasLocation carryLoc = await _db.Queryable<BasLocation>().Where(r => r.id == wmsCarryH.location_id).FirstAsync();