669 lines
23 KiB
Vue
669 lines
23 KiB
Vue
<template>
|
|
<div>
|
|
<el-form
|
|
:model="queryParams"
|
|
ref="queryForm"
|
|
size="small"
|
|
:inline="true"
|
|
v-show="showSearch"
|
|
>
|
|
<el-form-item label="关键字" prop="keyWord">
|
|
<el-input
|
|
v-model="queryParams.keyWord"
|
|
placeholder="请输入关键字"
|
|
clearable
|
|
maxlength="50"
|
|
style="width: 240px"
|
|
@keyup.enter.native="handleQuery"
|
|
/>
|
|
</el-form-item>
|
|
|
|
<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">
|
|
<el-col :span="1.5">
|
|
<el-button
|
|
type="primary"
|
|
plain
|
|
icon="el-icon-plus"
|
|
size="mini"
|
|
@click="handleAccept"
|
|
v-hasPermi="['newPurchase:parts:add']"
|
|
>新增</el-button
|
|
>
|
|
</el-col>
|
|
<el-col :span="1.5">
|
|
<el-button
|
|
type="warning"
|
|
plain
|
|
icon="el-icon-download"
|
|
size="mini"
|
|
@click="handleExport"
|
|
>导出</el-button
|
|
>
|
|
</el-col>
|
|
<right-toolbar
|
|
:showSearch.sync="showSearch"
|
|
@queryTable="getList"
|
|
></right-toolbar>
|
|
</el-row>
|
|
|
|
<el-table
|
|
v-loading="loading"
|
|
:data="accessoryList"
|
|
@selection-change="handleSelectionChange"
|
|
border
|
|
>
|
|
<el-table-column type="selection" width="55" align="center" />
|
|
<el-table-column
|
|
align="center"
|
|
label="序号"
|
|
type="index"
|
|
:index="
|
|
indexContinuation(queryParams.pageNum, queryParams.pageSize)
|
|
"
|
|
/>
|
|
<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"
|
|
/>
|
|
<el-table-column
|
|
label="采购员"
|
|
align="center"
|
|
prop="purchaserName"
|
|
:show-overflow-tooltip="true"
|
|
/>
|
|
<el-table-column
|
|
label="采购状态"
|
|
align="center"
|
|
prop="purchasingStatus"
|
|
:show-overflow-tooltip="true"
|
|
/>
|
|
<el-table-column
|
|
label="备注"
|
|
align="center"
|
|
prop="remark"
|
|
:show-overflow-tooltip="true"
|
|
/>
|
|
<!-- <el-table-column label="状态" align="center" prop="createTime" width="180">-->
|
|
<!-- <template slot-scope="scope">-->
|
|
<!-- <el-switch-->
|
|
<!-- v-model="scope.row.status">-->
|
|
<!-- </el-switch>-->
|
|
|
|
<!-- </template>-->
|
|
<!-- </el-table-column>-->
|
|
<el-table-column label="操作" align="center" width="250">
|
|
<template slot-scope="scope">
|
|
<el-button
|
|
type="text"
|
|
icon="el-icon-zoom-in"
|
|
@click="handleView(scope.row)"
|
|
v-hasPermi="['newPurchase:parts:view']"
|
|
>查看</el-button
|
|
>
|
|
<el-button
|
|
type="text"
|
|
icon="el-icon-edit"
|
|
v-if="scope.row.taskStatus == 68"
|
|
@click="handleUpdate(scope.row)"
|
|
v-hasPermi="['newPurchase:parts:edit']"
|
|
>编辑</el-button
|
|
>
|
|
<el-button
|
|
type="text"
|
|
icon="el-icon-circle-check"
|
|
style="color: #e6a23c"
|
|
v-if="scope.row.taskStatus == 68"
|
|
@click="handleCheck(scope.row)"
|
|
v-hasPermi="['newPurchase:parts:accept']"
|
|
>验收</el-button
|
|
>
|
|
<el-button
|
|
type="text"
|
|
style="color: #67c23a"
|
|
icon="el-icon-tickets"
|
|
v-if="scope.row.taskStatus != 68"
|
|
@click="handleBuy(scope.row)"
|
|
>验收单</el-button
|
|
>
|
|
<el-button
|
|
style="color: #f56c6c"
|
|
type="text"
|
|
icon="el-icon-delete"
|
|
v-if="scope.row.taskStatus == 68"
|
|
@click="handleDelete(scope.row)"
|
|
v-hasPermi="['newPurchase:parts:del']"
|
|
>删除</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"
|
|
/>
|
|
|
|
<!-- 验收单弹窗 -->
|
|
<el-dialog
|
|
:title="title"
|
|
:visible.sync="openPrint"
|
|
width="1100px"
|
|
append-to-body
|
|
>
|
|
<div style="height: 400px; overflow-y: scroll">
|
|
<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>
|
|
</div>
|
|
<div
|
|
class="item"
|
|
style="
|
|
width: 50%;
|
|
flex-shrink: 0;
|
|
margin-bottom: 5px;
|
|
font-size: 14px;
|
|
"
|
|
>
|
|
<span>验收单编号:</span>
|
|
{{ printData.code }}
|
|
</div>
|
|
<div
|
|
class="item"
|
|
style="
|
|
width: 50%;
|
|
flex-shrink: 0;
|
|
margin-bottom: 5px;
|
|
font-size: 14px;
|
|
"
|
|
>
|
|
<span>合同名称:</span>
|
|
</div>
|
|
<div
|
|
class="item"
|
|
style="
|
|
width: 50%;
|
|
flex-shrink: 0;
|
|
margin-bottom: 5px;
|
|
font-size: 14px;
|
|
"
|
|
>
|
|
<span>合同编号:</span>
|
|
</div>
|
|
<div
|
|
class="item"
|
|
style="
|
|
width: 50%;
|
|
flex-shrink: 0;
|
|
margin-bottom: 5px;
|
|
font-size: 14px;
|
|
"
|
|
>
|
|
<span>验收地点:</span>
|
|
</div>
|
|
<div
|
|
class="item"
|
|
style="
|
|
width: 50%;
|
|
flex-shrink: 0;
|
|
margin-bottom: 5px;
|
|
font-size: 14px;
|
|
"
|
|
>
|
|
<span>供应商:</span>
|
|
<span v-if="printTableData.length > 0">{{
|
|
supplierStr
|
|
}}</span>
|
|
</div>
|
|
</div>
|
|
<el-table
|
|
:data="printTableData"
|
|
class="table"
|
|
style="
|
|
margin-top: 20px;
|
|
width: 1000px;
|
|
padding-bottom: 1px;
|
|
"
|
|
border
|
|
>
|
|
<!-- <el-table-column type="selection" width="55" align="center" />-->
|
|
<el-table-column
|
|
label="序号"
|
|
align="center"
|
|
width="80"
|
|
type="index"
|
|
>
|
|
<template slot-scope="scope">
|
|
<span>{{
|
|
(queryParams.pageNum - 1) * 10 +
|
|
scope.$index +
|
|
1
|
|
}}</span>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column
|
|
label="类型名称"
|
|
align="center"
|
|
prop="machineTypeName"
|
|
/>
|
|
<el-table-column
|
|
label="规格型号"
|
|
align="center"
|
|
prop="specificationType"
|
|
/>
|
|
<el-table-column
|
|
label="计量单位"
|
|
align="center"
|
|
prop="unitName"
|
|
/>
|
|
<el-table-column
|
|
label="采购数量"
|
|
align="center"
|
|
prop="purchaseNum"
|
|
/>
|
|
|
|
<el-table-column
|
|
label="已验收数量"
|
|
align="center"
|
|
prop
|
|
/>
|
|
<el-table-column
|
|
label="本次验收数量"
|
|
align="center"
|
|
prop="checkNum"
|
|
/>
|
|
<el-table-column
|
|
label="累积验收数量"
|
|
align="center"
|
|
prop
|
|
/>
|
|
<el-table-column label="验收日期" align="center" prop />
|
|
<el-table-column
|
|
label="合格证及技术资料"
|
|
align="center"
|
|
prop
|
|
/>
|
|
<el-table-column label="包装" align="center" prop />
|
|
</el-table>
|
|
|
|
<div
|
|
class="fillIn"
|
|
style="
|
|
margin-top: 20px;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
"
|
|
>
|
|
<div class="item" style="width: 50%">
|
|
<div>
|
|
<span>接收单位验收意见:</span>
|
|
</div>
|
|
<div>
|
|
<span>验收人:</span>
|
|
</div>
|
|
<div>
|
|
<span>接收单位(章):</span>
|
|
</div>
|
|
<div>
|
|
<span>验收负责人: 年 月 日</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="item" style="width: 50%">
|
|
<div>
|
|
<span>供应商:</span>
|
|
</div>
|
|
<div>
|
|
<span>供应商(章):</span>
|
|
</div>
|
|
<div>
|
|
<span>验收负责人: 年 月 日</span>
|
|
</div>
|
|
</div>
|
|
<!-- <div class="item" style="width: 25%;">
|
|
<span>经办人:</span>
|
|
</div>-->
|
|
</div>
|
|
</vue-easy-print>
|
|
</div>
|
|
|
|
<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>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import {
|
|
listType,
|
|
getType,
|
|
delType,
|
|
addType,
|
|
updateType,
|
|
refreshCache,
|
|
} from '@/api/system/dict/type'
|
|
import {
|
|
listPurchaseAccessory,
|
|
getPurchaseCheckInfo,
|
|
delPurchaseAccessory,
|
|
getAccessoryAcceptanceForm,
|
|
} from '@/api/store/newBuy'
|
|
import vueEasyPrint from 'vue-easy-print'
|
|
export default {
|
|
// name: "NewAccessoryList",
|
|
dicts: ['sys_normal_disable'],
|
|
components: { vueEasyPrint },
|
|
data() {
|
|
return {
|
|
// 遮罩层
|
|
loading: true,
|
|
// 选中数组
|
|
ids: [],
|
|
// 非单个禁用
|
|
single: true,
|
|
// 非多个禁用
|
|
multiple: true,
|
|
// 显示搜索条件
|
|
showSearch: true,
|
|
// 总条数
|
|
total: 0,
|
|
// 字典表格数据
|
|
accessoryList: [],
|
|
// 弹出层标题
|
|
title: '',
|
|
// 是否显示弹出层
|
|
open: false,
|
|
// 日期范围
|
|
dateRange: [],
|
|
// 查询参数
|
|
queryParams: {
|
|
pageNum: 1,
|
|
pageSize: 10,
|
|
dictName: undefined,
|
|
dictType: undefined,
|
|
status: undefined,
|
|
keyWord: null,
|
|
},
|
|
// 表单参数
|
|
form: {},
|
|
openPrint: false,
|
|
printData: {},
|
|
printTableData: [],
|
|
// 表单校验
|
|
rules: {
|
|
dictName: [
|
|
{
|
|
required: true,
|
|
message: '字典名称不能为空',
|
|
trigger: 'blur',
|
|
},
|
|
],
|
|
dictType: [
|
|
{
|
|
required: true,
|
|
message: '字典类型不能为空',
|
|
trigger: 'blur',
|
|
},
|
|
],
|
|
},
|
|
supplierStr: '',
|
|
}
|
|
},
|
|
created() {
|
|
this.getList()
|
|
},
|
|
methods: {
|
|
/** 查询列表 */
|
|
getList() {
|
|
this.loading = true
|
|
listPurchaseAccessory(this.queryParams).then((response) => {
|
|
this.accessoryList = response.rows
|
|
this.total = response.total
|
|
this.loading = false
|
|
})
|
|
},
|
|
// 取消按钮
|
|
cancel() {
|
|
this.open = false
|
|
this.reset()
|
|
},
|
|
// 表单重置
|
|
reset() {
|
|
this.form = {
|
|
taskId: undefined,
|
|
dictName: undefined,
|
|
dictType: undefined,
|
|
status: '0',
|
|
remark: undefined,
|
|
}
|
|
this.resetForm('form')
|
|
},
|
|
/** 搜索按钮操作 */
|
|
handleQuery() {
|
|
this.queryParams.pageNum = 1
|
|
this.getList()
|
|
},
|
|
/** 重置按钮操作 */
|
|
resetQuery() {
|
|
this.dateRange = []
|
|
this.resetForm('queryForm')
|
|
this.queryParams.keyWord = ''
|
|
this.handleQuery()
|
|
},
|
|
/** 新增按钮操作 */
|
|
handleAdd() {
|
|
this.reset()
|
|
this.open = true
|
|
this.title = '添加字典类型'
|
|
},
|
|
// 多选框选中数据
|
|
handleSelectionChange(selection) {
|
|
this.ids = selection.map((item) => item.taskId)
|
|
this.single = selection.length != 1
|
|
this.multiple = !selection.length
|
|
},
|
|
|
|
/** 编辑按钮操作 */
|
|
handleUpdate(row) {
|
|
// let query = { taskId: row.taskId }
|
|
// this.$tab.closeOpenPage({
|
|
// path: '/store/newBuy/newAccessoryAccept',
|
|
// query,
|
|
// })
|
|
// this.$emit('editParts', row.taskId)
|
|
|
|
this.$emit('handleParts', 2, row.taskId)
|
|
},
|
|
/** 查看按钮操作 */
|
|
handleView(row) {
|
|
// let query = { taskId: row.taskId, isView: true }
|
|
// this.$tab.closeOpenPage({
|
|
// path: '/store/newBuy/newAccessoryAccept',
|
|
// query,
|
|
// })
|
|
|
|
// this.$emit('queryParts', row.taskId)
|
|
this.$emit('handleParts', 3, row.taskId)
|
|
},
|
|
/** 验收按钮操作 */
|
|
handleCheck(row) {
|
|
// let query = { taskId: row.taskId, isCheck: true }
|
|
// this.$tab.closeOpenPage({
|
|
// path: '/store/newBuy/newAccessoryAccept',
|
|
// query,
|
|
// })
|
|
// this.$emit('acceptParts', row.taskId)
|
|
this.$emit('handleParts', 4, row.taskId)
|
|
},
|
|
/** 提交按钮 */
|
|
submitForm: function () {
|
|
this.$refs['form'].validate((valid) => {
|
|
if (valid) {
|
|
// if (this.form.taskId != 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();
|
|
// });
|
|
// }
|
|
}
|
|
})
|
|
},
|
|
//获取验收单数据
|
|
getPrintTable(taskId) {
|
|
getAccessoryAcceptanceForm({ taskId: taskId }).then((response) => {
|
|
this.printData = response.data
|
|
this.printTableData = response.data.partDetailsList
|
|
|
|
let supplierList = []
|
|
this.printTableData.forEach((e) => {
|
|
if (e.supplier) {
|
|
supplierList.push(e.supplier)
|
|
}
|
|
})
|
|
supplierList = [...new Set(supplierList)]
|
|
|
|
this.supplierStr = supplierList.join(',')
|
|
})
|
|
},
|
|
//查看验收单
|
|
handleBuy(row) {
|
|
// this.query.taskId = row.taskId
|
|
this.getPrintTable(row.taskId)
|
|
this.openPrint = true
|
|
this.title = '新购工机具验收单'
|
|
},
|
|
//打印
|
|
print() {
|
|
this.$refs.remarksPrintRef.print()
|
|
},
|
|
/** 新增 */
|
|
handleAccept() {
|
|
// let query = { isShow: true }
|
|
// this.$tab.closeOpenPage({
|
|
// path: '/store/newBuy/newAccessoryAccept',
|
|
// query,
|
|
// })
|
|
// this.$emit('addParts')
|
|
|
|
this.$emit('handleParts', 1)
|
|
},
|
|
/** 删除按钮操作 */
|
|
handleDelete(row) {
|
|
const taskId = row.taskId || this.ids
|
|
this.$modal
|
|
.confirm('是否确认删除所选择的数据项?')
|
|
.then(function () {
|
|
return delPurchaseAccessory(taskId)
|
|
})
|
|
.then(() => {
|
|
this.getList()
|
|
this.$modal.msgSuccess('删除成功')
|
|
})
|
|
.catch(() => {})
|
|
},
|
|
/** 导出按钮操作 */
|
|
handleExport() {
|
|
this.download(
|
|
'material/purchaseAccessory/export',
|
|
{
|
|
...this.queryParams,
|
|
},
|
|
`新购配件_${new Date().getTime()}.xlsx`,
|
|
)
|
|
},
|
|
/** 刷新缓存按钮操作 */
|
|
handleRefreshCache() {
|
|
refreshCache().then(() => {
|
|
this.$modal.msgSuccess('刷新成功')
|
|
this.$store.dispatch('dict/cleanDict')
|
|
})
|
|
},
|
|
},
|
|
watch: {
|
|
$route: {
|
|
handler(to) {
|
|
if (to.query.keyWord) {
|
|
this.queryParams.keyWord = to.query.keyWord
|
|
}
|
|
},
|
|
immediate: true,
|
|
},
|
|
},
|
|
}
|
|
</script>
|
|
<style lang="scss" scoped>
|
|
::v-deep.el-table .fixed-width .el-button--mini {
|
|
width: 60px !important;
|
|
margin-bottom: 10px;
|
|
}
|
|
</style>
|