Browse Source

Merge branch 'dev' into pre-production

pre-production
pref_mail@163.com 5 months ago
parent
commit
43606d44c4
  1. 4
      src/views/distribution/artery/AddVehicleStowage.vue
  2. 12
      src/views/distribution/inventory/BookingNote.vue

4
src/views/distribution/artery/AddVehicleStowage.vue

@ -771,9 +771,9 @@
<el-input-number <el-input-number
:controls="false" :controls="false"
controls-position="right" controls-position="right"
:min="0" :min="details.editInfo.realNum || 0"
:precision="0" :precision="0"
:max="details.editInfo.stockNum" :max="details.editInfo.stockNum + details.editInfo.realNum"
class="editInput" class="editInput"
v-model="details.editInfo.enterPlanNum" v-model="details.editInfo.enterPlanNum"
style="flex: 1; text-align: left !important" style="flex: 1; text-align: left !important"

12
src/views/distribution/inventory/BookingNote.vue

@ -1543,16 +1543,16 @@ const onLoad = async () => {
info.value.maxNum = 0; info.value.maxNum = 0;
details.deepCloneGoodsList = []; details.deepCloneGoodsList = [];
details.goodsList = data.warehouseWaybill.detailList.map(val => { details.goodsList = data.warehouseWaybill.detailList.map(val => {
val.num = Number(val.num); val.num = isNumber(val.num) ? Number(val.num) : 0;
val.volume = Number(val.volume); val.volume = isNumber(val.volume) ? Number(val.volume) : 0;
val.weight = Number(val.weight); val.weight = isNumber(val.weight) ? Number(val.weight) : 0;
val.price = Number(val.price); val.price = isNumber(val.price) ? Number(val.price) : 0;
val.subtotalFreight = Number(val.subtotalFreight); val.subtotalFreight = isNumber(val.subtotalFreight) ? Number(val.subtotalFreight) : 0;
val.goodsName = val.productName; val.goodsName = val.productName;
// //
if (!val.subtotalFreight) handleComputed(val); // if (!val.subtotalFreight) handleComputed(val);
// //
info.value.maxNum += val.num; info.value.maxNum += val.num;

Loading…
Cancel
Save