1.修改第三方单据类型筛选由后端判断过滤

2.已核对单据增加提交按钮
master
x_z 3 years ago
parent a1c56274a8
commit 4829cbe8f9

@ -66,3 +66,10 @@ export function updateLocalBusType(query) {
});
}
export function filterForThirdSys() {
return axios({
url: "/udiwms/localBusType/filterForThirdSys",
method: "get",
param: null
})
}

@ -246,7 +246,7 @@ import {
import modifyDialog from "./BasicThirdSysModify";
import modifyDetailDialog from "./BasicThirdSysDetailModify";
import {getLocalBusType} from "../../api/basic/busLocalType";
import {filterForThirdSys} from "../../api/basic/busLocalType";
export default {
data() {
@ -440,19 +440,10 @@ export default {
}
})
},
addBussinessType(){
addBussinessType() {
this.bussinessTypeFormVisible = true;
getLocalBusType().then((res) => {
this.bussinessTypeList = res.data.list;
this.busTypeList.forEach((item) => {
for (let i = 0; i < this.bussinessTypeList.length; i++) {
if (item.code === this.bussinessTypeList[i].action) {
this.bussinessTypeList.splice(i, 1);
i--;
break;
}
}
})
filterForThirdSys().then((res) => {
this.bussinessTypeList = res.data;
})
},
addBussinessTypeData() {

@ -142,14 +142,22 @@
<!-- v-if="haveDistributionVisible"-->
<div v-if="scope.row.enableSupplementOrder">
<div v-if="scope.row.enableSupplementOrder">
<el-button
type="text"
size="small"
@click.native="supplementOrder(scope.row)">
平衡补单
平衡补单
</el-button>
</div>
<el-button
v-if="scope.row.submitFlag"
type="text"
size="small"
@click.native="submitOrder(scope.row)">
提交
</el-button>
</div>
</template>
</el-table-column>
@ -849,21 +857,47 @@ export default {
type: 'warning',
center: true,
}).then(() => {
this.$message({
type: 'success',
message: '补单成功!'
});
//
let orderQuery = {
billNo: row.billNo
}
supplementOrder(orderQuery);
this.$message({
type: 'success',
message: '补单成功!'
});
}).catch(() => {
this.$message({
type: 'info',
message: '取消补单'
});
});
},
submitOrder(row){
console.log(row.exportStatus)
if (row.exportStatus == 1) {
this.$confirm("单据已经提交,是否重复提交?","提示",{
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
center: true
}).then(() => {
this.$message({
type: "success",
message: "提交成功!"
})
}).catch(() => {
this.$message({
type: "info",
message: "已取消"
})
})
} else {
this.$message({
type: "success",
message: "提交成功!"
})
}
}
},
components: {

Loading…
Cancel
Save