1.修复校验异常单据选择业务单据弹出提示异常信息问题

2.修复分页bug
fengcang
x_z 3 years ago
parent d9777aa49f
commit dfbf57697a

@ -584,7 +584,7 @@ export default {
} }
}, },
detailHandleCurrentChange(val) { detailHandleCurrentChange(val) {
this.query.page = val; this.detailQuery.page = val;
this.getStockOrderDetailList(); this.getStockOrderDetailList();
}, },
// //
@ -697,9 +697,7 @@ export default {
.then((response) => { .then((response) => {
this.detailLoading = false; this.detailLoading = false;
this.detailList = response.data.list || []; this.detailList = response.data.list || [];
/*this.detailList.forEach(data => { this.detailTotal = response.data.total;
data['edit'] = false;
});*/
}) })
.catch(() => { .catch(() => {
this.detailLoading = false; this.detailLoading = false;

@ -409,11 +409,13 @@
:visible.sync="addDialogVisible" :visible.sync="addDialogVisible"
width="80%" width="80%"
v-if="addDialogVisible" v-if="addDialogVisible"
> >
<selectErpOrder <selectErpOrder
v-on:closeManuDialog="closeManuDialog" v-on:closeManuDialog="closeManuDialog"
:orderId="orderId" :orderId="orderId"
:orderAction="billAction" :orderAction="billAction"
:curLocInv="curLocInv"
></selectErpOrder> ></selectErpOrder>
</el-dialog> </el-dialog>
@ -577,6 +579,7 @@ export default {
index: null, index: null,
formName: null, formName: null,
orderId: "", orderId: "",
curLocInv: null,
formMap: { formMap: {
add: "新增", add: "新增",
edit: "编辑", edit: "编辑",
@ -1087,6 +1090,7 @@ export default {
importOrder(row) { importOrder(row) {
this.orderId = row.id; this.orderId = row.id;
this.billAction = row.action; this.billAction = row.action;
this.curLocInv = row.locStorageCode;
this.addDialogVisible = true; this.addDialogVisible = true;
}, },
invChange() { invChange() {

Loading…
Cancel
Save