|
|
|
@ -4,8 +4,8 @@
|
|
|
|
|
<el-form :inline="true" :model="filterQuery" class="query-form" size="mini">
|
|
|
|
|
<el-form-item class="query-form-item" label="单据类型:">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="filterQuery.name"
|
|
|
|
|
placeholder="请输入单据类型"
|
|
|
|
|
v-model="filterQuery.name"
|
|
|
|
|
placeholder="请输入单据类型"
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item class="query-form-item" label="出入库类型:">
|
|
|
|
@ -31,13 +31,13 @@
|
|
|
|
|
>
|
|
|
|
|
<el-button type="primary" icon="el-icon-download" @click="exportJsonFile">导出单据类型</el-button>
|
|
|
|
|
<el-upload
|
|
|
|
|
:action="uploadFileUrl"
|
|
|
|
|
multiple
|
|
|
|
|
:limit="3"
|
|
|
|
|
:headers="headers"
|
|
|
|
|
:show-file-list="false"
|
|
|
|
|
:on-success="handleChange"
|
|
|
|
|
:file-list="fileList"
|
|
|
|
|
:action="uploadFileUrl"
|
|
|
|
|
multiple
|
|
|
|
|
:limit="3"
|
|
|
|
|
:headers="headers"
|
|
|
|
|
:show-file-list="false"
|
|
|
|
|
:on-success="handleChange"
|
|
|
|
|
:file-list="fileList"
|
|
|
|
|
>
|
|
|
|
|
<el-button icon="el-icon-upload2" type="primary">导入单据类型</el-button>
|
|
|
|
|
</el-upload>
|
|
|
|
@ -78,15 +78,15 @@
|
|
|
|
|
<el-table-column label="操作">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-button
|
|
|
|
|
type="text"
|
|
|
|
|
@click.native.stop="handleModifyClick(scope.row)"
|
|
|
|
|
type="text"
|
|
|
|
|
@click.native.stop="handleModifyClick(scope.row)"
|
|
|
|
|
>编辑
|
|
|
|
|
</el-button
|
|
|
|
|
>
|
|
|
|
|
<el-button
|
|
|
|
|
type="text"
|
|
|
|
|
:disabled="!configParams.typeScan"
|
|
|
|
|
@click.native.stop="deleteDialog(scope.row)"
|
|
|
|
|
type="text"
|
|
|
|
|
:disabled="!configParams.typeScan"
|
|
|
|
|
@click.native.stop="deleteDialog(scope.row)"
|
|
|
|
|
>删除
|
|
|
|
|
</el-button
|
|
|
|
|
>
|
|
|
|
@ -96,14 +96,14 @@
|
|
|
|
|
</el-table>
|
|
|
|
|
|
|
|
|
|
<el-dialog
|
|
|
|
|
title="新增扫码单据类型"
|
|
|
|
|
:visible.sync="addDialogVisible"
|
|
|
|
|
:close-on-click-modal="false"
|
|
|
|
|
:close-on-press-escape="false"
|
|
|
|
|
v-if="addDialogVisible"
|
|
|
|
|
class="dialog-two"
|
|
|
|
|
width="60%"
|
|
|
|
|
top="5vh"
|
|
|
|
|
title="新增扫码单据类型"
|
|
|
|
|
:visible.sync="addDialogVisible"
|
|
|
|
|
:close-on-click-modal="false"
|
|
|
|
|
:close-on-press-escape="false"
|
|
|
|
|
v-if="addDialogVisible"
|
|
|
|
|
class="dialog-two"
|
|
|
|
|
width="60%"
|
|
|
|
|
top="5vh"
|
|
|
|
|
>
|
|
|
|
|
<modifyDialog :inputQuery="inputQuery"></modifyDialog>
|
|
|
|
|
<div slot="footer" class="dialog-footer">
|
|
|
|
@ -120,12 +120,12 @@
|
|
|
|
|
</el-dialog>
|
|
|
|
|
|
|
|
|
|
<el-dialog
|
|
|
|
|
title="编辑单据类型"
|
|
|
|
|
:visible.sync="modifyDialogVisible"
|
|
|
|
|
width="70%"
|
|
|
|
|
:close-on-click-modal="false"
|
|
|
|
|
:close-on-press-escape="false"
|
|
|
|
|
v-if="modifyDialogVisible"
|
|
|
|
|
title="编辑单据类型"
|
|
|
|
|
:visible.sync="modifyDialogVisible"
|
|
|
|
|
width="70%"
|
|
|
|
|
:close-on-click-modal="false"
|
|
|
|
|
:close-on-press-escape="false"
|
|
|
|
|
v-if="modifyDialogVisible"
|
|
|
|
|
>
|
|
|
|
|
<modifyDialog :inputQuery="inputQuery" :modifySubmit="onModifySubmit"></modifyDialog>
|
|
|
|
|
<div style="text-align: center;margin-top: 12px">
|
|
|
|
@ -142,11 +142,11 @@
|
|
|
|
|
</el-dialog>
|
|
|
|
|
|
|
|
|
|
<pagination
|
|
|
|
|
v-show="total>0"
|
|
|
|
|
:total="total"
|
|
|
|
|
:limit.sync="filterQuery.limit"
|
|
|
|
|
:page.sync="filterQuery.page"
|
|
|
|
|
@pagination="getList"
|
|
|
|
|
v-show="total>0"
|
|
|
|
|
:total="total"
|
|
|
|
|
:limit.sync="filterQuery.limit"
|
|
|
|
|
:page.sync="filterQuery.page"
|
|
|
|
|
@pagination="getList"
|
|
|
|
|
></pagination>
|
|
|
|
|
</el-card>
|
|
|
|
|
</div>
|
|
|
|
@ -223,11 +223,12 @@ export default {
|
|
|
|
|
originAction: null,
|
|
|
|
|
checkBalance: null,
|
|
|
|
|
secCheckBalance: null,
|
|
|
|
|
preInBack: null,
|
|
|
|
|
preInBack: true,
|
|
|
|
|
vailDispatch: null,
|
|
|
|
|
vailGroupBuy: null,
|
|
|
|
|
inStock: null,
|
|
|
|
|
actionType: null,
|
|
|
|
|
inStock: false,
|
|
|
|
|
actionType: 0,
|
|
|
|
|
fillCodeRel: false,
|
|
|
|
|
|
|
|
|
|
thrCheckEnable: null,
|
|
|
|
|
thrCheckWebNew: null,
|
|
|
|
@ -239,7 +240,9 @@ export default {
|
|
|
|
|
thrCheckChange: null,
|
|
|
|
|
thrCheckBalance: null,
|
|
|
|
|
thrCheckCopy: null,
|
|
|
|
|
|
|
|
|
|
checkVailDate:true, //校验近效期
|
|
|
|
|
checkExpire:true, //校验过期
|
|
|
|
|
checkCertExpire:true, //校验证书过期
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
enableMap: {
|
|
|
|
@ -287,20 +290,20 @@ export default {
|
|
|
|
|
getList() {
|
|
|
|
|
this.loading = true;
|
|
|
|
|
getBusTypeList(this.filterQuery)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
if (response.code === 20000) {
|
|
|
|
|
this.list = response.data.list || [];
|
|
|
|
|
this.total = response.data.total || 0;
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(response.message);
|
|
|
|
|
}
|
|
|
|
|
this.loading = false;
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
this.list = [];
|
|
|
|
|
this.total = 0;
|
|
|
|
|
});
|
|
|
|
|
.then((response) => {
|
|
|
|
|
if (response.code === 20000) {
|
|
|
|
|
this.list = response.data.list || [];
|
|
|
|
|
this.total = response.data.total || 0;
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(response.message);
|
|
|
|
|
}
|
|
|
|
|
this.loading = false;
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
this.list = [];
|
|
|
|
|
this.total = 0;
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
handleCurrentChange(val) {
|
|
|
|
|
this.filterQuery.page = val;
|
|
|
|
@ -330,23 +333,23 @@ export default {
|
|
|
|
|
this.$message.error("请选择是否更改库存!");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (isBlank(this.inputQuery.busType)) {
|
|
|
|
|
this.$message.error("请选择特定页面!");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
// if (isBlank(this.inputQuery.busType)) {
|
|
|
|
|
// this.$message.error("请选择特定页面!");
|
|
|
|
|
// return;
|
|
|
|
|
// }
|
|
|
|
|
insertBusType(this.inputQuery)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
if (response.code == 20000) {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
this.cancelDialog();
|
|
|
|
|
this.getList();
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(response.message);
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
.then((response) => {
|
|
|
|
|
if (response.code == 20000) {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
});
|
|
|
|
|
this.cancelDialog();
|
|
|
|
|
this.getList();
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(response.message);
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
onModifySubmit() {
|
|
|
|
@ -371,32 +374,32 @@ export default {
|
|
|
|
|
this.$message.error("请选择是否更改库存!");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (isBlank(this.inputQuery.busType)) {
|
|
|
|
|
this.$message.error("请选择特定页面!");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
// if (isBlank(this.inputQuery.busType)) {
|
|
|
|
|
// this.$message.error("请选择特定页面!");
|
|
|
|
|
// return;
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
updateBusType(this.inputQuery)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
if (response.code == 20000) {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
this.cancelDialog();
|
|
|
|
|
this.getList();
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(response.message);
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
.then((response) => {
|
|
|
|
|
if (response.code == 20000) {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
this.cancelDialog();
|
|
|
|
|
});
|
|
|
|
|
this.getList();
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(response.message);
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
this.cancelDialog();
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
exportJsonFile() {
|
|
|
|
|
exportFile().then((response) => {
|
|
|
|
|
const binaryData = [];
|
|
|
|
|
binaryData.push(response);
|
|
|
|
|
let url = window.URL.createObjectURL(
|
|
|
|
|
new Blob(binaryData, {type: "application/json"})
|
|
|
|
|
new Blob(binaryData, {type: "application/json"})
|
|
|
|
|
);
|
|
|
|
|
this.loading = false;
|
|
|
|
|
const eleLink = document.createElement('a');
|
|
|
|
@ -464,11 +467,12 @@ export default {
|
|
|
|
|
advanceType: null,
|
|
|
|
|
preIn: null,
|
|
|
|
|
originAction: null,
|
|
|
|
|
preInBack: null,
|
|
|
|
|
preInBack: true,
|
|
|
|
|
vailDispatch: null,
|
|
|
|
|
vailGroupBuy: null,
|
|
|
|
|
inStock: null,
|
|
|
|
|
actionType: null,
|
|
|
|
|
inStock: false,
|
|
|
|
|
actionType: 0,
|
|
|
|
|
fillCodeRel: false,
|
|
|
|
|
thrCheckEnable: null,
|
|
|
|
|
thrCheckWebNew: null,
|
|
|
|
|
thrCheckPdaUn: null,
|
|
|
|
@ -479,6 +483,10 @@ export default {
|
|
|
|
|
thrCheckChange: null,
|
|
|
|
|
thrCheckBalance: null,
|
|
|
|
|
thrCheckCopy: null,
|
|
|
|
|
|
|
|
|
|
checkVailDate:true, //校验近效期
|
|
|
|
|
checkExpire:true, //校验过期
|
|
|
|
|
checkCertExpire:true, //校验证书过期
|
|
|
|
|
}
|
|
|
|
|
this.addDialogVisible = true;
|
|
|
|
|
},
|
|
|
|
@ -494,11 +502,11 @@ export default {
|
|
|
|
|
cancelButtonText: "取消",
|
|
|
|
|
type: "warning",
|
|
|
|
|
})
|
|
|
|
|
.then(() => {
|
|
|
|
|
this.deleteOrders(rowId);
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
});
|
|
|
|
|
.then(() => {
|
|
|
|
|
this.deleteOrders(rowId);
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
deleteOrders(data) {
|
|
|
|
@ -507,20 +515,20 @@ export default {
|
|
|
|
|
id: data.id + "",
|
|
|
|
|
};
|
|
|
|
|
deleteBusType(tquery)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.getList();
|
|
|
|
|
if (response.code == 20000) {
|
|
|
|
|
this.$message({
|
|
|
|
|
type: "success",
|
|
|
|
|
message: "删除成功!",
|
|
|
|
|
});
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(response.message);
|
|
|
|
|
}
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.getList();
|
|
|
|
|
if (response.code == 20000) {
|
|
|
|
|
this.$message({
|
|
|
|
|
type: "success",
|
|
|
|
|
message: "删除成功!",
|
|
|
|
|
});
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(response.message);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
});
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
handleChange(response, files, fileList) {
|
|
|
|
|
if (response.code != 20000) {
|
|
|
|
@ -543,13 +551,13 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
getSyncConfig() {
|
|
|
|
|
findConfig()
|
|
|
|
|
.then((response) => {
|
|
|
|
|
if (response.code == 20000) {
|
|
|
|
|
this.configParams = response.data;
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
});
|
|
|
|
|
.then((response) => {
|
|
|
|
|
if (response.code == 20000) {
|
|
|
|
|
this.configParams = response.data;
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
components: {
|
|
|
|
|