|
|
|
@ -555,6 +555,7 @@
|
|
|
|
|
v-if="!QuantityEntryStatus" |
|
|
|
|
size="small" |
|
|
|
|
v-model="scope.row.number" |
|
|
|
|
:value-on-clear="0" |
|
|
|
|
@change="isZeroNumber(scope.row)" |
|
|
|
|
/> |
|
|
|
|
<el-input-number |
|
|
|
@ -564,6 +565,7 @@
|
|
|
|
|
:min="0" |
|
|
|
|
v-model="scope.row.reservationNum" |
|
|
|
|
@change="isZeroNumber(scope.row)" |
|
|
|
|
:value-on-clear="0" |
|
|
|
|
/> |
|
|
|
|
</template> |
|
|
|
|
</el-table-column> |
|
|
|
@ -572,7 +574,9 @@
|
|
|
|
|
<el-button v-if="!QuantityEntryStatus" color="#172e60" type="success" @click="ModifyLCL" |
|
|
|
|
>修改(零担订单)</el-button |
|
|
|
|
> |
|
|
|
|
<el-button color="#172e60" type="success" @click="SubmitLoad">提交(零担订单)</el-button> |
|
|
|
|
<el-button v-else color="#172e60" type="success" @click="SubmitLoad" |
|
|
|
|
>提交(零担订单)</el-button |
|
|
|
|
> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
</el-dialog> |
|
|
|
@ -588,7 +592,7 @@ export default {
|
|
|
|
|
|
|
|
|
|
<script setup lang="ts"> |
|
|
|
|
import { ref, reactive, onMounted, computed, watch, nextTick } from 'vue'; |
|
|
|
|
import { columnList, newMenuData,wrap } from '@/option/turndelivery/deliveryDiscuss'; |
|
|
|
|
import { columnList, newMenuData, wrap } from '@/option/turndelivery/deliveryDiscuss'; |
|
|
|
|
import { useRoute, useRouter } from 'vue-router'; |
|
|
|
|
import { |
|
|
|
|
$_selectStockArticleInfoList, |
|
|
|
@ -1373,6 +1377,9 @@ const submit = () => {
|
|
|
|
|
|
|
|
|
|
// 展示的信息 |
|
|
|
|
dataInfo.value = removeDuplicates(dataInfo.value); |
|
|
|
|
dataInfo.value.forEach(item=>{ |
|
|
|
|
item.Plannedquantity = item.reservationNum |
|
|
|
|
}) |
|
|
|
|
console.log(dataInfo.value, ' dataInfo.value'); |
|
|
|
|
|
|
|
|
|
// 计算总数 |
|
|
|
@ -1530,7 +1537,7 @@ const MaxSUM = computed(() => {
|
|
|
|
|
// let max = dataInfo.value[dataId.value].handQuantity - sum; |
|
|
|
|
console.log(dataId.value, 'dataId.value'); |
|
|
|
|
console.log(dataInfo.value, ' dataInfo.value['); |
|
|
|
|
let max = dataInfo.value[dataId.value].reservationNum; |
|
|
|
|
let max = dataInfo.value[dataId.value].Plannedquantity; |
|
|
|
|
return max; |
|
|
|
|
}); |
|
|
|
|
const toggleSelection = options => { |
|
|
|
@ -1711,12 +1718,11 @@ const Entering = val => {
|
|
|
|
|
// 数量录入 |
|
|
|
|
const QuantityEntry = async val => { |
|
|
|
|
console.log(dataInfo.value, 'dataInfo.value'); |
|
|
|
|
|
|
|
|
|
dataId.value = findIndexById(val.id); //记录当前点击的订单 |
|
|
|
|
editLoading.value=true |
|
|
|
|
editLoading.value = true; |
|
|
|
|
// 编辑状态 |
|
|
|
|
if (RouteId.value) { |
|
|
|
|
await $_getDeliveryZeroOrderDetail({ |
|
|
|
|
await $_getDeliveryZeroOrderDetail({ |
|
|
|
|
deliveryId: RouteId.value, |
|
|
|
|
orderId: val.id, |
|
|
|
|
}).then(res => { |
|
|
|
@ -1740,7 +1746,7 @@ const QuantityEntry = async val => {
|
|
|
|
|
}); |
|
|
|
|
} else { |
|
|
|
|
// 新增状态 |
|
|
|
|
await getZeroOrderDetail(val.id).then(res => { |
|
|
|
|
await getZeroOrderDetail(val.id).then(res => { |
|
|
|
|
if (res.data.code == 200) { |
|
|
|
|
console.log(res, '数量录入返回信息'); |
|
|
|
|
isZeroTable.value = res.data.data; |
|
|
|
@ -1751,7 +1757,7 @@ const QuantityEntry = async val => {
|
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
editLoading.value=false; |
|
|
|
|
editLoading.value = false; |
|
|
|
|
}; |
|
|
|
|
// 修改零担数量 |
|
|
|
|
const ModifyLCL = () => { |
|
|
|
@ -1796,6 +1802,7 @@ const SubmitLoad = () => {
|
|
|
|
|
}); |
|
|
|
|
let max = dataInfo.value[dataId.value].handQuantity - sum; |
|
|
|
|
console.log(dataInfo.value, ' dataInfo.value['); |
|
|
|
|
|
|
|
|
|
if (Numberoperations > max) { |
|
|
|
|
ElMessage({ |
|
|
|
|
message: '操作数量总和不能大于冻结数量总和', |
|
|
|
@ -1848,7 +1855,15 @@ const SubmitLoad = () => {
|
|
|
|
|
console.log(isZeroTable.value, '提交零担的值'); |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
dataInfo.value[dataId.value].parcelNumberVOS = isZeroTable.value; |
|
|
|
|
// 零担计划数量 |
|
|
|
|
let _summation = 0; |
|
|
|
|
dataInfo.value[0].parcelNumberVOS.forEach(item => { |
|
|
|
|
_summation += item.reservationNum; |
|
|
|
|
}); |
|
|
|
|
dataInfo.value[dataId.value].reservationNum = _summation; |
|
|
|
|
|
|
|
|
|
comprehensive.value = false; //关闭弹窗 |
|
|
|
|
EnteringLibrary.value = false; //关闭零担 |
|
|
|
|
QuantityEntryStatus.value = false; //此时开启零担录入 |
|
|
|
|