2025-08-30 17:04:25 +08:00
|
|
|
<template>
|
|
|
|
|
<div class="app-container">
|
|
|
|
|
<el-form :model="queryParams" ref="queryRef" :inline="true" v-show="showSearch" label-width="68px">
|
|
|
|
|
<el-form-item label="采购编号" prop="detailCode">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="queryParams.detailCode"
|
|
|
|
|
placeholder="请输入采购计划编码"
|
|
|
|
|
clearable
|
|
|
|
|
@keyup.enter="handleQuery"
|
|
|
|
|
/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="供应商" prop="supplierId">
|
|
|
|
|
<el-select v-model="queryParams.supplierId" filterable clearable placeholder="请选择供应商">
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="value in supplierList"
|
|
|
|
|
:value="value.supplierId"
|
|
|
|
|
:label="value.name"
|
|
|
|
|
>
|
|
|
|
|
</el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="材料名称" prop="rawMaterialName">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="queryParams.rawMaterialName"
|
|
|
|
|
placeholder="请输入原材料名称"
|
|
|
|
|
clearable
|
|
|
|
|
@keyup.enter="handleQuery"
|
|
|
|
|
/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="负责人" prop="owner">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="queryParams.owner"
|
|
|
|
|
placeholder="请输入负责人"
|
|
|
|
|
clearable
|
|
|
|
|
@keyup.enter="handleQuery"
|
|
|
|
|
/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item>
|
|
|
|
|
<el-button type="primary" icon="Search" @click="handleQuery">搜索</el-button>
|
|
|
|
|
<el-button icon="Refresh" @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="Plus"
|
|
|
|
|
@click="handleAdd"
|
|
|
|
|
>新增</el-button>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="1.5">
|
|
|
|
|
<el-button
|
|
|
|
|
type="success"
|
|
|
|
|
plain
|
|
|
|
|
icon="Edit"
|
|
|
|
|
:disabled="single"
|
|
|
|
|
@click="handleUpdate"
|
|
|
|
|
>修改</el-button>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="1.5">
|
|
|
|
|
<el-button
|
|
|
|
|
type="danger"
|
|
|
|
|
plain
|
|
|
|
|
icon="Delete"
|
|
|
|
|
:disabled="multiple"
|
|
|
|
|
@click="handleDelete"
|
|
|
|
|
>删除</el-button>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="1.5">
|
|
|
|
|
<el-button
|
|
|
|
|
type="warning"
|
|
|
|
|
plain
|
|
|
|
|
icon="Download"
|
|
|
|
|
@click="handleExport"
|
|
|
|
|
>导出</el-button>
|
|
|
|
|
</el-col>
|
|
|
|
|
<right-toolbar v-model:showSearch="showSearch" @queryTable="getList"></right-toolbar>
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
<el-table v-loading="loading" :data="purchasePlanDetailList" @selection-change="handleSelectionChange">
|
|
|
|
|
<el-table-column type="selection" width="55" align="center" />
|
|
|
|
|
<el-table-column label="明细ID" align="center" prop="detailId" v-if="false"/>
|
|
|
|
|
<el-table-column label="采购编码" align="center" prop="detailCode" />
|
|
|
|
|
<el-table-column label="供应商" align="center" prop="supplierName" />
|
|
|
|
|
<el-table-column label="材料名称" align="center" prop="rawMaterialName" />
|
|
|
|
|
<el-table-column label="负责人" align="center" prop="owner" />
|
|
|
|
|
<el-table-column label="采购数量" align="center" prop="quantity" />
|
|
|
|
|
<el-table-column label="单位" align="center" prop="unit" />
|
|
|
|
|
<el-table-column label="单价" align="center" prop="unitPrice" />
|
|
|
|
|
<el-table-column label="总金额" align="center" prop="totalAmount" />
|
|
|
|
|
<el-table-column label="备注" align="center" prop="remark" />
|
|
|
|
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
|
|
|
|
<template #default="scope">
|
|
|
|
|
<el-button link type="primary" icon="Edit" @click="handleUpdate(scope.row)">修改</el-button>
|
|
|
|
|
<el-button link type="primary" icon="Delete" @click="handleDelete(scope.row)">删除</el-button>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
</el-table>
|
|
|
|
|
|
|
|
|
|
<pagination
|
|
|
|
|
v-show="total>0"
|
|
|
|
|
:total="total"
|
|
|
|
|
v-model:page="queryParams.pageNum"
|
|
|
|
|
v-model:limit="queryParams.pageSize"
|
|
|
|
|
@pagination="getList"
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
<!-- 添加或修改采购计划明细对话框 -->
|
|
|
|
|
<el-dialog :title="title" v-model="open" width="500px" append-to-body>
|
|
|
|
|
<el-form ref="purchasePlanDetailRef" :model="form" :rules="rules" label-width="100px">
|
|
|
|
|
<el-form-item label="采购编号" prop="detailCode">
|
|
|
|
|
<el-input v-model="form.detailCode" placeholder="请输入采购编号" />
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="供应商" prop="supplierId">
|
|
|
|
|
<el-select v-model="form.supplierId" filterable clearable placeholder="请选择供应商">
|
2025-09-02 15:03:34 +08:00
|
|
|
<el-option
|
2025-08-30 17:04:25 +08:00
|
|
|
v-for="value in supplierList"
|
|
|
|
|
:value="value.supplierId"
|
|
|
|
|
:label="value.name"
|
|
|
|
|
>
|
|
|
|
|
</el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="原料名称" prop="rawMaterialName">
|
|
|
|
|
<el-input v-model="form.rawMaterialName" placeholder="请输入原材料名称" />
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="负责人" prop="owner">
|
|
|
|
|
<el-input v-model="form.owner" placeholder="请输入负责人" />
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="采购数量" prop="quantity">
|
|
|
|
|
<el-input v-model="form.quantity" placeholder="请输入计划采购数量" />
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="单位" prop="unit">
|
|
|
|
|
<el-input v-model="form.unit" placeholder="请输入单位" />
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="单价" prop="unitPrice">
|
|
|
|
|
<el-input v-model="form.unitPrice" placeholder="请输入单价" />
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="总金额" prop="totalAmount">
|
|
|
|
|
<el-input v-model="form.totalAmount" placeholder="请输入总金额" />
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="备注" prop="remark">
|
|
|
|
|
<el-input v-model="form.remark" placeholder="请输入备注" />
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-form>
|
|
|
|
|
<template #footer>
|
|
|
|
|
<div class="dialog-footer">
|
|
|
|
|
<el-button :loading="buttonLoading" type="primary" @click="submitForm">确 定</el-button>
|
|
|
|
|
<el-button @click="cancel">取 消</el-button>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
</el-dialog>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script setup name="PurchasePlanDetail">
|
|
|
|
|
import { listPurchasePlanDetail, getPurchasePlanDetail, delPurchasePlanDetail, addPurchasePlanDetail, updatePurchasePlanDetail } from "@/api/oa/purchasePlanDetail";
|
|
|
|
|
import { listSupplier } from "@/api/oa/supplier";
|
|
|
|
|
|
|
|
|
|
const { proxy } = getCurrentInstance();
|
|
|
|
|
|
|
|
|
|
const purchasePlanDetailList = ref([]);
|
|
|
|
|
const open = ref(false);
|
|
|
|
|
const buttonLoading = ref(false);
|
|
|
|
|
const loading = ref(true);
|
|
|
|
|
const showSearch = ref(true);
|
|
|
|
|
const ids = ref([]);
|
|
|
|
|
const single = ref(true);
|
|
|
|
|
const multiple = ref(true);
|
|
|
|
|
const total = ref(0);
|
|
|
|
|
const title = ref("");
|
|
|
|
|
|
|
|
|
|
const formatterTime = (time) => {
|
|
|
|
|
return proxy.parseTime(time, '{y}-{m}-{d}')
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const data = reactive({
|
|
|
|
|
form: {},
|
|
|
|
|
queryParams: {
|
|
|
|
|
pageNum: 1,
|
|
|
|
|
pageSize: 10,
|
|
|
|
|
detailCode: undefined,
|
|
|
|
|
supplierId: undefined,
|
|
|
|
|
rawMaterialName: undefined,
|
|
|
|
|
owner: undefined,
|
|
|
|
|
quantity: undefined,
|
|
|
|
|
unit: undefined,
|
|
|
|
|
unitPrice: undefined,
|
|
|
|
|
totalAmount: undefined,
|
|
|
|
|
annex: undefined,
|
|
|
|
|
status: undefined,
|
|
|
|
|
},
|
|
|
|
|
rules: {
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const { queryParams, form, rules } = toRefs(data);
|
|
|
|
|
|
|
|
|
|
function getSupplyTypeList() {
|
|
|
|
|
listSupplier({ pageSize: 9999 }).then(response => {
|
|
|
|
|
supplierList.value = response.rows;
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
const supplierList = ref([]);
|
|
|
|
|
getSupplyTypeList();
|
|
|
|
|
|
|
|
|
|
/** 查询采购计划明细列表 */
|
|
|
|
|
function getList() {
|
|
|
|
|
loading.value = true;
|
|
|
|
|
listPurchasePlanDetail(queryParams.value).then(response => {
|
|
|
|
|
purchasePlanDetailList.value = response.rows;
|
|
|
|
|
total.value = response.total;
|
|
|
|
|
loading.value = false;
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 取消按钮
|
|
|
|
|
function cancel() {
|
|
|
|
|
open.value = false;
|
|
|
|
|
reset();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 表单重置
|
|
|
|
|
function reset() {
|
|
|
|
|
form.value = {
|
|
|
|
|
detailId: null,
|
|
|
|
|
detailCode: null,
|
|
|
|
|
supplierId: null,
|
|
|
|
|
rawMaterialName: null,
|
|
|
|
|
owner: null,
|
|
|
|
|
quantity: null,
|
|
|
|
|
unit: null,
|
|
|
|
|
unitPrice: null,
|
|
|
|
|
totalAmount: null,
|
|
|
|
|
annex: null,
|
|
|
|
|
status: null,
|
|
|
|
|
remark: null,
|
|
|
|
|
delFlag: null,
|
|
|
|
|
createTime: null,
|
|
|
|
|
createBy: null,
|
|
|
|
|
updateTime: null,
|
|
|
|
|
updateBy: null
|
|
|
|
|
};
|
|
|
|
|
proxy.resetForm("purchasePlanDetailRef");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** 搜索按钮操作 */
|
|
|
|
|
function handleQuery() {
|
|
|
|
|
queryParams.value.pageNum = 1;
|
|
|
|
|
getList();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** 重置按钮操作 */
|
|
|
|
|
function resetQuery() {
|
|
|
|
|
proxy.resetForm("queryRef");
|
|
|
|
|
handleQuery();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 多选框选中数据
|
|
|
|
|
function handleSelectionChange(selection) {
|
|
|
|
|
ids.value = selection.map(item => item.detailId);
|
|
|
|
|
single.value = selection.length != 1;
|
|
|
|
|
multiple.value = !selection.length;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** 新增按钮操作 */
|
|
|
|
|
function handleAdd() {
|
|
|
|
|
reset();
|
|
|
|
|
open.value = true;
|
|
|
|
|
title.value = "添加采购计划明细";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** 修改按钮操作 */
|
|
|
|
|
function handleUpdate(row) {
|
|
|
|
|
loading.value = true
|
|
|
|
|
reset();
|
|
|
|
|
const _detailId = row.detailId || ids.value
|
|
|
|
|
getPurchasePlanDetail(_detailId).then(response => {
|
|
|
|
|
loading.value = false;
|
|
|
|
|
form.value = response.data;
|
|
|
|
|
open.value = true;
|
|
|
|
|
title.value = "修改采购计划明细";
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** 提交按钮 */
|
|
|
|
|
function submitForm() {
|
|
|
|
|
proxy.$refs["purchasePlanDetailRef"].validate(valid => {
|
|
|
|
|
if (valid) {
|
|
|
|
|
buttonLoading.value = true;
|
|
|
|
|
if (form.value.detailId != null) {
|
|
|
|
|
updatePurchasePlanDetail(form.value).then(response => {
|
|
|
|
|
proxy.$modal.msgSuccess("修改成功");
|
|
|
|
|
open.value = false;
|
|
|
|
|
getList();
|
|
|
|
|
}).finally(() => {
|
|
|
|
|
buttonLoading.value = false;
|
|
|
|
|
});
|
|
|
|
|
} else {
|
|
|
|
|
addPurchasePlanDetail(form.value).then(response => {
|
|
|
|
|
proxy.$modal.msgSuccess("新增成功");
|
|
|
|
|
open.value = false;
|
|
|
|
|
getList();
|
|
|
|
|
}).finally(() => {
|
|
|
|
|
buttonLoading.value = false;
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** 删除按钮操作 */
|
|
|
|
|
function handleDelete(row) {
|
|
|
|
|
const _detailIds = row.detailId || ids.value;
|
|
|
|
|
proxy.$modal.confirm('是否确认删除采购计划明细编号为"' + _detailIds + '"的数据项?').then(function() {
|
|
|
|
|
loading.value = true;
|
|
|
|
|
return delPurchasePlanDetail(_detailIds);
|
|
|
|
|
}).then(() => {
|
|
|
|
|
loading.value = true;
|
|
|
|
|
getList();
|
|
|
|
|
proxy.$modal.msgSuccess("删除成功");
|
|
|
|
|
}).catch(() => {
|
|
|
|
|
}).finally(() => {
|
|
|
|
|
loading.value = false;
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** 导出按钮操作 */
|
|
|
|
|
function handleExport() {
|
|
|
|
|
proxy.download('oa/purchasePlanDetail/export', {
|
|
|
|
|
...queryParams.value
|
|
|
|
|
}, `purchasePlanDetail_${new Date().getTime()}.xlsx`)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
getList();
|
|
|
|
|
</script>
|