功能大改造取得阶段性胜利

purchase
anthonyywj2 3 years ago
parent 58462e2e3a
commit 601b990bbe

@ -0,0 +1,9 @@
import axios from "@/utils/axios";
export function filterSickTrace(query) {
return axios({
url: "/spms/inv/sick/order/trace",
method: "get",
params: query
});
}

@ -183,7 +183,7 @@ export default {
inputQuery: { inputQuery: {
action: "", action: "",
name: "", name: "",
enable: "", enable: null,
remark: "", remark: "",
mainAction: "", mainAction: "",
thirdSysFk: "", thirdSysFk: "",
@ -295,8 +295,12 @@ export default {
this.$message.error("扫码单据类型名称不能为空!"); this.$message.error("扫码单据类型名称不能为空!");
return; return;
} }
if (this.$isBlank(this.inputQuery.corpType)) {
this.$message.error("往来信息类型不能为空!");
return;
}
if (this.inputQuery.enable && this.inputQuery.localAction == "") { if (this.inputQuery.enable && this.inputQuery.localAction == "") {
this.$message.error("本地单据不能为空!"); this.$message.error("本地单据类型不能为空!");
return; return;
} }
if (this.inputQuery.mainAction == "" || this.inputQuery.mainAction == null) { if (this.inputQuery.mainAction == "" || this.inputQuery.mainAction == null) {
@ -321,7 +325,7 @@ export default {
onModifySubmit() { onModifySubmit() {
if (this.inputQuery.enable && this.inputQuery.localAction == "") { if (this.inputQuery.enable && this.inputQuery.localAction == "") {
this.$message.error("本地单据不能为空!"); this.$message.error("本地单据类型不能为空!");
return; return;
} }
@ -367,7 +371,7 @@ export default {
handleAddClick() { handleAddClick() {
this.inputQuery = {enable: true, expireTip: true}; this.inputQuery = {enable: false, expireTip: true};
this.addDialogVisible = true; this.addDialogVisible = true;
}, },

@ -113,9 +113,8 @@
</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.changeEnable" @change="isChangeOrder" <el-checkbox v-model="inputQuery.preIn" @change="preInChange"
:disabled="!changeEnable || inputQuery.mainAction=='WareHouseIn' || inputQuery.id == null || inputQuery.mainAction==null ||inputQuery.preIn"> :disabled="inputQuery.mainAction=='WareHouseOut' || inputQuery.mainAction==null">预验收
缺量自动补单
</el-checkbox> </el-checkbox>
</div> </div>
</el-col> </el-col>
@ -124,17 +123,19 @@
<el-checkbox v-model="inputQuery.spUse">使</el-checkbox> <el-checkbox v-model="inputQuery.spUse">使</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.preIn" @change="preInChange" <el-checkbox v-model="inputQuery.changeEnable" @change="isChangeOrder"
:disabled="inputQuery.mainAction=='WareHouseOut' || inputQuery.mainAction==null">预验收 :disabled="!changeEnable || inputQuery.mainAction=='WareHouseIn' || inputQuery.id == null || inputQuery.mainAction==null ||inputQuery.preIn">
自动补单
</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.supplementAll" <el-checkbox v-model="inputQuery.supplementAll"
:disabled="!inputQuery.changeEnable">是否全量补单 :disabled="!inputQuery.changeEnable">全量补单
</el-checkbox> </el-checkbox>
</div> </div>
</el-col> </el-col>
@ -162,6 +163,8 @@
<el-table-column label="补单说明" prop="intro"></el-table-column> <el-table-column label="补单说明" prop="intro"></el-table-column>
<!-- <el-table-column label="补单单据类型代码" prop="action"></el-table-column>--> <!-- <el-table-column label="补单单据类型代码" prop="action"></el-table-column>-->
<el-table-column label="补单扫码单据类型" prop="name"></el-table-column> <el-table-column label="补单扫码单据类型" prop="name"></el-table-column>
<el-table-column label="补单默认仓库" prop="defautInvName"></el-table-column>
<el-table-column label="补单默认分库" prop="defautSubInvName"></el-table-column>
<el-table-column label="推前时长(小时)" prop="beforeTime"></el-table-column> <el-table-column label="推前时长(小时)" prop="beforeTime"></el-table-column>
<el-table-column label="备注" prop="remark"></el-table-column> <el-table-column label="备注" prop="remark"></el-table-column>
<el-table-column label="操作" fixed="right"> <el-table-column label="操作" fixed="right">
@ -220,6 +223,47 @@
</div> </div>
</el-col> </el-col>
</el-row> </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="editQuery.defaultInv" placeholder="默认仓库" clearable="true"
@change="invChange"
size="small">
<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-col :span="10" class="el-col">
<div class="text item">
<div class="itemTag">
<span>补单默认分库:&nbsp;</span>
</div>
<el-select v-model="editQuery.defaultSubInv" placeholder="默认分库" clearable="true"
size="small">
<el-option
v-for="item in subInvList"
: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-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">
@ -274,6 +318,8 @@ import {
deleteChangeBusType, deleteChangeBusType,
updateChangeBusType, removeBusChange updateChangeBusType, removeBusChange
} from "../../api/basic/busChangeType"; } from "../../api/basic/busChangeType";
import {filterAll} from "@/api/basic/invWarehouse";
import {filterSubByInv} from "@/api/basic/invSubWarehouse";
export default { export default {
name: "inputQuery", name: "inputQuery",
@ -310,6 +356,8 @@ export default {
changeList: [], changeList: [],
visibleChange: false, visibleChange: false,
loading: false, loading: false,
storageList: [],
subInvList: [],
} }
}, },
methods: { methods: {
@ -447,6 +495,12 @@ export default {
} }
, ,
advanceChange() {
if (this.inputQuery.advanceType) {
this.inputQuery.preIn = false;
}
},
isChangeOrder() { isChangeOrder() {
if (this.inputQuery.changeEnable) { if (this.inputQuery.changeEnable) {
@ -455,9 +509,39 @@ export default {
} else { } else {
this.visibleChange = false; this.visibleChange = false;
this.removeBusChangeType(); this.removeBusChangeType();
this.inputQuery.supplementAll = false;
} }
} }
, ,
supplementChange() {
},
getStorage() {
this.storageList = [];
filterAll()
.then((response) => {
this.storageList = response.data || [];
this.findDefaultSubInv();
})
.catch(() => {
});
},
findDefaultSubInv() {
this.subInvList = [];
let query = {
pcode: this.editQuery.defaultInv
};
filterSubByInv(query)
.then((response) => {
this.subInvList = response.data || [];
})
.catch(() => {
});
},
invChange() {
if (this.$isNotBlank(this.inputQuery.defaultSubInv))
this.inputQuery.defaultSubInv = null;
this.findDefaultSubInv();
},
}, },
created() { created() {

@ -171,36 +171,36 @@
<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"> <!-- <el-col :span="10" class="el-col">-->
<div class="text item"> <!-- <div class="text item">-->
<div class="itemTag"> <!-- <div class="itemTag">-->
<span>补单默认仓库:&nbsp;</span> <!-- <span>补单默认仓库:&nbsp;</span>-->
</div> <!-- </div>-->
<el-select v-model="inputQuery.defaultInv" placeholder="默认仓库" clearable="true" <!-- <el-select v-model="inputQuery.defaultInv" placeholder="默认仓库" clearable="true"-->
@change="invChange" <!-- @change="invChange"-->
style="width: 30%" <!-- style="width: 30%"-->
size="small"> <!-- size="small">-->
<el-option <!-- <el-option-->
v-for="item in storageList" <!-- v-for="item in storageList"-->
:key="item.name" <!-- :key="item.name"-->
:label="item.name" <!-- :label="item.name"-->
:value="item.code"> <!-- :value="item.code">-->
<span style="float: left">{{ item.name }}</span> <!-- <span style="float: left">{{ item.name }}</span>-->
</el-option> <!-- </el-option>-->
</el-select> <!-- </el-select>-->
<el-select v-model="inputQuery.defaultSubInv" placeholder="默认分库" clearable="true" <!-- <el-select v-model="inputQuery.defaultSubInv" placeholder="默认分库" clearable="true"-->
style="width: 30%" <!-- style="width: 30%"-->
size="small"> <!-- size="small">-->
<el-option <!-- <el-option-->
v-for="item in subInvList" <!-- v-for="item in subInvList"-->
:key="item.name" <!-- :key="item.name"-->
:label="item.name" <!-- :label="item.name"-->
:value="item.code"> <!-- :value="item.code">-->
<span style="float: left">{{ item.name }}</span> <!-- <span style="float: left">{{ item.name }}</span>-->
</el-option> <!-- </el-option>-->
</el-select> <!-- </el-select>-->
</div> <!-- </div>-->
</el-col> <!-- </el-col>-->
<el-col :span="10" class="el-col"> <el-col :span="10" class="el-col">
<div class="text item"> <div class="text item">
@ -223,8 +223,7 @@
<div class="text item" style="margin-top: 6px"> <div class="text item" style="margin-top: 6px">
<el-checkbox v-model="inputQuery.enable"></el-checkbox> <el-checkbox v-model="inputQuery.enable" :disabled="inputQuery.localAction==null"></el-checkbox>
<!-- <el-checkbox v-model="inputQuery.innerOrder"></el-checkbox>-->
<el-checkbox v-model="inputQuery.genUnit" :disabled="inputQuery.corpType !=2"> <el-checkbox v-model="inputQuery.genUnit" :disabled="inputQuery.corpType !=2">
</el-checkbox> </el-checkbox>
<el-checkbox v-model="inputQuery.useDyCount" :disabled="true">使 <el-checkbox v-model="inputQuery.useDyCount" :disabled="true">使
@ -253,11 +252,11 @@
<el-row :gutter="20" class="el-row" type="flex"> <el-row :gutter="20" class="el-row" type="flex">
<el-col :span="24" class="el-col"> <el-col :span="24" class="el-col">
<div class="text item" style="margin-top: 12px"> <div class="text item" style="margin-top: 12px">
<el-checkbox v-model="inputQuery.ullageFill" :disabled="!inputQuery.changeEnable"> <el-checkbox v-model="inputQuery.ullageFill" :disabled="!inputQuery.changeEnable">
</el-checkbox> </el-checkbox>
<el-checkbox v-model="inputQuery.scanPreIn" :disabled="inputQuery.corpType!='2'"> <el-checkbox v-model="inputQuery.scanPreIn" :disabled="inputQuery.corpType!='2'">
</el-checkbox> </el-checkbox>
<el-checkbox v-model="inputQuery.vailInv"> <el-checkbox v-model="inputQuery.vailInv">
</el-checkbox> </el-checkbox>
<el-checkbox v-model="inputQuery.codeFillCheck">UDI <el-checkbox v-model="inputQuery.codeFillCheck">UDI
</el-checkbox> </el-checkbox>
@ -341,7 +340,7 @@
</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.checkChange" :disabled="!inputQuery.checkEnable"> <el-checkbox v-model="inputQuery.checkChange" :disabled="!inputQuery.checkEnable">
</el-checkbox> </el-checkbox>
</div> </div>
</el-col> </el-col>
@ -418,7 +417,7 @@
</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.secCheckChange" :disabled="!inputQuery.secCheckEnable"> <el-checkbox v-model="inputQuery.secCheckChange" :disabled="!inputQuery.secCheckEnable">
</el-checkbox> </el-checkbox>
</div> </div>
</el-col> </el-col>

@ -484,6 +484,12 @@ export default {
this.getThirdSysDetail(); this.getThirdSysDetail();
}, },
formSubmit() { formSubmit() {
if (this.$isBlank(this.editQuery.corpType)) {
this.$message.error("往来单位类型不能为空!");
return;
}
this.$refs["dataForm"].validate(valid => { this.$refs["dataForm"].validate(valid => {
if (valid) { if (valid) {
this.formLoading = true; this.formLoading = true;

@ -56,13 +56,6 @@
<div> <div>
<el-form :inline="true" :model="unitQuery" style="display: flex" size="mini"> <el-form :inline="true" :model="unitQuery" style="display: flex" size="mini">
<!-- <el-form-item class="query-form-item">-->
<!-- <el-input-->
<!-- v-model="unitQuery.unitId"-->
<!-- placeholder="往来单位编码"-->
<!-- clearable-->
<!-- ></el-input>-->
<!-- </el-form-item>-->
<el-form-item class="query-form-item"> <el-form-item class="query-form-item">
<el-input <el-input
v-model="unitQuery.unitId" v-model="unitQuery.unitId"

@ -0,0 +1,573 @@
<template>
<div>
<el-card>
<el-form :inline="true" :model="unionQuery" size="mini">
<el-form-item class="query-form-item">
<el-input v-model="unionQuery.udiCode"
style="width: 600px"
placeholder="请扫描或输入UDI码"
clearable="true"
@keyup.enter.native="keyup_submit($event)"></el-input>
</el-form-item>
<el-form-item class="query-form-item">
<el-button-group>
<el-button type="primary" icon="search" @click="searchList" size="mini"
>查询
</el-button
>
<el-button type="primary" icon="search" @click="getSuperSeaech" size="mini"
>国家同步库查询
</el-button
>
</el-button-group>
</el-form-item>
</el-form>
<el-form
:model="editQuery"
:rules="rules"
ref="editQuery"
label-width="100px"
style="margin-top: 20px"
>
<el-collapse v-model="activeNames">
<el-collapse-item name="1">
<template slot="title">
<p class="form-title">产品标识基本信息</p>
</template>
<el-row :gutter="20" class="el-row" type="flex">
<el-col :span="12" class="el-col">
<div class="text item">
<div class="itemTag">
<span>产品标识:&nbsp;</span>
</div>
<el-input
style="width: 65%"
:disabled="true"
size="small"
splaceholder="请输入内容"
v-model="editQuery.nameCode"
></el-input>
</div>
</el-col>
<el-col :span="12" class="el-col">
<div class="text item">
<div class="itemTag">
<span>最小包装单元内包含使用单元数量:&nbsp;</span>
</div>
<el-input
style="width: 65%"
:disabled="true"
size="small"
splaceholder="请输入内容"
v-model="editQuery.zxxsbzbhsydysl"
></el-input>
</div>
</el-col>
</el-row>
<el-row :gutter="20" class="el-row" type="flex">
<el-col :span="12" class="el-col">
<div class="text item">
<div class="itemTag">
<span>包含下级产品编码:&nbsp;</span>
</div>
<el-input
style="width: 65%"
size="small"
:disabled="true"
splaceholder="请输入内容"
v-model="editQuery.bhxjcpbm"
></el-input>
</div>
</el-col>
<el-col :span="12" class="el-col">
<div class="text item">
<div class="itemTag">
<span>包含最小销售包装数量:&nbsp;</span>
</div>
<el-input
style="width: 65%"
size="small"
:disabled="true"
splaceholder="请输入内容"
v-model="editQuery.bhzxxsbzsl"
></el-input>
</div>
</el-col>
</el-row>
</el-collapse-item>
<el-collapse-item name="2">
<template slot="title">
<p class="form-title">产品基本信息</p>
</template>
<el-row :gutter="20" class="el-row" type="flex">
<el-col :span="12" class="el-col">
<div class="text item">
<div class="itemTag">
<span>产品名称:&nbsp;</span>
</div>
<el-input
style="width: 65%"
size="small"
splaceholder="请输入内容"
:disabled="true"
v-model="editQuery.cpmctymc"
></el-input>
</div>
</el-col>
<el-col :span="12" class="el-col">
<div class="text item">
<div class="itemTag">
<span>规格型号:&nbsp;</span>
</div>
<el-input
style="width: 65%"
:disabled="true"
size="small"
splaceholder="请输入内容"
v-model="editQuery.ggxh"
></el-input>
</div>
</el-col>
</el-row>
<el-row :gutter="20" class="el-row" type="flex">
<el-col :span="12" class="el-col">
<div class="text item">
<div class="itemTag">
<span>产品类别:&nbsp;</span>
</div>
<el-input
style="width: 65%"
:disabled="true"
size="small"
splaceholder="请输入内容"
v-model="editQuery.cplb"
></el-input>
</div>
</el-col>
<el-col :span="12" class="el-col">
<div class="text item">
<div class="itemTag">
<span>分类编码:&nbsp;</span>
</div>
<el-input
style="width: 65%"
:disabled="true"
size="small"
splaceholder="请输入内容"
v-model="editQuery.flbm"
></el-input>
</div>
</el-col>
</el-row>
<el-row :gutter="20" class="el-row" type="flex">
<el-col :span="12" class="el-col">
<div class="text item">
<div class="itemTag">
<span>医疗器械注册人:&nbsp;</span>
</div>
<el-input
style="width: 65%"
:disabled="true"
size="small"
splaceholder="ylqxzcrbarmc"
v-model="editQuery.ylqxzcrbarmc"
></el-input>
</div>
</el-col>
<el-col :span="12" class="el-col">
<div class="text item">
<div class="itemTag">
<span>注册人英文名称:&nbsp;</span>
</div>
<el-input
style="width: 65%"
:disabled="true"
size="small"
splaceholder="请输入内容"
v-model="editQuery.ylqxzcrbarywmc"
></el-input>
</div>
</el-col>
</el-row>
<el-row :gutter="20" class="el-row" type="flex">
<el-col :span="12" class="el-col">
<div class="text item">
<div class="itemTag">
<span>器械类别:&nbsp;</span>
</div>
<el-input
style="width: 65%"
:disabled="true"
size="small"
splaceholder="请输入内容"
v-model="editQuery.qxlb"
></el-input>
</div>
</el-col>
<el-col :span="12" class="el-col">
<div class="text item">
<div class="itemTag">
<span>生产厂家:&nbsp;</span>
</div>
<el-input
style="width: 65%"
:disabled="true"
size="small"
splaceholder="请输入内容"
></el-input>
</div>
</el-col>
</el-row>
<el-row :gutter="20" class="el-row" type="flex">
<el-col :span="12" class="el-col">
<div class="text item">
<div class="itemTag">
<span>商品条码:&nbsp;</span>
</div>
<el-input
style="width: 65%"
size="small" :disabled="true"
splaceholder="请输入内容"
v-model="editQuery.sptm"
></el-input>
</div>
</el-col>
<el-col :span="12" class="el-col">
<div class="text item">
<div class="itemTag">
<span>医保编码:&nbsp;</span>
</div>
<el-input
style="width: 65%" :disabled="true"
size="small"
splaceholder="请输入内容"
v-model="editQuery.ybbm"
></el-input>
</div>
</el-col>
</el-row>
<el-row :gutter="20" class="el-row" type="flex">
<el-col :span="12" class="el-col">
<div class="text item">
<div class="itemTag">
<span>统一社会信用号:&nbsp;</span>
</div>
<el-input
style="width: 65%"
:disabled="true"
size="small"
splaceholder="请输入内容"
v-model="editQuery.tyshxydm"
></el-input>
</div>
</el-col>
<el-col :span="12" class="el-col">
<div class="text item">
<div class="itemTag">
<span>注册证/备案号:&nbsp;</span>
</div>
<el-input
style="width: 65%"
:disabled="true"
size="small"
splaceholder="请输入内容"
v-model="editQuery.zczbhhzbapzbh"
></el-input>
</div>
</el-col>
</el-row>
<el-row :gutter="20" class="el-row" type="flex">
<el-col :span="12" class="el-col">
<div class="text item">
<div class="itemTag">
<span>产品描述:&nbsp;</span>
</div>
<el-input
style="width: 65%"
:disabled="!checked"
size="small"
splaceholder="请输入内容"
v-model="editQuery.cpms"
></el-input>
</div>
</el-col>
</el-row>
</el-collapse-item>
<el-collapse-item name="3">
<template slot="title">
<p class="form-title">生产标识基本信息</p>
</template>
<el-row :gutter="20" class="el-row" type="flex">
<el-col :span="12" class="el-col">
<div class="text item">
<div class="itemTag">
<span>是否包含批号:&nbsp;</span>
</div>
<el-input
style="width: 65%"
:disabled="true"
size="small"
splaceholder="请输入内容"
v-model="editQuery.scbssfbhph"
></el-input>
</div>
</el-col>
<el-col :span="12" class="el-col">
<div class="text item">
<div class="itemTag">
<span>是否包含序列号:&nbsp;</span>
</div>
<el-input
style="width: 65%"
:disabled="true"
size="small"
v-model="editQuery.scbssfbhxlh"
splaceholder="请输入内容"
></el-input>
</div>
</el-col>
</el-row>
<el-row :gutter="20" class="el-row" type="flex">
<el-col :span="12" class="el-col">
<div class="text item">
<div class="itemTag">
<span>是否包含生产日期:&nbsp;</span>
</div>
<el-input
style="width: 65%"
:disabled="true"
size="small"
splaceholder="请输入内容"
v-model="editQuery.scbssfbhscrq"
></el-input>
</div>
</el-col>
<el-col :span="12" class="el-col">
<div class="text item">
<div class="itemTag">
<span>是否包含失效日期:&nbsp;</span>
</div>
<el-input
style="width: 65%"
:disabled="true"
v-model="editQuery.scbssfbhsxrq"
size="small"
splaceholder="请输入内容"
></el-input>
</div>
</el-col>
</el-row>
</el-collapse-item>
<el-collapse-item name="4">
<template slot="title">
<p class="form-title">包装标识信息</p>
</template>
<el-row :gutter="20" class="el-row" type="flex">
<el-col :span="12" class="el-col">
<div class="text item">
<div class="itemTag">
<span>上级产品编码:&nbsp;</span>
</div>
<el-input
style="width: 65%"
:disabled="true"
size="small"
splaceholder="请输入内容"
v-model="editQuery.sjcpbm"
></el-input>
</div>
</el-col>
<el-col :span="12" class="el-col">
<div class="text item">
<div class="itemTag">
<span>包装级别:&nbsp;</span>
</div>
<el-input
style="width: 65%"
size="small"
splaceholder="请输入内容"
:disabled="true"
v-model="editQuery.packLevel"
></el-input>
</div>
</el-col>
</el-row>
<el-row :gutter="20" class="el-row" type="flex">
<el-col :span="12" class="el-col">
<div class="text item">
<div class="itemTag">
<span>计量单位/包装级别:&nbsp;</span>
</div>
<el-input
style="width: 65%"
size="small"
splaceholder="请输入内容"
v-model="editQuery.bzcj"
:disabled="true"
></el-input>
</div>
</el-col>
<el-col :span="12" class="el-col">
<div class="text item">
<div class="itemTag">
<span>包含下级包装数量:&nbsp;</span>
</div>
<el-input
style="width: 65%"
size="small"
splaceholder="请输入内容"
:disabled="true"
v-model="editQuery.bhxjsl"
></el-input>
</div>
</el-col>
</el-row>
</el-collapse-item>
</el-collapse>
</el-form>
</el-card>
</div>
</template>
<script>
import {getUdiInfos, superSearch} from "../../api/basic/udiInfo";
export default {
name: "UdiInfoSearch",
data() {
return {
activeNames: ['1'],
unionQuery: {
page: 1,
limit: 10,
udiCode: null,
},
udidlList: [],
editQuery: {},
}
},
methods: {
searchList() {
this.unionQuery.page = 1;
this.getList();
},
keyup_submit(event) {
this.unionQuery.page = 1;
this.getList();
event.target.select();
},
getList() {
this.loading = true;
getUdiInfos(this.unionQuery)
.then((response) => {
this.loading = false;
if (response.code == 20000) {
this.udidlList = response.data.list || [];
if (this.udidlList == null || this.udidlList.length == 0) {
this.$message.error("未查询到DI信息");
} else {
this.editQuery = this.udidlList[0];
}
} else {
this.$message.error(response.message);
}
})
.catch(() => {
this.loading = false;
this.udidlList = [];
this.total = 0;
});
},
getSuperSeaech() {
this.$confirm("此操作将访问国家库查询DI数据, 是否继续?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
})
.then(() => {
this.loading = true;
superSearch(this.unionQuery)
.then((response) => {
this.loading = false;
if (response.code == 20000) {
this.udidlList = response.data.list || [];
this.total = response.data.total || 0;
} else {
this.$message.error(response.message);
}
})
.catch(() => {
this.loading = false;
this.udidlList = [];
this.total = 0;
});
})
.catch(() => {
});
},
},
mounted() {
document.body.ondrop = function (event) {
event.preventDefault();
event.stopPropagation();
};
},
}
</script>
<style scoped>
.form-title {
font-size: 16px;
font-family: Noto Sans SC;
font-weight: bold;
color: #303133;
padding-bottom: 17px;
padding-top: 17px;
}
</style>

@ -72,6 +72,11 @@
</el-form-item> </el-form-item>
<el-form-item class="query-form-item"> <el-form-item class="query-form-item">
<el-button-group> <el-button-group>
<el-button
type="primary"
icon="el-icon-refresh"
@click="onReset"
></el-button>
<el-button type="primary" icon="search" @click="searchList" size="mini" <el-button type="primary" icon="search" @click="searchList" size="mini"
>查询 >查询
</el-button </el-button
@ -443,6 +448,25 @@ export default {
}, },
methods: { methods: {
onReset() {
this.$router.push({
path: "",
});
this.unionQuery = {
page: 1,
limit: 10,
udiCode: null,
nameCode: "",
cpmctymc: "",
ylqxzcrbarmc: null,
ggxh: "",
zczbhhzbapzbh: "",
isCheck: 1
},
this.actDateRange = [];
// this.getList();
},
searchList() { searchList() {
this.unionQuery.page = 1; this.unionQuery.page = 1;
this.getList(); this.getList();

@ -363,6 +363,7 @@ export default {
manufactory: null, manufactory: null,
thirdSys: null, thirdSys: null,
supName: null, supName: null,
measname: null,
page: 1, page: 1,
limit: 10, limit: 10,
@ -378,6 +379,9 @@ export default {
query: null, query: null,
isRlInv: null, isRlInv: null,
manufactory: null, manufactory: null,
measname: null,
ybbm: null,
sptm: null,
}, },
udidlList: [], udidlList: [],
@ -403,7 +407,9 @@ export default {
spec: null, spec: null,
registerNo: null, registerNo: null,
manufactory: null, manufactory: null,
thirdSys: null,
supName: null, supName: null,
measname: null,
page: 1, page: 1,
limit: 10, limit: 10,
}; };
@ -511,10 +517,12 @@ export default {
} }
this.combineQuery.thirdIds.push(row.code); this.combineQuery.thirdIds.push(row.code);
this.combineQuery.manufactory = row.manufactory; this.combineQuery.manufactory = row.manufactory;
this.combineQuery.measname = row.measname;
}); });
if (this.currentRow != null) { if (this.currentRow != null) {
this.combineQuery.manufactory = this.currentRow.manufactory; this.combineQuery.manufactory = this.currentRow.manufactory;
this.combineQuery.measname = this.currentRow.measname;
} }
@ -572,9 +580,12 @@ export default {
this.combineQuery.thirdId = this.currentRow.code; this.combineQuery.thirdId = this.currentRow.code;
this.combineQuery.erpName = this.currentRow.name; this.combineQuery.erpName = this.currentRow.name;
this.combineQuery.manufactory = this.currentRow.manufactory; this.combineQuery.manufactory = this.currentRow.manufactory;
this.combineQuery.price = this.currentRow.price; this.combineQuery.measname = this.currentRow.measname;
this.combineQuery.supName = this.currentRow.supName; this.combineQuery.ybbm = this.currentRow.ybbm;
this.combineQuery.sptm = this.currentRow.sptm;
this.erpQuery.manufactory = this.currentRow.manufactory; this.erpQuery.manufactory = this.currentRow.manufactory;
this.erpQuery.measname = this.currentRow.measname;
this.combineQuery.price = this.currentRow.price;
if (this.currentRow.checked) { if (this.currentRow.checked) {

@ -291,15 +291,6 @@
<el-table-column label="用户名" prop="employeeName" fixed></el-table-column> <el-table-column label="用户名" prop="employeeName" fixed></el-table-column>
</el-table> </el-table>
<el-pagination
:page-size="hospitalUserQuery.limit"
@current-change="getHospitalUser"
layout="prev, pager, next"
:total="hospitalUserTotal"
:current-page="hospitalUserQuery.page"
>
</el-pagination>
<div slot="footer" class="dialog-footer"> <div slot="footer" class="dialog-footer">
<el-button @click.native="userFormVisible = !userFormVisible" <el-button @click.native="userFormVisible = !userFormVisible"
>取消 >取消
@ -584,7 +575,9 @@
> >
</div> </div>
</el-dialog> </el-dialog>
<el-dialog title="关联仓库" :visible.sync="thrWareHouseVisible"> <el-dialog title="关联仓库" :visible.sync="thrWareHouseVisible"
:close-on-click-modal="false"
:close-on-press-escape="false">
<el-form :inline="true" :model="query" class="query-form" size="mini"> <el-form :inline="true" :model="query" class="query-form" size="mini">
<el-form-item class="query-form-item"> <el-form-item class="query-form-item">
<el-input <el-input
@ -756,10 +749,11 @@ const formJson = {
pid: null, pid: null,
name: null, name: null,
code: null, code: null,
status: "1", status: 1,
advanceType: false, advanceType: false,
isDefault: false, isDefault: false,
level: 1, level: 1,
spUse: false,
}; };
export default { export default {
data() { data() {
@ -911,6 +905,7 @@ export default {
.then((response) => { .then((response) => {
this.loading = false; this.loading = false;
this.mergeList = response.data.list || []; this.mergeList = response.data.list || [];
this.subList = [];
}) })
.catch(() => { .catch(() => {
this.loading = false; this.loading = false;
@ -1254,7 +1249,7 @@ export default {
this.currentCode = row.code; this.currentCode = row.code;
this.currentRow = row; this.currentRow = row;
this.curSeleUser = null; this.curSeleUser = null;
this.busTableTitle = row.name + " 仓库关联单据类型"; this.busTableTitle = "仓库 " + '"' + row.name + '"' + ": 关联单据类型";
this.loadLinkData(row) this.loadLinkData(row)
}, },
@ -1329,6 +1324,7 @@ export default {
}, },
cancelRelBusDiaolog() { cancelRelBusDiaolog() {
this.relBusUserVisile = false; this.relBusUserVisile = false;
this.getUserBusTypeList(1);
}, },
getHospitalUser(val) { getHospitalUser(val) {
if (val != null) { if (val != null) {
@ -1449,9 +1445,9 @@ export default {
} }
}, },
addBussinessTypeData() { addBussinessTypeData() {
if (this.selectBussinessTypeList.length == 0) { // if (this.selectBussinessTypeList.length == 0) {
this.$message.error("请选择单据类型") // this.$message.error("")
} else { // } else {
this.bussinessTypeFormVisible = false; this.bussinessTypeFormVisible = false;
let query = { let query = {
code: this.currentCode, code: this.currentCode,
@ -1481,7 +1477,7 @@ export default {
}).catch((error) => { }).catch((error) => {
}); });
} // }
}, },
updateDirector(row) { updateDirector(row) {
row.director = !row.director; row.director = !row.director;
@ -1526,6 +1522,12 @@ export default {
}, },
// //
bindThrWarehouse() { bindThrWarehouse() {
if (this.checkThrWarehouseRow == null) {
this.$message.error("请先选择绑定仓库!");
return;
}
this.thrWareHouseVisible = false; this.thrWareHouseVisible = false;
let params = { let params = {
id: this.currentId, id: this.currentId,
@ -1605,6 +1607,7 @@ export default {
this.thrWareHouseVisible = true; this.thrWareHouseVisible = true;
this.$message.error("第三方仓库数据加载失败"); this.$message.error("第三方仓库数据加载失败");
}); });
this.$forceUpdate();
}, },
intentSubSelect(row) { intentSubSelect(row) {
@ -1675,7 +1678,7 @@ export default {
}); });
}, },
loadUserBusType(row) { loadUserBusType(row) {
this.busTableTitle = row.employeeName + " 用户关联单据类型"; this.busTableTitle = "用户 " + '"' + row.employeeName + '"' + ": 关联单据类型";
this.curSeleUser = row; this.curSeleUser = row;
this.getUserBusTypeList(1); this.getUserBusTypeList(1);
}, },
@ -1690,7 +1693,7 @@ export default {
filterUserBusTypeList(queryParam).then((res) => { filterUserBusTypeList(queryParam).then((res) => {
if (res.code === 20000) { if (res.code === 20000) {
this.bussinessTypeData = res.data.list || []; this.bussinessTypeData = res.data.list || [];
this.bussinessTypeTotal = res.data.total || 0; this.busTotal = res.data.total || 0;
} }
}).catch((error) => { }).catch((error) => {
}) })

@ -523,9 +523,13 @@ export default {
stockOrderList(this.query) stockOrderList(this.query)
.then(response => { .then(response => {
this.loading = false; this.loading = false;
if (response.code == 20000) {
this.list = response.data.list || []; this.list = response.data.list || [];
this.total = response.data.total || 0; this.total = response.data.total || 0;
this.detailList = []; this.detailList = [];
} else {
this.$message.error(response.message);
}
}) })
.catch(() => { .catch(() => {
this.loading = false; this.loading = false;

@ -606,9 +606,13 @@ export default {
stockOrderList(this.query) stockOrderList(this.query)
.then(response => { .then(response => {
this.loading = false; this.loading = false;
if (response.code == 20000) {
this.list = response.data.list || []; this.list = response.data.list || [];
this.detailList = [];
this.total = response.data.total || 0; this.total = response.data.total || 0;
this.detailList = [];
} else {
this.$message.error(response.message);
}
}) })
.catch(() => { .catch(() => {
this.loading = false; this.loading = false;

@ -678,9 +678,13 @@ export default {
stockOrderList(this.query) stockOrderList(this.query)
.then(response => { .then(response => {
this.loading = false; this.loading = false;
if (response.code == 20000) {
this.list = response.data.list || []; this.list = response.data.list || [];
this.detailList = [];
this.total = response.data.total || 0; this.total = response.data.total || 0;
this.detailList = [];
} else {
this.$message.error(response.message);
}
}) })
.catch(() => { .catch(() => {
this.loading = false; this.loading = false;

@ -580,9 +580,13 @@ export default {
stockOrderList(this.query) stockOrderList(this.query)
.then(response => { .then(response => {
this.loading = false; this.loading = false;
if (response.code == 20000) {
this.list = response.data.list || []; this.list = response.data.list || [];
this.detailList = [];
this.total = response.data.total || 0; this.total = response.data.total || 0;
this.detailList = [];
} else {
this.$message.error(response.message);
}
}) })
.catch(() => { .catch(() => {
this.loading = false; this.loading = false;

@ -632,9 +632,13 @@ export default {
stockOrderList(this.query) stockOrderList(this.query)
.then(response => { .then(response => {
this.loading = false; this.loading = false;
if (response.code == 20000) {
this.list = response.data.list || []; this.list = response.data.list || [];
this.total = response.data.total || 0; this.total = response.data.total || 0;
this.detailList = []; this.detailList = [];
} else {
this.$message.error(response.message);
}
}) })
.catch(() => { .catch(() => {
this.loading = false; this.loading = false;

@ -216,7 +216,7 @@
<el-row :gutter="20"> <el-row :gutter="20">
<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">
@ -228,7 +228,7 @@
remote :disabled="codeArray.length>0" remote :disabled="codeArray.length>0"
clearable="true" clearable="true"
reserve-keyword reserve-keyword
placeholder="请选择部门" placeholder="请选择科室"
:remote-method="findDeptMethod" :remote-method="findDeptMethod"
:loading="loading" :loading="loading"
@focus="findDeptMethod('')" @focus="findDeptMethod('')"
@ -479,6 +479,10 @@ export default {
type: Function, type: Function,
required: true, required: true,
}, },
enableDept: {
type: Object,
required: true,
}
}, },
data() { data() {
return { return {

@ -724,9 +724,13 @@ export default {
stockOrderList(this.query) stockOrderList(this.query)
.then(response => { .then(response => {
this.loading = false; this.loading = false;
if (response.code == 20000) {
this.list = response.data.list || []; this.list = response.data.list || [];
this.total = response.data.total || 0; this.total = response.data.total || 0;
this.detailList = []; this.detailList = [];
} else {
this.$message.error(response.message);
}
}) })
.catch(() => { .catch(() => {
this.loading = false; this.loading = false;

@ -523,9 +523,13 @@ export default {
stockOrderList(this.query) stockOrderList(this.query)
.then(response => { .then(response => {
this.loading = false; this.loading = false;
if (response.code == 20000) {
this.list = response.data.list || []; this.list = response.data.list || [];
this.detailList = [];
this.total = response.data.total || 0; this.total = response.data.total || 0;
this.detailList = [];
} else {
this.$message.error(response.message);
}
}) })
.catch(() => { .catch(() => {
this.loading = false; this.loading = false;

@ -160,8 +160,14 @@
filterOrder(this.filterQuery) filterOrder(this.filterQuery)
.then(response => { .then(response => {
this.loading = false; this.loading = false;
if(response.code ==20000){
this.list = response.data.list || []; this.list = response.data.list || [];
this.total = response.data.total || 0; this.total = response.data.total || 0;
}else {
this.$message.error(response.message);
}
}) })
.catch(() => { .catch(() => {
this.loading = false; this.loading = false;

@ -214,7 +214,7 @@
filterable filterable
clearable="true" clearable="true"
reserve-keyword reserve-keyword
placeholder="请选择部门信息" placeholder="请选择科室"
:remote-method="findDeptMethod" :remote-method="findDeptMethod"
:loading="loading" :loading="loading"
@focus="findDeptMethod('')" @focus="findDeptMethod('')"
@ -233,27 +233,27 @@
</el-row> </el-row>
<el-row :gutter="20"> <!-- <el-row :gutter="20">-->
<el-col :span="20" class="el-col"> <!-- <el-col :span="20" class="el-col">-->
<div class="text item"> <!-- <div class="text item">-->
<el-checkbox v-model="formData.outChangeEnable" <!-- <el-checkbox v-model="formData.outChangeEnable"-->
:disabled="!curAction.changeEnable || corpOrderIdDisabled">允许出库自动缺量补单 <!-- :disabled="!curAction.changeEnable || corpOrderIdDisabled">允许出库自动缺量补单-->
</el-checkbox> <!-- </el-checkbox>-->
<el-checkbox v-model="formData.preCheck" <!-- <el-checkbox v-model="formData.preCheck"-->
:disabled="corpOrderIdDisabled || curAction.corpType !=2" <!-- :disabled="corpOrderIdDisabled || curAction.corpType !=2"-->
>出入库必须校验预验收库 <!-- >出入库必须校验预验收库-->
</el-checkbox> <!-- </el-checkbox>-->
<el-checkbox v-model="formData.vailInv" <!-- <el-checkbox v-model="formData.vailInv"-->
>是否查询库存 <!-- >是否查询库存-->
</el-checkbox> <!-- </el-checkbox>-->
<el-checkbox v-model="formData.codeFillCheck" <!-- <el-checkbox v-model="formData.codeFillCheck"-->
>采集UDI码时进行三期校验 <!-- >采集UDI码时进行三期校验-->
</el-checkbox> <!-- </el-checkbox>-->
</div> <!-- </div>-->
</el-col> <!-- </el-col>-->
</el-row> <!-- </el-row>-->
<el-row :gutter="20" style="margin-top: 12px"> <el-row :gutter="20" style="margin-top: 12px">
<el-col :span="2"> <el-col :span="2">
<div class="ao-text"> <div class="ao-text">

@ -763,8 +763,13 @@ export default {
filterOrder(this.filterQuery) filterOrder(this.filterQuery)
.then((response) => { .then((response) => {
this.loading = false; this.loading = false;
if (response.code == 20000) {
this.list = response.data.list || []; this.list = response.data.list || [];
this.total = response.data.total || 0; this.total = response.data.total || 0;
}else {
this.$message.error(response.message);
}
this.detailList = []; this.detailList = [];
}) })
.catch(() => { .catch(() => {

@ -615,10 +615,16 @@ export default {
this.filterQuery.customerId = store.getters.customerId; this.filterQuery.customerId = store.getters.customerId;
filterOrder(this.filterQuery) filterOrder(this.filterQuery)
.then((response) => { .then((response) => {
this.loading = false; this.loading = false;
if(response.code == 20000){
this.list = response.data.list || []; this.list = response.data.list || [];
this.total = response.data.total || 0; this.total = response.data.total || 0;
}else {
this.$message.error(response.message);
}
this.detailList = []; this.detailList = [];
}) })
.catch(() => { .catch(() => {
this.loading = false; this.loading = false;

@ -81,27 +81,27 @@
</el-table-column> </el-table-column>
<el-table-column label="往来单位" prop="fromCorp" width="220"> <el-table-column label="往来单位" prop="fromCorp" width="220">
<!-- <template slot-scope="scope">--> <!-- <template slot-scope="scope">-->
<!-- <p v-if="scope.row.fromCorp == null">--> <!-- <p v-if="scope.row.fromCorp == null">-->
<!-- <el-button--> <!-- <el-button-->
<!-- type="primary"--> <!-- type="primary"-->
<!-- size="mini"--> <!-- size="mini"-->
<!-- @click.native.stop="handleUnitClick(scope.row)"--> <!-- @click.native.stop="handleUnitClick(scope.row)"-->
<!-- >选择往来单位--> <!-- >选择往来单位-->
<!-- </el-button--> <!-- </el-button-->
<!-- >--> <!-- >-->
<!-- </p>--> <!-- </p>-->
<!-- <p v-if="scope.row.fromCorp !== null">--> <!-- <p v-if="scope.row.fromCorp !== null">-->
<!-- <el-button--> <!-- <el-button-->
<!-- type="primary"--> <!-- type="primary"-->
<!-- size="mini"--> <!-- size="mini"-->
<!-- @click.native.stop="handleUnitClick(scope.row)"--> <!-- @click.native.stop="handleUnitClick(scope.row)"-->
<!-- >{{ scope.row.fromCorp }}--> <!-- >{{ scope.row.fromCorp }}-->
<!-- </el-button--> <!-- </el-button-->
<!-- >--> <!-- >-->
<!-- </p>--> <!-- </p>-->
<!-- </template>--> <!-- </template>-->
</el-table-column> </el-table-column>
<el-table-column label="创建时间" prop="actDate" show-overflow-tooltip> <el-table-column label="创建时间" prop="actDate" show-overflow-tooltip>
@ -333,7 +333,7 @@ export default {
"6": "缺量补录单据", "6": "缺量补录单据",
"7": "UDI供应商平台", "7": "UDI供应商平台",
"8": "平衡补录单据", "8": "平衡补录单据",
"10":"手动补单" "10": "手动补单"
}, },
storageList: [], storageList: [],
subInvList: [], subInvList: [],
@ -460,10 +460,15 @@ export default {
this.filterQuery.customerId = store.getters.customerId; this.filterQuery.customerId = store.getters.customerId;
filterOrder(this.filterQuery) filterOrder(this.filterQuery)
.then((response) => { .then((response) => {
console.log(response)
this.loading = false; this.loading = false;
if (response.code == 20000) {
this.list = response.data.list || []; this.list = response.data.list || [];
this.total = response.data.total || 0; this.total = response.data.total || 0;
} else {
this.$message.error(response.message);
}
}) })
.catch(() => { .catch(() => {
this.loading = false; this.loading = false;

@ -7,6 +7,7 @@
:model="filterQuery" :model="filterQuery"
label-width="480px" label-width="480px"
size="mini" size="mini"
v-if="searchVisible"
> >
<el-row> <el-row>
@ -115,12 +116,12 @@
>详情 >详情
</el-button </el-button
> >
<el-button <!-- <el-button-->
type="text" <!-- type="text"-->
size="small" <!-- size="small"-->
@click.native.stop="deleteDialog(scope.row.id)" <!-- @click.native.stop="deleteDialog(scope.row.id)"-->
>删除 <!-- >删除-->
</el-button> <!-- </el-button>-->
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>
@ -257,12 +258,20 @@ export default {
type: Boolean, type: Boolean,
default: false, default: false,
}, },
diloadTrue: {
type: Boolean,
default: false,
},
udiCode: {
type: Object,
required: true,
},
}, },
data() { data() {
return { return {
query: { filterQuery: {
code: null, code: "",
batchNo: null, batchNo: null,
productIdFk: null, productIdFk: null,
customerId: null, customerId: null,
@ -270,6 +279,7 @@ export default {
limit: 20, limit: 20,
supId: null, supId: null,
}, },
searchVisible: true,
sitcomScan: false, sitcomScan: false,
checkStatus: { checkStatus: {
1: "校验异常", 1: "校验异常",
@ -307,15 +317,6 @@ export default {
fromCorp: "", fromCorp: "",
}, },
actDateRange: [], actDateRange: [],
filterQuery: {
code: null,
batchNo: null,
productIdFk: null,
customerId: null,
page: 1,
limit: 20,
supId: null,
},
detailQuery: { detailQuery: {
orderId: "", orderId: "",
}, },
@ -331,7 +332,7 @@ export default {
codeDetailVisible: false, codeDetailVisible: false,
successOrderExportPDFSettingVisible: false, successOrderExportPDFSettingVisible: false,
total: 0, total: 0,
loading: true, loading: false,
index: null, index: null,
formName: null, formName: null,
orderId: "", orderId: "",
@ -763,7 +764,7 @@ export default {
sc.onInput = function (text) { sc.onInput = function (text) {
//onInput500ms //onInput500ms
if (text.includes("delete")) { if (text.includes("delete")) {
that.formData.code = ""; that.filterQuery.code = "";
return; return;
} }
if (that.sitcomScan) { if (that.sitcomScan) {
@ -777,16 +778,17 @@ export default {
}, },
created() { created() {
this.getBusType(); if (this.$isNotBlank(this.udiCode)) {
let query = this.$route.query;
this.query = Object.assign(this.query, query); if (!this.diloadTrue) {
this.query.limit = parseInt(this.query.limit); this.searchVisible = false;
// }
console.log(this.diloadTrue + "----" + this.searchVisible);
this.filterQuery.code = this.udiCode;
this.getList(); this.getList();
let end = new Date(); }
let start = new Date(); this.getBusType();
start.setTime(start.getTime() - 3600 * 1000 * 24 * 7);
this.actDateRange = [start, end];
}, },
}; };
</script> </script>

@ -0,0 +1,520 @@
<template>
<div>
<el-card class="el-card">
<el-form :inline="true" :model="filterQuery" class="query-form" size="mini">
<el-form-item class="query-form-item" label-width="100px">
<el-input
id="inputer"
v-model="filterQuery.sickAd"
placeholder="请输入病人住院号"
clearable
ref='inputRef'
style="width: 500px"
@keypress.enter.native="enterKey($event)"
></el-input>
</el-form-item>
<el-form-item>
<el-button-group>
<el-button type="primary" icon="search" @click="getList"
>查询
</el-button>
</el-button-group>
</el-form-item>
</el-form>
<el-table
v-loading="loading"
:data="list"
style="width: 100%"
@row-click="getOrderDetail"
highlight-current-row
@selection-change="handleSelectionChange"
>
<el-table-column label="序号" type="index"></el-table-column>
<el-table-column label="扫码单据类型" prop="action">
<template slot-scope="scope">
<span>{{ getActionName(scope.row.action) }}</span>
</template>
</el-table-column>
<el-table-column
label="订单号"
prop="id"
show-overflow-tooltip="true"
></el-table-column>
<el-table-column label="来源" prop="fromType">
<template slot-scope="scope">
<span>{{ fromTypeMap[scope.row.fromType] }}</span>
</template>
</el-table-column>
<el-table-column label="往来单位" prop="fromCorp" width="250">
</el-table-column>
<el-table-column
label="创建时间"
prop="actDate"
width="150"
show-overflow-tooltip="true"
>
<template slot-scope="scope">
<i class="el-icon-time"></i>
<span>{{ scope.row.actDate }}</span>
</template>
</el-table-column>
<!-- <el-table-column label="操作" fixed="right" width="120">-->
<!-- <template slot-scope="scope">-->
<!-- <el-button-->
<!-- type="text"-->
<!-- size="small"-->
<!-- @click.native.stop="intentDetail(scope.row)"-->
<!-- >详情-->
<!-- </el-button-->
<!-- >-->
<!-- </template>-->
<!-- </el-table-column>-->
</el-table>
<el-pagination
:page-size="filterQuery.limit"
@current-change="handleCurrentChange"
layout="prev, pager, next"
:current-page="filterQuery.page"
:total="total"
></el-pagination>
</el-card>
<el-card class="el-card" v-if="true" id="printJS-form">
<el-table
v-loading="loading"
:row-class-name="tableRowClassName"
:data="detailList"
style="width: 100%"
>
<el-table-column label="序号" type="index"></el-table-column>
<el-table-column
label="UDI码"
prop="code"
:show-overflow-tooltip="true"
></el-table-column>
<el-table-column
label="产品通用名"
prop="coName"
:show-overflow-tooltip="true"
></el-table-column>
<el-table-column
label="包装规格"
prop="packSpec"
:show-overflow-tooltip="true"
></el-table-column>
<el-table-column
width="100"
label="批次号"
prop="batchNo"
:show-overflow-tooltip="true"
></el-table-column>
<el-table-column
label="生产日期"
prop="productDate"
width="100"
:show-overflow-tooltip="true"
></el-table-column>
<el-table-column
label="失效日期"
prop="expireDate"
width="100"
:show-overflow-tooltip="true"
></el-table-column>
<el-table-column
label="生产企业"
prop="productCompany"
:show-overflow-tooltip="true"
></el-table-column>
<el-table-column
label="注册/备案凭证号"
prop="authCode"
:show-overflow-tooltip="true"
></el-table-column>
<el-table-column label="操作" fixed="right" width="120">
<template slot-scope="scope">
<el-button
type="text"
size="small"
@click.native.stop="intentDetail(scope.row)"
>流向详情
</el-button
>
</template>
</el-table-column>
</el-table>
</el-card>
<el-dialog
title="单号详情"
:visible.sync="codeDetailVisible"
width="80%"
v-if="codeDetailVisible"
>
<codeDetail
:idQuery="idQuery"
v-on:closeDetailDialog="closeDetailDialog"
></codeDetail>
</el-dialog>
<el-dialog
title="UDI码流向"
:visible.sync="udiCodeTraceVisible"
width="80%"
v-if="udiCodeTraceVisible"
>
<udiCodeTrace
:udiCode="udiCode"
:diloadTrue="false"
v-on:closeDetailDialog="closeDetailDialog"
></udiCodeTrace>
</el-dialog>
<el-dialog title="校验信息" :visible.sync="errDialogVisible" width="30%">
<span>{{ errorDetail }}</span>
<span slot="footer" class="dialog-footer">
<el-button type="primary" @click="errDialogVisible = false"
> </el-button
>
</span>
</el-dialog>
</div>
</template>
<script>
import {
orderDetail,
} from "../../api/warehouse/order";
import {repeatCheck} from "../../api/erp/erpOrder";
import draggable from "vuedraggable";
import codeDetail from "../warehouse/code";
import udiCodeTrace from "./invUdiTraceOrder"
import {getBussinessType} from "../../api/basic/bussinessType";
import {filterSickTrace} from "@/api/inventory/invSickTrace";
import {getBasicUnitMaintains} from "@/api/basic/basicUnitMaintain";
import A from "@/plugin/KeyScaner";
export default {
name: "sickerUdiTraceOrder",
data() {
return {
query: {
code: null,
batchNo: null,
productIdFk: null,
customerId: null,
page: 1,
limit: 20,
supId: null,
},
sitcomScan: false,
checkStatus: {
1: "校验异常",
0: "未校验",
2: "正常",
},
fromOptions: [],
erpCheckStatus: {
1: "校验异常",
0: "未校验",
2: "校验成功",
},
fromTypeMap: {
"1": "UDIMS平台",
"2": "网页新增",
"3": "pda即时校验",
"4": "pda未校验",
"5": "pc端扫码精灵",
"6": "缺量补录单据",
"7": "UDI供应商平台",
"8": "平衡补录单据",
"10": "手动补单"
},
//
list: [],
detailList: [],
filterQuery: {
sickAd: null,
page: 1,
limit: 20,
},
detailQuery: {
orderId: "",
},
deleteData: {
id: "",
},
idQuery: {
id: "",
},
curIndex: "",
adListNoDataText: "无数据",
codeDetailVisible: false,
udiCodeTraceVisible: false,
udiCode: null,
total: 0,
loading: false,
index: null,
formName: null,
orderId: "",
formMap: {
add: "新增",
edit: "编辑",
},
exportQuery: {
orderId: "",
exportStatus: "",
},
uploadQuery: {
orderId: "",
},
busTypes: [],
multipleSelection: [],
dialogTableVisible: false,
formLoading: false,
formVisible: false,
deleteLoading: false,
addDialogVisible: false,
errDialogVisible: false,
};
},
components: {
draggable,
codeDetail,
udiCodeTrace,
},
methods: {
onReset() {
this.$router.push({
path: "",
});
this.filterQuery = {
code: null,
batchNo: null,
productIdFk: null,
customerId: null,
page: 1,
limit: 20,
supId: null,
};
this.actDateRange = [];
this.getList();
},
enterKey(event) {
this.$refs.inputRef.select();
this.onSubmit();
},
onSubmit() {
this.getList();
},
handleSizeChange(val) {
this.filterQuery.limit = val;
this.getList();
},
handleCurrentChange(val) {
this.filterQuery.page = val;
this.getList();
},
handleSelectionChange(val) {
this.multipleSelection = val;
},
handleErrorDetail(poistion) {
var mOrder = this.list[poistion];
this.errorDetail = mOrder.remark;
this.errDialogVisible = true;
},
findMethod(query) {
this.fromOptions = [];
let cQuery = {
key: query,
};
getBasicUnitMaintains(cQuery)
.then((response) => {
this.loading = false;
this.fromOptions = response.data.page.list || [];
})
.catch(() => {
this.loading = false;
});
},
//
getList() {
this.loading = true;
if (!this.$isBlank(this.filterQuery.sickAd)) {
let code = this.filterQuery.sickAd;
this.filterQuery.sickAd = code.replace("\r", "")
}
filterSickTrace(this.filterQuery)
.then((response) => {
if (response.code == 20000) {
this.loading = false;
this.list = response.data.list || [];
this.detailList = [];
this.total = response.data.total || 0;
} else {
this.loading = false;
this.list = [];
this.detailList = [];
this.total = 0;
this.$message.error(response.message);
}
})
.catch(() => {
this.loading = false;
this.list = [];
this.total = 0;
});
},
//
getOrderDetail(row) {
this.loading = true;
this.detailQuery = {
orderId: row.id,
showType: 1,
};
this.refresgOrderDetail();
},
refresgOrderDetail() {
orderDetail(this.detailQuery)
.then((response) => {
this.loading = false;
this.detailList = response.data || [];
})
.catch(() => {
this.loading = false;
this.detailList = [];
});
},
intentDetail(row) {
// this.codeDetailVisible = true;
this.udiCode = row.code;
this.udiCodeTraceVisible = true;
this.idQuery.id = row.id;
},
tableRowClassName({row, rowIndex}) {
if (row.reCount === row.count) {
return "success-row";
} else {
return "warning-row";
}
},
closeDetailDialog(val) {
this.codeDetailVisible = false;
this.udiCodeTraceVisible = false;
},
cancelDialog() {
this.addDialogVisible = false;
},
importOrder(row) {
this.orderId = row.id;
this.addDialogVisible = true;
},
getBusType() {
let query = {
enabled: true,
};
getBussinessType(query)
.then((response) => {
this.busTypes = response.data.list || [];
this.filterQuery.billAction = this.busTypes[0].action;
})
.catch(() => {
});
},
getActionName(action) {
for (let i = 0; i < this.busTypes.length; i++) {
if (this.busTypes[i].action === action) {
return this.busTypes[i].name;
}
}
},
},
filters: {
statusFilterType(status) {
const statusMap = {
false: "success",
true: "danger",
};
return statusMap[status];
},
},
mounted() {
document.body.ondrop = function (event) {
event.preventDefault();
event.stopPropagation();
};
var that = this;
var inputer = document.getElementById("inputer");
window.sc = new A.KeyScaner(inputer);
sc.onInput = function (text) {
if (text.includes("delete")) {
that.filterQuery.sickAd = "";
return;
}
if (that.sitcomScan) {
that.filterQuery.sickAd = that.filterQuery.sickAd;
} else {
that.filterQuery.sickAd = text;
}
};
inputer.focus();//divtabindexdocumentBody
},
created() {
this.getBusType();
let query = this.$route.query;
this.query = Object.assign(this.query, query);
this.query.limit = parseInt(this.query.limit);
//
// this.getList();
},
};
</script>
<style scoped>
#inputer {
width: 100%;
min-height: 30px;
background-color: white;
border: #d0d0d0;
border-style: solid;
border-width: 0.1px;
color: #4a4a4a;
}
#inputer:focus {
width: 100%;
min-height: 30px;
background-color: white;
border: #0080FF;
border-style: solid;
border-width: 0.1px;
color: #4a4a4a;
}
.el-table .warning-row {
background: #ffb5b5;
}
.el-table .success-row {
background: #ffffff;
}
</style>

@ -220,9 +220,9 @@
prop="action" prop="action"
show-overflow-tooltip show-overflow-tooltip
></el-table-column> ></el-table-column>
<el-table-column width="180" label="允许缺量补单"> <el-table-column width="180" label="允许自动补单">
<template slot-scope="scope"> <template slot-scope="scope">
<el-checkbox v-model="scope.row.outChange"></el-checkbox> <el-checkbox v-model="scope.row.outChange"></el-checkbox>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="操作" fixed="right"> <el-table-column label="操作" fixed="right">

@ -12,7 +12,7 @@
</div> </div>
<el-select <el-select
style="width: 60%" style="width: 60%"
v-model="newProductData.thirdSys" placeholder="请选择第三方系统" v-model="newProductData.thirdSysFk" placeholder="请选择第三方系统"
> >
<el-option <el-option
@ -260,21 +260,21 @@
</el-col> </el-col>
</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="12" class="el-col"> <!-- <el-col :span="12" class="el-col">-->
<div class="text item"> <!-- <div class="text item">-->
<div class="itemTag"> <!-- <div class="itemTag">-->
<span>进口产品代理商:&nbsp;</span> <!-- <span>进口产品代理商:&nbsp;</span>-->
</div> <!-- </div>-->
<el-input <!-- <el-input-->
style="width: 60%" <!-- style="width: 60%"-->
size="small" <!-- size="small"-->
placeholder="请输入内容" <!-- placeholder="请输入内容"-->
v-model.trim="newProductData.cpdls" <!-- v-model.trim="newProductData.cpdls"-->
></el-input> <!-- ></el-input>-->
</div> <!-- </div>-->
</el-col> <!-- </el-col>-->
</el-row> <!-- </el-row>-->
</div> </div>
@ -324,7 +324,7 @@ export default {
qxlb: null, qxlb: null,
cplx:null, cplx:null,
cpms: null, cpms: null,
thirdSys: null, thirdSysFk: null,
cpdls: null cpdls: null
}, },
thirdSys: [], thirdSys: [],
@ -334,7 +334,7 @@ export default {
methods: { methods: {
saveNewProduct() { saveNewProduct() {
this.addProductVisible = false; this.addProductVisible = false;
if (this.$isBlank(this.newProductData.thirdSys)) { if (this.$isBlank(this.newProductData.thirdSysFk)) {
this.$message.warning("第三方系统不能为空!"); this.$message.warning("第三方系统不能为空!");
return; return;
} }
@ -372,6 +372,8 @@ export default {
// //
this.$emit("closeAddDialog", true); this.$emit("closeAddDialog", true);
this.closeAddDialog(); this.closeAddDialog();
} else {
this.$message.error(res.message);
} }
}).catch((error) => { }).catch((error) => {
this.$message.error(error.message); this.$message.error(error.message);
@ -382,6 +384,8 @@ export default {
this.$message.success("添加成功"); this.$message.success("添加成功");
// //
this.closeAddDialog(true); this.closeAddDialog(true);
}else {
this.$message.error(res.message);
} }
}).catch((error) => { }).catch((error) => {
this.$message.error(error.message); this.$message.error(error.message);

@ -299,6 +299,7 @@ export default {
path: "", path: "",
query: this.query query: this.query
}); });
this.query.page = 1;
this.getList(); this.getList();
}, },
handleCurrentChange(val) { handleCurrentChange(val) {

@ -378,6 +378,12 @@ export default {
} }
}, },
formSubmit() { formSubmit() {
if (this.$isBlank(this.formData.name)) {
this.$message.error("请输入角色名称!");
return;
}
this.$refs["dataForm"].validate(valid => { this.$refs["dataForm"].validate(valid => {
if (valid) { if (valid) {
this.formLoading = true; this.formLoading = true;

Loading…
Cancel
Save