|
|
|
@ -426,6 +426,7 @@
|
|
|
|
|
v-on:closeManuDialog="closeManuDialog"
|
|
|
|
|
:orderId="orderId"
|
|
|
|
|
:orderAction="billAction"
|
|
|
|
|
:curLocInv="curLocInv"
|
|
|
|
|
></selectErpOrder>
|
|
|
|
|
</el-dialog>
|
|
|
|
|
|
|
|
|
@ -597,6 +598,7 @@ export default {
|
|
|
|
|
index: null,
|
|
|
|
|
formName: null,
|
|
|
|
|
orderId: "",
|
|
|
|
|
curLocInv: null,
|
|
|
|
|
formMap: {
|
|
|
|
|
add: "新增",
|
|
|
|
|
edit: "编辑",
|
|
|
|
@ -711,7 +713,6 @@ export default {
|
|
|
|
|
this.getList();
|
|
|
|
|
},
|
|
|
|
|
handleSelectionChange(val) {
|
|
|
|
|
console.log(val);
|
|
|
|
|
this.multipleSelection = val;
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
@ -777,7 +778,6 @@ export default {
|
|
|
|
|
this.filterQuery.customerId = store.getters.customerId;
|
|
|
|
|
filterOrder(this.filterQuery)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
console.log(response)
|
|
|
|
|
this.loading = false;
|
|
|
|
|
this.list = response.data.list || [];
|
|
|
|
|
this.total = response.data.total || 0;
|
|
|
|
@ -885,7 +885,6 @@ export default {
|
|
|
|
|
refresgOrderDetail() {
|
|
|
|
|
orderDetail(this.detailQuery)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
console.log(response)
|
|
|
|
|
this.loading = false;
|
|
|
|
|
this.detailList = response.data || [];
|
|
|
|
|
})
|
|
|
|
@ -928,7 +927,6 @@ export default {
|
|
|
|
|
this.successOrderExportPDFSettingVisible = true;
|
|
|
|
|
},
|
|
|
|
|
successOrderExportPDF(row) {
|
|
|
|
|
console.log(row)
|
|
|
|
|
let tQuery = {
|
|
|
|
|
orderId: row.id,
|
|
|
|
|
customerId: store.getters.customerId
|
|
|
|
@ -1187,7 +1185,6 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
uploadOrderDialog(value) {
|
|
|
|
|
console.log(value.id + "---" + value.orderid);
|
|
|
|
|
this.uploadQuery = {
|
|
|
|
|
orderId: value.id,
|
|
|
|
|
};
|
|
|
|
@ -1238,6 +1235,7 @@ export default {
|
|
|
|
|
importOrder(row) {
|
|
|
|
|
this.orderId = row.id;
|
|
|
|
|
this.billAction = row.action;
|
|
|
|
|
this.curLocInv = row.locStorageCode;
|
|
|
|
|
this.addDialogVisible = true;
|
|
|
|
|
},
|
|
|
|
|
invChange() {
|
|
|
|
|