|
|
|
@ -39,6 +39,8 @@
|
|
|
|
|
</el-upload>
|
|
|
|
|
<el-button type="primary" icon="search" @click="exportInvwarehouse">导出</el-button>
|
|
|
|
|
|
|
|
|
|
<el-button type="primary" icon="search" @click="uploadInvwarehouse">同步至UDI管理系统</el-button>
|
|
|
|
|
|
|
|
|
|
</el-button-group>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-form>
|
|
|
|
@ -138,11 +140,11 @@
|
|
|
|
|
stripe
|
|
|
|
|
style="width: 100%">
|
|
|
|
|
<el-table-column label="序号" type="index"></el-table-column>
|
|
|
|
|
<!-- <el-table-column-->
|
|
|
|
|
<!-- prop="username"-->
|
|
|
|
|
<!-- label="账号"-->
|
|
|
|
|
<!-- min-width="20%">-->
|
|
|
|
|
<!-- </el-table-column>-->
|
|
|
|
|
<!-- <el-table-column-->
|
|
|
|
|
<!-- prop="username"-->
|
|
|
|
|
<!-- label="账号"-->
|
|
|
|
|
<!-- min-width="20%">-->
|
|
|
|
|
<!-- </el-table-column>-->
|
|
|
|
|
<el-table-column
|
|
|
|
|
prop="employeeName"
|
|
|
|
|
label="用户名"
|
|
|
|
@ -604,7 +606,7 @@
|
|
|
|
|
<script>
|
|
|
|
|
import {
|
|
|
|
|
filterList, filterAll,
|
|
|
|
|
saveWarehouse, exportJson,
|
|
|
|
|
saveWarehouse, exportJson, uploadStatus,
|
|
|
|
|
deleteWarehouse, warehouseBussinessTypeList,
|
|
|
|
|
warehouseUserList, saveWarehouseBussinessType,
|
|
|
|
|
saveWarehouseUser, updateDirector,
|
|
|
|
@ -626,7 +628,7 @@ const formJson = {
|
|
|
|
|
status: 1,
|
|
|
|
|
advanceType: false,
|
|
|
|
|
isDefault: false,
|
|
|
|
|
level:1,
|
|
|
|
|
level: 1,
|
|
|
|
|
};
|
|
|
|
|
export default {
|
|
|
|
|
data() {
|
|
|
|
@ -691,7 +693,7 @@ export default {
|
|
|
|
|
selectUserList: [],
|
|
|
|
|
selectBussinessTypeList: [],
|
|
|
|
|
bussinessTypeFormVisible: false,
|
|
|
|
|
thrWarehouseData : null,
|
|
|
|
|
thrWarehouseData: null,
|
|
|
|
|
currentId: null,
|
|
|
|
|
thrWareHouseVisible: false,
|
|
|
|
|
sysList: [],
|
|
|
|
@ -942,6 +944,21 @@ export default {
|
|
|
|
|
}
|
|
|
|
|
return CurrentDate
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
uploadInvwarehouse() {
|
|
|
|
|
let tempQuery = {};
|
|
|
|
|
uploadStatus(tempQuery)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
if (response.code == 20000) {
|
|
|
|
|
this.$message.success(response.data);
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(response.message);
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
exportInvwarehouse() {
|
|
|
|
|
let tquery = {};
|
|
|
|
|
exportJson(tquery).then((response) => {
|
|
|
|
@ -996,7 +1013,7 @@ export default {
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
changeLevel(row) {
|
|
|
|
|
this.formData.pcode =null;
|
|
|
|
|
this.formData.pcode = null;
|
|
|
|
|
this.getParentInv(this.formData.level);
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
@ -1220,7 +1237,7 @@ export default {
|
|
|
|
|
this.$message.error("第三方仓库数据加载失败");
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
changeThrWarehouse(row){
|
|
|
|
|
changeThrWarehouse(row) {
|
|
|
|
|
this.checkThrWarehouseRow = row;
|
|
|
|
|
},
|
|
|
|
|
hideThrWarehouseTable() {
|
|
|
|
|