2023-12-12 13:36:08 +08:00
|
|
|
|
<template>
|
|
|
|
|
|
<div class="app-container">
|
2023-12-22 18:57:52 +08:00
|
|
|
|
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="100px">
|
|
|
|
|
|
<el-form-item label="关键字" prop="keyWord">
|
2023-12-12 13:36:08 +08:00
|
|
|
|
<el-input
|
2023-12-22 18:57:52 +08:00
|
|
|
|
v-model="queryParams.keyWord"
|
|
|
|
|
|
placeholder="请输入关键字"
|
2023-12-12 13:36:08 +08:00
|
|
|
|
clearable
|
|
|
|
|
|
style="width: 240px"
|
|
|
|
|
|
@keyup.enter.native="handleQuery"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</el-form-item>
|
2023-12-22 18:57:52 +08:00
|
|
|
|
<!-- <el-form-item label="提交入库时间">
|
|
|
|
|
|
<el-date-picker
|
|
|
|
|
|
v-model="queryParams.submitStorageTime"
|
|
|
|
|
|
style="width: 240px"
|
|
|
|
|
|
value-format="yyyy-MM-dd"
|
|
|
|
|
|
type="date"
|
|
|
|
|
|
range-separator="-"
|
|
|
|
|
|
placeholder="提交入库时间"
|
|
|
|
|
|
></el-date-picker>
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
<el-form-item label="设备类型" prop="typeId">
|
|
|
|
|
|
<el-select
|
|
|
|
|
|
v-model="queryParams.typeId"
|
|
|
|
|
|
placeholder="请选择设备类型"
|
|
|
|
|
|
clearable
|
|
|
|
|
|
style="width: 240px"
|
|
|
|
|
|
>
|
|
|
|
|
|
<el-option
|
|
|
|
|
|
v-for="typeItem in typeList"
|
|
|
|
|
|
:key="typeItem.typeId"
|
|
|
|
|
|
:label="typeItem.typeName"
|
|
|
|
|
|
:value="typeItem.typeId"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</el-select>
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
<el-form-item label="规格型号" prop="modelId">
|
|
|
|
|
|
<el-select
|
|
|
|
|
|
v-model="queryParams.modelId"
|
|
|
|
|
|
placeholder="请选择规格型号"
|
|
|
|
|
|
clearable
|
|
|
|
|
|
style="width: 240px"
|
|
|
|
|
|
>
|
|
|
|
|
|
<el-option
|
|
|
|
|
|
v-for="model in modelList"
|
|
|
|
|
|
:key="model.typeId"
|
|
|
|
|
|
:label="model.typeName"
|
|
|
|
|
|
:value="model.typeId"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</el-select>
|
|
|
|
|
|
</el-form-item> -->
|
2023-12-12 13:36:08 +08:00
|
|
|
|
|
|
|
|
|
|
<el-form-item>
|
|
|
|
|
|
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">查询</el-button>
|
|
|
|
|
|
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
</el-form>
|
|
|
|
|
|
|
|
|
|
|
|
<el-row :gutter="10" class="mb8">
|
2023-12-22 18:57:52 +08:00
|
|
|
|
<!-- <el-col :span="1.5">
|
2023-12-12 13:36:08 +08:00
|
|
|
|
<el-button
|
|
|
|
|
|
type="primary"
|
|
|
|
|
|
plain
|
|
|
|
|
|
icon="el-icon-plus"
|
|
|
|
|
|
size="mini"
|
|
|
|
|
|
:disabled="single"
|
|
|
|
|
|
v-hasPermi="['system:dict:add']"
|
|
|
|
|
|
>入库审核</el-button>
|
2023-12-22 18:57:52 +08:00
|
|
|
|
</el-col> -->
|
2023-12-12 13:36:08 +08:00
|
|
|
|
<!-- <el-col :span="1.5">-->
|
|
|
|
|
|
<!-- <el-button-->
|
|
|
|
|
|
<!-- type="success"-->
|
|
|
|
|
|
<!-- plain-->
|
|
|
|
|
|
<!-- icon="el-icon-edit"-->
|
|
|
|
|
|
<!-- size="mini"-->
|
|
|
|
|
|
<!-- :disabled="single"-->
|
|
|
|
|
|
<!-- @click="handleUpdate"-->
|
|
|
|
|
|
<!-- v-hasPermi="['system:dict:edit']"-->
|
|
|
|
|
|
<!-- >修改</el-button>-->
|
|
|
|
|
|
<!-- </el-col>-->
|
|
|
|
|
|
<!-- <el-col :span="1.5">-->
|
|
|
|
|
|
<!-- <el-button-->
|
|
|
|
|
|
<!-- type="danger"-->
|
|
|
|
|
|
<!-- plain-->
|
|
|
|
|
|
<!-- icon="el-icon-delete"-->
|
|
|
|
|
|
<!-- size="mini"-->
|
|
|
|
|
|
<!-- :disabled="multiple"-->
|
|
|
|
|
|
<!-- @click="handleDelete"-->
|
|
|
|
|
|
<!-- v-hasPermi="['system:dict:remove']"-->
|
|
|
|
|
|
<!-- >删除</el-button>-->
|
|
|
|
|
|
<!-- </el-col>-->
|
2024-01-10 16:29:46 +08:00
|
|
|
|
<el-col :span="1.5">
|
2023-12-12 13:36:08 +08:00
|
|
|
|
<el-button
|
|
|
|
|
|
type="warning"
|
|
|
|
|
|
plain
|
|
|
|
|
|
icon="el-icon-download"
|
|
|
|
|
|
size="mini"
|
|
|
|
|
|
@click="handleExport"
|
|
|
|
|
|
v-hasPermi="['system:dict:export']"
|
|
|
|
|
|
>导出</el-button>
|
2024-01-10 16:29:46 +08:00
|
|
|
|
</el-col>
|
2023-12-12 13:36:08 +08:00
|
|
|
|
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
2023-12-22 18:57:52 +08:00
|
|
|
|
<el-table v-loading="loading" :data="tableList" >
|
|
|
|
|
|
<!-- <el-table-column type="selection" width="55" align="center" /> -->
|
|
|
|
|
|
<el-table-column label="序号" align="center" type="index" width="55px"/>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-table-column label="采购单号" align="center" prop="code" :show-overflow-tooltip="true" />
|
|
|
|
|
|
<el-table-column label="采购日期" align="center" prop="purchaseTime" :show-overflow-tooltip="true" />
|
|
|
|
|
|
<el-table-column label="到货日期" align="center" prop="arrivalTime" :show-overflow-tooltip="true" />
|
|
|
|
|
|
<el-table-column label="采购机具设备" align="center" prop="purchasingTypeName" :show-overflow-tooltip="true" width="250"/>
|
|
|
|
|
|
<el-table-column label="采购员" align="center" prop="purchaserName" :show-overflow-tooltip="true" width="100"/>
|
2024-01-10 16:29:46 +08:00
|
|
|
|
<el-table-column label="入库人员" align="center" prop="updateBy" :show-overflow-tooltip="true" width="100"/>
|
|
|
|
|
|
<el-table-column label="入库时间" align="center" prop="updateTime" :show-overflow-tooltip="true"/>
|
2023-12-22 18:57:52 +08:00
|
|
|
|
<el-table-column label="发布时间" align="center" prop="createTime" :show-overflow-tooltip="true"/>
|
|
|
|
|
|
<el-table-column label="不通过原因" align="center" prop="remark" :show-overflow-tooltip="true" />
|
|
|
|
|
|
<el-table-column label="状态" align="center" prop="taskStatus">
|
2023-12-23 16:03:15 +08:00
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
|
<span v-if="scope.row.taskStatus=='26'">已验收合格</span>
|
|
|
|
|
|
<span v-if="scope.row.taskStatus=='28'">已入库</span>
|
|
|
|
|
|
</template>
|
2023-12-12 13:36:08 +08:00
|
|
|
|
</el-table-column>
|
|
|
|
|
|
|
|
|
|
|
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
|
|
|
|
|
<template slot-scope="scope">
|
2023-12-22 18:57:52 +08:00
|
|
|
|
<el-button
|
|
|
|
|
|
size="mini"
|
|
|
|
|
|
type="text"
|
|
|
|
|
|
icon="el-icon-edit"
|
|
|
|
|
|
@click="handleView(scope.row)"
|
|
|
|
|
|
>查看</el-button>
|
2024-01-10 16:29:46 +08:00
|
|
|
|
<el-button
|
|
|
|
|
|
size="mini"
|
|
|
|
|
|
type="text"
|
|
|
|
|
|
icon="el-icon-edit"
|
|
|
|
|
|
v-if="scope.row.taskStatus=='28'"
|
|
|
|
|
|
@click="handlePrint(scope.row)"
|
|
|
|
|
|
>入库单</el-button>
|
2023-12-12 13:36:08 +08:00
|
|
|
|
<el-button
|
|
|
|
|
|
size="mini"
|
|
|
|
|
|
type="text"
|
|
|
|
|
|
icon="el-icon-edit"
|
2023-12-23 16:03:15 +08:00
|
|
|
|
v-if="scope.row.taskStatus=='26'"
|
2023-12-12 13:36:08 +08:00
|
|
|
|
@click="handleUpdate(scope.row)"
|
|
|
|
|
|
>审核</el-button>
|
|
|
|
|
|
<!-- <el-button-->
|
|
|
|
|
|
<!-- size="mini"-->
|
|
|
|
|
|
<!-- type="text"-->
|
|
|
|
|
|
<!-- icon="el-icon-delete"-->
|
|
|
|
|
|
<!-- @click="handleDelete(scope.row)"-->
|
|
|
|
|
|
<!-- v-hasPermi="['system:dict:remove']"-->
|
|
|
|
|
|
<!-- >删除</el-button>-->
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
</el-table>
|
|
|
|
|
|
|
|
|
|
|
|
<pagination
|
|
|
|
|
|
v-show="total>0"
|
|
|
|
|
|
:total="total"
|
|
|
|
|
|
:page.sync="queryParams.pageNum"
|
|
|
|
|
|
:limit.sync="queryParams.pageSize"
|
|
|
|
|
|
@pagination="getList"
|
|
|
|
|
|
/>
|
|
|
|
|
|
|
2024-01-10 16:29:46 +08:00
|
|
|
|
<!--审批对话框 -->
|
2023-12-22 18:57:52 +08:00
|
|
|
|
<el-dialog :title="title" :visible.sync="open" width="1000px" append-to-body>
|
|
|
|
|
|
<el-form :model="query" ref="query" size="small" :inline="true" v-show="showSearch" label-width="68px">
|
|
|
|
|
|
<el-form-item label="关键字" prop="dictName">
|
2023-12-12 13:36:08 +08:00
|
|
|
|
<el-input
|
2023-12-22 18:57:52 +08:00
|
|
|
|
v-model="query.dictName"
|
|
|
|
|
|
placeholder="请输入关键字"
|
2023-12-12 13:36:08 +08:00
|
|
|
|
clearable
|
|
|
|
|
|
style="width: 240px"
|
|
|
|
|
|
@keyup.enter.native="handleQuery"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</el-form-item>
|
2023-12-22 18:57:52 +08:00
|
|
|
|
<!-- <el-form-item label="状态" prop="status">
|
|
|
|
|
|
<el-select
|
|
|
|
|
|
v-model="query.status"
|
|
|
|
|
|
placeholder="审核状态"
|
|
|
|
|
|
clearable
|
|
|
|
|
|
style="width: 240px"
|
|
|
|
|
|
>
|
|
|
|
|
|
<el-option label="未审核" value="0" />
|
|
|
|
|
|
<el-option label="已入库" value="1" />
|
|
|
|
|
|
<el-option label="驳回" value="2" />
|
|
|
|
|
|
</el-select>
|
|
|
|
|
|
</el-form-item> -->
|
|
|
|
|
|
<!-- <el-form-item label="设备类型" prop="typeId">
|
|
|
|
|
|
<el-select
|
|
|
|
|
|
v-model="query.typeId"
|
|
|
|
|
|
placeholder="请选择设备类型"
|
|
|
|
|
|
clearable
|
|
|
|
|
|
style="width: 240px"
|
|
|
|
|
|
>
|
|
|
|
|
|
<el-option
|
|
|
|
|
|
v-for="typeItem in typeList"
|
|
|
|
|
|
:key="typeItem.typeId"
|
|
|
|
|
|
:label="typeItem.typeName"
|
|
|
|
|
|
:value="typeItem.typeId"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</el-select>
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
<el-form-item label="规格型号" prop="modelId">
|
|
|
|
|
|
<el-select
|
|
|
|
|
|
v-model="query.modelId"
|
|
|
|
|
|
placeholder="请选择规格型号"
|
|
|
|
|
|
clearable
|
|
|
|
|
|
style="width: 240px"
|
|
|
|
|
|
>
|
|
|
|
|
|
<el-option
|
|
|
|
|
|
v-for="model in modelList"
|
|
|
|
|
|
:key="model.typeId"
|
|
|
|
|
|
:label="model.typeName"
|
|
|
|
|
|
:value="model.typeId"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</el-select>
|
|
|
|
|
|
</el-form-item> -->
|
2023-12-12 13:36:08 +08:00
|
|
|
|
<el-form-item>
|
2023-12-22 18:57:52 +08:00
|
|
|
|
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleDialogQuery">查询</el-button>
|
|
|
|
|
|
<!-- <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button> -->
|
2023-12-12 13:36:08 +08:00
|
|
|
|
</el-form-item>
|
|
|
|
|
|
</el-form>
|
|
|
|
|
|
<el-row :gutter="10" class="mb8">
|
|
|
|
|
|
<el-col :span="1.5">
|
|
|
|
|
|
<el-button
|
|
|
|
|
|
type="primary"
|
|
|
|
|
|
plain
|
|
|
|
|
|
size="mini"
|
|
|
|
|
|
:disabled="multiple"
|
2023-12-22 18:57:52 +08:00
|
|
|
|
@click="passAll"
|
|
|
|
|
|
>批量通过</el-button>
|
2023-12-12 13:36:08 +08:00
|
|
|
|
</el-col>
|
|
|
|
|
|
<el-col :span="1.5">
|
|
|
|
|
|
<el-button
|
2023-12-22 18:57:52 +08:00
|
|
|
|
type="danger"
|
2023-12-12 13:36:08 +08:00
|
|
|
|
plain
|
|
|
|
|
|
size="mini"
|
2023-12-22 18:57:52 +08:00
|
|
|
|
@click="refusedAll"
|
2023-12-12 13:36:08 +08:00
|
|
|
|
:disabled="multiple"
|
2023-12-22 18:57:52 +08:00
|
|
|
|
>批量不通过</el-button>
|
2023-12-12 13:36:08 +08:00
|
|
|
|
</el-col>
|
|
|
|
|
|
<!-- <el-col :span="1.5">-->
|
|
|
|
|
|
<!-- <el-button-->
|
|
|
|
|
|
<!-- type="warning"-->
|
|
|
|
|
|
<!-- plain-->
|
|
|
|
|
|
<!-- icon="el-icon-download"-->
|
|
|
|
|
|
<!-- size="mini"-->
|
|
|
|
|
|
<!-- @click="handleExport"-->
|
|
|
|
|
|
<!-- v-hasPermi="['system:dict:export']"-->
|
|
|
|
|
|
<!-- >导出</el-button>-->
|
|
|
|
|
|
<!-- </el-col>-->
|
|
|
|
|
|
</el-row>
|
2023-12-22 18:57:52 +08:00
|
|
|
|
<el-table v-loading="loading" :data="detailTableList" @selection-change="handleSelectionChange" height="400">
|
2023-12-12 13:36:08 +08:00
|
|
|
|
<el-table-column type="selection" width="55" align="center" />
|
2023-12-22 18:57:52 +08:00
|
|
|
|
<el-table-column label="序号" align="center" type="index" />
|
|
|
|
|
|
<el-table-column label="机具类型" align="center" prop="typeName" :show-overflow-tooltip="true" />
|
|
|
|
|
|
<el-table-column label="规格型号" align="center" prop="specificationType" :show-overflow-tooltip="true" />
|
2023-12-23 16:03:15 +08:00
|
|
|
|
<el-table-column label="数量" align="center" prop="checkNum" :show-overflow-tooltip="true" />
|
2023-12-22 18:57:52 +08:00
|
|
|
|
<el-table-column label="编号" align="center" prop="maCode" :show-overflow-tooltip="true" />
|
|
|
|
|
|
|
|
|
|
|
|
<el-table-column label="不通过原因" align="center" prop="remark" :show-overflow-tooltip="true" />
|
2023-12-12 13:36:08 +08:00
|
|
|
|
<el-table-column label="状态" align="center" prop="status">
|
2023-12-23 16:03:15 +08:00
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
|
<span v-if="scope.row.status=='0'">未入库</span>
|
|
|
|
|
|
<span v-if="scope.row.status=='1'">已入库</span>
|
|
|
|
|
|
</template>
|
2023-12-12 13:36:08 +08:00
|
|
|
|
</el-table-column>
|
|
|
|
|
|
|
2023-12-22 18:57:52 +08:00
|
|
|
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width" v-if="showHandle">
|
2023-12-12 13:36:08 +08:00
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
|
<el-button
|
|
|
|
|
|
size="mini"
|
|
|
|
|
|
type="text"
|
2023-12-23 16:03:15 +08:00
|
|
|
|
v-if="scope.row.status=='0'"
|
2023-12-22 18:57:52 +08:00
|
|
|
|
@click="pass(scope.row)"
|
2023-12-12 13:36:08 +08:00
|
|
|
|
>通过</el-button>
|
|
|
|
|
|
<el-button
|
|
|
|
|
|
size="mini"
|
|
|
|
|
|
type="text"
|
2023-12-23 16:03:15 +08:00
|
|
|
|
v-if="scope.row.status=='0'"
|
2023-12-22 18:57:52 +08:00
|
|
|
|
@click="refused(scope.row)"
|
2023-12-12 13:36:08 +08:00
|
|
|
|
>不通过</el-button>
|
|
|
|
|
|
<!-- <el-button-->
|
|
|
|
|
|
<!-- size="mini"-->
|
|
|
|
|
|
<!-- type="text"-->
|
|
|
|
|
|
<!-- icon="el-icon-delete"-->
|
|
|
|
|
|
<!-- @click="handleDelete(scope.row)"-->
|
|
|
|
|
|
<!-- v-hasPermi="['system:dict:remove']"-->
|
|
|
|
|
|
<!-- >删除</el-button>-->
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
</el-table>
|
|
|
|
|
|
|
|
|
|
|
|
<pagination
|
2023-12-22 18:57:52 +08:00
|
|
|
|
v-show="dialogTotal>0"
|
|
|
|
|
|
:total="dialogTotal"
|
|
|
|
|
|
:page.sync="query.pageNum"
|
|
|
|
|
|
:limit.sync="query.pageSize"
|
|
|
|
|
|
@pagination="getDialogTable"
|
2023-12-12 13:36:08 +08:00
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2023-12-22 18:57:52 +08:00
|
|
|
|
|
2023-12-12 13:36:08 +08:00
|
|
|
|
</el-dialog>
|
2024-01-10 16:29:46 +08:00
|
|
|
|
|
|
|
|
|
|
<!-- 入库单弹窗 -->
|
|
|
|
|
|
<el-dialog :visible.sync="openPrint" width="800px" append-to-body>
|
|
|
|
|
|
<vue-easy-print tableShow ref="remarksPrintRef" class="print">
|
|
|
|
|
|
<div class="title" style="text-align: center;font-weight: 600;font-size: 16px;">
|
|
|
|
|
|
入库单
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="info" style="margin-top: 10px;display: flex;flex-wrap: wrap;">
|
|
|
|
|
|
<div class="item" style="width: 50%;flex-shrink: 0;margin-bottom: 5px;font-size: 14px;">
|
|
|
|
|
|
<span>工程名称:</span>{{ printData.unitName }}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="item" style="width: 50%;flex-shrink: 0;margin-bottom: 5px;font-size: 14px;">
|
|
|
|
|
|
<span>日期:</span>{{ printData.proName }}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="item" style="width: 50%;flex-shrink: 0;margin-bottom: 5px;font-size: 14px;">
|
|
|
|
|
|
<span>领料单号</span>{{ printData.updateTimes }}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="item" style="width: 50%;flex-shrink: 0;margin-bottom: 5px;font-size: 14px;">
|
|
|
|
|
|
<span>车辆信息:</span>{{ printData.agreementCode }}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<el-table :data="printTableData" class="table" style="margin-top: 20px" height="400">
|
|
|
|
|
|
<!-- <el-table-column type="selection" width="55" align="center" />-->
|
|
|
|
|
|
<el-table-column label="序号" align="center" type="index" />
|
|
|
|
|
|
<el-table-column label="类型名称" align="center" prop="typeName" />
|
|
|
|
|
|
<el-table-column label="规格型号" align="center" prop="specificationType" />
|
|
|
|
|
|
<el-table-column label="计量单位" align="center" prop="" />
|
|
|
|
|
|
<el-table-column label="数量" align="center" prop="checkNum" />
|
|
|
|
|
|
<el-table-column label="备注" align="center" prop="remark" />
|
|
|
|
|
|
<!-- <el-table-column label="出库方式" align="center" prop="manageTypeName" /> -->
|
|
|
|
|
|
|
|
|
|
|
|
</el-table>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="fillIn" style="margin-top: 20px;display: flex;justify-content: space-between;">
|
|
|
|
|
|
<div class="item" style="width: 25%;">
|
|
|
|
|
|
<span>审核:</span>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="item" style="width: 25%;">
|
|
|
|
|
|
<span>库管员:</span>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="item" style="width: 25%;">
|
|
|
|
|
|
<span>经办人:</span>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
</vue-easy-print>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div slot="footer" class="dialog-footer" style="text-align: center">
|
|
|
|
|
|
<el-button type="primary" @click="print">打 印</el-button>
|
|
|
|
|
|
<el-button @click="openPrint = false">关 闭</el-button>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</el-dialog>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2023-12-12 13:36:08 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
|
import { listType, getType, delType, addType, updateType, refreshCache } from "@/api/system/dict/type";
|
2023-12-22 18:57:52 +08:00
|
|
|
|
import { getRepairedDetailList, inputByType } from "@/api/store/warehousing";
|
|
|
|
|
|
import { getPutInList,getPutinDetailsList ,changePutinStatus} from "@/api/store/newBuy";
|
2024-01-10 16:29:46 +08:00
|
|
|
|
import vueEasyPrint from 'vue-easy-print';
|
2023-12-12 13:36:08 +08:00
|
|
|
|
export default {
|
|
|
|
|
|
name: "Dict",
|
|
|
|
|
|
dicts: ['sys_normal_disable'],
|
2024-01-10 16:29:46 +08:00
|
|
|
|
components:{vueEasyPrint},
|
2023-12-12 13:36:08 +08:00
|
|
|
|
data() {
|
|
|
|
|
|
return {
|
|
|
|
|
|
// 遮罩层
|
|
|
|
|
|
loading: true,
|
|
|
|
|
|
// 选中数组
|
|
|
|
|
|
ids: [],
|
|
|
|
|
|
// 非单个禁用
|
|
|
|
|
|
single: true,
|
|
|
|
|
|
// 非多个禁用
|
|
|
|
|
|
multiple: true,
|
|
|
|
|
|
// 显示搜索条件
|
|
|
|
|
|
showSearch: true,
|
|
|
|
|
|
// 总条数
|
|
|
|
|
|
total: 0,
|
2023-12-22 18:57:52 +08:00
|
|
|
|
// 总条数
|
|
|
|
|
|
dialogTotal: 0,
|
|
|
|
|
|
//搜索下拉数据
|
2023-12-12 13:36:08 +08:00
|
|
|
|
typeList: [],
|
2023-12-22 18:57:52 +08:00
|
|
|
|
modelList: [],
|
|
|
|
|
|
// 表格数据
|
|
|
|
|
|
tableList: [],
|
|
|
|
|
|
detailTableList: [],
|
2023-12-12 13:36:08 +08:00
|
|
|
|
// 弹出层标题
|
|
|
|
|
|
title: "",
|
|
|
|
|
|
// 是否显示弹出层
|
|
|
|
|
|
open: false,
|
2024-01-10 16:29:46 +08:00
|
|
|
|
openPrint: false,
|
|
|
|
|
|
printData:{},
|
|
|
|
|
|
printTableData:[],
|
2023-12-22 18:57:52 +08:00
|
|
|
|
showHandle: true,
|
2023-12-12 13:36:08 +08:00
|
|
|
|
// 日期范围
|
|
|
|
|
|
dateRange: [],
|
|
|
|
|
|
// 查询参数
|
|
|
|
|
|
queryParams: {
|
|
|
|
|
|
pageNum: 1,
|
|
|
|
|
|
pageSize: 10,
|
|
|
|
|
|
dictName: undefined,
|
|
|
|
|
|
dictType: undefined,
|
|
|
|
|
|
status: undefined
|
|
|
|
|
|
},
|
2023-12-22 18:57:52 +08:00
|
|
|
|
query: {
|
|
|
|
|
|
pageNum: 1,
|
|
|
|
|
|
pageSize: 10,
|
|
|
|
|
|
},
|
2023-12-12 13:36:08 +08:00
|
|
|
|
// 表单参数
|
|
|
|
|
|
form: {},
|
|
|
|
|
|
// 表单校验
|
|
|
|
|
|
rules: {
|
|
|
|
|
|
dictName: [
|
|
|
|
|
|
{ required: true, message: "字典名称不能为空", trigger: "blur" }
|
|
|
|
|
|
],
|
|
|
|
|
|
dictType: [
|
|
|
|
|
|
{ required: true, message: "字典类型不能为空", trigger: "blur" }
|
|
|
|
|
|
]
|
|
|
|
|
|
}
|
|
|
|
|
|
};
|
|
|
|
|
|
},
|
|
|
|
|
|
created() {
|
|
|
|
|
|
this.getList();
|
|
|
|
|
|
},
|
|
|
|
|
|
methods: {
|
2023-12-22 18:57:52 +08:00
|
|
|
|
|
2023-12-12 13:36:08 +08:00
|
|
|
|
/** 查询字典类型列表 */
|
|
|
|
|
|
getList() {
|
|
|
|
|
|
this.loading = true;
|
2023-12-22 18:57:52 +08:00
|
|
|
|
getPutInList(this.queryParams).then(response => {
|
|
|
|
|
|
this.tableList = response.rows;
|
2023-12-12 13:36:08 +08:00
|
|
|
|
this.total = response.total;
|
|
|
|
|
|
this.loading = false;
|
|
|
|
|
|
}
|
|
|
|
|
|
);
|
|
|
|
|
|
},
|
2023-12-22 18:57:52 +08:00
|
|
|
|
|
|
|
|
|
|
getDialogTable(){
|
|
|
|
|
|
this.loading = true;
|
|
|
|
|
|
getPutinDetailsList(this.query).then(response => {
|
|
|
|
|
|
this.detailTableList = response.rows;
|
|
|
|
|
|
this.dialogTotal = response.total;
|
|
|
|
|
|
this.loading = false;
|
|
|
|
|
|
}
|
|
|
|
|
|
);
|
|
|
|
|
|
},
|
|
|
|
|
|
|
2023-12-12 13:36:08 +08:00
|
|
|
|
// 取消按钮
|
|
|
|
|
|
cancel() {
|
|
|
|
|
|
this.open = false;
|
|
|
|
|
|
this.reset();
|
|
|
|
|
|
},
|
|
|
|
|
|
// 表单重置
|
|
|
|
|
|
reset() {
|
|
|
|
|
|
this.form = {
|
|
|
|
|
|
dictId: undefined,
|
|
|
|
|
|
dictName: undefined,
|
|
|
|
|
|
dictType: undefined,
|
|
|
|
|
|
status: "0",
|
|
|
|
|
|
remark: undefined
|
|
|
|
|
|
};
|
|
|
|
|
|
this.resetForm("form");
|
|
|
|
|
|
},
|
|
|
|
|
|
/** 搜索按钮操作 */
|
|
|
|
|
|
handleQuery() {
|
|
|
|
|
|
this.queryParams.pageNum = 1;
|
|
|
|
|
|
this.getList();
|
|
|
|
|
|
},
|
2023-12-22 18:57:52 +08:00
|
|
|
|
/** 搜索按钮操作 */
|
|
|
|
|
|
handleDialogQuery() {
|
|
|
|
|
|
this.query.pageNum = 1;
|
|
|
|
|
|
this.getDialogTable();
|
|
|
|
|
|
},
|
2023-12-12 13:36:08 +08:00
|
|
|
|
/** 重置按钮操作 */
|
|
|
|
|
|
resetQuery() {
|
|
|
|
|
|
this.resetForm("queryForm");
|
|
|
|
|
|
this.handleQuery();
|
|
|
|
|
|
},
|
2024-01-10 16:29:46 +08:00
|
|
|
|
|
2023-12-12 13:36:08 +08:00
|
|
|
|
// 多选框选中数据
|
|
|
|
|
|
handleSelectionChange(selection) {
|
2023-12-22 18:57:52 +08:00
|
|
|
|
this.ids = selection.map(item => item)
|
2023-12-12 13:36:08 +08:00
|
|
|
|
this.single = selection.length!=1
|
|
|
|
|
|
this.multiple = !selection.length
|
|
|
|
|
|
},
|
|
|
|
|
|
/** 修改按钮操作 */
|
|
|
|
|
|
handleUpdate(row) {
|
2023-12-22 18:57:52 +08:00
|
|
|
|
// this.reset();
|
|
|
|
|
|
this.query.taskId = row.taskId
|
|
|
|
|
|
this.getDialogTable()
|
|
|
|
|
|
this.open = true;
|
|
|
|
|
|
this.showHandle = true
|
|
|
|
|
|
this.title = "审核";
|
|
|
|
|
|
},
|
2024-01-10 16:29:46 +08:00
|
|
|
|
|
|
|
|
|
|
//通过
|
2023-12-22 18:57:52 +08:00
|
|
|
|
pass(row) {
|
|
|
|
|
|
console.log(row)
|
|
|
|
|
|
console.log(this.query.taskId)
|
|
|
|
|
|
row.taskId = this.query.taskId;
|
|
|
|
|
|
let obj = {
|
|
|
|
|
|
taskId:this.query.taskId,
|
|
|
|
|
|
maId:row.maId,
|
2023-12-23 16:03:15 +08:00
|
|
|
|
inputNum:row.checkNum,
|
2023-12-22 18:57:52 +08:00
|
|
|
|
maCode:row.maCode,
|
|
|
|
|
|
typeId:row.typeId,
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2023-12-23 16:03:15 +08:00
|
|
|
|
let param ={
|
|
|
|
|
|
taskId:this.query.taskId,
|
|
|
|
|
|
checkResult:'1',
|
|
|
|
|
|
inputRecordList:[obj]
|
|
|
|
|
|
}
|
2023-12-22 18:57:52 +08:00
|
|
|
|
changePutinStatus(param).then(response => {
|
|
|
|
|
|
if(response.code==200){
|
|
|
|
|
|
this.$modal.msgSuccess("审批成功");
|
|
|
|
|
|
this.getDialogTable();
|
|
|
|
|
|
}else{
|
|
|
|
|
|
this.$modal.msgSuccess("审批失败");
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
|
|
|
|
|
},
|
|
|
|
|
|
passAll() {
|
|
|
|
|
|
console.log(this.query.taskId)
|
|
|
|
|
|
console.log(this.ids)
|
|
|
|
|
|
this.ids.forEach(item => {
|
|
|
|
|
|
item.taskId = this.query.taskId;
|
2023-12-23 16:03:15 +08:00
|
|
|
|
item.typeId= item.typeId
|
|
|
|
|
|
item.maId= item.maId
|
|
|
|
|
|
item.inputNum= item.checkNum
|
|
|
|
|
|
item.maCode= item.maCode
|
2023-12-12 13:36:08 +08:00
|
|
|
|
});
|
2023-12-23 16:03:15 +08:00
|
|
|
|
let param ={
|
|
|
|
|
|
taskId:this.query.taskId,
|
|
|
|
|
|
checkResult:'1',
|
|
|
|
|
|
inputRecordList:this.ids
|
|
|
|
|
|
}
|
|
|
|
|
|
changePutinStatus(param).then(response => {
|
2023-12-22 18:57:52 +08:00
|
|
|
|
if(response.code==200){
|
|
|
|
|
|
this.$modal.msgSuccess("审批成功");
|
|
|
|
|
|
this.getDialogTable();
|
|
|
|
|
|
}else{
|
|
|
|
|
|
this.$modal.msgSuccess("审批失败");
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
2023-12-12 13:36:08 +08:00
|
|
|
|
},
|
2024-01-10 16:29:46 +08:00
|
|
|
|
//拒绝
|
2023-12-22 18:57:52 +08:00
|
|
|
|
refused(row) {
|
|
|
|
|
|
console.log(row)
|
|
|
|
|
|
console.log(this.query.taskId)
|
|
|
|
|
|
row.taskId = this.query.taskId;
|
|
|
|
|
|
let obj = {
|
|
|
|
|
|
taskId:this.query.taskId,
|
|
|
|
|
|
maId:row.maId,
|
2023-12-23 16:03:15 +08:00
|
|
|
|
maCode:row.maCode,
|
|
|
|
|
|
inputNum:row.checkNum,
|
2023-12-22 18:57:52 +08:00
|
|
|
|
typeId:row.typeId,
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2023-12-23 16:03:15 +08:00
|
|
|
|
let param ={
|
|
|
|
|
|
taskId:this.query.taskId,
|
|
|
|
|
|
checkResult:'2',
|
|
|
|
|
|
inputRecordList:[obj]
|
|
|
|
|
|
}
|
2023-12-22 18:57:52 +08:00
|
|
|
|
changePutinStatus(param).then(response => {
|
|
|
|
|
|
if(response.code==200){
|
|
|
|
|
|
this.$modal.msgSuccess("审批成功");
|
|
|
|
|
|
this.getDialogTable();
|
|
|
|
|
|
}else{
|
|
|
|
|
|
this.$modal.msgSuccess("审批失败");
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
|
|
|
|
|
},
|
|
|
|
|
|
refusedAll() {
|
|
|
|
|
|
console.log(this.query.taskId)
|
|
|
|
|
|
console.log(this.ids)
|
|
|
|
|
|
this.ids.forEach(item => {
|
|
|
|
|
|
item.taskId = this.query.taskId;
|
2023-12-23 16:03:15 +08:00
|
|
|
|
item.typeId= item.typeId
|
|
|
|
|
|
item.maId= item.maId
|
|
|
|
|
|
item.inputNum= item.checkNum
|
|
|
|
|
|
item.maCode= item.maCode
|
2023-12-22 18:57:52 +08:00
|
|
|
|
});
|
2023-12-23 16:03:15 +08:00
|
|
|
|
let param ={
|
|
|
|
|
|
taskId:this.query.taskId,
|
|
|
|
|
|
checkResult:'2',
|
|
|
|
|
|
inputRecordList:this.ids
|
|
|
|
|
|
}
|
2023-12-22 18:57:52 +08:00
|
|
|
|
|
2023-12-23 16:03:15 +08:00
|
|
|
|
changePutinStatus(param).then(response => {
|
2023-12-22 18:57:52 +08:00
|
|
|
|
if(response.code==200){
|
|
|
|
|
|
this.$modal.msgSuccess("审批成功");
|
|
|
|
|
|
this.getDialogTable();
|
|
|
|
|
|
}else{
|
|
|
|
|
|
this.$modal.msgSuccess("审批失败");
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
|
|
|
|
|
},
|
2023-12-12 13:36:08 +08:00
|
|
|
|
/** 提交按钮 */
|
|
|
|
|
|
submitForm: function() {
|
|
|
|
|
|
this.$refs["form"].validate(valid => {
|
|
|
|
|
|
if (valid) {
|
|
|
|
|
|
if (this.form.dictId != undefined) {
|
|
|
|
|
|
updateType(this.form).then(response => {
|
|
|
|
|
|
this.$modal.msgSuccess("修改成功");
|
|
|
|
|
|
this.open = false;
|
|
|
|
|
|
this.getList();
|
|
|
|
|
|
});
|
|
|
|
|
|
} else {
|
|
|
|
|
|
addType(this.form).then(response => {
|
|
|
|
|
|
this.$modal.msgSuccess("新增成功");
|
|
|
|
|
|
this.open = false;
|
|
|
|
|
|
this.getList();
|
|
|
|
|
|
});
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
|
|
|
|
|
},
|
2024-01-10 16:29:46 +08:00
|
|
|
|
//查看操作
|
|
|
|
|
|
handleView(row) {
|
|
|
|
|
|
this.query.taskId = row.taskId
|
|
|
|
|
|
this.getDialogTable()
|
|
|
|
|
|
this.open = true;
|
|
|
|
|
|
this.showHandle = false
|
|
|
|
|
|
this.title = "查看";
|
|
|
|
|
|
},
|
|
|
|
|
|
//获取入库单数据
|
|
|
|
|
|
getPrintTable(taskId){
|
|
|
|
|
|
getPutinDetailsList({taskId:taskId}).then(response => {
|
|
|
|
|
|
this.printTableData = response.rows;
|
|
|
|
|
|
// this.dialogTotal = response.total;
|
|
|
|
|
|
}
|
|
|
|
|
|
);
|
|
|
|
|
|
},
|
|
|
|
|
|
//查看入库单
|
|
|
|
|
|
handlePrint(row) {
|
|
|
|
|
|
this.query.taskId = row.taskId
|
|
|
|
|
|
this.getPrintTable(row.taskId)
|
|
|
|
|
|
this.openPrint = true
|
|
|
|
|
|
this.title = "入库单";
|
|
|
|
|
|
},
|
|
|
|
|
|
//打印
|
|
|
|
|
|
print(){
|
|
|
|
|
|
this.$refs.remarksPrintRef.print();
|
|
|
|
|
|
},
|
|
|
|
|
|
|
2023-12-12 13:36:08 +08:00
|
|
|
|
/** 删除按钮操作 */
|
|
|
|
|
|
handleDelete(row) {
|
|
|
|
|
|
const dictIds = row.dictId || this.ids;
|
|
|
|
|
|
this.$modal.confirm('是否确认删除字典编号为"' + dictIds + '"的数据项?').then(function() {
|
|
|
|
|
|
return delType(dictIds);
|
|
|
|
|
|
}).then(() => {
|
|
|
|
|
|
this.getList();
|
|
|
|
|
|
this.$modal.msgSuccess("删除成功");
|
|
|
|
|
|
}).catch(() => {});
|
|
|
|
|
|
},
|
|
|
|
|
|
/** 导出按钮操作 */
|
|
|
|
|
|
handleExport() {
|
2024-01-10 16:29:46 +08:00
|
|
|
|
this.download('material/purchaseCheckInfo/putInExport', {
|
2023-12-12 13:36:08 +08:00
|
|
|
|
...this.queryParams
|
2024-01-10 16:29:46 +08:00
|
|
|
|
}, `新购工机具入库_${new Date().getTime()}.xlsx`)
|
2023-12-12 13:36:08 +08:00
|
|
|
|
},
|
|
|
|
|
|
/** 刷新缓存按钮操作 */
|
|
|
|
|
|
handleRefreshCache() {
|
|
|
|
|
|
refreshCache().then(() => {
|
|
|
|
|
|
this.$modal.msgSuccess("刷新成功");
|
|
|
|
|
|
this.$store.dispatch('dict/cleanDict');
|
|
|
|
|
|
});
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
};
|
|
|
|
|
|
</script>
|
2024-01-10 16:29:46 +08:00
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
|
.print{
|
|
|
|
|
|
.title{
|
|
|
|
|
|
text-align: center;
|
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
|
}
|
|
|
|
|
|
.info{
|
|
|
|
|
|
margin-top: 10px;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
|
|
|
|
|
|
|
.item{
|
|
|
|
|
|
width: 50%;
|
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
|
margin-bottom: 5px;
|
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.fillIn{
|
|
|
|
|
|
margin-top: 15px;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
</style>
|