|
|
@ -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 type="primary" icon="search" @click="uploadInvwarehouse">同步至UDI管理系统</el-button>-->
|
|
|
|
<!-- <el-button type="primary" icon="search" @click="uploadInvwarehouse">同步至UDI管理系统</el-button>-->
|
|
|
|
|
|
|
|
|
|
|
@ -115,6 +116,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
|
|
|
@ -122,7 +124,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
|
|
|
@ -136,7 +138,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
|
|
|
@ -188,7 +190,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
|
|
|
@ -594,6 +596,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,
|
|
|
@ -687,7 +690,8 @@ export default {
|
|
|
|
page: 1,
|
|
|
|
page: 1,
|
|
|
|
limit: 10
|
|
|
|
limit: 10
|
|
|
|
, thirdSysFk: "thirdId",
|
|
|
|
, thirdSysFk: "thirdId",
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
configParms: {}
|
|
|
|
};
|
|
|
|
};
|
|
|
|
},
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
methods: {
|
|
|
@ -1267,6 +1271,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) {
|
|
|
@ -1290,6 +1304,7 @@ export default {
|
|
|
|
// 加载表格数据
|
|
|
|
// 加载表格数据
|
|
|
|
this.init();
|
|
|
|
this.init();
|
|
|
|
this.getList();
|
|
|
|
this.getList();
|
|
|
|
|
|
|
|
this.getSyncConfig();
|
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
</script>
|
|
|
|