|
|
|
@ -200,7 +200,7 @@ export default { |
|
|
|
return |
|
|
|
} |
|
|
|
//起始箱号 + 箱数 > 总箱数,提示 起始箱号 + 箱数 -1 超出了总箱数。 |
|
|
|
if (this.selectDelNotifyDetail.printBoxSeqNo + this.boxNum > this.selectDelNotifyDetail.printTotalBoxCount){ |
|
|
|
if (this.selectDelNotifyDetail.printBoxSeqNo + this.boxNum -1> this.selectDelNotifyDetail.printTotalBoxCount){ |
|
|
|
this.$message.warning("超出总箱数。") |
|
|
|
return |
|
|
|
} |
|
|
|
@ -715,17 +715,17 @@ export default { |
|
|
|
<el-row :gutter="20"> |
|
|
|
<el-col :span="4"> |
|
|
|
<el-form-item label="发货数量" required> |
|
|
|
<el-input-number v-model="selectDelNotifyDetail.shipQty" :controls="false" :step="0" :precision="0"></el-input-number> |
|
|
|
<el-input-number v-model="selectDelNotifyDetail.shipQty" :controls="false" :step="0" ></el-input-number> |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
<el-col :span="4"> |
|
|
|
<el-form-item label="每盒(袋)数量" required> |
|
|
|
<el-input-number v-model="selectDelNotifyDetail.qtyPerBag" :controls="false" :step="0" :precision="0"></el-input-number> |
|
|
|
<el-input-number v-model="selectDelNotifyDetail.qtyPerBag" :controls="false" :step="0" ></el-input-number> |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
<el-col :span="4"> |
|
|
|
<el-form-item label="每箱中的盒数" required> |
|
|
|
<el-input-number v-model="selectDelNotifyDetail.qtyPerBox" :controls="false" :step="0" :precision="0"></el-input-number> |
|
|
|
<el-input-number v-model="selectDelNotifyDetail.qtyPerBox" :controls="false" :step="0"></el-input-number> |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
<el-col :span="4"> |
|
|
|
@ -740,7 +740,7 @@ export default { |
|
|
|
</el-col> |
|
|
|
<el-col :span="4"> |
|
|
|
<el-form-item label="末箱子余数" required> |
|
|
|
<el-input-number v-model="endBoxQty" :controls="false" :step="0" :precision="0"></el-input-number> |
|
|
|
<el-input-number v-model="endBoxQty" :controls="false" :step="0" :precision="2"></el-input-number> |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
</el-row> |
|
|
|
|