Commit 4137699f by wusiyi

fix: 修改库存不足提示语

parent 9dfa01d0
......@@ -305,7 +305,9 @@ export default {
);
if (code == 301) {
this.$confirm(
`库存不足,无法进入生产!请联系仓库管理人员核对库存。</br>
`${
resData.thirdSkuCode
}库存不足,无法进入生产!请联系仓库管理人员核对库存。</br>
库存数量:${resData.availableInventory || 0}
生产中数量:${resData.inventory || 0}
<span style="color: red;">可调配库存:
......@@ -754,7 +756,9 @@ export default {
});
if (checkInventoryCode == 301) {
this.$confirm(
`库存不足,无法进入生产!请联系仓库管理人员核对库存。</br>
`${
checkInventoryData?.thirdSkuCode
}库存不足,无法进入生产!请联系仓库管理人员核对库存。</br>
库存数量:${checkInventoryData.availableInventory || 0},
生产中数量:${checkInventoryData.inventory || 0},
<span style="color: red;">可调配库存:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment