|
|
|
@ -1,145 +1,214 @@
|
|
|
|
|
<template>
|
|
|
|
|
<div>
|
|
|
|
|
<el-card class="el-card">
|
|
|
|
|
<el-form :model="filterQuery" class="query-form" size="mini" label-width="100px" v-show="showSearch">
|
|
|
|
|
<el-row>
|
|
|
|
|
<el-col :span="18">
|
|
|
|
|
<el-form-item class="query-form-item" label="扫码查询:">
|
|
|
|
|
<el-input v-model="filterQuery.udiCode"
|
|
|
|
|
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-col :span="6">
|
|
|
|
|
<el-form-item class="query-form-item" label="DI/物资编码:">
|
|
|
|
|
<el-input v-model="filterQuery.nameCode" placeholder="DI/物资编码"
|
|
|
|
|
style="width: 90%"
|
|
|
|
|
clearable="true"></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="6">
|
|
|
|
|
<el-form-item class="query-form-item" label="物资名称:">
|
|
|
|
|
<el-input v-model="filterQuery.cpmctymc" placeholder="物资名称"
|
|
|
|
|
style="width: 90%"
|
|
|
|
|
clearable="true"></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="6">
|
|
|
|
|
<el-form-item class="query-form-item" label="规格型号:">
|
|
|
|
|
<el-input v-model="filterQuery.ggxh" placeholder="规格型号"
|
|
|
|
|
style="width: 90%"
|
|
|
|
|
clearable="true"></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="6">
|
|
|
|
|
<el-form-item class="query-form-item" label="批次号:">
|
|
|
|
|
<el-input v-model="filterQuery.batchNo" placeholder="批次号"
|
|
|
|
|
style="width: 90%"
|
|
|
|
|
clearable="true"></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
<el-row>
|
|
|
|
|
<el-col :span="6">
|
|
|
|
|
<el-form-item class="query-form-item" label="注册/备案号:">
|
|
|
|
|
<el-input v-model="filterQuery.zczbhhzbapzbh" placeholder="注册/备案号"
|
|
|
|
|
style="width: 90%"
|
|
|
|
|
clearable="true"></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="6">
|
|
|
|
|
<el-form-item class="query-form-item" label="生产企业:">
|
|
|
|
|
<el-input v-model="filterQuery.ylqxzcrbarmc" placeholder="生产企业"
|
|
|
|
|
style="width: 90%"
|
|
|
|
|
clearable="true"></el-input>
|
|
|
|
|
<el-form v-if="queryList && queryList.length > 0" :model="filterQuery" class="query-form" size="mini" label-width="100px" v-show="showSearch">
|
|
|
|
|
<!-- <el-row>-->
|
|
|
|
|
<!-- <el-col :span="18">-->
|
|
|
|
|
<!-- <el-form-item class="query-form-item" label="扫码查询:">-->
|
|
|
|
|
<!-- <el-input v-model="filterQuery.udiCode"-->
|
|
|
|
|
<!-- 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-col :span="6">-->
|
|
|
|
|
<!-- <el-form-item class="query-form-item" label="DI/物资编码:">-->
|
|
|
|
|
<!-- <el-input v-model="filterQuery.nameCode" placeholder="DI/物资编码"-->
|
|
|
|
|
<!-- style="width: 90%"-->
|
|
|
|
|
<!-- clearable="true"></el-input>-->
|
|
|
|
|
<!-- </el-form-item>-->
|
|
|
|
|
<!-- </el-col>-->
|
|
|
|
|
<!-- <el-col :span="6">-->
|
|
|
|
|
<!-- <el-form-item class="query-form-item" label="物资名称:">-->
|
|
|
|
|
<!-- <el-input v-model="filterQuery.cpmctymc" placeholder="物资名称"-->
|
|
|
|
|
<!-- style="width: 90%"-->
|
|
|
|
|
<!-- clearable="true"></el-input>-->
|
|
|
|
|
<!-- </el-form-item>-->
|
|
|
|
|
<!-- </el-col>-->
|
|
|
|
|
<!-- <el-col :span="6">-->
|
|
|
|
|
<!-- <el-form-item class="query-form-item" label="规格型号:">-->
|
|
|
|
|
<!-- <el-input v-model="filterQuery.ggxh" placeholder="规格型号"-->
|
|
|
|
|
<!-- style="width: 90%"-->
|
|
|
|
|
<!-- clearable="true"></el-input>-->
|
|
|
|
|
<!-- </el-form-item>-->
|
|
|
|
|
<!-- </el-col>-->
|
|
|
|
|
<!-- <el-col :span="6">-->
|
|
|
|
|
<!-- <el-form-item class="query-form-item" label="批次号:">-->
|
|
|
|
|
<!-- <el-input v-model="filterQuery.batchNo" placeholder="批次号"-->
|
|
|
|
|
<!-- style="width: 90%"-->
|
|
|
|
|
<!-- clearable="true"></el-input>-->
|
|
|
|
|
<!-- </el-form-item>-->
|
|
|
|
|
<!-- </el-col>-->
|
|
|
|
|
<!-- </el-row>-->
|
|
|
|
|
<!-- <el-row>-->
|
|
|
|
|
<!-- <el-col :span="6">-->
|
|
|
|
|
<!-- <el-form-item class="query-form-item" label="注册/备案号:">-->
|
|
|
|
|
<!-- <el-input v-model="filterQuery.zczbhhzbapzbh" placeholder="注册/备案号"-->
|
|
|
|
|
<!-- style="width: 90%"-->
|
|
|
|
|
<!-- clearable="true"></el-input>-->
|
|
|
|
|
<!-- </el-form-item>-->
|
|
|
|
|
<!-- </el-col>-->
|
|
|
|
|
<!-- <el-col :span="6">-->
|
|
|
|
|
<!-- <el-form-item class="query-form-item" label="生产企业:">-->
|
|
|
|
|
<!-- <el-input v-model="filterQuery.ylqxzcrbarmc" placeholder="生产企业"-->
|
|
|
|
|
<!-- style="width: 90%"-->
|
|
|
|
|
<!-- clearable="true"></el-input>-->
|
|
|
|
|
<!-- </el-form-item>-->
|
|
|
|
|
<!-- </el-col>-->
|
|
|
|
|
<!-- <el-col :span="6">-->
|
|
|
|
|
<!-- <el-form-item class="query-form-item" label="所属仓库:">-->
|
|
|
|
|
<!-- <el-select v-model="filterQuery.invCode" placeholder="请选择所属仓库" clearable="true"-->
|
|
|
|
|
<!-- style="width: 90%"-->
|
|
|
|
|
<!-- @change="invChange"-->
|
|
|
|
|
<!-- >-->
|
|
|
|
|
<!-- <el-option-->
|
|
|
|
|
<!-- v-for="item in invList"-->
|
|
|
|
|
<!-- :key="item.name"-->
|
|
|
|
|
<!-- :label="item.name"-->
|
|
|
|
|
<!-- :value="item.code">-->
|
|
|
|
|
<!-- <span style="float: left">{{ item.name }}</span>-->
|
|
|
|
|
<!-- </el-option>-->
|
|
|
|
|
<!-- </el-select>-->
|
|
|
|
|
<!-- </el-form-item>-->
|
|
|
|
|
<!-- </el-col>-->
|
|
|
|
|
<!-- <el-col :span="6">-->
|
|
|
|
|
<!-- <el-form-item class="query-form-item" label="所属货位:">-->
|
|
|
|
|
<!-- <el-select-->
|
|
|
|
|
<!-- v-model="filterQuery.invSpaceCode"-->
|
|
|
|
|
<!-- filterable-->
|
|
|
|
|
<!-- remote-->
|
|
|
|
|
<!-- clearable="true"-->
|
|
|
|
|
<!-- reserve-keyword-->
|
|
|
|
|
<!-- placeholder="请选择所属货位"-->
|
|
|
|
|
<!-- :remote-method="getSpaceList"-->
|
|
|
|
|
<!-- size="mini"-->
|
|
|
|
|
<!-- :loading="corpLoading"-->
|
|
|
|
|
<!-- style="width: 90%"-->
|
|
|
|
|
<!-- >-->
|
|
|
|
|
<!-- <el-option-->
|
|
|
|
|
<!-- v-for="item in spaceList"-->
|
|
|
|
|
<!-- :key="item.name"-->
|
|
|
|
|
<!-- :label="item.name"-->
|
|
|
|
|
<!-- :value="item.code"-->
|
|
|
|
|
<!-- >-->
|
|
|
|
|
<!-- <span style="float: left">{{ item.name }}</span>-->
|
|
|
|
|
<!-- <span style="float: right; color: #8492a6; font-size: 13px">{{ item.code }}</span>-->
|
|
|
|
|
|
|
|
|
|
<!-- </el-option>-->
|
|
|
|
|
<!-- </el-select>-->
|
|
|
|
|
<!-- </el-form-item>-->
|
|
|
|
|
<!-- </el-col>-->
|
|
|
|
|
<!-- <el-col :span="6">-->
|
|
|
|
|
<!-- <el-form-item label="过滤方式:">-->
|
|
|
|
|
<!-- <el-select-->
|
|
|
|
|
<!-- v-model="filterQuery.filterNoInv"-->
|
|
|
|
|
<!-- style="width: 90%"-->
|
|
|
|
|
<!-- clearable>-->
|
|
|
|
|
<!-- <el-option label="有库存" :value="1"></el-option>-->
|
|
|
|
|
<!-- <el-option label="零库存" :value="2"></el-option>-->
|
|
|
|
|
<!-- <el-option label="负库存" :value="3"></el-option>-->
|
|
|
|
|
<!-- </el-select>-->
|
|
|
|
|
<!-- </el-form-item>-->
|
|
|
|
|
<!-- </el-col>-->
|
|
|
|
|
<!-- <el-col :span="6">-->
|
|
|
|
|
<!-- <el-form-item class="query-form-item" label="供应商名称:">-->
|
|
|
|
|
<!-- <el-select-->
|
|
|
|
|
<!-- v-model="filterQuery.supId"-->
|
|
|
|
|
<!-- filterable-->
|
|
|
|
|
<!-- remote-->
|
|
|
|
|
<!-- clearable="true"-->
|
|
|
|
|
<!-- reserve-keyword-->
|
|
|
|
|
<!-- placeholder="请选择供应商名称"-->
|
|
|
|
|
<!-- :remote-method="findMethod"-->
|
|
|
|
|
<!-- size="mini"-->
|
|
|
|
|
<!-- :loading="corpLoading"-->
|
|
|
|
|
<!-- @change="corpChange"-->
|
|
|
|
|
<!-- style="width: 90%"-->
|
|
|
|
|
<!-- @clear="getcorp"-->
|
|
|
|
|
<!-- >-->
|
|
|
|
|
<!-- <el-option-->
|
|
|
|
|
<!-- v-for="item in fromOptions"-->
|
|
|
|
|
<!-- :key="item.name"-->
|
|
|
|
|
<!-- :label="item.name"-->
|
|
|
|
|
<!-- :value="item.erpId"-->
|
|
|
|
|
<!-- >-->
|
|
|
|
|
<!-- <span style="float: left">{{ item.name }}</span>-->
|
|
|
|
|
<!-- </el-option>-->
|
|
|
|
|
<!-- </el-select>-->
|
|
|
|
|
<!-- </el-form-item>-->
|
|
|
|
|
<!-- </el-col>-->
|
|
|
|
|
<!-- </el-row>-->
|
|
|
|
|
<el-row style=" display:flex; flex-wrap: wrap; ">
|
|
|
|
|
<template v-for="(item, index) in queryList" >
|
|
|
|
|
<el-form-item v-if="item.columnType == 'input' && executeEval(row,item.expression,true)" :label="item.columnDesc+`:`" :key="item.id">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="filterQuery[item.columnName]"
|
|
|
|
|
:placeholder="item.columnDesc"
|
|
|
|
|
:disabled="executeEval(null,item.disabledFuc,false)"
|
|
|
|
|
@keyup.enter.native="executeFuc($event,'5',item.clickFuc)"
|
|
|
|
|
clearable
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="6">
|
|
|
|
|
<el-form-item class="query-form-item" label="所属仓库:">
|
|
|
|
|
<el-select v-model="filterQuery.invCode" placeholder="请选择所属仓库" clearable="true"
|
|
|
|
|
style="width: 90%"
|
|
|
|
|
@change="invChange"
|
|
|
|
|
>
|
|
|
|
|
<el-form-item v-if="item.columnType == 'select' && executeEval(row,item.expression,true)" :label="item.columnDesc+`:`">
|
|
|
|
|
<el-select v-model="filterQuery[item.columnName]"
|
|
|
|
|
:placeholder="item.columnDesc"
|
|
|
|
|
:disabled="executeEval(null,item.disabledFuc,false)"
|
|
|
|
|
clearable>
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in invList"
|
|
|
|
|
:key="item.name"
|
|
|
|
|
:label="item.name"
|
|
|
|
|
:value="item.code">
|
|
|
|
|
<span style="float: left">{{ item.name }}</span>
|
|
|
|
|
</el-option>
|
|
|
|
|
v-for="dict in item.lableRuleObj"
|
|
|
|
|
:key="dict.value"
|
|
|
|
|
:label="dict.label"
|
|
|
|
|
:value="dict.value"
|
|
|
|
|
/>
|
|
|
|
|
<span style="float: left">{{ item.name }}</span>
|
|
|
|
|
<span v-if="item.isShowXx == '1'" style="float: right; color: #8492a6; font-size: 13px">{{ item.code }}</span>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="6">
|
|
|
|
|
<el-form-item class="query-form-item" label="所属货位:">
|
|
|
|
|
<el-form-item v-if="item.columnType == 'selectServer' && executeEval(row,item.expression,true)" :label="item.columnDesc+`:`">
|
|
|
|
|
<el-select
|
|
|
|
|
v-model="filterQuery.invSpaceCode"
|
|
|
|
|
v-model="filterQuery[item.columnName]"
|
|
|
|
|
:placeholder="item.columnDesc"
|
|
|
|
|
:disabled="executeEval(null,item.disabledFuc,false)"
|
|
|
|
|
filterable
|
|
|
|
|
remote
|
|
|
|
|
clearable="true"
|
|
|
|
|
reserve-keyword
|
|
|
|
|
placeholder="请选择所属货位"
|
|
|
|
|
:remote-method="getSpaceList"
|
|
|
|
|
size="mini"
|
|
|
|
|
:loading="corpLoading"
|
|
|
|
|
style="width: 90%"
|
|
|
|
|
>
|
|
|
|
|
:remote-method="(query) => executeFuc(query,'5',item.clickFuc)"
|
|
|
|
|
clearable>
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in spaceList"
|
|
|
|
|
:key="item.name"
|
|
|
|
|
:label="item.name"
|
|
|
|
|
v-for="item in options[item.clickFuc]"
|
|
|
|
|
:key="item.code"
|
|
|
|
|
:label="item.label"
|
|
|
|
|
:value="item.code"
|
|
|
|
|
>
|
|
|
|
|
<span style="float: left">{{ item.name }}</span>
|
|
|
|
|
<span style="float: right; color: #8492a6; font-size: 13px">{{ item.code }}</span>
|
|
|
|
|
|
|
|
|
|
</el-option>
|
|
|
|
|
/>
|
|
|
|
|
<span style="float: left">{{ item.name }}</span>
|
|
|
|
|
<span v-if="item.isShowXx == '1'" style="float: right; color: #8492a6; font-size: 13px">{{ item.code }}</span>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="6">
|
|
|
|
|
<el-form-item label="过滤方式:">
|
|
|
|
|
<el-select
|
|
|
|
|
v-model="filterQuery.filterNoInv"
|
|
|
|
|
style="width: 90%"
|
|
|
|
|
clearable>
|
|
|
|
|
<el-option label="有库存" :value="1"></el-option>
|
|
|
|
|
<el-option label="零库存" :value="2"></el-option>
|
|
|
|
|
<el-option label="负库存" :value="3"></el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
<el-form-item v-if="item.columnType == 'datePicker' && executeEval(row,item.expression,true)" :label="item.columnDesc+`:`">
|
|
|
|
|
<el-date-picker
|
|
|
|
|
:picker-options="pickerOptions"
|
|
|
|
|
v-model="actDateRange"
|
|
|
|
|
type="daterange"
|
|
|
|
|
format="yyyy 年 MM 月 dd 日"
|
|
|
|
|
value-format="yyyy-MM-dd"
|
|
|
|
|
range-separator="至"
|
|
|
|
|
start-placeholder="开始日期"
|
|
|
|
|
end-placeholder="结束日期"
|
|
|
|
|
></el-date-picker>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="6">
|
|
|
|
|
<el-form-item class="query-form-item" label="供应商名称:">
|
|
|
|
|
<el-select
|
|
|
|
|
v-model="filterQuery.supId"
|
|
|
|
|
filterable
|
|
|
|
|
remote
|
|
|
|
|
clearable="true"
|
|
|
|
|
reserve-keyword
|
|
|
|
|
placeholder="请选择供应商名称"
|
|
|
|
|
:remote-method="findMethod"
|
|
|
|
|
size="mini"
|
|
|
|
|
:loading="corpLoading"
|
|
|
|
|
@change="corpChange"
|
|
|
|
|
style="width: 90%"
|
|
|
|
|
@clear="getcorp"
|
|
|
|
|
>
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in fromOptions"
|
|
|
|
|
:key="item.name"
|
|
|
|
|
:label="item.name"
|
|
|
|
|
:value="item.erpId"
|
|
|
|
|
>
|
|
|
|
|
<span style="float: left">{{ item.name }}</span>
|
|
|
|
|
</el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
<el-form-item v-if="item.columnType == 'date' && executeEval(row,item.expression,true)" :label="item.columnDesc+`:`">
|
|
|
|
|
<el-date-picker
|
|
|
|
|
v-model="filterQuery[item.columnName]"
|
|
|
|
|
:style="`width:${item.width+'px'}`"
|
|
|
|
|
value-format="yyyy-MM-dd"
|
|
|
|
|
:disabled="executeEval(null,item.disabledFuc,false)"
|
|
|
|
|
type="date"
|
|
|
|
|
:placeholder="item.columnDesc"
|
|
|
|
|
></el-date-picker>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</template>
|
|
|
|
|
</el-row>
|
|
|
|
|
</el-form>
|
|
|
|
|
<div class="top-right-btn">
|
|
|
|
@ -160,51 +229,138 @@
|
|
|
|
|
<el-divider style="margin: 15px"></el-divider>
|
|
|
|
|
<el-table v-loading="loading" :data="list" style="width: 100%" highlight-current-row
|
|
|
|
|
border>
|
|
|
|
|
<el-table-column label="序号" type="index"></el-table-column>
|
|
|
|
|
<el-table-column label="供应商" prop="supName" v-if="showSup" show-overflow-tooltip
|
|
|
|
|
width="120"></el-table-column>
|
|
|
|
|
<el-table-column label="货架" prop="spaceName"
|
|
|
|
|
v-if="filterQuery.invSpaceCode!='' && filterQuery.invSpaceCode!=null" show-overflow-tooltip
|
|
|
|
|
width="120"></el-table-column>
|
|
|
|
|
<el-table-column label="DI/物资编码" prop="nameCode" width="150"></el-table-column>
|
|
|
|
|
<el-table-column label="物资名称" prop="cpmctymc" width="180" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column label="规格型号" prop="ggxh" show-overflow-tooltip width="180"></el-table-column>
|
|
|
|
|
<el-table-column label="批次号" prop="batchNo" width="120"></el-table-column>
|
|
|
|
|
<el-table-column label="价格" prop="price" width="120"></el-table-column>
|
|
|
|
|
<el-table-column label="入库数量" prop="inCount" width="120"></el-table-column>
|
|
|
|
|
<el-table-column label="出库数量" prop="outCount" width="120"></el-table-column>
|
|
|
|
|
<el-table-column label="结余数量" prop="reCount" width="120">
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="部门" prop="deptName" v-if="showSup"
|
|
|
|
|
show-overflow-tooltip width="120"></el-table-column>
|
|
|
|
|
<el-table-column label="仓库" prop="invName" v-if="showSup"
|
|
|
|
|
show-overflow-tooltip width="120"></el-table-column>
|
|
|
|
|
<el-table-column label="计量单位" prop="measname" width="120"></el-table-column>
|
|
|
|
|
<el-table-column label="生产日期" prop="productionDate" width="120"></el-table-column>
|
|
|
|
|
<el-table-column label="失效日期" prop="expireDate" width="120"></el-table-column>
|
|
|
|
|
<!-- <el-table-column label="序号" type="index"></el-table-column>-->
|
|
|
|
|
<!-- <el-table-column label="供应商" prop="supName" v-if="showSup" show-overflow-tooltip-->
|
|
|
|
|
<!-- width="120"></el-table-column>-->
|
|
|
|
|
<!-- <el-table-column label="货架" prop="spaceName"-->
|
|
|
|
|
<!-- v-if="filterQuery.invSpaceCode!='' && filterQuery.invSpaceCode!=null" show-overflow-tooltip-->
|
|
|
|
|
<!-- width="120"></el-table-column>-->
|
|
|
|
|
<!-- <el-table-column label="DI/物资编码" prop="nameCode" width="150"></el-table-column>-->
|
|
|
|
|
<!-- <el-table-column label="物资名称" prop="cpmctymc" width="180" show-overflow-tooltip></el-table-column>-->
|
|
|
|
|
<!-- <el-table-column label="规格型号" prop="ggxh" show-overflow-tooltip width="180"></el-table-column>-->
|
|
|
|
|
<!-- <el-table-column label="批次号" prop="batchNo" width="120"></el-table-column>-->
|
|
|
|
|
<!-- <el-table-column label="价格" prop="price" width="120"></el-table-column>-->
|
|
|
|
|
<!-- <el-table-column label="入库数量" prop="inCount" width="120"></el-table-column>-->
|
|
|
|
|
<!-- <el-table-column label="出库数量" prop="outCount" width="120"></el-table-column>-->
|
|
|
|
|
<!-- <el-table-column label="结余数量" prop="reCount" width="120">-->
|
|
|
|
|
<!-- </el-table-column>-->
|
|
|
|
|
<!-- <el-table-column label="部门" prop="deptName" v-if="showSup"-->
|
|
|
|
|
<!-- show-overflow-tooltip width="120"></el-table-column>-->
|
|
|
|
|
<!-- <el-table-column label="仓库" prop="invName" v-if="showSup"-->
|
|
|
|
|
<!-- show-overflow-tooltip width="120"></el-table-column>-->
|
|
|
|
|
<!-- <el-table-column label="计量单位" prop="measname" width="120"></el-table-column>-->
|
|
|
|
|
<!-- <el-table-column label="生产日期" prop="productionDate" width="120"></el-table-column>-->
|
|
|
|
|
<!-- <el-table-column label="失效日期" prop="expireDate" width="120"></el-table-column>-->
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-table-column label="生产企业" prop="ylqxzcrbarmc" show-overflow-tooltip
|
|
|
|
|
width="120"></el-table-column>
|
|
|
|
|
<el-table-column label="注册/备案号" prop="zczbhhzbapzbh" width="160" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column label="操作" width="80" fixed="right">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-button
|
|
|
|
|
type="text"
|
|
|
|
|
size="small"
|
|
|
|
|
@click.native.stop="detailDialog(scope.row)"
|
|
|
|
|
>详情
|
|
|
|
|
</el-button
|
|
|
|
|
>
|
|
|
|
|
<!-- <el-button-->
|
|
|
|
|
<!-- type="text"-->
|
|
|
|
|
<!-- size="small"-->
|
|
|
|
|
<!-- @click.native.stop="deleteDialog(scope.row.id)"-->
|
|
|
|
|
<!-- >删除-->
|
|
|
|
|
<!-- </el-button-->
|
|
|
|
|
<!-- >-->
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<!-- <el-table-column label="生产企业" prop="ylqxzcrbarmc" show-overflow-tooltip-->
|
|
|
|
|
<!-- width="120"></el-table-column>-->
|
|
|
|
|
<!-- <el-table-column label="注册/备案号" prop="zczbhhzbapzbh" width="160" show-overflow-tooltip></el-table-column>-->
|
|
|
|
|
<!-- <el-table-column label="操作" width="80" fixed="right">-->
|
|
|
|
|
<!-- <template slot-scope="scope">-->
|
|
|
|
|
<!-- <el-button-->
|
|
|
|
|
<!-- type="text"-->
|
|
|
|
|
<!-- size="small"-->
|
|
|
|
|
<!-- @click.native.stop="detailDialog(scope.row)"-->
|
|
|
|
|
<!-- >详情-->
|
|
|
|
|
<!-- </el-button-->
|
|
|
|
|
<!-- >-->
|
|
|
|
|
<!-- <!– <el-button–>-->
|
|
|
|
|
<!-- <!– type="text"–>-->
|
|
|
|
|
<!-- <!– size="small"–>-->
|
|
|
|
|
<!-- <!– @click.native.stop="deleteDialog(scope.row.id)"–>-->
|
|
|
|
|
<!-- <!– >删除–>-->
|
|
|
|
|
<!-- <!– </el-button–>-->
|
|
|
|
|
<!-- <!– >–>-->
|
|
|
|
|
<!-- </template>-->
|
|
|
|
|
<!-- </el-table-column>-->
|
|
|
|
|
<template v-for="(item, index) in tableHeader">
|
|
|
|
|
<el-table-column
|
|
|
|
|
v-if="item.columnType == 'id' && executeEval(row,item.expression,true)"
|
|
|
|
|
type="index" :label="item.columnDesc"></el-table-column>
|
|
|
|
|
<el-table-column
|
|
|
|
|
v-if="item.columnType == 'selection'"
|
|
|
|
|
type="selection"
|
|
|
|
|
:width="item.width"
|
|
|
|
|
:selectable="(row,number) => executeFuc(row,'3',item.clickFuc)"
|
|
|
|
|
></el-table-column>
|
|
|
|
|
|
|
|
|
|
<el-table-column
|
|
|
|
|
v-if="item.columnType == 'radio' && executeEval(row,item.expression,true)"
|
|
|
|
|
:prop="item.columnName"
|
|
|
|
|
:label="item.columnDesc"
|
|
|
|
|
:sortable="item.sort"
|
|
|
|
|
:width="item.width"
|
|
|
|
|
:show-overflow-tooltip="item.tooltip"
|
|
|
|
|
:key="item.columnName"
|
|
|
|
|
>
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-radio :label="scope.row.id" v-model="radioCheck"><span></span></el-radio>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column
|
|
|
|
|
v-if="item.columnType == 'laber' && executeEval(row,item.expression,true)"
|
|
|
|
|
:prop="item.columnName"
|
|
|
|
|
:label="item.columnDesc"
|
|
|
|
|
:sortable="item.sort"
|
|
|
|
|
:width="item.width"
|
|
|
|
|
:show-overflow-tooltip="item.tooltip"
|
|
|
|
|
:key="item.columnName"
|
|
|
|
|
>
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<span :style="{color: executeFuc(scope.row,'4',item.lableRuleObj[scope.row[item.columnName]])}">{{ item.lableRuleObj[scope.row[item.columnName]] }}</span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column
|
|
|
|
|
v-if="item.columnType == 'eltag' && executeEval(row,item.expression,true)"
|
|
|
|
|
:prop="item.columnName"
|
|
|
|
|
:label="item.columnDesc"
|
|
|
|
|
:sortable="item.sort"
|
|
|
|
|
:width="item.width"
|
|
|
|
|
:show-overflow-tooltip="item.tooltip"
|
|
|
|
|
:key="item.columnName"
|
|
|
|
|
>
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-tag :type="executeFuc(scope.row,'4',item,item.lableRuleObj?item.lableRuleObj[scope.row[item.columnName]]:scope.row[item.columnName])">
|
|
|
|
|
<span>{{ item.lableRuleObj?item.lableRuleObj[scope.row[item.columnName]]:scope.row[item.columnName] }}</span>
|
|
|
|
|
</el-tag>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column
|
|
|
|
|
v-if="item.columnType == 'button' && executeEval(row,item.expression,true)"
|
|
|
|
|
:prop="item.columnName"
|
|
|
|
|
:label="item.columnDesc"
|
|
|
|
|
:width="item.width"
|
|
|
|
|
:key="item.columnName"
|
|
|
|
|
fixed="right"
|
|
|
|
|
>
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-button v-for="(buttonItem, buttonIndex) in item.buttonRulObj"
|
|
|
|
|
:type="buttonItem.type"
|
|
|
|
|
:size="buttonItem.size"
|
|
|
|
|
:style="buttonItem.style"
|
|
|
|
|
:key="buttonItem"
|
|
|
|
|
v-if="executeEval(scope.row,buttonItem.hasPermi,true)"
|
|
|
|
|
:disabled="executeEval(scope.row,buttonItem.disabledFuc,false)"
|
|
|
|
|
@click.native.stop="executeFuc(scope.row,'1',buttonItem.clickFuc)"
|
|
|
|
|
>{{ buttonItem.name }}
|
|
|
|
|
</el-button>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column
|
|
|
|
|
v-if="item.columnType == 'text' && executeEval(row,item.expression,true)"
|
|
|
|
|
:prop="item.columnName"
|
|
|
|
|
:label="item.columnDesc"
|
|
|
|
|
:sortable="item.sort"
|
|
|
|
|
:width="item.width"
|
|
|
|
|
:show-overflow-tooltip="item.tooltip"
|
|
|
|
|
:key="item.columnName"
|
|
|
|
|
>
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<span :style="{color: executeFuc(scope.row,'4',item,scope.row[item.columnName])}">{{ scope.row[item.columnName] }}</span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table>
|
|
|
|
|
<pagination
|
|
|
|
|
v-show="total>0"
|
|
|
|
@ -233,13 +389,16 @@
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import {findAllInvByUser} from "@/api/system/invWarehouse";
|
|
|
|
|
import {findAllInvByUserOptimize} from "@/api/system/invWarehouse";
|
|
|
|
|
import {getInvPreProduct, deleteInvPreProduct} from "@/api/inventory/invPreProduct";
|
|
|
|
|
import {getBasicUnitMaintains} from "@/api/basic/basicUnitMaintain";
|
|
|
|
|
import {getBasicUnitMaintainsOptimize} from "@/api/basic/basicUnitMaintain";
|
|
|
|
|
import {isBlank} from "@/utils/strUtil";
|
|
|
|
|
import invPreProductsDetail from "@/views/inventory/InvPreProductsDetail.vue";
|
|
|
|
|
import {getInvSpaceList} from "@/api/inventory/invSpace";
|
|
|
|
|
import {getInvSpaceListOptimize} from "@/api/inventory/invSpace";
|
|
|
|
|
import {selectUser} from "@/api/auth/authAdmin";
|
|
|
|
|
import {
|
|
|
|
|
getHead,executeFuc
|
|
|
|
|
} from "@/utils/customConfig";
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
name: "InvPreProducts",
|
|
|
|
@ -258,10 +417,18 @@ export default {
|
|
|
|
|
invSpaceCode: null,
|
|
|
|
|
page: 1,
|
|
|
|
|
limit: 10,
|
|
|
|
|
filterNoInv: 1,
|
|
|
|
|
filterNoInv: "1",
|
|
|
|
|
},
|
|
|
|
|
list: [],
|
|
|
|
|
total: 0,
|
|
|
|
|
tableHeader:[],
|
|
|
|
|
queryList:[],
|
|
|
|
|
fromList:[],
|
|
|
|
|
options: {
|
|
|
|
|
getInvList:[],
|
|
|
|
|
findMethod:[],
|
|
|
|
|
getSpaceList:[],
|
|
|
|
|
},
|
|
|
|
|
invList: [],
|
|
|
|
|
invId: null,
|
|
|
|
|
spaceList: [],
|
|
|
|
@ -309,7 +476,7 @@ export default {
|
|
|
|
|
limit: 10,
|
|
|
|
|
};
|
|
|
|
|
this.getList();
|
|
|
|
|
this.findMethod();
|
|
|
|
|
this.findMethod(this);
|
|
|
|
|
},
|
|
|
|
|
onSubmit() {
|
|
|
|
|
this.filterQuery.page = 1;
|
|
|
|
@ -326,12 +493,11 @@ export default {
|
|
|
|
|
this.filterQuery.page = val;
|
|
|
|
|
this.getList();
|
|
|
|
|
},
|
|
|
|
|
keyup_submit(event) {
|
|
|
|
|
this.filterQuery.page = 1;
|
|
|
|
|
this.getList();
|
|
|
|
|
keyup_submit(_this,event) {
|
|
|
|
|
_this.filterQuery.page = 1;
|
|
|
|
|
_this.getList();
|
|
|
|
|
event.target.select();
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
getList() {
|
|
|
|
|
this.loading = true;
|
|
|
|
|
// this.filterQuery.supId = this.$store.getters.customerId;
|
|
|
|
@ -352,51 +518,51 @@ export default {
|
|
|
|
|
this.total = 0;
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
getInvList() {
|
|
|
|
|
getInvList(_this) {
|
|
|
|
|
let query = {
|
|
|
|
|
advanceType: 3, //获取寄售库1:入账,2:预验收,3:寄售
|
|
|
|
|
};
|
|
|
|
|
findAllInvByUser(query)
|
|
|
|
|
findAllInvByUserOptimize(query)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.invList = response.data || [];
|
|
|
|
|
for (var i = 0; i < this.invList.length; i++) {
|
|
|
|
|
if (this.invList[i].advanceType == 3) {
|
|
|
|
|
this.filterQuery.invCode = this.invList[i].code;
|
|
|
|
|
_this.options.getInvList = response.data || [];
|
|
|
|
|
for (var i = 0; i < _this.options.getInvList.length; i++) {
|
|
|
|
|
if (_this.options.getInvList[i].advanceType == 3) {
|
|
|
|
|
_this.filterQuery.invCode = _this.options.getInvList[i].code;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
this.getList();
|
|
|
|
|
this.getSpaceList();
|
|
|
|
|
_this.getList();
|
|
|
|
|
_this.getSpaceList(_this);
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
findMethod(key) {
|
|
|
|
|
this.corpLoading = true;
|
|
|
|
|
this.fromOptions = [];
|
|
|
|
|
findMethod(_this,key) {
|
|
|
|
|
_this.corpLoading = true;
|
|
|
|
|
_this.fromOptions = [];
|
|
|
|
|
let params = {
|
|
|
|
|
key: key,
|
|
|
|
|
corpType: 2,
|
|
|
|
|
page: 1,
|
|
|
|
|
limit: 20
|
|
|
|
|
};
|
|
|
|
|
getBasicUnitMaintains(params).then((res) => {
|
|
|
|
|
this.corpLoading = false;
|
|
|
|
|
this.fromOptions = res.data.list || [];
|
|
|
|
|
getBasicUnitMaintainsOptimize(params).then((res) => {
|
|
|
|
|
_this.corpLoading = false;
|
|
|
|
|
_this.options.findMethod = res.data.list || [];
|
|
|
|
|
}).catch(() => {
|
|
|
|
|
this.corpLoading = false;
|
|
|
|
|
})
|
|
|
|
|
_this.corpLoading = false;
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
corpChange(value) {
|
|
|
|
|
corpChange(_this,value) {
|
|
|
|
|
if (!isBlank(value)) {
|
|
|
|
|
this.findMethod(value);
|
|
|
|
|
_this.findMethod(_this,value);
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
getcorp() {
|
|
|
|
|
this.findMethod();
|
|
|
|
|
this.findMethod(this);
|
|
|
|
|
},
|
|
|
|
|
detailDialog(row) {
|
|
|
|
|
this.detailDialogVisible = true;
|
|
|
|
|
this.inputQuery = {
|
|
|
|
|
detailDialog(_this,row) {
|
|
|
|
|
_this.detailDialogVisible = true;
|
|
|
|
|
_this.inputQuery = {
|
|
|
|
|
relId: row.relIdFk,
|
|
|
|
|
cpmctymc: row.cpmctymc,
|
|
|
|
|
nameCode: row.nameCode,
|
|
|
|
@ -436,17 +602,17 @@ export default {
|
|
|
|
|
this.$message.error(error.message);
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
getSpaceList() {
|
|
|
|
|
getSpaceList(_this) {
|
|
|
|
|
|
|
|
|
|
if (isBlank(this.filterQuery.invCode)) {
|
|
|
|
|
if (isBlank(_this.filterQuery.invCode)) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
let params = {
|
|
|
|
|
invWarehouseCode: this.filterQuery.invCode,
|
|
|
|
|
invWarehouseCode: _this.filterQuery.invCode,
|
|
|
|
|
status: 1
|
|
|
|
|
};
|
|
|
|
|
getInvSpaceList(params).then((res) => {
|
|
|
|
|
this.spaceList = res.data.list || [];
|
|
|
|
|
getInvSpaceListOptimize(params).then((res) => {
|
|
|
|
|
_this.options.getSpaceList = res.data.list || [];
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
querySearchAsync(queryString, cb) {
|
|
|
|
@ -461,9 +627,18 @@ export default {
|
|
|
|
|
}
|
|
|
|
|
cb(results);
|
|
|
|
|
},
|
|
|
|
|
invChange() {
|
|
|
|
|
this.getSpaceList();
|
|
|
|
|
invChange(_this) {
|
|
|
|
|
_this.getSpaceList();
|
|
|
|
|
},
|
|
|
|
|
executeFuc(row,type,clickFuc,value){
|
|
|
|
|
return executeFuc(this,row,type,clickFuc,value);
|
|
|
|
|
},
|
|
|
|
|
executeEval(row,expression,defaultRet){
|
|
|
|
|
if(expression){
|
|
|
|
|
return eval(expression);
|
|
|
|
|
}
|
|
|
|
|
return defaultRet;
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
components: {
|
|
|
|
|
invPreProductsDetail
|
|
|
|
@ -483,8 +658,15 @@ export default {
|
|
|
|
|
}).catch(() => {
|
|
|
|
|
this.corpLoading = false;
|
|
|
|
|
});
|
|
|
|
|
this.findMethod();
|
|
|
|
|
this.getInvList();
|
|
|
|
|
this.findMethod(this);
|
|
|
|
|
this.getInvList(this);
|
|
|
|
|
getHead("invPreProducts","1").then((re) => {
|
|
|
|
|
// 处理返回的数据
|
|
|
|
|
this.tableObj = re.data;
|
|
|
|
|
this.tableHeader = re.data.tableList;
|
|
|
|
|
this.queryList = re.data.queryList;
|
|
|
|
|
this.fromList = re.data.fromList;
|
|
|
|
|
});
|
|
|
|
|
//this.getList();
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|