|
|
|
@ -161,14 +161,14 @@
|
|
|
|
|
type="text"
|
|
|
|
|
size="small" :disabled="!configParms.basicInv"
|
|
|
|
|
@click.native.stop="addUser(scope.row)"
|
|
|
|
|
>添加用户
|
|
|
|
|
>管理用户
|
|
|
|
|
</el-button
|
|
|
|
|
>
|
|
|
|
|
<el-button
|
|
|
|
|
type="text"
|
|
|
|
|
size="small" :disabled="!configParms.basicInv"
|
|
|
|
|
@click.native.stop="addBussinessType(scope.row)"
|
|
|
|
|
>添加单据类型
|
|
|
|
|
>管理单据类型
|
|
|
|
|
</el-button
|
|
|
|
|
>
|
|
|
|
|
<el-button
|
|
|
|
@ -198,7 +198,10 @@
|
|
|
|
|
<el-table
|
|
|
|
|
:data="userData"
|
|
|
|
|
key="row.id"
|
|
|
|
|
style="width: 100%">
|
|
|
|
|
style="width: 100%"
|
|
|
|
|
highlight-current-row
|
|
|
|
|
@current-change="loadUserBusType"
|
|
|
|
|
>
|
|
|
|
|
<el-table-column label="序号" type="index"></el-table-column>
|
|
|
|
|
<el-table-column
|
|
|
|
|
prop="username"
|
|
|
|
@ -215,12 +218,6 @@
|
|
|
|
|
min-width="30%"
|
|
|
|
|
>
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-button
|
|
|
|
|
type="text"
|
|
|
|
|
size="small" :disabled="!configParms.basicInv"
|
|
|
|
|
@click.native="delWarehouseUser(scope.row.id)">
|
|
|
|
|
移除
|
|
|
|
|
</el-button>
|
|
|
|
|
<el-button
|
|
|
|
|
type="text"
|
|
|
|
|
size="small" :disabled="!configParms.basicInv"
|
|
|
|
@ -243,6 +240,9 @@
|
|
|
|
|
</el-card>
|
|
|
|
|
|
|
|
|
|
<el-card style="width: 49%; float: right; margin-left: 0px;">
|
|
|
|
|
<div slot="header" class="clearfix">
|
|
|
|
|
<span>{{ busTableTitle }}</span>
|
|
|
|
|
</div>
|
|
|
|
|
<el-table
|
|
|
|
|
:data="bussinessTypeData"
|
|
|
|
|
key="row.id"
|
|
|
|
@ -258,19 +258,6 @@
|
|
|
|
|
label="单据类型名称"
|
|
|
|
|
min-width="30%">
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column
|
|
|
|
|
label="操作"
|
|
|
|
|
min-width="20%"
|
|
|
|
|
>
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-button
|
|
|
|
|
type="text"
|
|
|
|
|
size="small" :disabled="!configParms.basicInv"
|
|
|
|
|
@click.native="delWarehouseBussinessType(scope.row.id)">
|
|
|
|
|
移除
|
|
|
|
|
</el-button>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
</el-table>
|
|
|
|
|
|
|
|
|
|
<el-pagination
|
|
|
|
@ -723,7 +710,7 @@
|
|
|
|
|
</div>
|
|
|
|
|
</el-dialog>
|
|
|
|
|
|
|
|
|
|
<!--用戶關聯單據類型-->
|
|
|
|
|
<!--用户关联单据类型-->
|
|
|
|
|
<el-dialog
|
|
|
|
|
title="业务类型关联"
|
|
|
|
|
:visible.sync="relBusUserVisile"
|
|
|
|
@ -745,7 +732,7 @@ import {
|
|
|
|
|
deleteWarehouse, warehouseBussinessTypeList,
|
|
|
|
|
warehouseUserList, saveWarehouseBussinessType,
|
|
|
|
|
saveWarehouseUser, updateDirector, disableWarehouse,
|
|
|
|
|
deleteWarehouseUser, deleteWarehouseBussinessType,
|
|
|
|
|
deleteWarehouseBussinessType,
|
|
|
|
|
bindThrWarehouse, unbindThrWarehouse, filterThridSubByInv, getThrsysDetail
|
|
|
|
|
} from "../../api/basic/invWarehouse";
|
|
|
|
|
import {
|
|
|
|
@ -762,6 +749,7 @@ import {findConfig} from "@/api/thrsys/spsSyncStatus";
|
|
|
|
|
import {isBlank} from "@/utils/strUtil";
|
|
|
|
|
import relBusUserDialog from "./invWarehouseRelBusTypes";
|
|
|
|
|
import {selectSysParamByKey} from "@/api/param/systemParamConfig";
|
|
|
|
|
import {filterUserBusTypeList} from "@/api/inventory/invRelBusTypes";
|
|
|
|
|
|
|
|
|
|
const formJson = {
|
|
|
|
|
id: null,
|
|
|
|
@ -898,6 +886,7 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
bussinessTypeTotal: 0,
|
|
|
|
|
curSeleUser: null,
|
|
|
|
|
busTableTitle: null
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
@ -1264,21 +1253,20 @@ export default {
|
|
|
|
|
this.subRadioCheck = row.id;
|
|
|
|
|
this.currentCode = row.code;
|
|
|
|
|
this.currentRow = row;
|
|
|
|
|
this.curSeleUser = null;
|
|
|
|
|
this.busTableTitle = row.name + " 仓库关联单据类型";
|
|
|
|
|
this.loadLinkData(row)
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
loadSubData(parentId) {
|
|
|
|
|
|
|
|
|
|
this.userData = [];
|
|
|
|
|
this.bussinessTypeData = [];
|
|
|
|
|
let subQuery = {
|
|
|
|
|
parentId: parentId,
|
|
|
|
|
}
|
|
|
|
|
filterSubAll(subQuery).then((res) => {
|
|
|
|
|
|
|
|
|
|
if (res.code == 20000) {
|
|
|
|
|
this.subList = res.data;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}).catch((error) => {
|
|
|
|
|
});
|
|
|
|
@ -1289,6 +1277,7 @@ export default {
|
|
|
|
|
this.busQuery.page = 1;
|
|
|
|
|
this.userQuery.code = row.code;
|
|
|
|
|
this.busQuery.code = row.code;
|
|
|
|
|
this.curSeleUser = null;
|
|
|
|
|
//加载用户数据
|
|
|
|
|
this.loadUserList();
|
|
|
|
|
|
|
|
|
@ -1308,16 +1297,21 @@ export default {
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
loadBusList(val) {
|
|
|
|
|
if (val != null) {
|
|
|
|
|
this.busQuery.page = val;
|
|
|
|
|
//根据是否选择用户切换不同的分页方法
|
|
|
|
|
if (this.curSeleUser == null) {
|
|
|
|
|
if (val != null) {
|
|
|
|
|
this.busQuery.page = val;
|
|
|
|
|
}
|
|
|
|
|
//加载单据类型数据
|
|
|
|
|
warehouseBussinessTypeList(this.busQuery).then((res) => {
|
|
|
|
|
this.bussinessTypeData = res.data.list;
|
|
|
|
|
this.busTotal = res.data.total;
|
|
|
|
|
}).catch((error) => {
|
|
|
|
|
this.$message.error("单据类型数据加载失败")
|
|
|
|
|
});
|
|
|
|
|
} else {
|
|
|
|
|
this.getUserBusTypeList(val);
|
|
|
|
|
}
|
|
|
|
|
//加载单据类型数据
|
|
|
|
|
warehouseBussinessTypeList(this.busQuery).then((res) => {
|
|
|
|
|
this.bussinessTypeData = res.data.list;
|
|
|
|
|
this.busTotal = res.data.total;
|
|
|
|
|
}).catch((error) => {
|
|
|
|
|
this.$message.error("单据类型数据加载失败")
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
addUser(row) {
|
|
|
|
|
this.currentCode = row.code;
|
|
|
|
@ -1499,27 +1493,6 @@ export default {
|
|
|
|
|
this.$message.error("设置失败");
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
delWarehouseUser(id) {
|
|
|
|
|
let params = {id: id};
|
|
|
|
|
deleteWarehouseUser(params).then((res) => {
|
|
|
|
|
|
|
|
|
|
if (res.code == 20000) {
|
|
|
|
|
this.$message.success("已移除");
|
|
|
|
|
for (let i = 0; i < this.userData.length; i++) {
|
|
|
|
|
if (this.userData[i].id == id) {
|
|
|
|
|
this.userData.splice(i, 1);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(res.message);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}).catch((error) => {
|
|
|
|
|
this.$message.error("移除失败");
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
relBusttype(row) {
|
|
|
|
|
this.curSeleUser = row;
|
|
|
|
@ -1694,8 +1667,28 @@ export default {
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
,
|
|
|
|
|
loadUserBusType(row) {
|
|
|
|
|
this.busTableTitle = row.employeeName + " 用户关联单据类型";
|
|
|
|
|
this.curSeleUser = row;
|
|
|
|
|
this.getUserBusTypeList(1);
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
getUserBusTypeList(page) {
|
|
|
|
|
let queryParam = {
|
|
|
|
|
subInvCode: this.currentCode,
|
|
|
|
|
userId: this.curSeleUser.userid,
|
|
|
|
|
page: page,
|
|
|
|
|
limit: 10
|
|
|
|
|
};
|
|
|
|
|
filterUserBusTypeList(queryParam).then((res) => {
|
|
|
|
|
if (res.code === 20000) {
|
|
|
|
|
this.bussinessTypeData = res.data.list || [];
|
|
|
|
|
this.bussinessTypeTotal = res.data.total || 0;
|
|
|
|
|
}
|
|
|
|
|
}).catch((error) => {
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
filters: {
|
|
|
|
|
statusFilterType(status) {
|
|
|
|
|
const statusMap = {
|
|
|
|
@ -1703,8 +1696,7 @@ export default {
|
|
|
|
|
1: "success",
|
|
|
|
|
};
|
|
|
|
|
return statusMap[status];
|
|
|
|
|
}
|
|
|
|
|
,
|
|
|
|
|
},
|
|
|
|
|
statusFilterName(status) {
|
|
|
|
|
const statusMap = {
|
|
|
|
|
0: "禁用",
|
|
|
|
@ -1712,12 +1704,9 @@ export default {
|
|
|
|
|
};
|
|
|
|
|
return statusMap[status];
|
|
|
|
|
}
|
|
|
|
|
,
|
|
|
|
|
}
|
|
|
|
|
,
|
|
|
|
|
},
|
|
|
|
|
mounted() {
|
|
|
|
|
}
|
|
|
|
|
,
|
|
|
|
|
},
|
|
|
|
|
components: {
|
|
|
|
|
relBusUserDialog,
|
|
|
|
|
},
|
|
|
|
@ -1727,9 +1716,7 @@ export default {
|
|
|
|
|
this.getList();
|
|
|
|
|
this.getSyncConfig();
|
|
|
|
|
}
|
|
|
|
|
,
|
|
|
|
|
}
|
|
|
|
|
;
|
|
|
|
|
};
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style type="text/scss" lang="scss">
|
|
|
|
|