|
|
@ -262,19 +262,18 @@
|
|
|
|
import {
|
|
|
|
import {
|
|
|
|
orderListError,
|
|
|
|
orderListError,
|
|
|
|
deleteByOrderId,
|
|
|
|
deleteByOrderId,
|
|
|
|
commitOrder, addCommitOrder,
|
|
|
|
addCommitOrder,
|
|
|
|
updateUnit,
|
|
|
|
updateUnit,
|
|
|
|
} from "../../api/inout/order";
|
|
|
|
} from "../../api/inout/order";
|
|
|
|
|
|
|
|
|
|
|
|
import draggable from "vuedraggable";
|
|
|
|
import draggable from "vuedraggable";
|
|
|
|
import codeDetail from "./IONewCode";
|
|
|
|
import codeDetail from "./IONewCode";
|
|
|
|
import addOrder from "./IOAddOrder";
|
|
|
|
import addOrder from "./IOAddOrder";
|
|
|
|
import store from "../../store";
|
|
|
|
import store from "../../store";
|
|
|
|
import {getBussinessType} from "../../api/basic/bussinessType";
|
|
|
|
|
|
|
|
import {getBasicUnitMaintains} from "@/api/basic/basicUnitMaintain";
|
|
|
|
import {getBasicUnitMaintains} from "@/api/basic/basicUnitMaintain";
|
|
|
|
import {filterAllByUser} from "@/api/basic/invWarehouse";
|
|
|
|
import {filterAllByUser} from "@/api/basic/invWarehouse";
|
|
|
|
import {getLocalJoinByUser} from "@/api/basic/busLocalType";
|
|
|
|
import {getLocalJoinByUser} from "@/api/basic/busLocalType";
|
|
|
|
import {filterSubByInv} from "@/api/basic/invSubWarehouse";
|
|
|
|
import {filterSubByInv} from "@/api/basic/invSubWarehouse";
|
|
|
|
|
|
|
|
import {isBlank} from "@/utils/strUtil";
|
|
|
|
|
|
|
|
|
|
|
|
const formJson = {
|
|
|
|
const formJson = {
|
|
|
|
site_id: "",
|
|
|
|
site_id: "",
|
|
|
@ -412,7 +411,6 @@ export default {
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
selectUnit(row) {
|
|
|
|
selectUnit(row) {
|
|
|
|
console.log(row.id);
|
|
|
|
|
|
|
|
this.unitUpdateQuery.id = this.curIndex;
|
|
|
|
this.unitUpdateQuery.id = this.curIndex;
|
|
|
|
this.unitUpdateQuery.fromCorp = row.name;
|
|
|
|
this.unitUpdateQuery.fromCorp = row.name;
|
|
|
|
this.unitUpdateQuery.fromCorpId = row.erpId;
|
|
|
|
this.unitUpdateQuery.fromCorpId = row.erpId;
|
|
|
@ -432,7 +430,6 @@ export default {
|
|
|
|
this.filterQuery.customerId = store.getters.customerId;
|
|
|
|
this.filterQuery.customerId = store.getters.customerId;
|
|
|
|
orderListError(this.filterQuery)
|
|
|
|
orderListError(this.filterQuery)
|
|
|
|
.then((response) => {
|
|
|
|
.then((response) => {
|
|
|
|
console.log(response)
|
|
|
|
|
|
|
|
this.loading = false;
|
|
|
|
this.loading = false;
|
|
|
|
this.list = response.data.list || [];
|
|
|
|
this.list = response.data.list || [];
|
|
|
|
this.total = response.data.total || 0;
|
|
|
|
this.total = response.data.total || 0;
|
|
|
@ -449,7 +446,6 @@ export default {
|
|
|
|
this.deleteData.id = data;
|
|
|
|
this.deleteData.id = data;
|
|
|
|
deleteByOrderId(this.deleteData)
|
|
|
|
deleteByOrderId(this.deleteData)
|
|
|
|
.then((response) => {
|
|
|
|
.then((response) => {
|
|
|
|
|
|
|
|
|
|
|
|
if (response.code == 20000) {
|
|
|
|
if (response.code == 20000) {
|
|
|
|
this.getList();
|
|
|
|
this.getList();
|
|
|
|
this.$message({
|
|
|
|
this.$message({
|
|
|
@ -460,13 +456,16 @@ export default {
|
|
|
|
this.$message.error("补录单据列表已不存在该扫码单据!");
|
|
|
|
this.$message.error("补录单据列表已不存在该扫码单据!");
|
|
|
|
this.getList();
|
|
|
|
this.getList();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
})
|
|
|
|
.catch(() => {
|
|
|
|
.catch(() => {
|
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
deleteDialog(rowId) {
|
|
|
|
deleteDialog(rowId) {
|
|
|
|
|
|
|
|
if (isBlank(rowId)) {
|
|
|
|
|
|
|
|
this.$message.error("请选择需要删除的数据!");
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
}
|
|
|
|
this.$confirm("此操作将永久删除该订单, 是否继续?", "提示", {
|
|
|
|
this.$confirm("此操作将永久删除该订单, 是否继续?", "提示", {
|
|
|
|
confirmButtonText: "确定",
|
|
|
|
confirmButtonText: "确定",
|
|
|
|
cancelButtonText: "取消",
|
|
|
|
cancelButtonText: "取消",
|
|
|
@ -503,7 +502,6 @@ export default {
|
|
|
|
var corpOrderId = mOrder.remark;
|
|
|
|
var corpOrderId = mOrder.remark;
|
|
|
|
|
|
|
|
|
|
|
|
this.errorDetail = mOrder.remark;
|
|
|
|
this.errorDetail = mOrder.remark;
|
|
|
|
console.log(corpOrderId + " " + mOrder + " " + mOrder.remark);
|
|
|
|
|
|
|
|
this.dialogVisible = true;
|
|
|
|
this.dialogVisible = true;
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|