|
|
@ -29,6 +29,7 @@
|
|
|
|
<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" @click.native="handleForm(null, null,'addTop')"
|
|
|
|
<el-button type="primary" @click.native="handleForm(null, null,'addTop')"
|
|
|
|
|
|
|
|
:disabled="!configParms.basicInv"
|
|
|
|
>添加仓库
|
|
|
|
>添加仓库
|
|
|
|
</el-button
|
|
|
|
</el-button
|
|
|
|
>
|
|
|
|
>
|
|
|
@ -42,9 +43,9 @@
|
|
|
|
:on-success="handleChange"
|
|
|
|
:on-success="handleChange"
|
|
|
|
:file-list="fileList"
|
|
|
|
:file-list="fileList"
|
|
|
|
>
|
|
|
|
>
|
|
|
|
<el-button size="mini" type="primary">导入</el-button>
|
|
|
|
<el-button size="mini" type="primary" :disabled="!configParms.basicInv">导入</el-button>
|
|
|
|
</el-upload>
|
|
|
|
</el-upload>
|
|
|
|
<el-button type="primary" icon="search" @click="exportInvwarehouse">导出</el-button>
|
|
|
|
<el-button type="primary" icon="search" @click="exportInvwarehouse" :disabled="!configParms.basicInv">导出</el-button>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</el-button-group>
|
|
|
|
</el-button-group>
|
|
|
@ -114,6 +115,7 @@
|
|
|
|
<el-button
|
|
|
|
<el-button
|
|
|
|
type="text"
|
|
|
|
type="text"
|
|
|
|
size="small"
|
|
|
|
size="small"
|
|
|
|
|
|
|
|
:disabled="!configParms.basicInv"
|
|
|
|
@click.native.stop="handleForm(node, scope.row, 'edit')"
|
|
|
|
@click.native.stop="handleForm(node, scope.row, 'edit')"
|
|
|
|
>编辑
|
|
|
|
>编辑
|
|
|
|
</el-button
|
|
|
|
</el-button
|
|
|
@ -121,7 +123,7 @@
|
|
|
|
<el-button
|
|
|
|
<el-button
|
|
|
|
type="text"
|
|
|
|
type="text"
|
|
|
|
size="small"
|
|
|
|
size="small"
|
|
|
|
:disabled="scope.row.code==1000 ||scope.row.code==1001"
|
|
|
|
:disabled="scope.row.code==1000 ||scope.row.code==1001 || !configParms.basicInv"
|
|
|
|
@click.native.stop="handleDel(node,scope.row)"
|
|
|
|
@click.native.stop="handleDel(node,scope.row)"
|
|
|
|
>删除
|
|
|
|
>删除
|
|
|
|
</el-button
|
|
|
|
</el-button
|
|
|
@ -135,7 +137,7 @@
|
|
|
|
<el-card style="width: 49%; float: left; margin-right: 0px;">
|
|
|
|
<el-card style="width: 49%; float: left; margin-right: 0px;">
|
|
|
|
<div slot="header" class="clearfix" style="margin-bottom: 20px;">
|
|
|
|
<div slot="header" class="clearfix" style="margin-bottom: 20px;">
|
|
|
|
<el-button style="float: right;" type="primary" @click="addUser()"
|
|
|
|
<el-button style="float: right;" type="primary" @click="addUser()"
|
|
|
|
:disabled="currentRow.status == 0">添加用户
|
|
|
|
:disabled="currentRow.status == 0 || !configParms.basicInv">添加用户
|
|
|
|
</el-button>
|
|
|
|
</el-button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<el-table
|
|
|
|
<el-table
|
|
|
@ -187,7 +189,7 @@
|
|
|
|
<el-card style="width: 49%; float: right; margin-left: 0px;">
|
|
|
|
<el-card style="width: 49%; float: right; margin-left: 0px;">
|
|
|
|
<div slot="header" class="clearfix" style="margin-bottom: 20px;">
|
|
|
|
<div slot="header" class="clearfix" style="margin-bottom: 20px;">
|
|
|
|
<el-button style="float: right;" @click="addBussinessType()" type="primary"
|
|
|
|
<el-button style="float: right;" @click="addBussinessType()" type="primary"
|
|
|
|
:disabled="currentRow.status == 0">添加单据类型
|
|
|
|
:disabled="currentRow.status == 0 || !configParms.basicInv">添加单据类型
|
|
|
|
</el-button>
|
|
|
|
</el-button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<el-table
|
|
|
|
<el-table
|
|
|
@ -601,6 +603,7 @@ import {getJoinBussinessType} from "../../api/basic/bussinessType";
|
|
|
|
import {formatDate} from "@/utils/date";
|
|
|
|
import {formatDate} from "@/utils/date";
|
|
|
|
import axios from "axios";
|
|
|
|
import axios from "axios";
|
|
|
|
import store from "@/store";
|
|
|
|
import store from "@/store";
|
|
|
|
|
|
|
|
import {findConfig} from "@/api/thrsys/spsSyncStatus";
|
|
|
|
|
|
|
|
|
|
|
|
const formJson = {
|
|
|
|
const formJson = {
|
|
|
|
id: null,
|
|
|
|
id: null,
|
|
|
@ -694,7 +697,8 @@ export default {
|
|
|
|
page: 1,
|
|
|
|
page: 1,
|
|
|
|
limit: 10
|
|
|
|
limit: 10
|
|
|
|
, thirdSysFk: "thirdId",
|
|
|
|
, thirdSysFk: "thirdId",
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
configParms: {},
|
|
|
|
};
|
|
|
|
};
|
|
|
|
},
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
methods: {
|
|
|
@ -1274,6 +1278,16 @@ export default {
|
|
|
|
hideThrWarehouseTable() {
|
|
|
|
hideThrWarehouseTable() {
|
|
|
|
this.thrWareHouseVisible = false;
|
|
|
|
this.thrWareHouseVisible = false;
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
getSyncConfig() {
|
|
|
|
|
|
|
|
findConfig()
|
|
|
|
|
|
|
|
.then((response) => {
|
|
|
|
|
|
|
|
if (response.code == 20000) {
|
|
|
|
|
|
|
|
this.configParms = response.data;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
.catch(() => {
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
filters: {
|
|
|
|
filters: {
|
|
|
|
statusFilterType(status) {
|
|
|
|
statusFilterType(status) {
|
|
|
@ -1297,6 +1311,7 @@ export default {
|
|
|
|
// 加载表格数据
|
|
|
|
// 加载表格数据
|
|
|
|
this.init();
|
|
|
|
this.init();
|
|
|
|
this.getList();
|
|
|
|
this.getList();
|
|
|
|
|
|
|
|
this.getSyncConfig();
|
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
</script>
|
|
|
|