退货红单功能实现,以及出入库记录内容调整

This commit is contained in:
2025-10-09 23:21:03 +08:00
parent ec35781c1b
commit a669664fcc
5 changed files with 68 additions and 16 deletions

View File

@@ -56,12 +56,12 @@ namespace ZR.Admin.WebApi.Controllers.mes.wms
bool data = this.Exitwarehouse.IsExistedWarehouse(originalCode);
if (data)
{
msg = "存在";
msg = "货物存在";
}
else
{
msg = "不存在";
msg = "货物不存在";
}
return ToResponse(new ApiResult(200, msg, data));