新增单据,选入产品页面

prod
anthonywj 2 years ago
parent 2e796e4dba
commit 5917ad0428

@ -1018,7 +1018,6 @@
</el-form>
</el-card>
</el-dialog>
<el-dialog
title="耗材字典-编辑"
:visible.sync="editDiDialogVisible"
@ -1062,8 +1061,6 @@
</el-button>
</div>
</el-dialog>
<el-dialog
title="耗材字典-关联添加器械信息"
:visible.sync="selectUdiDialogVisible"

@ -1,7 +1,7 @@
<template>
<div>
<el-card style="margin: 5px;margin-top: -20px">
<el-form :model="formData" :rules="formRules" ref="dataForm" label-width="100px"
<el-form :model="orderFormData" :rules="formRules" ref="dataForm" label-width="100px"
style="margin-bottom: -15px">
<el-button-group style="display: flex;margin: 0px 0 10px 80%; height: 35px">
<el-button
@ -14,7 +14,7 @@
<el-button
size="mini"
type="primary"
@click.native="submit('0')"
@click.native="submit()"
>提交订单
</el-button
>
@ -22,7 +22,7 @@
<el-row>
<el-col :span="11">
<el-form-item prop="corpOrderId" label="单据号:">
<el-input v-model="formData.corpOrderId" auto-complete="off" style="width: 90%"
<el-input v-model="orderFormData.corpOrderId" auto-complete="off" style="width: 90%"
clearable
:disabled="corpOrderIdDisabled"></el-input>
</el-form-item>
@ -30,10 +30,11 @@
<el-col :span="11">
<el-form-item prop="createTime" label="单据时间:">
<el-date-picker
v-model="formData.createTime"
v-model="orderFormData.createTime"
type="datetime"
placeholder="日期"
clearable
value-format="yyyy-MM-dd HH:mm:ss"
:disabled="true"
style="width: 90%"
>
@ -44,7 +45,7 @@
<el-row>
<el-col :span="11">
<el-form-item prop="invCode" label="当前仓库:">
<el-select v-model="formData.invCode" placeholder="当前仓库信息"
<el-select v-model="orderFormData.invCode" placeholder="当前仓库信息"
style="width: 90%"
clearable
:disabled="corpOrderIdDisabled" @change="changeInv" filterable>
@ -61,10 +62,9 @@
</el-select>
</el-form-item>
</el-col>
<el-col :span="11">
<el-form-item prop="action" label="单据类型:">
<el-select v-model="formData.action" placeholder="请选择单据类型"
<el-select v-model="orderFormData.action" placeholder="请选择单据类型"
:disabled="corpOrderIdDisabled"
clearable
style="width: 90%"
@ -87,7 +87,7 @@
v-if="curAction.corpType ==0 || curAction.corpType == 2 || (curAction.corpType == 1 && !curAction.genUnit)"
>
<el-select
v-model="formData.fromCorp"
v-model="orderFormData.fromCorp"
filterable
remote
clearable
@ -112,7 +112,7 @@
v-if="curAction.corpType ==3"
label="往来信息:"
>
<el-select v-model="formData.fromInvCode" placeholder="请选择往来仓库"
<el-select v-model="orderFormData.fromInvCode" placeholder="请选择往来仓库"
:disabled="corpOrderIdDisabled" filterable
clearable
style="width: 90%"
@ -132,7 +132,7 @@
</el-form-item>
<el-form-item prop="fromCorp"
v-if="curAction.corpType ==1 && curAction.genUnit">
<el-input v-model="formData.fromCorp" auto-complete="off"
<el-input v-model="orderFormData.fromCorp" auto-complete="off"
clearable
style="width: 90%"
:disabled="corpOrderIdDisabled"
@ -143,7 +143,7 @@
</el-col>
<el-col :span="11">
<el-form-item prop="remark" label="备注:">
<el-input v-model="formData.remark" auto-complete="off"
<el-input v-model="orderFormData.remark" auto-complete="off"
clearable
style="width: 90%"
placeholder="请输入备注信息"
@ -161,7 +161,7 @@
ref='inputRef'
style="ime-mode:disabled"
type="tel"
v-model="formData.code"
v-model="codeFormData.code"
></el-input>
</el-form-item>
</el-col>
@ -180,13 +180,13 @@
</el-card>
<el-tabs type="border-card" style="margin: 5px">
<el-tab-pane label="业务详情">
<biz-detail-panel :idQuery="idQuery" v-if="isCodeAlive"></biz-detail-panel>
<biz-detail-panel :idQuery="orderFormData" v-if="isCodeAlive"></biz-detail-panel>
</el-tab-pane>
<el-tab-pane label="扫码详情">
<codeDetailPanel :idQuery="idQuery" v-if="isCodeAlive"></codeDetailPanel>
<codeDetailPanel :idQuery="orderFormData" v-if="isCodeAlive"></codeDetailPanel>
</el-tab-pane>
<el-tab-pane label="扫码明细">
<codesPanel :idQuery="idQuery" v-if="isCodeAlive"></codesPanel>
<codesPanel :idQuery="orderFormData" v-if="isCodeAlive"></codesPanel>
</el-tab-pane>
</el-tabs>
@ -301,22 +301,27 @@ export default {
data() {
return {
formData: {
//
orderFormData: {
billNo: null,
corpOrderId: null,
action: null,
createTime: new Date(),
invCode: null,
fromCorp: null,
fromInvCode: null,
remark: null,
code: "",
fromType: 2,
},
//
codeFormData: {
code: "",
batchNo: null,
produceDate: null,
expireDate: null,
serialNo: null,
},
curInvOptions: [],
busTypeOptions: [],
fromInvOptions: [],
@ -348,12 +353,8 @@ export default {
formVisible: false,
deleteLoading: false,
orderNo: null,
fromStorageOptions: [],
curRow: null,
dialogTableVisible: false,
sitcomScan: false,
selectRlTitle: "绑定产品",
@ -382,7 +383,7 @@ export default {
.then((response) => {
this.curInvOptions = response.data || [];
if (this.curInvOptions != null && this.curInvOptions.length == 1) {
this.formData.invWarehouseCode = this.curInvOptions[0].code;
this.orderFormData.invWarehouseCode = this.curInvOptions[0].code;
this.getBusTypeByInv()
}
})
@ -392,14 +393,14 @@ export default {
//
changeInv() {
this.formData.action = null;
this.orderFormData.action = null;
this.getBusTypeByInv();
},
//,
getBusTypeByInv() {
let query = {
code: this.formData.invCode,
code: this.orderFormData.invCode,
};
findByInvUser(query)
.then((response) => {
@ -442,11 +443,11 @@ export default {
this.curAction = this.getActionItem(item);
if (this.curAction.corpType == 0 || this.curAction.corpType == 2 || (this.curAction.corpType == 1 && !this.curAction.genUnit)) {
//1.
this.formData.fromCorp = null;
this.orderFormData.fromCorp = null;
this.findMethod();
} else if (this.curAction.corpType == 3) {
//2.
this.formData.fromInvCode = null;
this.orderFormData.fromInvCode = null;
this.findFromInvList();
}
},
@ -454,13 +455,13 @@ export default {
//
findFromInvList(val) {
let cQuery = {
locInvCode: this.formData.invCode,
locInvCode: this.orderFormData.invCode,
};
findByFrom(cQuery)
.then((response) => {
this.fromInvOptions = response.data || [];
if (val == 1) {
this.formData.fromInvCode = this.fromInvOptions[0].code;
this.orderFormData.fromInvCode = this.fromInvOptions[0].code;
}
})
.catch(() => {
@ -480,30 +481,28 @@ export default {
addCode(event) {
this.originCode = "";
this.sictomText = "";
this.formData.corpOrderId = this.formData.corpOrderId.trim();
this.formData.batchNo = "";
this.formData.produceDate = "";
this.formData.expireDate = "";
this.formData.serialNo = "";
this.orderFormData.corpOrderId = this.orderFormData.corpOrderId.trim();
this.codeFormData.batchNo = "";
this.codeFormData.produceDate = "";
this.codeFormData.expireDate = "";
this.codeFormData.serialNo = "";
this.actionEnable = true;
if (event == null) {
} else event.target.select();
this.$refs.inputRef.select();
if (this.$isBlank(this.formData.action)) {
if (this.$isBlank(this.orderFormData.action)) {
this.$message.warning("请选择单据类型!");
return;
}
if (this.$isBlank(this.formData.corpOrderId)) {
if (this.$isBlank(this.orderFormData.corpOrderId)) {
let date = new Date();
this.formData.corpOrderId = parseTime(date, '{y}{m}{d}{h}{i}{s}') + Math.ceil(Math.random() * 89 + 10);
this.orderFormData.corpOrderId = parseTime(date, '{y}{m}{d}{h}{i}{s}') + Math.ceil(Math.random() * 89 + 10);
}
this.formData.code = this.formData.code.trim();
if (this.$isBlank(this.formData.code)) return;
this.codeFormData.code = this.codeFormData.code.trim();
if (this.$isBlank(this.codeFormData.code)) return;
this.loading = true;
let tQuery = Object.assign(JSON.parse(JSON.stringify(this.formData)));
tQuery.orderId = this.idQuery.id;
tQuery.actDate = parseTime(this.formData.actDate, '{y}-{m}-{d} {h}:{i}:{s}');
tQuery.action = this.formData.action;
let tQuery = Object.assign(JSON.parse(JSON.stringify(this.orderFormData)));
tQuery.code = this.codeFormData.code;
this.addCodeSubmit(tQuery);
this.$refs.inputRef.select();
},
@ -565,10 +564,10 @@ export default {
} else if (response.code == 507) {
this.editOriginCodeVisible = true;
this.editTitle = response.message;
this.formData.produceDate = response.data.produceDate;
this.formData.expireDate = response.data.expireDate;
this.formData.batchNo = response.data.batchNo;
this.formData.serialNo = response.data.serialNo;
this.codeFormData.produceDate = response.data.produceDate;
this.codeFormData.expireDate = response.data.expireDate;
this.codeFormData.batchNo = response.data.batchNo;
this.codeFormData.serialNo = response.data.serialNo;
this.$message({
type: 'error',
message: "提交失败!" + this.editTitle,
@ -592,32 +591,15 @@ export default {
refreshCodesPanel() {
this.isCodeAlive = false;
this.idQuery =
this.$nextTick(() => { //
this.isCodeAlive = true
})
},
submit(formName) {
if (this.total < 1) {
this.$message.error('未添加条码');
return;
}
let tQuery = {
orderId: this.idQuery.id,
locStorageCode: this.formData.locStorageCode,
invStorageCode: this.formData.invStorageCode,
invWarehouseCode: this.formData.invWarehouseCode,
fromInvCode: this.formData.fromInvCode,
subInvCode: this.formData.subInvCode,
action: this.formData.action,
fromCorp: this.formData.fromCorp,
fromCorpId: this.formData.fromCorpId,
outChangeEnable: this.formData.outChangeEnable,
preCheck: this.formData.preCheck,
deptCode: this.formData.deptCode,
}
submit() {
let tQuery = Object.assign(JSON.parse(JSON.stringify(this.orderFormData)));
tQuery.orderId = this.idQuery.billNo;
submitOrderWeb(tQuery)
.then((response) => {
if (response.code === 20000) {
@ -630,23 +612,8 @@ export default {
});
},
saveOrder() {
if (this.total < 1) {
this.$message.error('未添加条码');
return;
}
if (this.formData.action == null || this.formData.action == '') {
this.$message.error('未选择扫码单据类型');
return
}
if (this.formData.invWarehouseCode == null || this.formData.invWarehouseCode == '') {
this.$message.error('当前分库不能为空');
return;
}
let tQuery = Object.assign(JSON.parse(JSON.stringify(this.formData)));
let tQuery = Object.assign(JSON.parse(JSON.stringify(this.orderFormData)));
tQuery.orderId = this.idQuery.billNo;
tQuery.actDate = parseTime(this.formData.actDate, '{y}-{m}-{d} {h}:{i}:{s}');
saveOrderWeb(tQuery).then((response) => {
if (response.code === 20000) {
this.closeDialog();
@ -676,42 +643,40 @@ export default {
this.checkSuccess = true;
let tQuery = {
originCode: this.originCode,
code: this.formData.code.trim(),
code: this.codeFormData.code.trim(),
}
enterCodeWeb(tQuery).then((response) => {
if (response.code === 20000) {
this.$refs.inputRef.focus();
this.$refs.inputRef.select();
this.formData.code = response.data;
this.codeFormData.code = response.data;
this.addCode();
} else {
if (response.code == 502) {
this.checkSuccess = false;
this.formData.code = response.data;
this.originCode = this.formData.code;
this.codeFormData.code = response.data;
this.originCode = this.codeFormData.code;
} else if (response.code == 501) {
this.checkSuccess = false;
// this.formData.code = response.data;
// this.originCode = this.formData.code;
this.$message.error(response.message);
} else if (response.code == 503) {
this.checkSuccess = false;
this.formData.code = response.data;
this.codeFormData.code = response.data;
this.$confirm(response.message, "提示", {
type: "warning",
})
.then(() => {
this.formData.code = response.data;
this.codeFormData.code = response.data;
this.addCode();
})
.catch(() => {
this.formData.code = this.originCode;
this.codeFormData.code = this.originCode;
});
} else if (response.code == 508) {
this.originCode = "";
this.formData.code = "01" + response.data.nameCode;
this.originCode = this.formData.code;
this.codeFormData.code = "01" + response.data.nameCode;
this.originCode = this.codeFormData.code;
} else {
this.$alert(response.message, '提示', {
confirmButtonText: '确定',
@ -732,8 +697,8 @@ export default {
repeatAddCode(editData) {
let tQuery = editData;
tQuery.orderId = this.idQuery.id;
tQuery.actDate = parseTime(this.formData.actDate, '{y}-{m}-{d} {h}:{i}:{s}');
tQuery.action = this.formData.action;
tQuery.actDate = parseTime(this.orderFormData.actDate, '{y}-{m}-{d} {h}:{i}:{s}');
tQuery.action = this.orderFormData.action;
this.closeCodeDialog();
this.addCodeSubmit(tQuery);
@ -822,7 +787,7 @@ export default {
window.sc = new A.KeyScaner(inputer);//DOM
sc.onInput = function (text) {
if (text.includes("delete")) {
that.formData.code = "";
that.codeFormData.code = "";
that.sictomText = "";
that.originCode = "";
return;
@ -831,44 +796,34 @@ export default {
let tempTxt = text;
let str = tempTxt.replace(/[\r]/g, "");
that.sictomText = that.sictomText + str;
that.formData.code = that.sictomText;
that.codeFormData.code = that.sictomText;
} else {
that.formData.code = text;
// setTimeout(function(){ that.formData.code = text; }, 3000);
that.codeFormData.code = text;
}
};
inputer.focus();
},
created() {
this.formData.code = '';
this.codeFormData.code = '';
this.codeArray = [];
if (this.$isNotBlank(this.idQuery.billNo)) {
this.formData.actDate = new Date(this.idQuery.actDate);
this.formData.corpOrderId = this.idQuery.corpOrderId;
this.corpOrderIdDisabled = true;
this.formData.action = this.idQuery.action;
this.formData.fromCorp = this.idQuery.fromCorp;
this.formData.deptCode = this.idQuery.deptCode
this.formData.invCode = this.idQuery.invCode;
this.formData.fromInvCode = this.idQuery.fromInvCode;
this.formData.preCheck = this.idQuery.preCheck;
this.formData.remark = this.idQuery.remark;
this.orderFormData = this.idQuery;
this.actionEnable = true;
this.refreshCodesPanel();
//
this.findInvByUser();
this.getBusTypeByInv();
this.findMethod(this.formData.fromCorp);
this.findMethod(this.orderFormData.fromCorp);
this.findFromInvList();
} else {
this.corpOrderIdDisabled = false;
this.formData.actDate = new Date();
let date = new Date();
this.formData.corpOrderId = parseTime(date, '{y}{m}{d}{h}{i}{s}') + Math.ceil(Math.random() * 89 + 10);
this.formData.invCode = this.$store.getters.locInvCode;
this.orderFormData.createTime = parseTime(date, '{y}-{m}-{d} {h}:{i}:{s}');
this.orderFormData.corpOrderId = parseTime(date, '{y}{m}{d}{h}{i}{s}') + Math.ceil(Math.random() * 89 + 10);
this.orderFormData.deptCode = this.$store.getters.deptCode;
this.orderFormData.invCode = this.$store.getters.locInvCode;
this.findInvByUser();
}

@ -1,20 +1,33 @@
<template>
<div>
<el-button-group style="display: flex">
<el-row>
<div style="margin: 0px 60px 10px auto; height: 35px; float: right;">
<el-button-group>
<el-button
type="primary"
size="mini"
ref="mainTable"
@click.native.stop="selectProductFunction()"
style="margin: 0px 60px 10px auto; height: 35px"
:loading="loading"
>产品录入
</el-button
>
<el-button
type="primary"
ref="mainTable"
@click.native.stop="selectProductFunction()"
:loading="loading"
>第三方单据选入
</el-button
>
</el-button-group>
</div>
</el-row>
<el-table v-loading="loading" :data="detailList" style="width: 100%;"
:row-class-name="tableRowClassName"
border
:row-style="rowStyle"
max-height="350" height="350" ref="multipleTable">
<el-table-column label="序号" type="index" width="50"></el-table-column>
<el-table-column width="150"
@ -67,7 +80,7 @@
<el-table-column width="80"
label="扫码数量"
prop="reCount"
prop="scanCount"
show-overflow-tooltip
></el-table-column>
<el-table-column width="150" label="价格">
@ -239,7 +252,7 @@ export default {
rowStyle({row, rowIndex}) {
let rowBackground = {};
if (!this.$isNotBlank(row.supId) || !this.$isNotBlank(row.relId)) {
if (!row.checkSuccess) {
rowBackground.color = '#f60303';
}
return rowBackground;
@ -327,6 +340,7 @@ export default {
}
,
created() {
if (this.idQuery.billNo != null)
this.getOrderDetails();
}
,

@ -91,6 +91,7 @@ export default {
},
},
created() {
if (this.idQuery.billNo != null)
this.getOrderDetails();
},
}

@ -200,6 +200,7 @@ export default {
},
},
created() {
if (this.idQuery.billNo != null)
this.getCodeList();
},
}

@ -306,8 +306,7 @@ export default {
fromCorpId: "",
fromCorp: "",
},
idQuery: {
},
idQuery: {},
storageList: [],
subInvList: [],
errOrderVisible: false,

@ -1,48 +1,64 @@
<template>
<div>
<el-card class="el-card">
<div>
<el-form :model="listQuery" size="mini">
<el-row style="margin-top: 15px;width: 1000px">
<el-form-item class="query-form-item">
<el-form :model="listQuery" size="mini" label-width="100px" v-show="showSearch">
<el-row>
<el-col :span="18">
<el-form-item class="query-form-item" label="UDI码:">
<el-input v-model="listQuery.udiCode"
style="width: 600px"
style="width: 97%"
placeholder="请扫描或输入UDI码"
clearable="true"
@keyup.enter.native="keyup_submit($event)"></el-input>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-form-item class="query-form-item">
<el-col :span="6">
<el-form-item class="query-form-item" label="产品编码:">
<el-input v-model="listQuery.unionCode" placeholder="DI/医保编码/商品条码"
style="width: 90%"
clearable="true"></el-input>
</el-form-item>
<el-form-item class="query-form-item">
<el-input v-model="listQuery.cpmctymc" placeholder="产品通用名" clearable="true"></el-input>
</el-col>
<el-col :span="6">
<el-form-item class="query-form-item" label="产品通用名:">
<el-input v-model="listQuery.cpmctymc" placeholder="产品通用名" clearable="true"
style="width: 90%"></el-input>
</el-form-item>
<el-form-item class="query-form-item">
<el-input v-model="listQuery.ggxh" placeholder="规格型号" clearable="true"></el-input>
</el-col>
<el-col :span="6">
<el-form-item class="query-form-item" label="规格型号:">
<el-input v-model="listQuery.ggxh" placeholder="规格型号" clearable="true"
style="width: 90%"></el-input>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-form-item class="query-form-item">
<el-col :span="6">
<el-form-item class="query-form-item" label="注册备案人:">
<el-input v-model="listQuery.ylqxzcrbarmc" placeholder="生产企业/注册备案人"
style="width: 90%"
clearable="true"></el-input>
</el-form-item>
<el-form-item class="query-form-item">
<el-input v-model="listQuery.thrPiId" placeholder="第三方产品编码" clearable="true"></el-input>
</el-form-item>
<el-form-item>
<el-button-group>
<el-button type="primary" icon="el-icon-refresh" @click="onReset"></el-button>
<el-button type="primary" icon="search" @click="search"></el-button>
<el-button type="primary" icon="search" @click="confirmSelect"></el-button>
</el-button-group>
</el-col>
<el-col :span="6">
<el-form-item class="query-form-item" label="外部产品编码:">
<el-input v-model="listQuery.thrPiId" placeholder="第三方产品编码"
style="width: 90%"
clearable="true"></el-input>
</el-form-item>
</el-col>
</el-row>
</el-form>
<div class="top-right-btn">
<el-button-group>
<el-button icon="el-icon-view" type="primary" @click="hideSearch">/</el-button>
<el-button type="primary" icon="el-icon-refresh" @click="onReset"></el-button>
<el-button type="primary" icon="el-icon-search" @click="search"></el-button>
<el-button type="primary" icon="el-icon-check" @click="confirmSelect"></el-button>
</el-button-group>
</div>
<el-table
:data="dataList"
style="width: 100%"
@ -118,9 +134,7 @@
:total="pageTotal"
:current-page="listQuery.page"
></el-pagination>
</div>
</el-card>
<el-dialog title="请选择对应的资质证书" :visible.sync="dialogFormVisible" append-to-body width="40%">
<el-form :model="form">
<el-form-item label="" prop="isGive">
@ -134,7 +148,6 @@
<el-button @click="dialogFormVisible = false"> </el-button>
</div>
</el-dialog>
</div>
</template>
@ -163,6 +176,7 @@ export default {
data() {
return {
loading: false,
showSearch: true,
listQuery: {
udiCode: null,
cpmctymc: null,
@ -201,6 +215,10 @@ export default {
this.getList();
},
hideSearch() {
this.showSearch = !this.showSearch;
},
search() {
this.listQuery.page = 1;
this.getList();
@ -257,7 +275,7 @@ export default {
if (this.currentCert == null) {
this.$message.error("请先选择对应的注册证!");
} else {
this.multipleSelection.zczbhhzbapzbh = this.currentCert;
this.currentRow.zczbhhzbapzbh = this.currentCert;
this.combine();
}
},

Loading…
Cancel
Save