代码备份

master
anthonyywj2 3 years ago
parent 10bea3a4e2
commit fa54506818

@ -1,139 +1,139 @@
<template>
<div>
<el-form :inline="true" :model="filterQuery" class="query-form" size="mini">
<el-form-item class="query-form-item">
<el-input
v-model="filterQuery.action"
placeholder="业务类型"
style="width: 400px"
></el-input>
</el-form-item>
<el-form-item class="query-form-item">
<el-select v-model="filterQuery.enable" placeholder="启用状态" clearable>
<el-option label="全部" value=""></el-option>
<el-option label="已启用" value="1"></el-option>
<el-option label="未启用" value="0"></el-option>
</el-select>
</el-form-item>
<el-form-item>
<el-button-group style="margin-left: 10px;display:flex;">
<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="handleAddClick"></el-button>
<el-button type="primary" icon="search" @click="exportJsonFile"></el-button>
<!-- <el-upload-->
<!-- :action="uploadFileUrl"-->
<!-- multiple-->
<!-- :limit="3"-->
<!-- :show-file-list="false"-->
<!-- :on-success="handleChange"-->
<!-- :file-list="fileList"-->
<!-- >-->
<!-- <el-button size="mini" type="primary">导入单据类型</el-button>-->
<!-- </el-upload>-->
</el-button-group>
<div>
<el-form :inline="true" :model="filterQuery" class="query-form" size="mini">
<el-form-item class="query-form-item">
<el-input
v-model="filterQuery.action"
placeholder="业务类型"
style="width: 400px"
></el-input>
</el-form-item>
<el-form-item class="query-form-item">
<el-select v-model="filterQuery.enable" placeholder="启用状态" clearable>
<el-option label="全部" value=""></el-option>
<el-option label="已启用" value="1"></el-option>
<el-option label="未启用" value="0"></el-option>
</el-select>
</el-form-item>
<el-form-item>
<el-button-group style="margin-left: 10px;display:flex;">
<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="handleAddClick"></el-button>
<el-button type="primary" icon="search" @click="exportJsonFile"></el-button>
<!-- <el-upload-->
<!-- :action="uploadFileUrl"-->
<!-- multiple-->
<!-- :limit="3"-->
<!-- :show-file-list="false"-->
<!-- :on-success="handleChange"-->
<!-- :file-list="fileList"-->
<!-- >-->
<!-- <el-button size="mini" type="primary">导入单据类型</el-button>-->
<!-- </el-upload>-->
</el-button-group>
</el-form-item>
</el-form>
</el-form-item>
</el-form>
<el-table v-loading="loading" :data="list" style="width: 100%">
<el-table-column label="序号" type="index" width="55" fixed></el-table-column>
<el-table-column label="扫码单据类型代码" prop="action" fixed></el-table-column>
<el-table-column label="扫码单据名称" prop="name" fixed></el-table-column>
<el-table-column label="出入库类型代码" prop="mainAction" fixed>
<template slot-scope="scope">
<span>{{ formMap[scope.row.mainAction] }}</span>
</template>
</el-table-column>
<el-table v-loading="loading" :data="list" style="width: 100%">
<el-table-column label="序号" type="index" width="55" fixed></el-table-column>
<el-table-column label="扫码单据类型代码" prop="action" fixed></el-table-column>
<el-table-column label="扫码单据名称" prop="name" fixed></el-table-column>
<el-table-column label="出入库类型代码" prop="mainAction" fixed>
<template slot-scope="scope">
<span>{{ formMap[scope.row.mainAction] }}</span>
</template>
</el-table-column>
<el-table-column label="业务单据类型" prop="localAction" fixed>
<el-table-column label="业务单据类型" prop="localAction" fixed>
<template slot-scope="scope">
<span>{{ getActionName(scope.row.localAction) }}</span>
</template>
</el-table-column>
<el-table-column label="第三方单据类型" prop="thirdAction" fixed></el-table-column>
<el-table-column label="是否启用" prop="enable" fixed>
<template slot-scope="scope">
<span>{{ enableMap[scope.row.enable] }}</span>
</template>
</el-table-column>
<el-table-column label="操作" fixed="right">
<template slot-scope="scope">
<el-button
type="text"
size="small"
@click.native.stop="handleModifyClick(scope.row)"
>编辑
</el-button
>
<el-button
type="text"
size="small"
@click.native.stop="deleteDialog(scope.row)"
>删除
</el-button
>
</template>
</el-table-column>
</el-table>
<template slot-scope="scope">
<span>{{ getActionName(scope.row.localAction) }}</span>
</template>
</el-table-column>
<el-table-column label="第三方单据类型" prop="thirdAction" fixed></el-table-column>
<el-table-column label="是否启用" prop="enable" fixed>
<template slot-scope="scope">
<span>{{ enableMap[scope.row.enable] }}</span>
</template>
</el-table-column>
<el-table-column label="操作" fixed="right">
<template slot-scope="scope">
<el-button
type="text"
size="small"
@click.native.stop="handleModifyClick(scope.row)"
>编辑
</el-button
>
<el-button
type="text"
size="small"
@click.native.stop="deleteDialog(scope.row)"
>删除
</el-button
>
</template>
</el-table-column>
</el-table>
<el-dialog
title="新增扫码单据类型关联"
:visible.sync="addDialogVisible"
width="70%"
:close-on-click-modal="false"
:close-on-press-escape="false"
v-if="addDialogVisible"
<el-dialog
title="新增扫码单据类型关联"
:visible.sync="addDialogVisible"
width="70%"
:close-on-click-modal="false"
:close-on-press-escape="false"
v-if="addDialogVisible"
>
<modifyDialog :inputQuery="inputQuery"></modifyDialog>
<div style="text-align: center">
<el-button type="primary" size="small" icon="search" @click="onAddSubmit"
>提交
</el-button
>
<modifyDialog :inputQuery="inputQuery"></modifyDialog>
<div style="text-align: center">
<el-button type="primary" size="small" icon="search" @click="onAddSubmit"
>提交
</el-button
>
<el-button type="primary" size="small" icon="search" @click="cancelDialog"
>取消
</el-button
>
</div>
</el-dialog>
<el-button type="primary" size="small" icon="search" @click="cancelDialog"
>取消
</el-button
>
</div>
</el-dialog>
<el-dialog
title="编辑扫码单据类型关联"
:visible.sync="modifyDialogVisible"
width="70%"
:close-on-click-modal="false"
:close-on-press-escape="false"
v-if="modifyDialogVisible"
<el-dialog
title="编辑扫码单据类型关联"
:visible.sync="modifyDialogVisible"
width="70%"
:close-on-click-modal="false"
:close-on-press-escape="false"
v-if="modifyDialogVisible"
>
<modifyDialog :inputQuery="inputQuery"></modifyDialog>
<div style="text-align: center">
<el-button type="primary" size="small" icon="search" @click="onModifySubmit"
>提交
</el-button
>
<el-button type="primary" size="small" icon="search" @click="cancelDialog"
>取消
</el-button
>
<modifyDialog :inputQuery="inputQuery"></modifyDialog>
<div style="text-align: center">
<el-button type="primary" size="small" icon="search" @click="onModifySubmit"
>提交
</el-button
>
<el-button type="primary" size="small" icon="search" @click="cancelDialog"
>取消
</el-button
>
</div>
</el-dialog>
<el-pagination
:page-size="filterQuery.limit"
@current-change="handleCurrentChange"
layout="prev, pager, next"
:total="total"
></el-pagination>
</div>
</div>
</el-dialog>
<el-pagination
:page-size="filterQuery.limit"
@current-change="handleCurrentChange"
layout="prev, pager, next"
:total="total"
></el-pagination>
</div>
</template>
<script>
import {
getJoinBussinessType,
deleteBussinessType,
updateBussinessType,
insertBussinessType,
exportFile
getJoinBussinessType,
deleteBussinessType,
updateBussinessType,
insertBussinessType,
exportFile
} from "../../api/basic/bussinessType";
import modifyDialog from "./BussinessTypeModify";
@ -141,268 +141,276 @@ import axios from "axios";
import {getLocalJoinBusType} from "@/api/basic/busLocalType";
export default {
data() {
return {
filterQuery: {
enable: "1",
udiwmsType: "",
thirdType: "",
page: 1,
limit: 20,
},
addDialogVisible: false,
modifyDialogVisible: false,
list: [],
inputQuery: {
action: "",
name: "",
enable: "",
remark: "",
mainAction: "",
thirdSysFk: "",
id: "",
localAction: null,
checkEnable: false,
genUnit: false,
innerOrder: false,
spUse: null,
secCheckEnable: null,
checkUdims: null,
checkPdaEd: null,
checkPdaUn: null,
checkPc: null,
checkWebNew: null,
checkChange: null,
secCheckUdims: null,
secCheckPdaEd: null,
secCheckPdaUn: null,
secCheckPc: null,
secCheckWebNew: null,
secCheckChange: null,
thirdAction: null,
},
enableMap: {
true: "是",
false: "否",
},
data() {
return {
filterQuery: {
enable: "1",
udiwmsType: "",
thirdType: "",
page: 1,
limit: 20,
},
addDialogVisible: false,
modifyDialogVisible: false,
list: [],
inputQuery: {
action: "",
name: "",
enable: "",
remark: "",
mainAction: "",
thirdSysFk: "",
id: "",
localAction: null,
checkEnable: false,
genUnit: false,
innerOrder: false,
spUse: null,
secCheckEnable: null,
checkUdims: null,
checkPdaEd: null,
checkPdaUn: null,
checkPc: null,
checkWebNew: null,
checkChange: null,
secCheckUdims: null,
secCheckPdaEd: null,
secCheckPdaUn: null,
secCheckPc: null,
secCheckWebNew: null,
secCheckChange: null,
thirdAction: null,
corpType: null,
storageCode: null,
secCheckSp: null,
checkSp: null,
},
enableMap: {
true: "是",
false: "否",
},
formMap: {
WareHouseIn: "入库",
WareHouseOut: "出库",
},
formMap: {
WareHouseIn: "入库",
WareHouseOut: "出库",
},
total: 0,
multipleSelection: [],
uploadFileUrl: null,
};
},
total: 0,
multipleSelection: [],
uploadFileUrl: null,
};
methods: {
onReset() {
this.$router.push({
path: "",
});
this.filterQuery = {
enable: null,
udiwmsType: "",
thirdType: "",
page: 1,
limit: 20,
};
this.getList();
},
cancelDialog() {
this.modifyDialogVisible = false;
this.addDialogVisible = false;
},
methods: {
onReset() {
this.$router.push({
path: "",
});
this.filterQuery = {
enable: null,
udiwmsType: "",
thirdType: "",
page: 1,
limit: 20,
};
this.getList();
},
cancelDialog() {
this.modifyDialogVisible = false;
this.addDialogVisible = false;
},
getList() {
this.loading = true;
getJoinBussinessType(this.filterQuery)
.then((response) => {
this.loading = false;
this.list = response.data.list || [];
this.total = response.data.total || 0;
})
.catch(() => {
this.loading = false;
this.list = [];
this.total = 0;
});
},
handleCurrentChange(val) {
this.filterQuery.page = val;
this.getList();
},
getList() {
this.loading = true;
getJoinBussinessType(this.filterQuery)
.then((response) => {
this.loading = false;
this.list = response.data.list || [];
this.total = response.data.total || 0;
})
.catch(() => {
this.loading = false;
this.list = [];
this.total = 0;
});
},
handleCurrentChange(val) {
this.filterQuery.page = val;
onAddSubmit() {
insertBussinessType(this.inputQuery)
.then((response) => {
this.loading = false;
this.cancelDialog();
this.getList();
},
onAddSubmit() {
insertBussinessType(this.inputQuery)
.then((response) => {
this.loading = false;
this.cancelDialog();
this.getList();
})
.catch(() => {
this.loading = false;
this.cancelDialog();
});
},
onModifySubmit() {
updateBussinessType(this.inputQuery)
.then((response) => {
this.loading = false;
this.cancelDialog();
this.getList();
})
.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"})
);
this.loading = false;
const eleLink = document.createElement('a');
// var timestamp = "yyyy-MM-dd_hh:mm";
eleLink.download = "扫码单据类型导出" + ".json";
eleLink.style.display = 'none';
eleLink.href = url;
document.body.appendChild(eleLink)
eleLink.click()
document.body.removeChild(eleLink)
}).catch(() => {
this.loading = false;
});
},
})
.catch(() => {
this.loading = false;
this.cancelDialog();
});
},
onModifySubmit() {
updateBussinessType(this.inputQuery)
.then((response) => {
this.loading = false;
this.cancelDialog();
this.getList();
})
.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"})
);
this.loading = false;
const eleLink = document.createElement('a');
// var timestamp = "yyyy-MM-dd_hh:mm";
eleLink.download = "扫码单据类型导出" + ".json";
eleLink.style.display = 'none';
eleLink.href = url;
document.body.appendChild(eleLink)
eleLink.click()
document.body.removeChild(eleLink)
}).catch(() => {
this.loading = false;
});
},
handleAddClick() {
this.inputQuery = {};
this.addDialogVisible = true;
},
handleModifyClick(row) {
this.modifyDialogVisible = true;
this.inputQuery = null;
this.inputQuery = {
id: row.id,
remark: row.remark,
action: row.action,
name: row.name,
enable: row.enable,
mainAction: row.mainAction,
localAction: row.localAction,
thirdSysFk: row.thirdSysFk,
checkEnable: row.checkEnable,
genUnit: row.genUnit,
innerOrder: row.innerOrder,
spUse: row.spUse,
secCheckEnable: row.secCheckEnable,
checkUdims: row.checkUdims,
checkPdaEd: row.checkPdaEd,
checkPdaUn: row.checkPdaUn,
checkPc: row.checkPc,
checkWebNew: row.checkWebNew,
checkChange: row.checkChange,
secCheckUdims: row.secCheckUdims,
secCheckPdaEd: row.secCheckPdaEd,
secCheckPdaUn: row.secCheckPdaUn,
secCheckPc: row.secCheckPc,
secCheckWebNew: row.secCheckWebNew,
secCheckChange: row.secCheckChange,
thirdAction: row.thirdAction,
};
},
handleAddClick() {
this.inputQuery = {};
this.addDialogVisible = true;
},
deleteDialog(rowId) {
this.$confirm("此操作将永久删除该业务类型信息, 是否继续?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
})
.then(() => {
this.deleteOrders(rowId);
})
.catch(() => {
});
},
handleModifyClick(row) {
this.modifyDialogVisible = true;
this.inputQuery = null;
this.inputQuery = {
id: row.id,
remark: row.remark,
action: row.action,
name: row.name,
enable: row.enable,
mainAction: row.mainAction,
localAction: row.localAction,
thirdSysFk: row.thirdSysFk,
checkEnable: row.checkEnable,
genUnit: row.genUnit,
innerOrder: row.innerOrder,
spUse: row.spUse,
secCheckEnable: row.secCheckEnable,
checkUdims: row.checkUdims,
checkPdaEd: row.checkPdaEd,
checkPdaUn: row.checkPdaUn,
checkPc: row.checkPc,
checkWebNew: row.checkWebNew,
checkChange: row.checkChange,
secCheckUdims: row.secCheckUdims,
secCheckPdaEd: row.secCheckPdaEd,
secCheckPdaUn: row.secCheckPdaUn,
secCheckPc: row.secCheckPc,
secCheckWebNew: row.secCheckWebNew,
secCheckChange: row.secCheckChange,
thirdAction: row.thirdAction,
corpType: row.corpType + "",
storageCode: row.storageCode,
secCheckSp: row.secCheckSp,
checkSp: row.checkSp,
};
},
deleteDialog(rowId) {
this.$confirm("此操作将永久删除该业务类型信息, 是否继续?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
})
.then(() => {
this.deleteOrders(rowId);
})
.catch(() => {
});
},
getActionName(action) {
for (let i = 0; i < this.busTypes.length; i++) {
if (this.busTypes[i].localAction === action) {
return this.busTypes[i].localName;
}
}
},
getBusType() {
let query = {
enabled: true,
};
getLocalJoinBusType(query)
.then((response) => {
this.busTypes = response.data.list || [];
})
.catch(() => {
});
},
deleteOrders(data) {
this.loading = true;
let tquery = {
id: data.id + "",
};
getActionName(action) {
for (let i = 0; i < this.busTypes.length; i++) {
if (this.busTypes[i].localAction === action) {
return this.busTypes[i].localName;
}
}
},
getBusType() {
let query = {
enabled: true,
};
getLocalJoinBusType(query)
.then((response) => {
this.busTypes = response.data.list || [];
})
.catch(() => {
});
},
deleteBussinessType(tquery)
.then((response) => {
this.getList();
if (response.code == 20000) {
this.$message({
type: "success",
message: "删除成功!",
});
} else {
this.$message.error(response.message);
}
deleteOrders(data) {
this.loading = true;
let tquery = {
id: data.id + "",
};
})
.catch(() => {
});
},
init() {
axios.get("./config.json").then(res => {
//
let response = res.data.BASE_URL;
this.uploadFileUrl = response + "udiwms/busstiness/file/upload";
});
},
handleChange(response, files, fileList) {
console.log(response);
if (response.code != 20000) {
this.$message.error(response.message);
deleteBussinessType(tquery)
.then((response) => {
this.getList();
if (response.code == 20000) {
this.$message({
type: "success",
message: "删除成功!",
});
} else {
// console.log(files[0] + "\n" + this.fileList[0] + "\n" + fileList[0]);
this.$message.success(response.data);
this.getList();
this.$message.error(response.message);
}
},
},
components: {
modifyDialog,
})
.catch(() => {
});
},
mounted() {
init() {
axios.get("./config.json").then(res => {
//
let response = res.data.BASE_URL;
this.uploadFileUrl = response + "udiwms/busstiness/file/upload";
});
},
created() {
this.getBusType();
this.init();
handleChange(response, files, fileList) {
console.log(response);
if (response.code != 20000) {
this.$message.error(response.message);
} else {
// console.log(files[0] + "\n" + this.fileList[0] + "\n" + fileList[0]);
this.$message.success(response.data);
this.getList();
}
},
},
components: {
modifyDialog,
},
mounted() {
},
created() {
this.getBusType();
this.init();
this.getList();
},
};
</script>

@ -93,6 +93,44 @@
</el-row>
<el-row :gutter="20" class="el-row" type="flex">
<el-col :span="10" class="el-col">
<div class="text item">
<div class="itemTag">
<span>往来信息类型:&nbsp;</span>
</div>
<el-select v-model="inputQuery.corpType" placeholder="往来信息">
<el-option
v-for="item in options"
:key="item.value"
:label="item.label"
:value="item.value">
</el-option>
</el-select>
</div>
</el-col>
<el-col :span="10" class="el-col">
<div class="text item">
<div class="itemTag">
<span>默认仓库:&nbsp;</span>
</div>
<el-select v-model="inputQuery.storageCode" placeholder="默认仓库信息">
<el-option
v-for="item in storageList"
:key="item.name"
:label="item.name"
:value="item.code">
<span style="float: left">{{ item.name }}</span>
</el-option>
</el-select>
</div>
</el-col>
</el-row>
<el-row :gutter="20" class="el-row" type="flex">
<el-col :span="10" class="el-col">
<div class="text item">
<div class="itemTag">
@ -133,18 +171,18 @@
<el-checkbox v-model="inputQuery.enable"></el-checkbox>
</div>
</el-col>
<el-col :span="4" class="el-col">
<div class="text item">
<el-checkbox v-model="inputQuery.innerOrder"></el-checkbox>
</div>
</el-col>
<el-col :span="4" class="el-col">
<div class="text item">
<el-checkbox v-model="inputQuery.genUnit"
:disabled="inputQuery.mainAction == 'WareHouseIn'">允许手动输入客户信息
</el-checkbox>
</div>
</el-col>
<!-- <el-col :span="4" class="el-col">-->
<!-- <div class="text item">-->
<!-- <el-checkbox v-model="inputQuery.innerOrder"></el-checkbox>-->
<!-- </div>-->
<!-- </el-col>-->
<!-- <el-col :span="4" class="el-col">-->
<!-- <div class="text item">-->
<!-- <el-checkbox v-model="inputQuery.genUnit"-->
<!-- :disabled="inputQuery.mainAction == 'WareHouseIn'">允许手动输入客户信息-->
<!-- </el-checkbox>-->
<!-- </div>-->
<!-- </el-col>-->
</el-row>
<el-divider></el-divider>
<el-row :gutter="20" class="el-row" type="flex">
@ -164,13 +202,13 @@
</el-col>
<el-col :span="4" class="el-col">
<div class="text item">
<el-checkbox v-model="inputQuery.checkPdaEd" :disabled="!inputQuery.checkEnable">
<el-checkbox v-model="inputQuery.checkPdaUn" :disabled="!inputQuery.checkEnable">
</el-checkbox>
</div>
</el-col>
<el-col :span="4" class="el-col">
<div class="text item">
<el-checkbox v-model="inputQuery.checkPdaUn" :disabled="!inputQuery.checkEnable">
<el-checkbox v-model="inputQuery.checkPdaEd" :disabled="!inputQuery.checkEnable">
</el-checkbox>
</div>
</el-col>
@ -271,6 +309,7 @@ import {getOriginBusType} from "../../api/basic/busOriginType";
import {
getLocalBusType,
} from "../../api/basic/busLocalType";
import {filterAll} from "@/api/basic/invWarehouse";
export default {
name: "inputQuery",
@ -286,11 +325,23 @@ export default {
filterQuery: {
enabled: true,
isBuType: true,
isFilterBind: true,
},
thirdSys: [],
localTypes: [],
originTypes: [],
value: "",
options: [{
value: '0',
label: '供应商信息'
}, {
value: '1',
label: '仓库信息'
}, {
value: '2',
label: '客户信息'
}],
storageList: [],
}
},
methods: {
@ -318,15 +369,20 @@ export default {
this.localTypes = [];
});
},
getLoca() {
getStorage() {
this.storageList = [];
filterAll()
.then((response) => {
this.storageList = response.data || [];
})
.catch(() => {
});
},
},
created() {
this.getList();
this.getLoca();
this.getStorage();
},
};
</script>

@ -69,8 +69,8 @@
</div>
</el-col>
<el-col :span="7">
<el-form-item prop="corpName"
v-if="curAction.corpType ==0 && curAction.genUnit ==false">
<el-form-item class="query-form-item" prop="corpName"
v-if="curAction.corpType ==0 ">
<el-select
v-model="formData.fromCorp"
filterable
@ -80,7 +80,7 @@
placeholder="请输入往来单位"
:remote-method="findMethod"
:loading="loading"
@change="unitChange"
@change="selectOne"
>
<el-option
v-for="item in fromOptions"
@ -91,32 +91,9 @@
<span style="float: left">{{ item.name }}</span>
</el-option>
</el-select>
<!-- <el-select-->
<!-- style="width: 100%"-->
<!-- v-model="sValue"-->
<!-- :multiple="false"-->
<!-- filterable-->
<!-- remote-->
<!-- reserve-keyword-->
<!-- placeholder="请输入供应商名称"-->
<!-- :remote-method="remoteMethod"-->
<!-- :loading="sLoading"-->
<!-- @change="selectOne">-->
<!-- <el-option-->
<!-- v-for="item in sOptions"-->
<!-- :key="idx"-->
<!-- :label="item.name"-->
<!-- :value="item">-->
<!-- </el-option>-->
<!-- </el-select>-->
</el-form-item>
<el-form-item class="query-form-item" prop="fromCorp"
v-if="curAction.corpType ==1 && curAction.genUnit ==false">
v-if="curAction.corpType ==1">
<el-select
v-model="formData.fromCorp"
filterable
@ -126,7 +103,7 @@
placeholder="请输入仓库信息"
:remote-method="findStorageMethod"
:loading="loading"
@change="unitChange"
@change="storageChange"
>
<el-option
v-for="item in fromStorageOptions"
@ -140,7 +117,7 @@
</el-option>
</el-select>
</el-form-item>
<el-form-item class="query-form-item" prop="fromCorp" v-if="curAction.genUnit ==true">
<el-form-item class="query-form-item" prop="fromCorp" v-if="curAction.corpType ==2">
<el-input v-model="formData.fromCorp" auto-complete="off"
clearable
placeholder="请输入病人住院号"
@ -157,20 +134,19 @@
<!--<el-select v-model="formData.billType" style="width: 100%" placeholder="业务类型" :disabled="true">-->
<!--<el-option label="送货单" value="deliveryNote"></el-option>-->
<!--</el-select>-->
<el-select v-model="formData.billType" placeholder="请选择业务类型"
@change="actionChange">
<el-select v-model="formData.billType" placeholder="请选择业务类型" @change="actionChange">
<el-option
v-for="item in busTypes"
:key="item.name"
:label="item.name"
:value="item.action">
<span style="float: left">{{ item.name }}</span>
:key="item.localAction"
:label="item.localName"
:value="item.localAction">
<span style="float: left">{{ item.localName }}</span>
</el-option>
</el-select>
</el-form-item>
</el-col>
</el-row>
<el-row :gutter="20">
<el-row :gutter="20" style="margin-top: -10px">
<el-col :span="3">
<div class="ao-text">
@ -196,21 +172,21 @@
</el-col>
</el-row>
<!-- <el-row :gutter="20" style="margin-top: -10px;">-->
<!-- <el-col :span="3">-->
<!-- <div class="ao-text">-->
<!-- <span>采购类别</span>-->
<!-- </div>-->
<!-- </el-col>-->
<!-- <el-col :span="7">-->
<!-- <el-form-item prop="type">-->
<!-- <el-select v-model="formData.type" style="width: 100%" placeholder="采购类型">-->
<!-- <el-option label="预入库" value="1"></el-option>-->
<!-- <el-option label="普通采购" value="2"></el-option>-->
<!-- </el-select>-->
<!-- </el-form-item>-->
<!-- </el-col>-->
<!-- </el-row>-->
<!-- <el-row :gutter="20" style="margin-top: -10px;">-->
<!-- <el-col :span="3">-->
<!-- <div class="ao-text">-->
<!-- <span>采购类别</span>-->
<!-- </div>-->
<!-- </el-col>-->
<!-- <el-col :span="7">-->
<!-- <el-form-item prop="type">-->
<!-- <el-select v-model="formData.type" style="width: 100%" placeholder="采购类型">-->
<!-- <el-option label="预入库" value="1"></el-option>-->
<!-- <el-option label="普通采购" value="2"></el-option>-->
<!-- </el-select>-->
<!-- </el-form-item>-->
<!-- </el-col>-->
<!-- </el-row>-->
</el-card>
<el-card>
@ -273,21 +249,21 @@
></el-input>
</el-form-item>
</el-col>
<el-col :span="3">
<div class="ao-text">
<span>数量</span>
</div>
</el-col>
<el-col :span="4">
<el-form-item prop="iCount">
<!-- @keypress.enter.native="addCode()"-->
<el-input v-model="iCount" auto-complete="off" ref="iCount"
@keypress.enter.native="iCountEnterFunction()"
@focus="getInputFocus($event)"
@input="iCountChange"
oninput="value=value.replace(/[^\d]/g,'')"></el-input>
</el-form-item>
</el-col>
<!-- <el-col :span="3">-->
<!-- <div class="ao-text">-->
<!-- <span>数量</span>-->
<!-- </div>-->
<!-- </el-col>-->
<!-- <el-col :span="4">-->
<!-- <el-form-item prop="iCount">-->
<!-- &lt;!&ndash; @keypress.enter.native="addCode()"&ndash;&gt;-->
<!-- <el-input v-model="iCount" auto-complete="off" ref="iCount"-->
<!-- @keypress.enter.native="iCountEnterFunction()"-->
<!-- @focus="getInputFocus($event)"-->
<!-- @input="iCountChange"-->
<!-- oninput="value=value.replace(/[^\d]/g,'')"></el-input>-->
<!-- </el-form-item>-->
<!-- </el-col>-->
</el-row>
<!-- highlight-current-row-->
@ -301,7 +277,7 @@
<!-- </el-table-column>-->
<el-table-column label="序号" type="index" width="50"></el-table-column>
<el-table-column width="150"
label="产品"
label="产品通用名"
prop="productName"
show-overflow-tooltip
></el-table-column>
@ -318,40 +294,75 @@
placeholder="请输入批次号" style="width: 80%"></el-input>
</template>
</el-table-column>
<el-table-column width="150" label="生产日期">
<el-table-column width="180" label="生产日期">
<template slot-scope="scope">
<el-input size="small" v-model="scope.row.productDate"
:disabled="scope.row.index !== selectedIndex"
placeholder="请输入生产日期" style="width: 80%"></el-input>
<!-- <el-input size="small" v-model="scope.row.productDate"-->
<!-- :disabled="scope.row.index !== selectedIndex"-->
<!-- placeholder="请输入生产日期" style="width: 80%"></el-input>-->
<el-date-picker
type="date"
size="small" v-model="scope.row.productDate"
:disabled="scope.row.index !== selectedIndex"
placeholder="请选择生产日期" style="width: 80%"
value-format="yyMMdd"
format="yyyy-MM-dd"
>
</el-date-picker>
</template>
</el-table-column>
<el-table-column width="150" label="失效日期">
<el-table-column width="180" label="失效日期">
<template slot-scope="scope">
<el-input size="small" v-model="scope.row.expireDate"
:disabled="scope.row.index !== selectedIndex"
placeholder="请输入失效日期" style="width: 80%"></el-input>
<!-- <el-input size="small" v-model="scope.row.expireDate"-->
<!-- :disabled="scope.row.index !== selectedIndex"-->
<!-- placeholder="请输入失效日期" style="width: 80%"></el-input>-->
<el-date-picker
type="date"
size="small" v-model="scope.row.expireDate"
:disabled="scope.row.index !== selectedIndex"
placeholder="请选择失效日期" style="width: 80%"
value-format="yyMMdd"
format="yyyy-MM-dd"
>
</el-date-picker>
</template>
</el-table-column>
<el-table-column width="150" label="产品数量">
<el-table-column width="150" label="单据数量">
<template slot-scope="scope">
<el-input size="small" v-model="scope.row.count"
placeholder="请输入数量" style="width: 80%"
type='number'
@change="tableCountChange(scope.row)"
:disabled="scope.row.index !== selectedIndex"
oninput="value=value.replace(/[^\d]/g,'')"></el-input>
</template>
</el-table-column>
<el-table-column width="150" label="产品价格">
<el-table-column width="150" label="实际数量">
<template slot-scope="scope">
<el-input size="small" v-model="scope.row.reCount"
placeholder="请输入数量" style="width: 80%"
type='number'
@change="tableCountChange(scope.row)"
:disabled="scope.row.index !== selectedIndex"
oninput="value=value.replace(/[^\d]/g,'')"></el-input>
</template>
</el-table-column>
<el-table-column width="150" label="价格">
<template slot-scope="scope">
<el-input size="small" v-model="scope.row.price"
type='number'
:disabled="scope.row.index !== selectedIndex"
placeholder="请输入价格" style="width: 80%"
oninput="value=value.replace(/[^\d]/g,'')"></el-input>
></el-input>
</template>
</el-table-column>
<!--<el-table-column width="150"-->
<!--label="单据数量"-->
<!--prop="count"-->
<!--show-overflow-tooltip-->
<!--&gt;</el-table-column>-->
<el-table-column width="150"
label="批准文号"
label="注册/备案凭证号"
prop="zczbhhzbapzbh"
show-overflow-tooltip
></el-table-column>
@ -447,7 +458,7 @@ import {
uploadStockOrderDetail,
copyStockOrderDetail,
stockOrderDetailQueryProduct,
addStockOrderDetailFromCodeById, getStockOrderDetailInstrumentById, stockOrderDetail2
getStockOrderDetailInstrumentById, stockOrderDetail2
} from "../../api/inout/stockOrder";
import draggable from "vuedraggable";
import {saveAs} from "file-saver";
@ -456,7 +467,7 @@ import store from "../../store";
import stockOrderNewSelectProduct from "./stockOrderNewSelectProduct";
import {getBasicUnitMaintains, getBasicUnitMaintains2} from "../../api/basic/basicUnitMaintain";
import {getBussinessType} from "../../api/basic/bussinessType";
import {getLocalBusType,getLocalJoinBusType} from "../../api/basic/busLocalType";
import {getLocalBusType, getLocalJoinBusType} from "../../api/basic/busLocalType";
import {filterAll} from "@/api/basic/invWarehouse";
export default {
@ -483,8 +494,6 @@ export default {
page: 1,
limit: 10,
},
fromOptions: [],
fromStorageOptions: [],
formData: {},
formRules: {
corpName: [
@ -496,11 +505,16 @@ export default {
billType: [
{required: true, message: "请选择业务类型", trigger: "blur"}
],
type: [
{required: true, message: "请选择采购类型", trigger: "blur"}
locStorageCode: [
{required: true, message: "请选择当前仓库", trigger: "blur"}
],
// type: [
// {required: true, message: "", trigger: "blur"}
// ],
},
codeArray: [],
fromOptions: [],
fromStorageOptions: [],
total: 0,
loading: false,
index: null,
@ -508,7 +522,6 @@ export default {
formVisible: false,
deleteLoading: false,
orderNo: null,
statusMap: {
101: "未处理",
102: "已处理",
@ -523,6 +536,10 @@ export default {
1: "预入库",
2: "普通采购",
},
curAction: {
corpType: 0,
genUnit: false,
},
orderEditor: true,
iCount: 0,
sOptions: [],
@ -534,10 +551,7 @@ export default {
selectedIndex: "",
selectProductVisible: false,
thisData: {},
curAction: {
corpType: 0,
genUnit: false,
},
storageList: [],
};
},
components: {
@ -559,17 +573,22 @@ export default {
this.$message.warning('未添加产品');
return;
}
for (let i = 0; i < this.codeArray.length; i++) {
if (this.$isBlank(this.codeArray[i].batchNo)) {
return this.$message.error('批次号不能为空');
}
if (this.$isBlank(this.codeArray[i].productDate)) {
return this.$message.error('生产日期不能为空');
}
if (this.$isBlank(this.codeArray[i].expireDate)) {
return this.$message.error('失效日期不能为空');
if (status === '3') {
for (let i = 0; i < this.codeArray.length; i++) {
if (this.$isBlank(this.codeArray[i].batchNo)) {
return this.$message.error('批次号不能为空');
}
if (this.$isBlank(this.codeArray[i].productDate)) {
return this.$message.error('生产日期不能为空');
}
if (this.$isBlank(this.codeArray[i].expireDate)) {
return this.$message.error('失效日期不能为空');
}
}
}
if (status === '501') {
this.submitFunction(status);
} else {
@ -577,7 +596,13 @@ export default {
if (status == "1") {
this.submitFunction(status);
} else {
this.$confirm("是否提交订单?", "提示", {
let tip = "是否确定提交订单?";
if (status == "2") {
tip = "是否确定提交单据为未配货?";
} else if (status == "3") {
tip = "是否确定提交单据为已配货?";
}
this.$confirm(tip, "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
@ -593,6 +618,45 @@ export default {
}
});
},
storageChange(row) {
console.log(row);
this.formData.fromCorpId = row.code;
this.formData.fromCorp = row.name;
},
getStorage(event) {
// let query = {
// advanceType: this.getActionName(event),
// };
this.storageList = [];
filterAll()
.then((response) => {
this.storageList = response.data || [];
// this.formData.locStorageCode = this.storageList[0];
})
.catch(() => {
});
},
getActionName(action) {
for (let i = 0; i < this.busTypes.length; i++) {
if (this.busTypes[i].action === action) {
return this.busTypes[i].advanceType;
}
}
},
findStorageMethod(query) {
console.log(query);
this.fromStorageOptions = [];
let cQuery = {
key: query,
};
filterAll(cQuery)
.then((response) => {
this.fromStorageOptions = response.data || [];
})
.catch(() => {
});
},
submitFunction(status) {
let tMessage = status === '501' ? '保存' : '提交';
this.loading = true;
@ -668,6 +732,7 @@ export default {
if (this.orderEditor) {
this.thisData.orderId = this.formData.id
}
this.thisData.stockOrderLists = this.codeArray;
this.selectProductVisible = true;
return;
}
@ -747,6 +812,7 @@ export default {
if (this.orderEditor) {
this.thisData.orderId = this.formData.id
}
this.thisData.stockOrderLists = this.codeArray;
this.selectProductVisible = true;
}
} else {
@ -762,24 +828,34 @@ export default {
},
closeDialogC2(rData) {//012693548470801311200226172302271020022632100025
closeDialogC2(rData) {
this.selectProductVisible = false;
this.thisData = {};
if (this.$isNotBlank(rData)) {
console.log(rData)
// for (let i = 0; i < this.codeArray.length; i++) {
// let obj = this.codeArray[i];
// if (obj.batchNo == rData[0].batchNo) {
// obj.count = parseInt(obj.count) + parseInt(this.iCount);
// return;
// }
// }
this.codeArray = [];
rData.forEach((obj, index) => {
if (this.codeArray.length === 0) {
this.codeArray.push(obj);
} else {
this.codeArray.unshift(obj);
}
// this.codeArray.push(obj);
this.codeArray.unshift(obj);
// if (this.codeArray.length === 0) {
// this.codeArray.push(obj);
// } else {
// this.codeArray.unshift(obj);
// }
});
console.log(this.codeArray);
this.$refs.multipleTable.setCurrentRow(this.codeArray[0]);
this.currentRow = this.codeArray[0];
this.selectedIndex = 0;
this.focusNext('iCount');
this.closeConfirmFunction(true);
}
// if (this.orderEditor) {
@ -859,43 +935,6 @@ export default {
focusNextToTable(nextRef) {
this.$refs[nextRef][0].focus()
},
remoteMethod(query) {
if (query !== '') {
this.sLoading = true;
let tQuery = {
key: query,
page: 1,
limit: 20,
};
getBasicUnitMaintains2(tQuery)
.then((response) => {
console.log(response)
this.sLoading = false;
this.sOptions = response.data.list;
})
.catch(() => {
this.sLoading = false;
this.sOptions = [];
});
} else {
this.sOptions = [];
}
},
findMethod(query) {
console.log(query);
this.fromOptions = [];
let cQuery = {
key: query,
};
getBasicUnitMaintains(cQuery)
.then((response) => {
this.loading = false;
this.fromOptions = response.data.page.list || [];
})
.catch(() => {
this.loading = false;
});
},
//
resetForm() {
if (this.$refs["dataForm"]) {
@ -906,11 +945,6 @@ export default {
this.getList();
}
},
unitChange(row) {
console.log(row);
this.formData.corpId = row.erpId;
this.formData.corpName = row.name;
},
addCode() {
this.code = this.code.trim();
if (this.$isBlank(this.code)) {
@ -1148,45 +1182,46 @@ export default {
getLocalJoinBusType(query)
.then((response) => {
this.busTypes = response.data.list || [];
// this.getStorage(this.formData.billType);
})
.catch(() => {
});
},
findStorageMethod(query) {
selectOne(event) {
this.formData.corpName = event.name;
this.formData.corpId = event.erpId;
this.formData.unitIdFk = event.erpId;
// console.log("this.inputQuery.companyId" + item);
console.log("this.inputQuery.companyId" + event.erpId);
},
findMethod(query) {
console.log(query);
this.fromStorageOptions = [];
this.fromOptions = [];
let cQuery = {
key: query,
};
filterAll(cQuery)
.then((response) => {
this.fromStorageOptions = response.data || [];
})
.catch(() => {
});
},
getStorage() {
this.storageList = [];
filterAll()
getBasicUnitMaintains(cQuery)
.then((response) => {
this.storageList = response.data || [];
this.fromStorageOptions = response.data || [];
this.loading = false;
this.fromOptions = response.data.page.list || [];
})
.catch(() => {
this.loading = false;
});
},
getActionItem(action) {
for (let i = 0; i < this.busTypes.length; i++) {
if (this.busTypes[i].action === action) {
if (this.busTypes[i].localAction === action) {
return this.busTypes[i];
}
}
},
actionChange(item) {
this.curAction = this.getActionItem(item);
console.log(this.curAction.corpType+"---"+this.curAction.genUnit+"-----"+ this.curAction.action)
this.formData.locStorageCode = this.curAction.storageCode;
console.log(this.curAction.corpType + "---" + this.curAction.genUnit + "-----" + this.curAction.action)
},
},
filters: {},
mounted() {
@ -1197,7 +1232,7 @@ export default {
},
created() {
this.getBusType();
this.getStorage(this.formData.billType);
this.getStorage();
this.formData = {};
this.codeArray = [];
this.closeConfirmFunction(false);
@ -1211,7 +1246,7 @@ export default {
} else {
this.formData = {
billdate: "",
corpName: store.getters.companyName,
// corpName: store.getters.companyName,
customerId: store.getters.customerId,
// billType: "deliveryNote",
billType: "",

@ -269,7 +269,8 @@
this.loading = true;
let tQuery = {
ids: ids
ids: ids,
stockOrderLists: this.data.stockOrderLists,
};
getStockOrderDetailInstrumentById(tQuery).then((response) => {
this.loading = false;
@ -317,7 +318,9 @@
},
},
created() {
if (this.$isNotBlank(this.data)) {
console.log(this.data.stockOrderLists);
this.listQuery.nameCode = this.data.udi;
this.orderEditor = this.data.orderEditor;
this.orderId = this.data.orderId;

@ -58,7 +58,7 @@
</el-col>
<el-col :span="8">
<el-form-item class="query-form-item" prop="fromCorp"
v-if="curAction.corpType ==0 && curAction.genUnit ==false">
v-if="curAction.corpType ==0">
<el-select
v-model="formData.fromCorp"
filterable
@ -81,7 +81,7 @@
</el-select>
</el-form-item>
<el-form-item class="query-form-item" prop="fromCorp"
v-if="curAction.corpType ==1 && curAction.genUnit ==false">
v-if="curAction.corpType ==1">
<el-select
v-model="formData.fromCorp"
filterable
@ -91,19 +91,19 @@
placeholder="请输入仓库信息"
:remote-method="findStorageMethod"
:loading="loading"
@change="unitChange"
@change="storageChange"
>
<el-option
v-for="item in fromStorageOptions"
:key="item.value"
:label="item.code"
:value="item.name">
:value="item">
<span style="float: left">{{ item.name }}</span>
<span style="float: right; color: #8492a6; font-size: 13px">{{ item.code }}</span>
</el-option>
</el-select>
</el-form-item>
<el-form-item class="query-form-item" prop="fromCorp" v-if="curAction.genUnit ==true">
<el-form-item class="query-form-item" prop="fromCorp" v-if="curAction.corpType ==2">
<el-input v-model="formData.fromCorp" auto-complete="off"
clearable
placeholder="请输入病人住院号"
@ -386,6 +386,11 @@ export default {
this.formData.fromCorpId = row.erpId;
this.formData.fromCorp = row.name;
},
storageChange(row) {
console.log(row);
this.formData.fromCorpId = row.code;
this.formData.fromCorp = row.name;
},
deleteCode(index, row) {
console.log(row.id)
this.$confirm("是否删除?", "提示", {

Loading…
Cancel
Save