|
|
@ -26,7 +26,7 @@ import { getPutawayJobList, cancleTakePutawayJob } from '@/api/request2.js' |
|
|
|
import { goHome, updateTitle } from '@/common/basic.js' |
|
|
|
|
|
|
|
import { getDetailOption, getDetailGiveupOption } from '@/common/array.js' |
|
|
|
|
|
|
|
import {Exception} from 'sass'; |
|
|
|
import comEmptyView from '@/mycomponents/common/comEmptyView.vue' |
|
|
|
import jobFilter from '@/mycomponents/job/jobFilter.vue' |
|
|
|
import comPutawayJobCard from '@/pages/putaway/coms/comPutawayJobCard.vue' |
|
|
@ -285,14 +285,14 @@ const getScanResult = (result) => { |
|
|
|
try { |
|
|
|
const filters = [ |
|
|
|
{ |
|
|
|
column: 'packingNumber', |
|
|
|
action: '==', |
|
|
|
value: result.label.packingNumber |
|
|
|
column: "packingNumber", |
|
|
|
action: "in", |
|
|
|
value: result.package.number + "," + result.package.parentNumber |
|
|
|
}, |
|
|
|
{ |
|
|
|
column: 'batch', |
|
|
|
action: '==', |
|
|
|
value: result.label.batch |
|
|
|
value: result.package.batch |
|
|
|
}, |
|
|
|
// { |
|
|
|
// column: 'qty', |
|
|
@ -302,12 +302,12 @@ const getScanResult = (result) => { |
|
|
|
{ |
|
|
|
column: 'itemCode', |
|
|
|
action: '==', |
|
|
|
value: result.label.itemCode |
|
|
|
value: result.package.itemCode |
|
|
|
}, |
|
|
|
{ |
|
|
|
column: 'status', |
|
|
|
action: 'in', |
|
|
|
value: '1,2,3' |
|
|
|
value: '1,2' |
|
|
|
} |
|
|
|
// { |
|
|
|
// column: 'accept_user_id', |
|
|
|