工位上货问题

yanshishuju
yewj 7 months ago
parent 2c068773f7
commit 7f8f6b2876

@ -720,7 +720,6 @@ export default {
this.loading = true; this.loading = true;
let query = JSON.parse(JSON.stringify(this.filterQuery)); let query = JSON.parse(JSON.stringify(this.filterQuery));
query.workPlaceCode = null query.workPlaceCode = null
query.busType =
orderPage(query).then(res => { orderPage(query).then(res => {
this.loading = false this.loading = false
this.list = res.data.list || [] this.list = res.data.list || []

@ -661,6 +661,8 @@ export default {
_this.$nextTick(() => { _this.$nextTick(() => {
_this.panelALive = true; _this.panelALive = true;
}); });
_this.vailOrderFinish();
}, },
refreshCodesPanelP() { refreshCodesPanelP() {
let _this = this let _this = this
@ -668,6 +670,7 @@ export default {
_this.$nextTick(() => { _this.$nextTick(() => {
_this.panelALive = true; _this.panelALive = true;
}); });
_this.vailOrderFinish();
}, },
getInputFocus(event) { getInputFocus(event) {
@ -995,7 +998,7 @@ export default {
// //
nextCollectOrder() { nextCollectOrder() {
let nextQuery = { let nextQuery = {
workPlaceCode: this.formData.workPlaceCode busType: this.formData.busType
} }
getNextOrder(nextQuery).then(res => { getNextOrder(nextQuery).then(res => {
this.loading = false this.loading = false
@ -1012,7 +1015,7 @@ export default {
findCurOrder() { findCurOrder() {
let nextQuery = { let nextQuery = {
workPlaceCode: this.formData.workPlaceCode, // workPlaceCode: this.formData.workPlaceCode,
busType: this.formData.busType busType: this.formData.busType
} }
getCurOrder(nextQuery).then(res => { getCurOrder(nextQuery).then(res => {
@ -1029,7 +1032,7 @@ export default {
this.startDeal(); this.startDeal();
}).catch(() => { }).catch(() => {
}); });
} else if (temp.tagStatus === 2) { } else if (temp.tagStatus === 2 || temp.tagStatus === 1) {
this.formData = temp; this.formData = temp;
this.startDeal(); this.startDeal();

@ -1925,6 +1925,12 @@ export default {
}, },
batchVailCode(params) { batchVailCode(params) {
if (this.$isBlank(this.orderFormData.corpOrderId)) {
let date = new Date();
this.orderFormData.corpOrderId =
parseTime(date, "{y}{m}{d}{h}{i}{s}") +
Math.ceil(Math.random() * 89 + 10);
}
batchVailCode(params).then((response) => { batchVailCode(params).then((response) => {
if (response.code === 20000) { if (response.code === 20000) {
console.log("==滴码接收==", response.data); console.log("==滴码接收==", response.data);
@ -1939,18 +1945,16 @@ export default {
this.$refs.inputRef.focus(); this.$refs.inputRef.focus();
this.$refs.inputRef.select(); this.$refs.inputRef.select();
if (this.valiCodes != null && this.valiCodes.length > 0) { if (this.valiCodes != null && this.valiCodes.length > 0) {
if (this.$isBlank(this.orderFormData.corpOrderId)) {
let date = new Date();
this.orderFormData.corpOrderId =
parseTime(date, "{y}{m}{d}{h}{i}{s}") +
Math.ceil(Math.random() * 89 + 10);
}
this.orderFormData.codeList = this.valiCodes this.orderFormData.codeList = this.valiCodes
if (this.splitType == "out")
this.orderFormData.inoutType = 1
else
this.orderFormData.inoutType = 2
// this.orderFormData.inoutType = this.splitType;
batchAddCode(this.orderFormData).then((res) => { batchAddCode(this.orderFormData).then((res) => {
if (res.code === 20000) { if (res.code === 20000) {
this.orderFormData.billNo = res.data.orderId; if (res.data.orderId != null)
this.orderFormData.billNo = res.data.orderId;
this.refreshCodesPanel(this); this.refreshCodesPanel(this);
this.printMutiCodeResult(res.data.vailCodeResultResponses) this.printMutiCodeResult(res.data.vailCodeResultResponses)
} else { } else {

@ -645,7 +645,10 @@ export default {
// this.filterQuery.fromCorp = this.fromCorp // this.filterQuery.fromCorp = this.fromCorp
this.filterQuery.excludeWorkCode = null this.filterQuery.excludeWorkCode = null
this.filterQuery.tagStatus = 1 this.filterQuery.tagStatus = 1
orderPage(this.filterQuery).then(res => {
let query = JSON.parse(JSON.stringify(this.filterQuery));
query.workPlaceCode = null
orderPage(query).then(res => {
this.loading = false this.loading = false
this.list = res.data.list || [] this.list = res.data.list || []
this.total = res.data.total || 0 this.total = res.data.total || 0

Loading…
Cancel
Save