|
|
@ -39,6 +39,8 @@
|
|
|
|
</el-upload>
|
|
|
|
</el-upload>
|
|
|
|
<el-button type="primary" icon="search" @click="exportInvwarehouse">导出</el-button>
|
|
|
|
<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-button-group>
|
|
|
|
</el-form-item>
|
|
|
|
</el-form-item>
|
|
|
|
</el-form>
|
|
|
|
</el-form>
|
|
|
@ -604,7 +606,7 @@
|
|
|
|
<script>
|
|
|
|
<script>
|
|
|
|
import {
|
|
|
|
import {
|
|
|
|
filterList, filterAll,
|
|
|
|
filterList, filterAll,
|
|
|
|
saveWarehouse, exportJson,
|
|
|
|
saveWarehouse, exportJson, uploadStatus,
|
|
|
|
deleteWarehouse, warehouseBussinessTypeList,
|
|
|
|
deleteWarehouse, warehouseBussinessTypeList,
|
|
|
|
warehouseUserList, saveWarehouseBussinessType,
|
|
|
|
warehouseUserList, saveWarehouseBussinessType,
|
|
|
|
saveWarehouseUser, updateDirector,
|
|
|
|
saveWarehouseUser, updateDirector,
|
|
|
@ -942,6 +944,21 @@ export default {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return CurrentDate
|
|
|
|
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() {
|
|
|
|
exportInvwarehouse() {
|
|
|
|
let tquery = {};
|
|
|
|
let tquery = {};
|
|
|
|
exportJson(tquery).then((response) => {
|
|
|
|
exportJson(tquery).then((response) => {
|
|
|
|