|
|
@ -166,7 +166,7 @@ import { isBlank } from '@/utils/strUtil'
|
|
|
|
import { getCodeEndList } from '@/api/collect/IoCollectCodeSelect'
|
|
|
|
import { getCodeEndList } from '@/api/collect/IoCollectCodeSelect'
|
|
|
|
import { enterCodeBillNo } from '@/api/inout/order'
|
|
|
|
import { enterCodeBillNo } from '@/api/inout/order'
|
|
|
|
import { autoCodeResult, findByBill, manualCodeDetail, orderDetail } from '@/api/collect/collectOrder'
|
|
|
|
import { autoCodeResult, findByBill, manualCodeDetail, orderDetail } from '@/api/collect/collectOrder'
|
|
|
|
import { cancelOrder, checkCollectOrderManCode } from '@/api/collect/splitCreateOrder'
|
|
|
|
import { checkCollectOrderManCode, finishCheckOrder } from '@/api/collect/splitCreateOrder'
|
|
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
export default {
|
|
|
|
name: 'IocCollectOrderCheckCode',
|
|
|
|
name: 'IocCollectOrderCheckCode',
|
|
|
@ -267,7 +267,7 @@ export default {
|
|
|
|
if (response.code == 601) {
|
|
|
|
if (response.code == 601) {
|
|
|
|
this.placeholder = '已选入单据,请扫描追溯码进行审核'
|
|
|
|
this.placeholder = '已选入单据,请扫描追溯码进行审核'
|
|
|
|
this.orderData.billNo = response.data.billNo
|
|
|
|
this.orderData.billNo = response.data.billNo
|
|
|
|
this.getBillNo(this.filterQuery.billNo)
|
|
|
|
this.getBillNo(this.orderData.billNo)
|
|
|
|
this.$refs.inputRef.focus()
|
|
|
|
this.$refs.inputRef.focus()
|
|
|
|
this.$refs.inputRef.select()
|
|
|
|
this.$refs.inputRef.select()
|
|
|
|
this.scanCode = ''
|
|
|
|
this.scanCode = ''
|
|
|
@ -527,9 +527,20 @@ export default {
|
|
|
|
})
|
|
|
|
})
|
|
|
|
},
|
|
|
|
},
|
|
|
|
commitCheckOrder() {
|
|
|
|
commitCheckOrder() {
|
|
|
|
|
|
|
|
this.finishOrder()
|
|
|
|
this.init()
|
|
|
|
this.init()
|
|
|
|
this.$message.success('单据审核完成')
|
|
|
|
this.$message.success('单据审核完成')
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
finishOrder() {
|
|
|
|
|
|
|
|
finishCheckOrder(this.orderData).then(res => {
|
|
|
|
|
|
|
|
if (res.code == 20000) {
|
|
|
|
|
|
|
|
}else {
|
|
|
|
|
|
|
|
this.$message.error(res.message)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}).catch(() => {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
},
|
|
|
|
cancelOrder() {
|
|
|
|
cancelOrder() {
|
|
|
|
this.$confirm('此操作将取消当前正在审核单据,是否继续?', '提示', {
|
|
|
|
this.$confirm('此操作将取消当前正在审核单据,是否继续?', '提示', {
|
|
|
|
confirmButtonText: '确定',
|
|
|
|
confirmButtonText: '确定',
|
|
|
|