代码备份

master
anthonyywj2 3 years ago
parent 10bea3a4e2
commit fa54506818

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

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

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

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

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

Loading…
Cancel
Save