<template>
|
<div class="app-container">
|
<el-card class="box-card">
|
<!-- 搜索区域 -->
|
<el-row :gutter="20" class="search-row">
|
<el-col :span="8">
|
<el-input
|
v-model="searchForm.product"
|
placeholder="请输入产品名称"
|
clearable
|
@keyup.enter="handleSearch(true)"
|
>
|
<template #prefix>
|
<el-icon><Search /></el-icon>
|
</template>
|
</el-input>
|
</el-col>
|
<el-col :span="4">
|
<el-button type="primary" @click="handleSearch(true)">搜索</el-button>
|
<el-button @click="resetSearch">重置</el-button>
|
<el-button style="float: right;" type="primary" @click="handleAdd">
|
新增报价
|
</el-button>
|
</el-col>
|
</el-row>
|
|
<!-- 报价列表 -->
|
<el-table
|
:data="filteredList"
|
style="width: 100%"
|
v-loading="loading"
|
border
|
stripe
|
height="calc(100vh - 22em)"
|
>
|
<el-table-column align="center" label="序号" type="index" width="60" />
|
<el-table-column prop="product" label="产品名称" min-width="180" show-overflow-tooltip />
|
<el-table-column prop="specification" label="规格型号" min-width="140" show-overflow-tooltip />
|
<el-table-column prop="paper" label="纸张" min-width="120" show-overflow-tooltip />
|
<el-table-column prop="paperWeight" label="定量" min-width="100" show-overflow-tooltip />
|
<el-table-column prop="unitPrice" label="单价" width="120" align="right">
|
<template #default="{ row }">{{ formatMoney(row.unitPrice) }}</template>
|
</el-table-column>
|
<el-table-column prop="printingFee" label="印版费" width="120" align="right">
|
<template #default="{ row }">{{ formatMoney(row.printingFee) }}</template>
|
</el-table-column>
|
<el-table-column prop="dieCuttingFee" label="刀版费" width="120" align="right">
|
<template #default="{ row }">{{ formatMoney(row.dieCuttingFee) }}</template>
|
</el-table-column>
|
<el-table-column prop="grindingFee" label="磨具费" width="120" align="right">
|
<template #default="{ row }">{{ formatMoney(row.grindingFee) }}</template>
|
</el-table-column>
|
<el-table-column prop="quantity" label="数量" width="90" align="right" />
|
<el-table-column label="操作" width="200" fixed="right" align="center">
|
<template #default="scope">
|
<el-button link type="primary" @click="handleEdit(scope.row)">编辑</el-button>
|
<el-button link type="primary" @click="handleView(scope.row)" style="color: #67C23A">查看</el-button>
|
<el-button link type="danger" @click="handleDelete(scope.row)">删除</el-button>
|
</template>
|
</el-table-column>
|
</el-table>
|
|
<!-- 分页 -->
|
<pagination
|
:total="pagination.total"
|
layout="total, sizes, prev, pager, next, jumper"
|
:page="pagination.currentPage"
|
:limit="pagination.pageSize"
|
@pagination="handleCurrentChange"
|
/>
|
</el-card>
|
|
<!-- 新增/编辑对话框 -->
|
<FormDialog v-model="dialogVisible" :title="dialogTitle" width="85%" :close-on-click-modal="false" @close="dialogVisible = false" @confirm="handleSubmit" @cancel="dialogVisible = false">
|
<div class="quotation-form-container">
|
<el-form :model="form" :rules="rules" ref="formRef" label-width="120px" class="quotation-form">
|
<!-- 产品信息 -->
|
<el-card class="form-card" shadow="hover">
|
<template #header>
|
<div class="card-header-wrapper">
|
<el-icon class="card-icon"><Box /></el-icon>
|
<span class="card-title">产品信息</span>
|
<el-button type="primary" size="small" @click="addProduct" class="header-btn" :disabled="isEdit">
|
<el-icon><Plus /></el-icon>
|
添加产品
|
</el-button>
|
</div>
|
</template>
|
<div class="form-content">
|
<el-table :data="form.products" border style="width: 100%" class="product-table" v-if="form.products.length > 0">
|
<el-table-column prop="product" label="产品名称" width="200">
|
<template #default="scope">
|
<el-form-item :prop="`products.${scope.$index}.productId`" class="product-table-form-item">
|
<el-tree-select
|
v-model="scope.row.productId"
|
placeholder="请选择"
|
clearable
|
check-strictly
|
@change="getModels($event, scope.row)"
|
:data="productOptions"
|
:render-after-expand="false"
|
style="width: 100%"
|
/>
|
</el-form-item>
|
</template>
|
</el-table-column>
|
<el-table-column prop="specification" label="规格型号" width="200">
|
<template #default="scope">
|
<el-form-item :prop="`products.${scope.$index}.specificationId`" class="product-table-form-item">
|
<el-select
|
v-model="scope.row.specificationId"
|
placeholder="请选择"
|
clearable
|
@change="getProductModel($event, scope.row)"
|
style="width: 100%"
|
>
|
<el-option
|
v-for="item in scope.row.modelOptions || []"
|
:key="item.id"
|
:label="item.model"
|
:value="item.id"
|
/>
|
</el-select>
|
</el-form-item>
|
</template>
|
</el-table-column>
|
<el-table-column prop="unit" label="单位">
|
<template #default="scope">
|
<el-form-item :prop="`products.${scope.$index}.unit`" class="product-table-form-item">
|
<el-input v-model="scope.row.unit" placeholder="单位" clearable/>
|
</el-form-item>
|
</template>
|
</el-table-column>
|
<el-table-column prop="paper" label="纸张" width="180">
|
<template #default="scope">
|
<el-form-item :prop="`products.${scope.$index}.paper`" class="product-table-form-item">
|
<el-input v-model="scope.row.paper" placeholder="纸张" clearable />
|
</el-form-item>
|
</template>
|
</el-table-column>
|
<el-table-column prop="paperWeight" label="定量" width="140">
|
<template #default="scope">
|
<el-form-item :prop="`products.${scope.$index}.paperWeight`" class="product-table-form-item">
|
<el-input v-model="scope.row.paperWeight" placeholder="定量" clearable />
|
</el-form-item>
|
</template>
|
</el-table-column>
|
<el-table-column prop="unitPrice" label="单价">
|
<template #default="scope">
|
<el-form-item :prop="`products.${scope.$index}.unitPrice`" class="product-table-form-item">
|
<el-input-number v-model="scope.row.unitPrice" :min="0" :precision="2" style="width: 100%" />
|
</el-form-item>
|
</template>
|
</el-table-column>
|
<el-table-column prop="printingFee" label="印版费" width="140">
|
<template #default="scope">
|
<el-form-item :prop="`products.${scope.$index}.printingFee`" class="product-table-form-item">
|
<el-input-number v-model="scope.row.printingFee" :min="0" :precision="2" style="width: 100%" />
|
</el-form-item>
|
</template>
|
</el-table-column>
|
<el-table-column prop="dieCuttingFee" label="刀版费" width="140">
|
<template #default="scope">
|
<el-form-item :prop="`products.${scope.$index}.dieCuttingFee`" class="product-table-form-item">
|
<el-input-number v-model="scope.row.dieCuttingFee" :min="0" :precision="2" style="width: 100%" />
|
</el-form-item>
|
</template>
|
</el-table-column>
|
<el-table-column prop="grindingFee" label="磨具费" width="140">
|
<template #default="scope">
|
<el-form-item :prop="`products.${scope.$index}.grindingFee`" class="product-table-form-item">
|
<el-input-number v-model="scope.row.grindingFee" :min="0" :precision="2" style="width: 100%" />
|
</el-form-item>
|
</template>
|
</el-table-column>
|
<el-table-column label="操作" width="80" align="center">
|
<template #default="scope">
|
<el-button link type="danger" @click="removeProduct(scope.$index)">删除</el-button>
|
</template>
|
</el-table-column>
|
</el-table>
|
<el-empty v-else description="暂无产品,请点击添加产品" :image-size="80" />
|
</div>
|
</el-card>
|
|
<!-- 备注信息 -->
|
<el-card class="form-card" shadow="hover">
|
<template #header>
|
<div class="card-header-wrapper">
|
<el-icon class="card-icon"><EditPen /></el-icon>
|
<span class="card-title">备注信息</span>
|
</div>
|
</template>
|
<div class="form-content">
|
<el-form-item label="备注" prop="remark">
|
<el-input
|
type="textarea"
|
v-model="form.remark"
|
placeholder="请输入备注信息(选填)"
|
:rows="4"
|
maxlength="500"
|
show-word-limit
|
></el-input>
|
</el-form-item>
|
</div>
|
</el-card>
|
</el-form>
|
</div>
|
</FormDialog>
|
|
<!-- 查看详情对话框 -->
|
<el-dialog v-model="viewDialogVisible" title="报价详情" width="800px">
|
<div style="margin: 20px 0;">
|
<h4>产品明细</h4>
|
<el-table :data="currentQuotation.products" border style="width: 100%">
|
<el-table-column prop="product" label="产品名称" />
|
<el-table-column prop="specification" label="规格型号" />
|
<el-table-column prop="unit" label="单位" />
|
<el-table-column prop="paper" label="纸张" />
|
<el-table-column prop="paperWeight" label="定量" />
|
<el-table-column prop="unitPrice" label="单价">
|
<template #default="scope">
|
¥{{ scope.row.unitPrice.toFixed(2) }}
|
</template>
|
</el-table-column>
|
<el-table-column prop="printingFee" label="印版费">
|
<template #default="scope">
|
¥{{ Number(scope.row.printingFee || 0).toFixed(2) }}
|
</template>
|
</el-table-column>
|
<el-table-column prop="dieCuttingFee" label="刀版费">
|
<template #default="scope">
|
¥{{ Number(scope.row.dieCuttingFee || 0).toFixed(2) }}
|
</template>
|
</el-table-column>
|
<el-table-column prop="grindingFee" label="磨具费">
|
<template #default="scope">
|
¥{{ Number(scope.row.grindingFee || 0).toFixed(2) }}
|
</template>
|
</el-table-column>
|
</el-table>
|
</div>
|
<div v-if="currentQuotation.remark" style="margin-top: 12px;">
|
<h4>备注</h4>
|
<p>{{ currentQuotation.remark }}</p>
|
</div>
|
</el-dialog>
|
</div>
|
</template>
|
|
<script setup>
|
import { ref, reactive, computed, onMounted, markRaw, shallowRef } from 'vue'
|
import { ElMessage, ElMessageBox } from 'element-plus'
|
import { Search, Box, EditPen, Plus } from '@element-plus/icons-vue'
|
import Pagination from '@/components/PIMTable/Pagination.vue'
|
import FormDialog from '@/components/Dialog/FormDialog.vue'
|
import {
|
quotationProductListPage,
|
getQuotationProductInfo,
|
addOrUpdateQuotationProduct,
|
editQuotationProduct,
|
deleteQuotationProduct
|
} from '@/api/salesManagement/salesQuotationProduct.js'
|
import {modelList, productTreeList} from "@/api/basicData/product.js";
|
// import {listCustomerPrivatePool} from "@/api/basicData/customerFile.js";
|
import { userListNoPage } from "@/api/system/user.js";
|
|
// 响应式数据
|
const loading = ref(false)
|
const searchForm = reactive({
|
product: ''
|
})
|
|
const quotationList = ref([])
|
const userList = ref([])
|
const productOptions = ref([]);
|
const modelOptions = ref([]);
|
const pagination = reactive({
|
total: 3,
|
currentPage: 1,
|
pageSize: 100
|
})
|
|
const dialogVisible = ref(false)
|
const viewDialogVisible = ref(false)
|
const dialogTitle = ref('新增报价')
|
const form = reactive({
|
quotationNo: '',
|
customer: '',
|
salesperson: '',
|
quotationDate: '',
|
validDate: '',
|
paymentMethod: '',
|
status: '草稿',
|
remark: '',
|
products: [],
|
subtotal: 0,
|
freight: 0,
|
otherFee: 0,
|
discountRate: 0,
|
discountAmount: 0,
|
totalAmount: 0
|
})
|
|
const baseRules = {}
|
|
const productRowRules = {
|
productId: [{ required: true, message: '请选择产品名称', trigger: 'change' }],
|
specificationId: [{ required: true, message: '请选择规格型号', trigger: 'change' }],
|
unit: [{ required: true, message: '请填写单位', trigger: 'blur' }],
|
unitPrice: [{ required: true, message: '请填写单价', trigger: 'change' }]
|
}
|
const rules = computed(() => {
|
const r = { ...baseRules }
|
;(form.products || []).forEach((_, i) => {
|
r[`products.${i}.productId`] = productRowRules.productId
|
r[`products.${i}.specificationId`] = productRowRules.specificationId
|
r[`products.${i}.unit`] = productRowRules.unit
|
r[`products.${i}.unitPrice`] = productRowRules.unitPrice
|
})
|
return r
|
})
|
const customerOption = ref([]);
|
|
const isEdit = ref(false)
|
const editId = ref(null)
|
const currentQuotation = ref({})
|
const formRef = ref()
|
|
// 计算属性
|
const filteredList = computed(() => {
|
const keyword = String(searchForm.product || '').trim()
|
if (!keyword) return quotationList.value
|
return quotationList.value.filter((row) => {
|
const p = String(row?.product || '').toLowerCase()
|
return p.includes(keyword.toLowerCase())
|
})
|
})
|
|
// 方法
|
const formatMoney = (value) => `¥${Number(value || 0).toFixed(2)}`
|
|
const resetSearch = () => {
|
searchForm.product = ''
|
// 重置到第一页并重新查询
|
pagination.currentPage = 1
|
handleSearch()
|
}
|
|
const handleAdd = async () => {
|
dialogTitle.value = '新增报价'
|
isEdit.value = false
|
resetForm()
|
dialogVisible.value = true
|
getProductOptions();
|
// listCustomerPrivatePool({current: -1,size:-1}).then((res) => {
|
// customerOption.value = res.data.records;
|
// });
|
}
|
const getProductOptions = () => {
|
// 返回 Promise,便于编辑时 await 确保能反显
|
return productTreeList().then((res) => {
|
productOptions.value = convertIdToValue(res);
|
return productOptions.value
|
});
|
};
|
function convertIdToValue(data) {
|
return data.map((item) => {
|
const { id, children, ...rest } = item;
|
const newItem = {
|
...rest,
|
value: id, // 将 id 改为 value
|
};
|
if (children && children.length > 0) {
|
newItem.children = convertIdToValue(children);
|
}
|
|
return newItem;
|
});
|
}
|
// 根据名称反查节点 id,便于仅存名称时的反显
|
function findNodeIdByLabel(nodes, label) {
|
if (!label) return null;
|
for (let i = 0; i < nodes.length; i++) {
|
const node = nodes[i];
|
if (node.label === label) return node.value;
|
if (node.children && node.children.length > 0) {
|
const found = findNodeIdByLabel(node.children, label);
|
if (found !== null && found !== undefined) return found;
|
}
|
}
|
return null;
|
}
|
const getModels = (value, row) => {
|
if (!row) return;
|
// 如果清空选择,则清空相关字段
|
if (!value) {
|
row.productId = '';
|
row.product = '';
|
row.modelOptions = [];
|
row.specificationId = '';
|
row.specification = '';
|
row.unit = '';
|
return;
|
}
|
// 更新 productId(v-model 已经自动更新,这里确保一致性)
|
row.productId = value;
|
// 找到对应的 label 并赋值给 row.product
|
const label = findNodeById(productOptions.value, value);
|
if (label) {
|
row.product = label;
|
}
|
// 获取规格型号列表,设置到当前行的 modelOptions
|
modelList({ id: value }).then((res) => {
|
row.modelOptions = res || [];
|
});
|
};
|
const getProductModel = (value, row) => {
|
if (!row) return;
|
// 如果清空选择,则清空相关字段
|
if (!value) {
|
row.specificationId = '';
|
row.specification = '';
|
row.unit = '';
|
return;
|
}
|
// 更新 specificationId(v-model 已经自动更新,这里确保一致性)
|
row.specificationId = value;
|
const modelOptions = row.modelOptions || [];
|
const index = modelOptions.findIndex((item) => item.id === value);
|
if (index !== -1) {
|
row.specification = modelOptions[index].model;
|
row.unit = modelOptions[index].unit;
|
} else {
|
row.specification = '';
|
row.unit = '';
|
}
|
};
|
const findNodeById = (nodes, productId) => {
|
for (let i = 0; i < nodes.length; i++) {
|
if (nodes[i].value === productId) {
|
return nodes[i].label; // 找到节点,返回 label
|
}
|
if (nodes[i].children && nodes[i].children.length > 0) {
|
const foundLabel = findNodeById(nodes[i].children, productId);
|
if (foundLabel) {
|
return foundLabel; // 在子节点中找到,返回 label
|
}
|
}
|
}
|
return null; // 没有找到节点,返回null
|
};
|
const mapProductItem = (product) => ({
|
id: product?.id || '',
|
salesQuotationId: product?.salesQuotationId || '',
|
productId: product?.productId || '',
|
product: product?.product || product?.productName || '',
|
specificationId: product?.specificationId || '',
|
specification: product?.specification || '',
|
quantity: product?.quantity || 0,
|
unit: product?.unit || '',
|
paper: product?.paper || '',
|
paperWeight: product?.paperWeight || '',
|
unitPrice: product?.unitPrice || 0,
|
printingFee: Number(product?.printingFee || 0),
|
dieCuttingFee: Number(product?.dieCuttingFee || 0),
|
grindingFee: Number(product?.grindingFee || 0),
|
amount: product?.amount || 0
|
})
|
|
const mapQuotationItem = (item) => ({
|
id: item?.id,
|
salesQuotationId: item?.salesQuotationId || '',
|
product: item?.product || '',
|
specification: item?.specification || '',
|
unit: item?.unit || '',
|
paper: item?.paper || '',
|
paperWeight: item?.paperWeight || '',
|
unitPrice: Number(item?.unitPrice || 0),
|
printingFee: Number(item?.printingFee || 0),
|
dieCuttingFee: Number(item?.dieCuttingFee || 0),
|
grindingFee: Number(item?.grindingFee || 0),
|
quantity: Number(item?.quantity || 0),
|
amount: Number(item?.amount || 0),
|
createTime: item?.createTime || '',
|
quotationNo: item?.quotationNo || '',
|
customer: item?.customer || '',
|
salesperson: item?.salesperson || '',
|
quotationDate: item?.quotationDate || '',
|
validDate: item?.validDate || '',
|
paymentMethod: item?.paymentMethod || '',
|
status: item?.status || '草稿',
|
approveUserIds: item?.approveUserIds || '',
|
remark: item?.remark || '',
|
products: Array.isArray(item?.products) && item.products.length > 0
|
? item.products.map(mapProductItem)
|
: [mapProductItem(item)],
|
subtotal: item?.subtotal || 0,
|
freight: item?.freight || 0,
|
otherFee: item?.otherFee || 0,
|
discountRate: item?.discountRate || 0,
|
discountAmount: item?.discountAmount || 0,
|
totalAmount: item?.totalAmount || 0
|
})
|
|
const calcTotalAmountFromProducts = (products) => {
|
return (products || []).reduce((sum, product) => {
|
const price = Number(product.unitPrice) || 0
|
const printingFee = Number(product.printingFee) || 0
|
const dieCuttingFee = Number(product.dieCuttingFee) || 0
|
const grindingFee = Number(product.grindingFee) || 0
|
return sum + price + printingFee + dieCuttingFee + grindingFee
|
}, 0)
|
}
|
|
const buildProductPayload = (product) => {
|
const quantity = Number(product?.quantity || 0)
|
const unitPrice = Number(product?.unitPrice || 0)
|
const printingFee = Number(product?.printingFee || 0)
|
const dieCuttingFee = Number(product?.dieCuttingFee || 0)
|
const grindingFee = Number(product?.grindingFee || 0)
|
return {
|
id: product?.id || undefined,
|
salesQuotationId: product?.salesQuotationId || form.salesQuotationId || null,
|
product: product?.product || '',
|
specification: product?.specification || '',
|
unit: product?.unit || '',
|
paper: product?.paper || '',
|
paperWeight: product?.paperWeight || '',
|
unitPrice,
|
printingFee,
|
dieCuttingFee,
|
grindingFee,
|
quantity,
|
amount: Number(product?.amount ?? quantity * unitPrice),
|
remark: product?.remark ?? form.remark ?? ''
|
}
|
}
|
|
const handleView = async (row) => {
|
let source = row
|
if (row?.id) {
|
try {
|
const res = await getQuotationProductInfo(row.id)
|
source = res?.data || row
|
} catch (error) {
|
source = row
|
}
|
}
|
source.totalAmount = source.totalAmount || calcTotalAmountFromProducts(source?.products || [source])
|
currentQuotation.value = mapQuotationItem(source)
|
viewDialogVisible.value = true
|
}
|
|
const handleEdit = async (row) => {
|
dialogTitle.value = '编辑报价'
|
isEdit.value = true
|
editId.value = row.id
|
form.id = row.id || form.id || null
|
// 先加载产品树数据,否则 el-tree-select 无法反显产品名称
|
await getProductOptions()
|
let source = row
|
if (row?.id) {
|
try {
|
const res = await getQuotationProductInfo(row.id)
|
source = res?.data || row
|
} catch (error) {
|
source = row
|
}
|
}
|
source.totalAmount = source.totalAmount || calcTotalAmountFromProducts(source?.products || [source])
|
|
const sourceProducts = Array.isArray(source?.products) && source.products.length > 0
|
? source.products
|
: [source]
|
|
// 只复制需要的字段,避免将组件引用放入响应式对象
|
form.quotationNo = source.quotationNo || ''
|
form.customer = source.customer || ''
|
form.salesperson = source.salesperson || ''
|
form.quotationDate = source.quotationDate || ''
|
form.validDate = source.validDate || ''
|
form.paymentMethod = source.paymentMethod || ''
|
form.status = source.status || '草稿'
|
form.remark = source.remark || ''
|
form.products = await Promise.all(sourceProducts.map(async (product) => {
|
const productName = product.product || product.productName || ''
|
// 优先用 productId;如果只有名称,尝试反查 id 以便树选择器反显
|
const resolvedProductId = product.productId
|
? Number(product.productId)
|
: findNodeIdByLabel(productOptions.value, productName) || ''
|
|
// 如果有产品ID,加载对应的规格型号列表
|
let modelOptions = [];
|
let resolvedSpecificationId = product.specificationId || '';
|
|
if (resolvedProductId) {
|
try {
|
const res = await modelList({ id: resolvedProductId });
|
modelOptions = res || [];
|
|
// 如果返回的数据没有 specificationId,但有 specification 名称,根据名称查找 ID
|
if (!resolvedSpecificationId && product.specification) {
|
const foundModel = modelOptions.find(item => item.model === product.specification);
|
if (foundModel) {
|
resolvedSpecificationId = foundModel.id;
|
}
|
}
|
} catch (error) {
|
console.error('加载规格型号失败:', error);
|
}
|
}
|
|
return {
|
productId: resolvedProductId,
|
product: productName,
|
specificationId: resolvedSpecificationId,
|
specification: product.specification || '',
|
quantity: product.quantity || 0,
|
unit: product.unit || '',
|
paper: product.paper || '',
|
paperWeight: product.paperWeight || '',
|
unitPrice: product.unitPrice || 0,
|
printingFee: Number(product.printingFee || 0),
|
dieCuttingFee: Number(product.dieCuttingFee || 0),
|
grindingFee: Number(product.grindingFee || 0),
|
amount: product.amount || 0,
|
modelOptions: modelOptions // 为每行添加独立的规格型号列表
|
}
|
}))
|
form.subtotal = source.subtotal || 0
|
form.freight = source.freight || 0
|
form.otherFee = source.otherFee || 0
|
form.discountRate = source.discountRate || 0
|
form.discountAmount = source.discountAmount || 0
|
form.totalAmount = source.totalAmount || 0
|
|
dialogVisible.value = true
|
}
|
|
|
const handleDelete = (row) => {
|
ElMessageBox.confirm('确认删除该报价单吗?', '提示', {
|
confirmButtonText: '确定',
|
cancelButtonText: '取消',
|
type: 'warning'
|
}).then(() => {
|
if (!row?.id) {
|
ElMessage.warning('未获取到可删除的产品ID')
|
return
|
}
|
deleteQuotationProduct([row.id]).then(res=>{
|
if(res.code===200){
|
ElMessage.success('删除成功')
|
handleSearch()
|
}
|
})
|
})
|
}
|
|
const resetForm = () => {
|
form.id = null
|
form.customer = ''
|
form.salesperson = ''
|
form.quotationDate = ''
|
form.validDate = ''
|
form.paymentMethod = ''
|
form.status = '草稿'
|
form.remark = ''
|
form.products = []
|
form.subtotal = 0
|
form.freight = 0
|
form.otherFee = 0
|
form.discountRate = 0
|
form.discountAmount = 0
|
form.totalAmount = 0
|
}
|
|
const addProduct = () => {
|
if (isEdit.value) {
|
ElMessage.warning('编辑时不允许新增产品')
|
return
|
}
|
form.products.push({
|
productId: '',
|
product: '',
|
productName: '',
|
specificationId: '',
|
specification: '',
|
quantity: 1,
|
unit: '',
|
paper: '',
|
paperWeight: '',
|
unitPrice: 0,
|
printingFee: 0,
|
dieCuttingFee: 0,
|
grindingFee: 0,
|
amount: 0,
|
modelOptions: [] // 为每行添加独立的规格型号列表
|
})
|
}
|
|
const removeProduct = (index) => {
|
form.products.splice(index, 1)
|
calculateSubtotal()
|
}
|
|
const calculateAmount = (product) => {
|
product.amount = product.quantity * product.unitPrice
|
calculateSubtotal()
|
}
|
|
const calculateSubtotal = () => {
|
form.subtotal = form.products.reduce((sum, product) => sum + product.amount, 0)
|
calculateTotal()
|
}
|
|
const calculateTotal = () => {
|
form.discountAmount = form.subtotal * (form.discountRate / 100)
|
form.totalAmount = form.subtotal + form.freight + form.otherFee - form.discountAmount
|
}
|
|
const handleSubmit = () => {
|
formRef.value.validate((valid) => {
|
if (valid) {
|
if (form.products.length === 0) {
|
ElMessage.warning('请至少添加一个产品')
|
return
|
}
|
|
// 计算所有产品的单价总和
|
form.totalAmount = form.products.reduce((sum, product) => {
|
const price = Number(product.unitPrice) || 0
|
const printingFee = Number(product.printingFee) || 0
|
const dieCuttingFee = Number(product.dieCuttingFee) || 0
|
const grindingFee = Number(product.grindingFee) || 0
|
return sum + price + printingFee + dieCuttingFee + grindingFee
|
}, 0)
|
if (isEdit.value) {
|
const editingItem = form.products[0] || {}
|
const payload = buildProductPayload({
|
...editingItem,
|
id: editingItem.id || form.id
|
})
|
editQuotationProduct(payload).then((res) => {
|
if (res?.code === 200) {
|
ElMessage.success('编辑成功')
|
dialogVisible.value = false
|
handleSearch()
|
}
|
})
|
} else {
|
const payloadList = form.products.map((item) => buildProductPayload(item))
|
addOrUpdateQuotationProduct(payloadList).then((res) => {
|
if (res?.code === 200) {
|
ElMessage.success('新增成功')
|
dialogVisible.value = false
|
handleSearch()
|
}
|
})
|
}
|
|
}
|
})
|
}
|
|
const handleCurrentChange = (val) => {
|
pagination.currentPage = val.page
|
pagination.pageSize = val.limit
|
// 分页变化时重新查询列表
|
handleSearch()
|
}
|
const handleSearch = (resetPage = false)=>{
|
if (resetPage) {
|
pagination.currentPage = 1
|
}
|
const params = {
|
// 后端分页参数:current / size
|
current: pagination.currentPage,
|
size: pagination.pageSize,
|
...searchForm
|
}
|
quotationProductListPage(params).then(res=>{
|
if(res.code===200){
|
const records = res.data.records || []
|
quotationList.value = records.map((item) => {
|
const mapped = mapQuotationItem(item)
|
mapped.totalAmount = calcTotalAmountFromProducts(mapped.products)
|
return mapped
|
})
|
pagination.total = res.data.total
|
}
|
})
|
}
|
|
const getUserList = async () => {
|
try {
|
const res = await userListNoPage()
|
userList.value = Array.isArray(res?.data) ? res.data : []
|
} catch (error) {
|
userList.value = []
|
ElMessage.error('加载业务员列表失败')
|
}
|
}
|
|
onMounted(()=>{
|
getUserList()
|
handleSearch()
|
})
|
</script>
|
|
<style scoped lang="scss">
|
.search-row {
|
margin-bottom: 20px;
|
}
|
|
.quotation-form-container {
|
padding: 10px 0;
|
max-height: calc(100vh - 200px);
|
overflow-y: auto;
|
|
&::-webkit-scrollbar {
|
width: 6px;
|
height: 6px;
|
}
|
|
&::-webkit-scrollbar-thumb {
|
background: #c1c1c1;
|
border-radius: 3px;
|
|
&:hover {
|
background: #a8a8a8;
|
}
|
}
|
}
|
|
.quotation-form {
|
.el-form-item {
|
margin-bottom: 22px;
|
}
|
}
|
|
.form-card {
|
margin-bottom: 24px;
|
border-radius: 8px;
|
transition: all 0.3s ease;
|
|
&:hover {
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
|
}
|
|
:deep(.el-card__header) {
|
padding: 16px 20px;
|
background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
|
border-bottom: 1px solid #ebeef5;
|
}
|
|
:deep(.el-card__body) {
|
padding: 20px;
|
}
|
}
|
|
.card-header-wrapper {
|
display: flex;
|
align-items: center;
|
gap: 8px;
|
|
.card-icon {
|
font-size: 18px;
|
color: #409eff;
|
}
|
|
.card-title {
|
font-weight: 600;
|
font-size: 16px;
|
color: #303133;
|
flex: 1;
|
}
|
|
.header-btn {
|
margin-left: auto;
|
}
|
}
|
|
.form-content {
|
padding: 8px 0;
|
}
|
|
.product-table-form-item {
|
margin-bottom: 0;
|
:deep(.el-form-item__content) {
|
margin-left: 0 !important;
|
}
|
:deep(.el-form-item__label) {
|
width: auto;
|
min-width: auto;
|
}
|
}
|
|
.product-table {
|
:deep(.el-table__header) {
|
background-color: #f5f7fa;
|
|
th {
|
background-color: #f5f7fa !important;
|
color: #606266;
|
font-weight: 600;
|
}
|
}
|
|
:deep(.el-table__row) {
|
&:hover {
|
background-color: #f5f7fa;
|
}
|
}
|
|
:deep(.el-table__cell) {
|
padding: 12px 0;
|
}
|
}
|
|
.dialog-footer {
|
text-align: right;
|
}
|
|
</style>
|