|
|
|
@ -408,7 +408,14 @@ import {
|
|
|
|
|
vailOrderFinish
|
|
|
|
|
} from "@/api/collect/splitCreateOrder";
|
|
|
|
|
import {selectCorpList} from "@/api/basic/basicUnitMaintain";
|
|
|
|
|
import {getCurOrder, getNextOrder, findByBill, findFromCorp, orderDetail,removeByScanCode} from "@/api/collect/collectOrder";
|
|
|
|
|
import {
|
|
|
|
|
getCurOrder,
|
|
|
|
|
getNextOrder,
|
|
|
|
|
findByBill,
|
|
|
|
|
findFromCorp,
|
|
|
|
|
orderDetail,
|
|
|
|
|
removeByScanCode
|
|
|
|
|
} from "@/api/collect/collectOrder";
|
|
|
|
|
import PanelOrderAllDetail from "@/views/collect/PanelOrderAllDetail";
|
|
|
|
|
import {getWorkBindBusTypes, removeBusTypeById} from '@/api/basic/workPlace/sysWorkplaceDocuments'
|
|
|
|
|
import {getInvListByUser} from "@/api/system/invWarehouse";
|
|
|
|
@ -1147,6 +1154,7 @@ export default {
|
|
|
|
|
this.loading = false
|
|
|
|
|
if (res.code == 20000) {
|
|
|
|
|
this.formData = res.data;
|
|
|
|
|
|
|
|
|
|
this.startDeal();
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(res.message)
|
|
|
|
@ -1233,6 +1241,7 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
//开始拆零
|
|
|
|
|
dealSplitOrder() {
|
|
|
|
|
this.formData.workPlaceCode = this.workplaceId;
|
|
|
|
|
startSplit(this.formData).then(res => {
|
|
|
|
|
this.loading = false
|
|
|
|
|
if (res.code == 20000) {
|
|
|
|
@ -1375,7 +1384,7 @@ export default {
|
|
|
|
|
this.$refs.inputRef.focus();
|
|
|
|
|
this.$refs.inputRef.select();
|
|
|
|
|
},
|
|
|
|
|
reset(){
|
|
|
|
|
reset() {
|
|
|
|
|
this.formData = {
|
|
|
|
|
tagStatus: -1,
|
|
|
|
|
workPlaceCode: this.formData.workPlaceCode,
|
|
|
|
@ -1484,18 +1493,18 @@ export default {
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
removeCodesTemp(query) {
|
|
|
|
|
removeByScanCode(query).then(res =>{
|
|
|
|
|
if (res.code == 20000){
|
|
|
|
|
this.$message.success('剔除成功')
|
|
|
|
|
this.scanCode = ''
|
|
|
|
|
this.panelALive = false
|
|
|
|
|
this.$nextTick(() => {
|
|
|
|
|
this.panelALive = true
|
|
|
|
|
})
|
|
|
|
|
this.result = ''
|
|
|
|
|
}else if (res.code == 501){
|
|
|
|
|
removeByScanCode(query).then(res => {
|
|
|
|
|
if (res.code == 20000) {
|
|
|
|
|
this.$message.success('剔除成功')
|
|
|
|
|
this.scanCode = ''
|
|
|
|
|
this.panelALive = false
|
|
|
|
|
this.$nextTick(() => {
|
|
|
|
|
this.panelALive = true
|
|
|
|
|
})
|
|
|
|
|
this.result = ''
|
|
|
|
|
} else if (res.code == 501) {
|
|
|
|
|
|
|
|
|
|
}else {
|
|
|
|
|
} else {
|
|
|
|
|
this.result = ''
|
|
|
|
|
this.scanCode = ''
|
|
|
|
|
this.$message.error(res.message)
|
|
|
|
@ -1626,7 +1635,7 @@ export default {
|
|
|
|
|
this.placeholder = "请点击输入框进行扫码剔除"
|
|
|
|
|
this.scanStatus = 1
|
|
|
|
|
this.scanCode = ''
|
|
|
|
|
if (!isBlank(this.warnResult)){
|
|
|
|
|
if (!isBlank(this.warnResult)) {
|
|
|
|
|
this.warnResult = ""
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|