|
|
|
@ -219,7 +219,7 @@
|
|
|
|
|
@inputTxt="inputscPackage" |
|
|
|
|
@timeCheck="timesc" |
|
|
|
|
@btnCheck="btnsc" |
|
|
|
|
@selectCheck="selectsc" |
|
|
|
|
@selectCheck="selectPackage" |
|
|
|
|
@selection="selectionChange" |
|
|
|
|
> |
|
|
|
|
<template #default="slotProps"> |
|
|
|
@ -981,7 +981,7 @@ import { compressImageBlob } from '@/components/IMGcompressor/imgcompressor.js';
|
|
|
|
|
import { showOrderPackgeCode } from '@/api/distribution/distributionStockArticle'; |
|
|
|
|
import { exportBlob } from '@/api/common'; |
|
|
|
|
import DeleteWarningDialog from '@/components/popupnotification/popupnotification.vue'; |
|
|
|
|
import { downloadXls } from '@/utils/util'; |
|
|
|
|
import { downloadXls, handleSelectQuery } from '@/utils/util'; |
|
|
|
|
import { dateNow } from '@/utils/date'; |
|
|
|
|
import NProgress from 'nprogress'; |
|
|
|
|
import { showInventoryPackgeCode } from '@/api/distribution/distributionStockList'; |
|
|
|
@ -1795,10 +1795,19 @@ export default {
|
|
|
|
|
{ |
|
|
|
|
prop: 'orderPackageGroundingStatusName', |
|
|
|
|
label: '上架状态', |
|
|
|
|
type: 1, |
|
|
|
|
type: 3, |
|
|
|
|
values: '', |
|
|
|
|
width: '80', |
|
|
|
|
checkarr: [], |
|
|
|
|
checkarr: [ |
|
|
|
|
{ |
|
|
|
|
label: '待上架', |
|
|
|
|
value: '10', |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
label: '已上架', |
|
|
|
|
value: '20', |
|
|
|
|
}, |
|
|
|
|
], |
|
|
|
|
fixed: false, |
|
|
|
|
sortable: true, |
|
|
|
|
head: false, |
|
|
|
@ -1806,25 +1815,34 @@ export default {
|
|
|
|
|
{ |
|
|
|
|
prop: 'orderPackageStockupStatusName', |
|
|
|
|
label: '备货状态', |
|
|
|
|
type: 1, |
|
|
|
|
values: '', |
|
|
|
|
width: '80', |
|
|
|
|
checkarr: [], |
|
|
|
|
fixed: false, |
|
|
|
|
sortable: true, |
|
|
|
|
head: false, |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
prop: 'orderPackageReservationStatusName', |
|
|
|
|
label: '预约状态', |
|
|
|
|
type: 1, |
|
|
|
|
type: 3, |
|
|
|
|
values: '', |
|
|
|
|
width: '80', |
|
|
|
|
checkarr: [], |
|
|
|
|
checkarr: [ |
|
|
|
|
{ |
|
|
|
|
label: '待备货', |
|
|
|
|
value: '10', |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
label: '已备货', |
|
|
|
|
value: '20', |
|
|
|
|
}, |
|
|
|
|
], |
|
|
|
|
fixed: false, |
|
|
|
|
sortable: true, |
|
|
|
|
head: false, |
|
|
|
|
}, |
|
|
|
|
// { |
|
|
|
|
// prop: 'orderPackageReservationStatusName', |
|
|
|
|
// label: '预约状态', |
|
|
|
|
// type: 1, |
|
|
|
|
// values: '', |
|
|
|
|
// width: '80', |
|
|
|
|
// checkarr: [], |
|
|
|
|
// fixed: false, |
|
|
|
|
// sortable: true, |
|
|
|
|
// head: false, |
|
|
|
|
// }, |
|
|
|
|
{ |
|
|
|
|
prop: 'orderPackageLoadingStatusName', |
|
|
|
|
label: '装车状态', |
|
|
|
@ -3758,6 +3776,13 @@ export default {
|
|
|
|
|
this.handlePackage(this.page); |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
selectPackage(index, row) { |
|
|
|
|
console.log('index', index); |
|
|
|
|
console.log('row', row); |
|
|
|
|
handleSelectQuery(index, row, this.packageQuery); |
|
|
|
|
this.handlePackage(this.page); |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
inputscClient(index, row) { |
|
|
|
|
console.log('index', index); |
|
|
|
|
console.log('row', row); |
|
|
|
|