This commit is contained in:
2023-11-07 14:58:43 +08:00
parent b7ae473d8e
commit 64bb0ff680
9 changed files with 175 additions and 5 deletions

View File

@@ -360,6 +360,11 @@ namespace Tnb.ProductionMgr
_ = await db.Insertable<PrdMaterialReceiptD>(list).ExecuteCommandAsync();
});
}
if (result.ErrorMessage == "存在不属于生产bom的投入物料确认签收吗")
{
return "存在不属于生产bom的投入物料确认签收吗";
}
return !result.IsSuccess
? throw Oops.Bah(result.ErrorMessage)
: !result2.IsSuccess ? throw Oops.Bah(result2.ErrorMessage) : (dynamic)"签收成功";