|
|
|
@ -11,7 +11,8 @@
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="6">
|
|
|
|
|
<el-form-item class="query-form-item" label="状态:">
|
|
|
|
|
<el-select v-model="filterQuery.status" @clear="filterQuery.status=null" placeholder="请选择状态" style="width: 90%" clearable>
|
|
|
|
|
<el-select v-model="filterQuery.status" @clear="filterQuery.status=null" placeholder="请选择状态"
|
|
|
|
|
style="width: 90%" clearable>
|
|
|
|
|
<el-option v-for="item in stockCompareStatusEnum" :key="item.key" :label="item.desc" :value="item.key"/>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
@ -66,11 +67,11 @@
|
|
|
|
|
<el-table
|
|
|
|
|
v-loading="loading"
|
|
|
|
|
:data="list"
|
|
|
|
|
@row-click="handleSelectionChange"
|
|
|
|
|
style="width: 100%; margin-top: 20px"
|
|
|
|
|
highlight-current-row
|
|
|
|
|
border
|
|
|
|
|
max-height="300"
|
|
|
|
|
height="300">
|
|
|
|
|
>
|
|
|
|
|
<el-table-column label="序号" width="50" type="index"></el-table-column>
|
|
|
|
|
<el-table-column label="记录号" width="160" prop="id"/>
|
|
|
|
|
<el-table-column label="备注描述" width="160" prop="remark"/>
|
|
|
|
@ -97,7 +98,8 @@
|
|
|
|
|
<el-table-column label="操作人" width="110" prop="createUserName"/>
|
|
|
|
|
<el-table-column fixed="right" width="100" label="操作">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-button type="text" @click="edit(scope.row)">编辑</el-button>
|
|
|
|
|
<el-button type="text" @click="edit(scope.row)" v-if="scope.row.status == 'DRAFT'">编辑</el-button>
|
|
|
|
|
<el-button type="text" @click="exportExcel(scope.row)" v-if="scope.row.status == 'FINISHED'">导出</el-button>
|
|
|
|
|
<el-button type="text" @click="del(scope.row)">删除</el-button>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
@ -111,14 +113,80 @@
|
|
|
|
|
@pagination="getList"
|
|
|
|
|
></pagination>
|
|
|
|
|
</el-card>
|
|
|
|
|
<el-tabs type="border-card" style="margin: 15px">
|
|
|
|
|
<el-tab-pane>
|
|
|
|
|
<span slot="label"> {{ currentRow == null ? '' : currentRow.id }}-库存对比结果</span>
|
|
|
|
|
<el-table v-loading="stockCompareDetailLoading"
|
|
|
|
|
:data="stockCompareDetailList"
|
|
|
|
|
highlight-current-row
|
|
|
|
|
max-height="300"
|
|
|
|
|
height="300">
|
|
|
|
|
<el-table-column label="序号" width="50" type="index"/>
|
|
|
|
|
<el-table-column label="DI/物资编码" width="120" prop="nameCode" show-overflow-tooltip/>
|
|
|
|
|
<!-- <el-table-column label="第三方产品编码" width="120" prop="nameCode" show-overflow-tooltip/>-->
|
|
|
|
|
<el-table-column label="产品名称" width="120" prop="productName" show-overflow-tooltip/>
|
|
|
|
|
<el-table-column label="规格型号" width="120" prop="ggxh" show-overflow-tooltip/>
|
|
|
|
|
<el-table-column label="批次号" width="110" prop="batchNo" show-overflow-tooltip/>
|
|
|
|
|
<el-table-column label="出入库类型" width="90" prop="mainAction" show-overflow-tooltip>
|
|
|
|
|
<template scope="scope">
|
|
|
|
|
{{ mainActionMap[scope.row.mainAction] }}
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
|
|
|
|
<el-table-column label="数量" header-align="center">
|
|
|
|
|
<el-table-column header-align="center"
|
|
|
|
|
label="UDI" width="100"
|
|
|
|
|
prop="count"
|
|
|
|
|
show-overflow-tooltip
|
|
|
|
|
></el-table-column>
|
|
|
|
|
<el-table-column header-align="center"
|
|
|
|
|
label="第三方" width="100"
|
|
|
|
|
prop="thrCount"
|
|
|
|
|
show-overflow-tooltip
|
|
|
|
|
></el-table-column>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
|
|
|
|
<el-table-column label="价格" header-align="center">
|
|
|
|
|
<el-table-column header-align="center"
|
|
|
|
|
label="UDI" width="100"
|
|
|
|
|
prop="price"
|
|
|
|
|
show-overflow-tooltip
|
|
|
|
|
></el-table-column>
|
|
|
|
|
<el-table-column header-align="center"
|
|
|
|
|
label="第三方" width="100"
|
|
|
|
|
prop="thrPrice"
|
|
|
|
|
show-overflow-tooltip
|
|
|
|
|
></el-table-column>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
|
|
|
|
<el-table-column label="产品描述" width="110" prop="cpms" show-overflow-tooltip/>
|
|
|
|
|
<el-table-column label="生产厂家" width="110" prop="manufactory" show-overflow-tooltip/>
|
|
|
|
|
<el-table-column label="注册/备案人名称" width="220" prop="ylqxzcrbarmc" show-overflow-tooltip/>
|
|
|
|
|
<el-table-column label="注册/备案证号" width="220" prop="zczbhhzbapzbh" show-overflow-tooltip/>
|
|
|
|
|
<!-- <el-table-column label="操作" v-if="editRow&&editRow.status==stockCompareStatusEnum.DRAFT.key" width="80"-->
|
|
|
|
|
<!-- fixed="right">-->
|
|
|
|
|
<!-- <template scope="scope">-->
|
|
|
|
|
<!-- <el-button type="text" @click="removeDetail(scope.row)">移除</el-button>-->
|
|
|
|
|
<!-- </template>-->
|
|
|
|
|
<!-- </el-table-column>-->
|
|
|
|
|
</el-table>
|
|
|
|
|
<pagination
|
|
|
|
|
v-show="stockCompareDetailTotal>0"
|
|
|
|
|
:total="stockCompareDetailTotal"
|
|
|
|
|
:limit.sync="stockCompareDetailQuery.limit"
|
|
|
|
|
:page.sync="stockCompareDetailQuery.page"
|
|
|
|
|
@pagination="getList"
|
|
|
|
|
></pagination>
|
|
|
|
|
|
|
|
|
|
</el-tab-pane>
|
|
|
|
|
</el-tabs>
|
|
|
|
|
<el-dialog
|
|
|
|
|
append-to-body
|
|
|
|
|
:title="compareId?'编辑对比':'新增对比'"
|
|
|
|
|
:visible="true"
|
|
|
|
|
v-if="showDialog"
|
|
|
|
|
@close="showDialog = false;filterQuery.page = 1;getList()"
|
|
|
|
|
width="60%"
|
|
|
|
|
width="80%"
|
|
|
|
|
>
|
|
|
|
|
<el-card class="dialogCard">
|
|
|
|
|
<el-form :model="param" ref="stockCompare" :disabled="compareId" :rules="paramRules" class="query-form"
|
|
|
|
@ -177,10 +245,15 @@
|
|
|
|
|
<el-card v-if="compareId" class="dialogSecCard">
|
|
|
|
|
<el-row v-if="editRow&&editRow.status==stockCompareStatusEnum.DRAFT.key">
|
|
|
|
|
<el-col align="right">
|
|
|
|
|
<el-button icon="el-icon-refresh" @click="stockCompareDetailQuery.page=1;getStockCompareDetailList()">刷新
|
|
|
|
|
</el-button>
|
|
|
|
|
<el-button type="primary" @click="showAddProduct">添加产品</el-button>
|
|
|
|
|
<el-button type="primary" @click="compareFunc">立即对比</el-button>
|
|
|
|
|
<el-button-group>
|
|
|
|
|
<el-button type="primary" icon="el-icon-plus" @click="showAddProduct">添加本地产品</el-button>
|
|
|
|
|
<el-button type="primary" icon="el-icon-download" @click="compareFunc">下载第三产品</el-button>
|
|
|
|
|
<el-button type="primary" icon="el-icon-upload2"
|
|
|
|
|
@click="uploadCompare">提交比对
|
|
|
|
|
</el-button>
|
|
|
|
|
</el-button-group>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
<el-row style="margin-top: 10px">
|
|
|
|
@ -190,19 +263,46 @@
|
|
|
|
|
max-height="300"
|
|
|
|
|
height="300">
|
|
|
|
|
<el-table-column label="序号" width="50" type="index"/>
|
|
|
|
|
<el-table-column label="最小销售标识" width="110" prop="nameCode"/>
|
|
|
|
|
<el-table-column label="产品名称" width="110" prop="productName"/>
|
|
|
|
|
<el-table-column label="规格型号" width="110" prop="ggxh"/>
|
|
|
|
|
<el-table-column label="出入库类型" width="90" prop="mainAction">
|
|
|
|
|
<el-table-column label="DI/物资编码" width="120" prop="nameCode" show-overflow-tooltip/>
|
|
|
|
|
<!-- <el-table-column label="第三方产品编码" width="120" prop="nameCode" show-overflow-tooltip/>-->
|
|
|
|
|
<el-table-column label="产品名称" width="120" prop="productName" show-overflow-tooltip/>
|
|
|
|
|
<el-table-column label="规格型号" width="120" prop="ggxh" show-overflow-tooltip/>
|
|
|
|
|
<el-table-column label="出入库类型" width="90" prop="mainAction" show-overflow-tooltip>
|
|
|
|
|
<template scope="scope">
|
|
|
|
|
{{ mainActionMap[scope.row.mainAction] }}
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="数量" width="80" prop="count"/>
|
|
|
|
|
<el-table-column label="产品描述" width="110" prop="cpms"/>
|
|
|
|
|
<el-table-column label="生产厂家" width="110" prop="manufactory"/>
|
|
|
|
|
<el-table-column label="医疗器械注册/备案人名称" width="220" prop="ylqxzcrbarmc"/>
|
|
|
|
|
<el-table-column label="注册证/备案批准编号" width="220" prop="zczbhhzbapzbh"/>
|
|
|
|
|
<el-table-column label="批次号" width="110" prop="batchNo" show-overflow-tooltip/>
|
|
|
|
|
<el-table-column label="数量" header-align="center">
|
|
|
|
|
<el-table-column header-align="center"
|
|
|
|
|
label="UDI" width="100"
|
|
|
|
|
prop="count"
|
|
|
|
|
show-overflow-tooltip
|
|
|
|
|
></el-table-column>
|
|
|
|
|
<el-table-column header-align="center"
|
|
|
|
|
label="第三方" width="100"
|
|
|
|
|
prop="thrCount"
|
|
|
|
|
show-overflow-tooltip
|
|
|
|
|
></el-table-column>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
|
|
|
|
<el-table-column label="价格" header-align="center">
|
|
|
|
|
<el-table-column header-align="center"
|
|
|
|
|
label="UDI" width="100"
|
|
|
|
|
prop="price"
|
|
|
|
|
show-overflow-tooltip
|
|
|
|
|
></el-table-column>
|
|
|
|
|
<el-table-column header-align="center"
|
|
|
|
|
label="第三方" width="100"
|
|
|
|
|
prop="thrPrice"
|
|
|
|
|
show-overflow-tooltip
|
|
|
|
|
></el-table-column>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
|
|
|
|
<el-table-column label="产品描述" width="110" prop="cpms" show-overflow-tooltip/>
|
|
|
|
|
<el-table-column label="生产厂家" width="110" prop="manufactory" show-overflow-tooltip/>
|
|
|
|
|
<el-table-column label="注册/备案人名称" width="220" prop="ylqxzcrbarmc" show-overflow-tooltip/>
|
|
|
|
|
<el-table-column label="注册/备案证号" width="220" prop="zczbhhzbapzbh" show-overflow-tooltip/>
|
|
|
|
|
<el-table-column label="操作" v-if="editRow&&editRow.status==stockCompareStatusEnum.DRAFT.key" width="80"
|
|
|
|
|
fixed="right">
|
|
|
|
|
<template scope="scope">
|
|
|
|
@ -233,12 +333,13 @@
|
|
|
|
|
<el-row>
|
|
|
|
|
<el-col :span="12" align="left">选择产品</el-col>
|
|
|
|
|
<el-col :span="12" align="right">
|
|
|
|
|
<el-button icon="el-icon-refresh" @click="selectProductQuery.page = 1;selectInvProductDetailList()">刷新
|
|
|
|
|
</el-button>
|
|
|
|
|
<el-button icon="el-icon-check" type="primary" :disabled="!checkProductList.length"
|
|
|
|
|
@click="checkProduct(false)">选中选入
|
|
|
|
|
</el-button>
|
|
|
|
|
<el-button icon="el-icon-check" type="primary" @click="checkProduct(true)">结果全部选入</el-button>
|
|
|
|
|
|
|
|
|
|
<el-button icon="el-icon-refresh" @click="selectProductQuery.page = 1;selectInvProductDetailList()">刷新
|
|
|
|
|
</el-button>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
</template>
|
|
|
|
@ -265,8 +366,8 @@
|
|
|
|
|
<el-table-column label="数量" width="80" prop="count"/>
|
|
|
|
|
<el-table-column label="产品描述" width="120" prop="cpms"/>
|
|
|
|
|
<el-table-column label="生产厂家" width="110" prop="manufactory"/>
|
|
|
|
|
<el-table-column label="医疗器械注册/备案人名称" width="220" prop="ylqxzcrbarmc"/>
|
|
|
|
|
<el-table-column label="注册证/备案批准编号" width="220" prop="zczbhhzbapzbh"/>
|
|
|
|
|
<el-table-column label="注册/备案人名称" width="220" prop="ylqxzcrbarmc" show-overflow-tooltip/>
|
|
|
|
|
<el-table-column label="注册/备案证号" width="220" prop="zczbhhzbapzbh" show-overflow-tooltip/>
|
|
|
|
|
</el-table>
|
|
|
|
|
<pagination
|
|
|
|
|
v-show="productTotal>0"
|
|
|
|
|