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 modifyDialog from "./BasicThirdSysModify";
import modifyDetailDialog from "./BasicThirdSysDetailModify"; import modifyDetailDialog from "./BasicThirdSysDetailModify";
import {getLocalBusType} from "../../api/basic/busLocalType"; import {filterForThirdSys} from "../../api/basic/busLocalType";
export default { export default {
data() { data() {
@ -440,19 +440,10 @@ export default {
} }
}) })
}, },
addBussinessType(){ addBussinessType() {
this.bussinessTypeFormVisible = true; this.bussinessTypeFormVisible = true;
getLocalBusType().then((res) => { filterForThirdSys().then((res) => {
this.bussinessTypeList = res.data.list; this.bussinessTypeList = res.data;
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;
}
}
})
}) })
}, },
addBussinessTypeData() { addBussinessTypeData() {

@ -142,14 +142,22 @@
<!-- v-if="haveDistributionVisible"--> <!-- v-if="haveDistributionVisible"-->
<div v-if="scope.row.enableSupplementOrder"> <div v-if="scope.row.enableSupplementOrder">
<el-button <el-button
type="text" type="text"
size="small" size="small"
@click.native="supplementOrder(scope.row)"> @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> </el-button>
</div>
</template> </template>
</el-table-column> </el-table-column>
@ -849,21 +857,47 @@ export default {
type: 'warning', type: 'warning',
center: true, center: true,
}).then(() => { }).then(() => {
this.$message({
type: 'success',
message: '补单成功!'
});
// //
let orderQuery = { let orderQuery = {
billNo: row.billNo billNo: row.billNo
} }
supplementOrder(orderQuery); supplementOrder(orderQuery);
this.$message({
type: 'success',
message: '补单成功!'
});
}).catch(() => { }).catch(() => {
this.$message({ this.$message({
type: 'info', type: 'info',
message: '取消补单' 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: { components: {

Loading…
Cancel
Save