bug修改,同步设置联动控制按钮是否可用

fengcang
anthonyywj2 3 years ago
parent ac3485ed8b
commit d79154583f

@ -1,314 +1,329 @@
<template> <template>
<div> <div>
<el-card> <el-card>
<el-form :inline="true" :model="filterQuery" class="query-form" size="mini"> <el-form :inline="true" :model="filterQuery" class="query-form" size="mini">
<el-form-item class="query-form-item"> <el-form-item class="query-form-item">
<el-input <el-input
v-model="filterQuery.name" v-model="filterQuery.name"
style="width: 250px" style="width: 250px"
placeholder="单据类型名称" placeholder="单据类型名称"
></el-input> ></el-input>
</el-form-item> </el-form-item>
<el-form-item> <el-form-item>
<el-button-group style="margin-left: 10px;display:flex;"> <el-button-group style="margin-left: 10px;display:flex;">
<el-button type="primary" icon="el-icon-refresh" @click="onReset"></el-button> <el-button type="primary" icon="el-icon-refresh" @click="onReset"></el-button>
<el-button type="primary" icon="search" @click="getList"></el-button> <el-button type="primary" icon="search" @click="getList"></el-button>
<el-button type="primary" icon="search" @click="handleAddClick" <el-button type="primary" icon="search" @click="handleAddClick"
>新增 :disabled="!configParms.entrustAction"
</el-button >新增
> </el-button
</el-button-group> >
</el-button-group>
</el-form-item> </el-form-item>
</el-form> </el-form>
<el-table v-loading="loading" :data="list" style="width: 100%"> <el-table v-loading="loading" :data="list" style="width: 100%">
<el-table-column label="序号" type="index" width="60" fixed></el-table-column> <el-table-column label="序号" type="index" width="60" fixed></el-table-column>
<el-table-column label="扫码单据类型" prop="curName" fixed></el-table-column> <el-table-column label="扫码单据类型" prop="curName" fixed></el-table-column>
<el-table-column label="当前仓库" prop="curInvName" fixed></el-table-column> <el-table-column label="当前仓库" prop="curInvName" fixed></el-table-column>
<el-table-column label="当前分库" prop="invWarehouseName" fixed></el-table-column> <el-table-column label="当前分库" prop="invWarehouseName" fixed></el-table-column>
<el-table-column label="委托验收仓库" prop="entrustInvName" fixed></el-table-column> <el-table-column label="委托验收仓库" prop="entrustInvName" fixed></el-table-column>
<el-table-column label="委托验收分库" prop="entrustSubInvName" fixed></el-table-column> <el-table-column label="委托验收分库" prop="entrustSubInvName" fixed></el-table-column>
<el-table-column label="委托验收人" prop="employeeName" fixed> <el-table-column label="委托验收人" prop="employeeName" fixed>
</el-table-column> </el-table-column>
<el-table-column label="操作" fixed="right"> <el-table-column label="操作" fixed="right">
<template slot-scope="scope"> <template slot-scope="scope">
<el-button <el-button
type="text" type="text"
size="small" size="small"
@click.native.stop="handleModifyClick(scope.row)" @click.native.stop="handleModifyClick(scope.row)"
>编辑 :disabled="!configParms.entrustAction"
</el-button >编辑
> </el-button
<el-button >
type="text" <el-button
size="small" type="text"
@click.native.stop="deleteDialog(scope.row)" size="small"
>删除 @click.native.stop="deleteDialog(scope.row)"
</el-button :disabled="!configParms.entrustAction"
> >删除
</template> </el-button
>
</template>
</el-table-column> </el-table-column>
</el-table> </el-table>
<el-dialog <el-dialog
title="新增委托验收" title="新增委托验收"
:visible.sync="addDialogVisible" :visible.sync="addDialogVisible"
width="70%" width="70%"
:close-on-click-modal="false" :close-on-click-modal="false"
:close-on-press-escape="false" :close-on-press-escape="false"
v-if="addDialogVisible" v-if="addDialogVisible"
> >
<modifyDialog :inputQuery="inputQuery"></modifyDialog> <modifyDialog :inputQuery="inputQuery"></modifyDialog>
<div style="text-align: center"> <div style="text-align: center">
<el-button type="primary" size="small" icon="search" @click="onAddSubmit" <el-button type="primary" size="small" icon="search" @click="onAddSubmit"
>提交 >提交
</el-button </el-button
> >
<el-button type="primary" size="small" icon="search" @click="cancelDialog" <el-button type="primary" size="small" icon="search" @click="cancelDialog"
>取消 >取消
</el-button </el-button
> >
</div> </div>
</el-dialog> </el-dialog>
<el-dialog <el-dialog
title="编辑委托验收" title="编辑委托验收"
:visible.sync="modifyDialogVisible" :visible.sync="modifyDialogVisible"
width="70%" width="70%"
:close-on-click-modal="false" :close-on-click-modal="false"
:close-on-press-escape="false" :close-on-press-escape="false"
v-if="modifyDialogVisible" v-if="modifyDialogVisible"
> >
<modifyDialog :inputQuery="inputQuery"></modifyDialog> <modifyDialog :inputQuery="inputQuery"></modifyDialog>
<div style="text-align: center"> <div style="text-align: center">
<el-button type="primary" size="small" icon="search" @click="onModifySubmit" <el-button type="primary" size="small" icon="search" @click="onModifySubmit"
>提交 >提交
</el-button </el-button
> >
<el-button type="primary" size="small" icon="search" @click="cancelDialog" <el-button type="primary" size="small" icon="search" @click="cancelDialog"
>取消 >取消
</el-button </el-button
> >
</div> </div>
</el-dialog> </el-dialog>
<el-pagination <el-pagination
:page-size="filterQuery.limit" :page-size="filterQuery.limit"
@current-change="handleCurrentChange" @current-change="handleCurrentChange"
layout="prev, pager, next" layout="prev, pager, next"
:total="total" :total="total"
></el-pagination> ></el-pagination>
</el-card> </el-card>
</div> </div>
</template> </template>
<script> <script>
import { import {
getEntrustRece, getEntrustRece,
deleteEntrustRece, deleteEntrustRece,
updateEntrustRece, updateEntrustRece,
insertEntrustRece, insertEntrustRece,
} from "../../api/basic/EntrustRece"; } from "../../api/basic/EntrustRece";
import modifyDialog from "./BasicEntrutsReceModify"; import modifyDialog from "./BasicEntrutsReceModify";
import {findConfig} from "@/api/thrsys/spsSyncStatus";
export default { export default {
data() { data() {
return { return {
filterQuery: { filterQuery: {
name: "", name: "",
page: 1, page: 1,
limit: 20, limit: 20,
}, },
loading: false, loading: false,
addDialogVisible: false, addDialogVisible: false,
modifyDialogVisible: false, modifyDialogVisible: false,
list: [], list: [],
inputQuery: { inputQuery: {
action: "", action: "",
name: "", name: "",
entrustInv: "", entrustInv: "",
entrustUser: "", entrustUser: "",
entrustAction: null, entrustAction: null,
finishRece: false, finishRece: false,
curInv: "", curInv: "",
entrustSubInv: "", entrustSubInv: "",
invWarehouseCode: "", invWarehouseCode: "",
}, },
enableMap: { enableMap: {
true: "是", true: "是",
false: "否", false: "否",
}, },
mainActionMap: { mainActionMap: {
WareHouseIn: "入库", WareHouseIn: "入库",
WareHouseOut: "出库" WareHouseOut: "出库"
}, },
fileList: [], fileList: [],
total: 0, total: 0,
multipleSelection: [], multipleSelection: [],
uploadFileUrl: null, uploadFileUrl: null,
headers: {}, headers: {},
configParms: {},
}; };
}, },
methods: { methods: {
onReset() { onReset() {
this.$router.push({ this.$router.push({
path: "", path: "",
}); });
this.filterQuery = { this.filterQuery = {
name: "", name: "",
page: 1, page: 1,
limit: 20, limit: 20,
}; };
this.getList(); this.getList();
}, },
cancelDialog() { cancelDialog() {
this.modifyDialogVisible = false; this.modifyDialogVisible = false;
this.addDialogVisible = false; this.addDialogVisible = false;
}, },
handleCurrentChange(val) { handleCurrentChange(val) {
this.filterQuery.page = val; this.filterQuery.page = val;
this.getList(); this.getList();
}, },
getList() { getList() {
this.loading = true; this.loading = true;
getEntrustRece(this.filterQuery) getEntrustRece(this.filterQuery)
.then((response) => { .then((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;
}) })
.catch(() => { .catch(() => {
this.loading = false; this.loading = false;
this.list = []; this.list = [];
this.total = 0; this.total = 0;
}); });
}, },
onAddSubmit() { onAddSubmit() {
if (this.$isBlank(this.inputQuery.action)) { if (this.$isBlank(this.inputQuery.action)) {
this.$message.error("单据类型不能为空!"); this.$message.error("单据类型不能为空!");
return; return;
} }
if (this.$isBlank(this.inputQuery.curInv)) { if (this.$isBlank(this.inputQuery.curInv)) {
this.$message.error("请输入委托仓库!"); this.$message.error("请输入委托仓库!");
return; return;
} }
if (this.$isBlank(this.inputQuery.entrustInv)) { if (this.$isBlank(this.inputQuery.entrustInv)) {
this.$message.error("请输入接受委托仓库!"); this.$message.error("请输入接受委托仓库!");
return; return;
} }
if (this.$isBlank(this.inputQuery.entrustUser)) { if (this.$isBlank(this.inputQuery.entrustUser)) {
this.$message.error("请输入接受委托人!"); this.$message.error("请输入接受委托人!");
return; return;
} }
if (this.$isBlank(this.inputQuery.invWarehouseCode)) { if (this.$isBlank(this.inputQuery.invWarehouseCode)) {
this.$message.error("当前分库不能为空!"); this.$message.error("当前分库不能为空!");
return; return;
} }
if (this.$isBlank(this.inputQuery.entrustSubInv)) { if (this.$isBlank(this.inputQuery.entrustSubInv)) {
this.$message.error("请输入接受委托分库!"); this.$message.error("请输入接受委托分库!");
return; return;
} }
insertEntrustRece(this.inputQuery) insertEntrustRece(this.inputQuery)
.then((response) => { .then((response) => {
this.loading = false; this.loading = false;
this.cancelDialog(); this.cancelDialog();
this.getList(); this.getList();
}) })
.catch(() => { .catch(() => {
this.loading = false; this.loading = false;
this.cancelDialog(); this.cancelDialog();
}); });
}, },
onModifySubmit() { onModifySubmit() {
if (this.$isBlank(this.inputQuery.action)) { if (this.$isBlank(this.inputQuery.action)) {
this.$message.error("单据类型不能为空!"); this.$message.error("单据类型不能为空!");
return; return;
} }
if (this.$isBlank(this.inputQuery.curInv)) { if (this.$isBlank(this.inputQuery.curInv)) {
this.$message.error("请输入委托仓库!"); this.$message.error("请输入委托仓库!");
return; return;
} }
if (this.$isBlank(this.inputQuery.entrustInv)) { if (this.$isBlank(this.inputQuery.entrustInv)) {
this.$message.error("请输入接受委托仓库!"); this.$message.error("请输入接受委托仓库!");
return; return;
} }
if (this.$isBlank(this.inputQuery.entrustInv)) { if (this.$isBlank(this.inputQuery.entrustInv)) {
this.$message.error("请输入接受委托人!"); this.$message.error("请输入接受委托人!");
return; return;
} }
insertEntrustRece(this.inputQuery) insertEntrustRece(this.inputQuery)
.then((response) => { .then((response) => {
this.loading = false; this.loading = false;
this.cancelDialog(); this.cancelDialog();
this.getList(); this.getList();
}) })
.catch(() => { .catch(() => {
this.loading = false; this.loading = false;
this.cancelDialog(); this.cancelDialog();
}); });
}, },
handleAddClick() { handleAddClick() {
this.inputQuery = {enable: true, expireTip: true}; this.inputQuery = {enable: true, expireTip: true};
this.addDialogVisible = true; this.addDialogVisible = true;
}, },
handleModifyClick(row) { handleModifyClick(row) {
this.inputQuery = row; this.inputQuery = row;
this.modifyDialogVisible = true; this.modifyDialogVisible = true;
}, },
deleteDialog(rowId) { deleteDialog(rowId) {
this.$confirm("此操作将永久删除该委托验收信息, 是否继续?", "提示", { this.$confirm("此操作将永久删除该委托验收信息, 是否继续?", "提示", {
confirmButtonText: "确定", confirmButtonText: "确定",
cancelButtonText: "取消", cancelButtonText: "取消",
type: "warning", type: "warning",
}) })
.then(() => { .then(() => {
this.deleteOrders(rowId); this.deleteOrders(rowId);
}) })
.catch(() => { .catch(() => {
}); });
}, },
deleteOrders(data) { deleteOrders(data) {
this.loading = true; this.loading = true;
let tquery = { let tquery = {
id: data.id + "", id: data.id + "",
}; };
deleteEntrustRece(tquery) deleteEntrustRece(tquery)
.then((response) => { .then((response) => {
this.getList(); this.getList();
if (response.code == 20000) { if (response.code == 20000) {
this.$message({ this.$message({
type: "success", type: "success",
message: "删除成功!", message: "删除成功!",
}); });
} else { } else {
this.$message.error(response.message); this.$message.error(response.message);
} }
}) })
.catch(() => { .catch(() => {
}); });
},
},
components: {
modifyDialog,
}, },
mounted() { getSyncConfig() {
}, findConfig()
created() { .then((response) => {
this.getList(); if (response.code == 20000) {
this.configParms = response.data;
}
})
.catch(() => {
});
}, },
},
components: {
modifyDialog,
},
mounted() {
},
created() {
this.getList();
},
}; };
</script> </script>

@ -66,7 +66,7 @@
> >
<el-button <el-button
type="text" type="text"
size="small" size="small" :disabled="!configParms.typeBus"
@click.native.stop="deleteDialog(scope.row)" @click.native.stop="deleteDialog(scope.row)"
>删除 >删除
</el-button </el-button

@ -35,6 +35,7 @@
> >
<el-button type="primary" icon="search" @click="updateDownload" <el-button type="primary" icon="search" @click="updateDownload"
v-if="this.thirdSysDetail.enabled && this.thirdSysDetail.fromType==3" v-if="this.thirdSysDetail.enabled && this.thirdSysDetail.fromType==3"
:disabled="!configParms.typeThird"
>更新下载 >更新下载
</el-button> </el-button>
</el-button-group> </el-button-group>

@ -102,14 +102,14 @@
<el-button <el-button
type="text" type="text"
size="small" size="small"
:disabled="scope.row.pid!=0" :disabled="scope.row.pid!=0 || !configParms.basicInv"
@click.native.stop="handleSubForm(scope.row, 'add')" @click.native.stop="handleSubForm(scope.row, 'add')"
>添加分库 >添加分库
</el-button </el-button
> >
<el-button <el-button
type="text" type="text"
size="small" size="small" :disabled="!configParms.basicInv"
@click.native.stop="handleForm( scope.row, 'edit')" @click.native.stop="handleForm( scope.row, 'edit')"
>编辑 >编辑
</el-button </el-button
@ -160,6 +160,7 @@
<el-button <el-button
type="text" type="text"
size="small" size="small"
:disabled="!configParms.basicInv"
@click.native.stop="addUser(scope.row)" @click.native.stop="addUser(scope.row)"
>添加用户 >添加用户
</el-button </el-button
@ -167,6 +168,7 @@
<el-button <el-button
type="text" type="text"
size="small" size="small"
:disabled="!configParms.basicInv"
@click.native.stop="addBussinessType(scope.row)" @click.native.stop="addBussinessType(scope.row)"
>添加单据类型 >添加单据类型
</el-button </el-button
@ -174,6 +176,7 @@
<el-button <el-button
type="text" type="text"
size="small" size="small"
:disabled="!configParms.basicInv"
@click.native.stop="handleSubForm( scope.row, 'edit')" @click.native.stop="handleSubForm( scope.row, 'edit')"
>编辑 >编辑
</el-button </el-button
@ -230,6 +233,7 @@
<el-button <el-button
type="text" type="text"
size="small" size="small"
!configParms.basicInv
@click.native="delWarehouseUser(scope.row.id)"> @click.native="delWarehouseUser(scope.row.id)">
移除 移除
</el-button> </el-button>
@ -267,6 +271,7 @@
<el-button <el-button
type="text" type="text"
size="small" size="small"
!configParms.basicInv
@click.native="delWarehouseBussinessType(scope.row.id)"> @click.native="delWarehouseBussinessType(scope.row.id)">
移除 移除
</el-button> </el-button>

@ -38,6 +38,7 @@
</el-button> </el-button>
<el-button type="primary" @click.native="downloadWarehouse()" <el-button type="primary" @click.native="downloadWarehouse()"
v-if="this.thirdSysDetail.enabled && this.thirdSysDetail.fromType==3" v-if="this.thirdSysDetail.enabled && this.thirdSysDetail.fromType==3"
:disabled="!configParms.basicThirdInv"
>下载仓库 >下载仓库
</el-button> </el-button>
</el-button-group> </el-button-group>
@ -81,6 +82,7 @@
type="text" type="text"
size="small" size="small"
@click.native.stop="handleSubForm( scope.row, 'add')" @click.native.stop="handleSubForm( scope.row, 'add')"
:disabled="!configParms.basicThirdInv"
>添加分库 >添加分库
</el-button </el-button
> >
@ -135,6 +137,7 @@
<el-button <el-button
type="text" type="text"
size="small" size="small"
:disabled="!configParms.basicThirdInv"
@click.native.stop="handleSubForm( scope.row, 'edit')" @click.native.stop="handleSubForm( scope.row, 'edit')"
>编辑 >编辑
</el-button </el-button
@ -142,7 +145,7 @@
<el-button <el-button
type="text" type="text"
size="small" size="small"
:disabled="!configParms.basicInv" :disabled="!configParms.basicThirdInv"
@click.native.stop="handleSubDel(scope.row)" @click.native.stop="handleSubDel(scope.row)"
>删除 >删除
</el-button </el-button

@ -272,7 +272,10 @@ export default {
}); });
}, },
editDialog(row) { editDialog(row) {
this.checkQuery = row;
this.checkQuery = JSON.parse(JSON.stringify(row));
// this.checkQuery = row;
this.editDialogVisible = true; this.editDialogVisible = true;
}, },
cancelDialog() { cancelDialog() {
@ -299,6 +302,7 @@ export default {
type: "success", type: "success",
message: "更新成功!", message: "更新成功!",
}); });
this.editDialogVisible = false;
} else { } else {
this.$message.warning("更新失败"); this.$message.warning("更新失败");
this.loading = false; this.loading = false;

Loading…
Cancel
Save