|
@@ -16,8 +16,13 @@
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<el-col :span="8">
|
|
|
- <el-form-item label="下单人" prop="orderer">
|
|
|
- <el-select v-model="form.orderer" placeholder="请选择下单人" style="width: 100%" filterable>
|
|
|
+ <el-form-item label="下单人" prop="createId">
|
|
|
+ <el-select
|
|
|
+ v-model="form.createId"
|
|
|
+ placeholder="请选择下单人"
|
|
|
+ style="width: 100%"
|
|
|
+ filterable
|
|
|
+ >
|
|
|
<el-option
|
|
|
v-for="item in installerOptions"
|
|
|
:key="item.value"
|
|
@@ -43,19 +48,28 @@
|
|
|
<el-row :gutter="10">
|
|
|
<el-col :span="8">
|
|
|
<el-form-item label="服务项目" prop="serviceProject">
|
|
|
- <el-select v-model="form.serviceProject" placeholder="请选择服务项目" style="width: 100%">
|
|
|
+ <el-select
|
|
|
+ v-model="form.serviceProject"
|
|
|
+ placeholder="请选择服务项目"
|
|
|
+ style="width: 100%"
|
|
|
+ >
|
|
|
<el-option
|
|
|
v-for="item in projectOptions"
|
|
|
- :key="item.value"
|
|
|
- :label="item.label"
|
|
|
- :value="item.value"
|
|
|
+ :key="item.id"
|
|
|
+ :label="item.name"
|
|
|
+ :value="item.id"
|
|
|
/>
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<el-col :span="8">
|
|
|
<el-form-item label="服务人员" prop="serviceStaffIds">
|
|
|
- <el-select v-model="form.serviceStaffIds" placeholder="请选择服务人员" style="width: 100%">
|
|
|
+ <el-select
|
|
|
+ v-model="form.serviceStaffIds"
|
|
|
+ multiple
|
|
|
+ placeholder="请选择服务人员"
|
|
|
+ style="width: 100%"
|
|
|
+ >
|
|
|
<el-option
|
|
|
v-for="item in installerOptions"
|
|
|
:key="item.value"
|
|
@@ -136,19 +150,55 @@
|
|
|
<div class="product-option">
|
|
|
<div class="option-item">
|
|
|
<span class="label">编号</span>
|
|
|
- <span class="value">{{item.goodsCode}}</span>
|
|
|
+ <span class="value">{{ item.goodsCode }}</span>
|
|
|
</div>
|
|
|
<div class="option-item">
|
|
|
<span class="label">名称</span>
|
|
|
- <span class="value">{{item.goodsName}}</span>
|
|
|
+ <el-tooltip
|
|
|
+ :content="item.goodsName"
|
|
|
+ placement="top"
|
|
|
+ :disabled="item.goodsName.length <= 10"
|
|
|
+ effect="light"
|
|
|
+ >
|
|
|
+ <span class="value">{{ item.goodsName }}</span>
|
|
|
+ </el-tooltip>
|
|
|
</div>
|
|
|
<div class="option-item">
|
|
|
<span class="label">规格</span>
|
|
|
- <span class="value">{{item.goodsSpecification || '-'}}</span>
|
|
|
+ <el-tooltip
|
|
|
+ :content="item.goodsSpecification"
|
|
|
+ placement="top"
|
|
|
+ :disabled="
|
|
|
+ !item.goodsSpecification ||
|
|
|
+ item.goodsSpecification.length <= 5
|
|
|
+ "
|
|
|
+ effect="light"
|
|
|
+ >
|
|
|
+ <span class="value">{{
|
|
|
+ item.goodsSpecification || "-"
|
|
|
+ }}</span>
|
|
|
+ </el-tooltip>
|
|
|
+ </div>
|
|
|
+ <div class="option-item">
|
|
|
+ <span class="label">型号</span>
|
|
|
+ <el-tooltip
|
|
|
+ :content="item.goodsModel"
|
|
|
+ placement="top"
|
|
|
+ :disabled="
|
|
|
+ !item.goodsModel || item.goodsModel.length <= 5
|
|
|
+ "
|
|
|
+ effect="light"
|
|
|
+ >
|
|
|
+ <span class="value">{{ item.goodsModel || "-" }}</span>
|
|
|
+ </el-tooltip>
|
|
|
+ </div>
|
|
|
+ <div class="option-item">
|
|
|
+ <span class="label">单位</span>
|
|
|
+ <span class="value">{{ item.goodsUnit || "-" }}</span>
|
|
|
</div>
|
|
|
<div class="option-item">
|
|
|
<span class="label">库存</span>
|
|
|
- <span class="value">{{item.stock || 0}}</span>
|
|
|
+ <span class="value">{{ item.stock || 0 }}</span>
|
|
|
</div>
|
|
|
</div>
|
|
|
</template>
|
|
@@ -159,14 +209,38 @@
|
|
|
</el-row>
|
|
|
|
|
|
<el-form-item label-width="120px">
|
|
|
- <el-table :data="form.products" border style="width: calc(100% - 20px); ">
|
|
|
- <el-table-column type="index" label="序号" width="50" align="center" />
|
|
|
- <el-table-column prop="goodsCode" label="货品编号" align="center" />
|
|
|
- <el-table-column prop="goodsName" label="货品名称" align="center" />
|
|
|
- <el-table-column prop="goodsSpecification" label="货品规格" align="center" width="50"/>
|
|
|
- <el-table-column prop="goodsImagePath" label="货品图片" align="center">
|
|
|
+ <el-table :data="form.products" border style="width: calc(100% - 20px)">
|
|
|
+ <el-table-column
|
|
|
+ type="index"
|
|
|
+ label="序号"
|
|
|
+ width="50"
|
|
|
+ align="center"
|
|
|
+ />
|
|
|
+ <el-table-column
|
|
|
+ prop="goodsCode"
|
|
|
+ label="货品编号"
|
|
|
+ align="center"
|
|
|
+ width="100"
|
|
|
+ />
|
|
|
+ <el-table-column
|
|
|
+ prop="goodsName"
|
|
|
+ label="货品名称"
|
|
|
+ align="center"
|
|
|
+ width="150"
|
|
|
+ />
|
|
|
+ <el-table-column
|
|
|
+ prop="goodsSpecification"
|
|
|
+ label="货品规格"
|
|
|
+ align="center"
|
|
|
+ width="100"
|
|
|
+ />
|
|
|
+ <el-table-column
|
|
|
+ prop="goodsImagePath"
|
|
|
+ label="货品图片"
|
|
|
+ align="center"
|
|
|
+ >
|
|
|
<template slot-scope="scope">
|
|
|
- <el-image
|
|
|
+ <el-image
|
|
|
v-if="scope.row.goodsImagePath"
|
|
|
:src="baseApi + scope.row.goodsImagePath"
|
|
|
style="width: 50px; height: 50px"
|
|
@@ -177,16 +251,46 @@
|
|
|
<i class="el-icon-picture-outline"></i>
|
|
|
</div>
|
|
|
</el-image>
|
|
|
- <div v-else class="image-slot" style="width: 50px; height: 50px; display: inline-flex; justify-content: center; align-items: center; background: #f5f7fa; border-radius: 4px;">
|
|
|
- <i class="el-icon-picture-outline" style="font-size: 20px; color: #909399;"></i>
|
|
|
+ <div
|
|
|
+ v-else
|
|
|
+ class="image-slot"
|
|
|
+ style="
|
|
|
+ width: 50px;
|
|
|
+ height: 50px;
|
|
|
+ display: inline-flex;
|
|
|
+ justify-content: center;
|
|
|
+ align-items: center;
|
|
|
+ background: #f5f7fa;
|
|
|
+ border-radius: 4px;
|
|
|
+ "
|
|
|
+ >
|
|
|
+ <i
|
|
|
+ class="el-icon-picture-outline"
|
|
|
+ style="font-size: 20px; color: #909399"
|
|
|
+ ></i>
|
|
|
</div>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="goodsUnit" label="计量单位" align="center" width="50"/>
|
|
|
- <el-table-column prop="stock" label="现有库存" align="center" width="60"/>
|
|
|
- <el-table-column prop="orderQuantity" label="订单数量" align="center" width="110">
|
|
|
+ <el-table-column
|
|
|
+ prop="goodsUnit"
|
|
|
+ label="计量单位"
|
|
|
+ align="center"
|
|
|
+ width="50"
|
|
|
+ />
|
|
|
+ <el-table-column
|
|
|
+ prop="stock"
|
|
|
+ label="现有库存"
|
|
|
+ align="center"
|
|
|
+ width="60"
|
|
|
+ />
|
|
|
+ <el-table-column
|
|
|
+ prop="orderQuantity"
|
|
|
+ label="订单数量"
|
|
|
+ align="center"
|
|
|
+ width="110"
|
|
|
+ >
|
|
|
<template slot-scope="scope">
|
|
|
- <el-input
|
|
|
+ <el-input
|
|
|
v-model="scope.row.orderQuantity"
|
|
|
size="mini"
|
|
|
style="width: 70px"
|
|
@@ -194,27 +298,47 @@
|
|
|
/>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="shippedQuantity" label="已发货数量" align="center" width="70"/>
|
|
|
- <el-table-column prop="unshippedQuantity" label="未发货数量" align="center" width="70"/>
|
|
|
- <el-table-column prop="remark" label="备注" align="center" width="100">
|
|
|
+ <el-table-column
|
|
|
+ prop="shippedQuantity"
|
|
|
+ label="服务数量"
|
|
|
+ align="center"
|
|
|
+ width="70"
|
|
|
+ />
|
|
|
+ <el-table-column
|
|
|
+ prop="unshippedQuantity"
|
|
|
+ label="未服务数量"
|
|
|
+ align="center"
|
|
|
+ width="70"
|
|
|
+ />
|
|
|
+ <el-table-column
|
|
|
+ prop="remark"
|
|
|
+ label="备注"
|
|
|
+ align="center"
|
|
|
+ width="100"
|
|
|
+ >
|
|
|
<template slot-scope="scope">
|
|
|
- <el-input
|
|
|
- v-model="scope.row.remark"
|
|
|
+ <el-input
|
|
|
+ v-model="scope.row.remark"
|
|
|
size="mini"
|
|
|
placeholder="备注"
|
|
|
/>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="操作" align="center" width="100" fixed="right">
|
|
|
+ <el-table-column
|
|
|
+ label="操作"
|
|
|
+ align="center"
|
|
|
+ width="100"
|
|
|
+ fixed="right"
|
|
|
+ >
|
|
|
<template slot-scope="scope">
|
|
|
<el-button
|
|
|
size="mini"
|
|
|
type="danger"
|
|
|
plain
|
|
|
@click="handleRemoveProduct(scope.$index)"
|
|
|
- style="padding: 4px 8px; border-radius: 4px;"
|
|
|
+ style="padding: 4px 8px; border-radius: 4px"
|
|
|
>
|
|
|
- <i class="el-icon-delete" style="margin-right: 2px;" />
|
|
|
+ <i class="el-icon-delete" style="margin-right: 2px" />
|
|
|
删除
|
|
|
</el-button>
|
|
|
</template>
|
|
@@ -230,78 +354,79 @@
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
-import { GetDataByName, GetDataByNames, ExecDataByConfig } from '@/api/common'
|
|
|
+import { GetDataByName, GetDataByNames, ExecDataByConfig } from "@/api/common";
|
|
|
|
|
|
export default {
|
|
|
- name: 'EditDialog',
|
|
|
+ name: "EditDialog",
|
|
|
props: {
|
|
|
visible: {
|
|
|
type: Boolean,
|
|
|
- default: false
|
|
|
+ default: false,
|
|
|
},
|
|
|
installerOptions: {
|
|
|
type: Array,
|
|
|
- default: () => []
|
|
|
+ default: () => [],
|
|
|
},
|
|
|
projectOptions: {
|
|
|
type: Array,
|
|
|
- default: () => []
|
|
|
+ default: () => [],
|
|
|
},
|
|
|
currentUser: {
|
|
|
type: Object,
|
|
|
default: () => ({
|
|
|
- id: '',
|
|
|
- name: ''
|
|
|
- })
|
|
|
+ id: "",
|
|
|
+ name: "",
|
|
|
+ }),
|
|
|
},
|
|
|
rowData: {
|
|
|
type: Object,
|
|
|
- default: () => ({})
|
|
|
- }
|
|
|
+ default: () => ({}),
|
|
|
+ },
|
|
|
},
|
|
|
computed: {
|
|
|
baseApi() {
|
|
|
- return process.env.VUE_APP_BASE_API
|
|
|
- }
|
|
|
+ return process.env.VUE_APP_BASE_API;
|
|
|
+ },
|
|
|
},
|
|
|
watch: {
|
|
|
visible(val) {
|
|
|
if (val) {
|
|
|
// 弹窗打开时初始化数据
|
|
|
this.$nextTick(async () => {
|
|
|
- await this.getOrderData()
|
|
|
- this.getInitialData()
|
|
|
- })
|
|
|
+ await this.getOrderData();
|
|
|
+ this.getInitialData();
|
|
|
+ });
|
|
|
}
|
|
|
- }
|
|
|
+ },
|
|
|
},
|
|
|
data() {
|
|
|
return {
|
|
|
form: {
|
|
|
- products: [] // 只保留 products 数组,因为表格初始化需要它
|
|
|
+ products: [], // 只保留 products 数组,因为表格初始化需要它
|
|
|
+ serviceStaffIds: [], // 改为数组类型
|
|
|
},
|
|
|
customerOptions: [], // 客户选项
|
|
|
loading: false, // 客户加载状态
|
|
|
- selectedProduct: '', // 当前选中的货品
|
|
|
+ selectedProduct: "", // 当前选中的货品
|
|
|
productOptions: [], // 货品选项
|
|
|
productLoading: false, // 货品加载状态
|
|
|
-
|
|
|
+
|
|
|
// 表单校验规则
|
|
|
rules: {
|
|
|
- orderer: [
|
|
|
- { required: true, message: '请选择下单人', trigger: 'change' }
|
|
|
+ createId: [
|
|
|
+ { required: true, message: "请选择下单人", trigger: "change" },
|
|
|
],
|
|
|
serviceProject: [
|
|
|
- { required: true, message: '请选择服务项目', trigger: 'change' }
|
|
|
+ { required: true, message: "请选择服务项目", trigger: "change" },
|
|
|
],
|
|
|
serviceStaffIds: [
|
|
|
- { required: true, message: '请选择服务人员', trigger: 'change' }
|
|
|
+ { required: true, message: "请选择服务人员", trigger: "change" },
|
|
|
],
|
|
|
estimatedCompleteTime: [
|
|
|
- { required: true, message: '请选择预计完成时间', trigger: 'change' }
|
|
|
- ]
|
|
|
- }
|
|
|
- }
|
|
|
+ { required: true, message: "请选择预计完成时间", trigger: "change" },
|
|
|
+ ],
|
|
|
+ },
|
|
|
+ };
|
|
|
},
|
|
|
methods: {
|
|
|
// 获取订单数据
|
|
@@ -312,120 +437,139 @@ export default {
|
|
|
name: "getInstallationOrderById",
|
|
|
returntype: "Map",
|
|
|
parammaps: {
|
|
|
- id: this.rowData.id
|
|
|
- }
|
|
|
+ id: this.rowData.id,
|
|
|
+ },
|
|
|
},
|
|
|
{
|
|
|
name: "getInstallationOrderDetail",
|
|
|
returntype: "Map",
|
|
|
parammaps: {
|
|
|
- orderId: this.rowData.id
|
|
|
- }
|
|
|
- }
|
|
|
- ]
|
|
|
+ orderId: this.rowData.id,
|
|
|
+ },
|
|
|
+ },
|
|
|
+ ];
|
|
|
|
|
|
- const response = await GetDataByNames(params)
|
|
|
- if (response.msg === 'ok') {
|
|
|
+ const response = await GetDataByNames(params);
|
|
|
+ if (response.msg === "ok") {
|
|
|
// 获取主表数据
|
|
|
- const mainData = response.data.getInstallationOrderById.list[0] || {}
|
|
|
+ const mainData = response.data.getInstallationOrderById.list[0] || {};
|
|
|
// 获取明细表数据
|
|
|
- const detailData = response.data.getInstallationOrderDetail.list || []
|
|
|
+ const detailData =
|
|
|
+ response.data.getInstallationOrderDetail.list || [];
|
|
|
|
|
|
// 初始化表单数据
|
|
|
this.form = {
|
|
|
- orderNo: mainData.orderNo || '',
|
|
|
- orderTime: mainData.orderTime ? new Date(mainData.orderTime) : '',
|
|
|
- orderer: parseInt(mainData.dispatcherId),
|
|
|
+ orderNo: mainData.orderNo || "",
|
|
|
+ orderTime: mainData.orderTime ? new Date(mainData.orderTime) : "",
|
|
|
serviceProject: parseInt(mainData.projectId),
|
|
|
- serviceStaffIds: parseInt(mainData.serviceStaffIds),
|
|
|
- estimatedCompleteTime: mainData.estimatedCompleteTime ? new Date(mainData.estimatedCompleteTime) : '',
|
|
|
- deliveryNo: mainData.deliveryNo || '',
|
|
|
- contractNo: mainData.contractNo || '',
|
|
|
- customerName: mainData.customerName || '',
|
|
|
- remark: mainData.remark || '',
|
|
|
- products: detailData.map(item => ({
|
|
|
+ orderer: parseInt(mainData.dispatcherId)
|
|
|
+ ? parseInt(mainData.dispatcherId)
|
|
|
+ : null,
|
|
|
+ createId: parseInt(mainData.createId)
|
|
|
+ ? parseInt(mainData.createId)
|
|
|
+ : null,
|
|
|
+ createName: mainData.createName || "",
|
|
|
+ serviceStaffIds: mainData.serviceStaffIds
|
|
|
+ ? mainData.serviceStaffIds.split(",").map((id) => parseInt(id))
|
|
|
+ : [],
|
|
|
+ estimatedCompleteTime: mainData.estimatedCompleteTime
|
|
|
+ ? new Date(mainData.estimatedCompleteTime)
|
|
|
+ : "",
|
|
|
+ deliveryNo: mainData.deliveryNo || "",
|
|
|
+ contractNo: mainData.contractNo || "",
|
|
|
+ customerName: mainData.customerName || "",
|
|
|
+ remark: mainData.remark || "",
|
|
|
+ products: detailData.map((item) => ({
|
|
|
goodsId: item.goodsId,
|
|
|
- goodsCode: item.goodsCode || '',
|
|
|
- goodsName: item.goodsName || '',
|
|
|
- goodsSpecification: item.goodsSpecification || '',
|
|
|
- goodsImagePath: item.goodsImagePath || '',
|
|
|
- goodsUnit: item.goodsUnit || '',
|
|
|
+ goodsCode: item.goodsCode || "",
|
|
|
+ goodsName: item.goodsName || "",
|
|
|
+ goodsSpecification: item.goodsSpecification || "",
|
|
|
+ goodsImagePath: item.goodsImagePath || "",
|
|
|
+ goodsUnit: item.goodsUnit || "",
|
|
|
stock: item.stock || 0,
|
|
|
orderQuantity: item.orderQuantity || 0,
|
|
|
shippedQuantity: item.shippedQuantity || 0,
|
|
|
unshippedQuantity: item.unshippedQuantity || 0,
|
|
|
- remark: item.remark || ''
|
|
|
- }))
|
|
|
- }
|
|
|
- console.log('form:', this.form)
|
|
|
+ remark: item.remark || "",
|
|
|
+ })),
|
|
|
+ };
|
|
|
+ console.log("form:", this.form);
|
|
|
+ console.log("projectOptions:", this.projectOptions);
|
|
|
+ console.log("mainData.projectId:", mainData.projectId);
|
|
|
+ console.log("parsed serviceProject:", parseInt(mainData.projectId));
|
|
|
} else {
|
|
|
- this.$message.error('获取数据失败')
|
|
|
+ this.$message.error("获取数据失败");
|
|
|
}
|
|
|
} catch (error) {
|
|
|
- console.error('获取数据失败:', error)
|
|
|
- this.$message.error('获取数据失败')
|
|
|
+ console.error("获取数据失败:", error);
|
|
|
+ this.$message.error("获取数据失败");
|
|
|
}
|
|
|
},
|
|
|
|
|
|
// 获取客户信息
|
|
|
- handleCustomerInput(value) {
|
|
|
-
|
|
|
- },
|
|
|
+ handleCustomerInput(value) {},
|
|
|
|
|
|
// 关闭弹窗
|
|
|
handleDialogClose() {
|
|
|
- this.$emit('update:visible', false)
|
|
|
- this.$refs.form && this.$refs.form.resetFields()
|
|
|
- this.form.products = []
|
|
|
+ this.$emit("update:visible", false);
|
|
|
+ this.$refs.form && this.$refs.form.resetFields();
|
|
|
+ this.form.products = [];
|
|
|
},
|
|
|
|
|
|
// 取消
|
|
|
handleCancel() {
|
|
|
- this.handleDialogClose()
|
|
|
+ this.handleDialogClose();
|
|
|
},
|
|
|
|
|
|
getInitialData() {
|
|
|
// 获取客户信息
|
|
|
- this.handleCustomerInput('')
|
|
|
+ this.handleCustomerInput("");
|
|
|
},
|
|
|
|
|
|
// 移除货品
|
|
|
handleRemoveProduct(index) {
|
|
|
- this.form.products.splice(index, 1)
|
|
|
+ this.form.products.splice(index, 1);
|
|
|
},
|
|
|
|
|
|
// 处理货品输入搜索
|
|
|
handleProductInput(value) {
|
|
|
- this.productLoading = true
|
|
|
+ this.productLoading = true;
|
|
|
const send_select_list = {
|
|
|
- name: 'getGoodsListByCode',
|
|
|
- returntype: 'Map',
|
|
|
+ name: "getGoodsListByCode",
|
|
|
+ returntype: "Map",
|
|
|
parammaps: {
|
|
|
- goodsCode: value || ''
|
|
|
- }
|
|
|
- }
|
|
|
+ goodsCode: value || "",
|
|
|
+ },
|
|
|
+ };
|
|
|
|
|
|
- GetDataByName(send_select_list).then(response => {
|
|
|
- this.productOptions = response.data.list || []
|
|
|
- }).catch(error => {
|
|
|
- console.error('搜索货品失败:', error)
|
|
|
- this.$message.error('搜索货品失败')
|
|
|
- }).finally(() => {
|
|
|
- this.productLoading = false
|
|
|
- })
|
|
|
+ GetDataByName(send_select_list)
|
|
|
+ .then((response) => {
|
|
|
+ this.productOptions = response.data.list || [];
|
|
|
+ })
|
|
|
+ .catch((error) => {
|
|
|
+ console.error("搜索货品失败:", error);
|
|
|
+ this.$message.error("搜索货品失败");
|
|
|
+ })
|
|
|
+ .finally(() => {
|
|
|
+ this.productLoading = false;
|
|
|
+ });
|
|
|
},
|
|
|
|
|
|
// 处理货品选择变化
|
|
|
handleProductChange(value) {
|
|
|
- console.log('value:', this.form.products, value)
|
|
|
- const selectedProduct = this.productOptions.find(item => item.goodsId === value)
|
|
|
+ console.log("value:", this.form.products, value);
|
|
|
+ const selectedProduct = this.productOptions.find(
|
|
|
+ (item) => item.goodsId === value
|
|
|
+ );
|
|
|
if (selectedProduct) {
|
|
|
// 检查是否已经添加过该货品
|
|
|
- const existingProduct = this.form.products.find(item => item.goodsId === selectedProduct.goodsId)
|
|
|
+ const existingProduct = this.form.products.find(
|
|
|
+ (item) => item.goodsId === selectedProduct.goodsId
|
|
|
+ );
|
|
|
if (existingProduct) {
|
|
|
- this.$message.warning('该货品已经添加过了')
|
|
|
- this.selectedProduct = ''
|
|
|
- return
|
|
|
+ this.$message.warning("该货品已经添加过了");
|
|
|
+ this.selectedProduct = "";
|
|
|
+ return;
|
|
|
}
|
|
|
|
|
|
// 添加新货品到表格
|
|
@@ -434,45 +578,45 @@ export default {
|
|
|
goodsCode: selectedProduct.goodsCode,
|
|
|
goodsName: selectedProduct.goodsName,
|
|
|
goodsSpecification: selectedProduct.goodsSpecification,
|
|
|
- goodsImagePath: selectedProduct.goodsImagePath || '',
|
|
|
+ goodsImagePath: selectedProduct.goodsImagePath || "",
|
|
|
goodsUnit: selectedProduct.goodsUnit,
|
|
|
stock: selectedProduct.stock || 0,
|
|
|
orderQuantity: 1,
|
|
|
shippedQuantity: 0,
|
|
|
unshippedQuantity: 0,
|
|
|
- remark: ''
|
|
|
- })
|
|
|
+ remark: "",
|
|
|
+ });
|
|
|
}
|
|
|
- this.selectedProduct = '' // 清空选择
|
|
|
+ this.selectedProduct = ""; // 清空选择
|
|
|
},
|
|
|
|
|
|
// 处理订单数量输入
|
|
|
handleOrderQuantityInput(value, row) {
|
|
|
// 只允许输入正整数
|
|
|
- value = value.replace(/[^\d]/g, '')
|
|
|
- if (value === '') {
|
|
|
- row.orderQuantity = 1
|
|
|
+ value = value.replace(/[^\d]/g, "");
|
|
|
+ if (value === "") {
|
|
|
+ row.orderQuantity = 1;
|
|
|
} else {
|
|
|
- const num = parseInt(value)
|
|
|
- row.orderQuantity = num || 1
|
|
|
+ const num = parseInt(value);
|
|
|
+ row.orderQuantity = num || 1;
|
|
|
}
|
|
|
},
|
|
|
|
|
|
// 提交表单
|
|
|
- handleSubmit() {
|
|
|
- this.$refs.form.validate(async (valid) => {
|
|
|
+ async handleSubmit() {
|
|
|
+ this.$refs.form.validate(async (valid, errorFields) => {
|
|
|
if (valid) {
|
|
|
try {
|
|
|
// 检查是否添加了货品
|
|
|
if (this.form.products.length === 0) {
|
|
|
- this.$message.warning('请至少添加一个货品')
|
|
|
- return
|
|
|
+ this.$message.warning("请至少添加一个货品");
|
|
|
+ return;
|
|
|
}
|
|
|
|
|
|
// 构建保存参数
|
|
|
const params = {
|
|
|
common: {
|
|
|
- returnmap: "0"
|
|
|
+ returnmap: "0",
|
|
|
},
|
|
|
data: [
|
|
|
{
|
|
@@ -481,35 +625,57 @@ export default {
|
|
|
parammaps: {
|
|
|
id: this.rowData.id,
|
|
|
projectId: this.form.serviceProject,
|
|
|
- projectName: this.projectOptions.find(item => item.value === this.form.serviceProject)?.label || '',
|
|
|
- totalQuantity: this.form.products.reduce((sum, item) => sum + parseInt(item.orderQuantity || 0), 0),
|
|
|
- uninstalledQuantity: this.form.products.reduce((sum, item) => sum + parseInt(item.orderQuantity || 0), 0),
|
|
|
- dispatcherId: this.form.orderer,
|
|
|
- dispatcherName: this.installerOptions.find(item => item.value === this.form.orderer)?.label || '',
|
|
|
- serviceStaffNames: this.installerOptions.find(item => item.value === this.form.serviceStaffIds)?.label || '',
|
|
|
- serviceStaffIds: this.form.serviceStaffIds,
|
|
|
- estimatedCompleteTime: this.form.estimatedCompleteTime ? this.form.estimatedCompleteTime.toISOString().slice(0, 19).replace('T', ' ') : null,
|
|
|
- remark: this.form.remark || ''
|
|
|
- }
|
|
|
+ projectName:
|
|
|
+ this.projectOptions.find(
|
|
|
+ (item) => item.id === this.form.serviceProject
|
|
|
+ )?.name || "",
|
|
|
+ totalQuantity: this.form.products.reduce(
|
|
|
+ (sum, item) => sum + parseInt(item.orderQuantity || 0),
|
|
|
+ 0
|
|
|
+ ),
|
|
|
+ uninstalledQuantity: this.form.products.reduce(
|
|
|
+ (sum, item) => sum + parseInt(item.orderQuantity || 0),
|
|
|
+ 0
|
|
|
+ ),
|
|
|
+ createId: this.form.createId,
|
|
|
+ createName:
|
|
|
+ this.installerOptions.find(
|
|
|
+ (item) => item.value === this.form.createId
|
|
|
+ )?.label || "",
|
|
|
+ serviceStaffNames: this.installerOptions
|
|
|
+ .filter((item) =>
|
|
|
+ this.form.serviceStaffIds.includes(item.value)
|
|
|
+ )
|
|
|
+ .map((item) => item.label)
|
|
|
+ .join(","),
|
|
|
+ serviceStaffIds: this.form.serviceStaffIds.join(","),
|
|
|
+ estimatedCompleteTime: this.form.estimatedCompleteTime
|
|
|
+ ? this.form.estimatedCompleteTime
|
|
|
+ .toISOString()
|
|
|
+ .slice(0, 19)
|
|
|
+ .replace("T", " ")
|
|
|
+ : null,
|
|
|
+ remark: this.form.remark || "",
|
|
|
+ },
|
|
|
},
|
|
|
{
|
|
|
name: "deleteInstallationOrderDetailByOrderId",
|
|
|
type: "e",
|
|
|
parammaps: {
|
|
|
orderId: this.rowData.id,
|
|
|
- }
|
|
|
+ },
|
|
|
},
|
|
|
{
|
|
|
name: "insertInstallationOrderDetail",
|
|
|
resultmaps: {
|
|
|
- list: this.form.products.map(item => ({
|
|
|
- goodsId: item.goodsId,
|
|
|
- goodsName: item.goodsName,
|
|
|
- orderQuantity: parseInt(item.orderQuantity || 0),
|
|
|
- shippedQuantity: 0,
|
|
|
- unshippedQuantity: parseInt(item.orderQuantity || 0),
|
|
|
- remark: item.remark || ''
|
|
|
- }))
|
|
|
+ list: this.form.products.map((item) => ({
|
|
|
+ goodsId: item.goodsId,
|
|
|
+ goodsName: item.goodsName,
|
|
|
+ orderQuantity: parseInt(item.orderQuantity || 0),
|
|
|
+ shippedQuantity: 0,
|
|
|
+ unshippedQuantity: parseInt(item.orderQuantity || 0),
|
|
|
+ remark: item.remark || "",
|
|
|
+ })),
|
|
|
},
|
|
|
children: [
|
|
|
{
|
|
@@ -518,47 +684,61 @@ export default {
|
|
|
parammaps: {
|
|
|
goodsId: "@insertInstallationOrderDetail.goodsId",
|
|
|
goodsName: "@insertInstallationOrderDetail.goodsName",
|
|
|
- orderQuantity: "@insertInstallationOrderDetail.orderQuantity",
|
|
|
+ orderQuantity:
|
|
|
+ "@insertInstallationOrderDetail.orderQuantity",
|
|
|
remark: "@insertInstallationOrderDetail.remark",
|
|
|
- shippedQuantity: "@insertInstallationOrderDetail.shippedQuantity",
|
|
|
- unshippedQuantity: "@insertInstallationOrderDetail.unshippedQuantity",
|
|
|
+ shippedQuantity:
|
|
|
+ "@insertInstallationOrderDetail.shippedQuantity",
|
|
|
+ unshippedQuantity:
|
|
|
+ "@insertInstallationOrderDetail.unshippedQuantity",
|
|
|
orderId: this.rowData.id,
|
|
|
- }
|
|
|
- }
|
|
|
- ]
|
|
|
- }
|
|
|
- ]
|
|
|
- }
|
|
|
+ },
|
|
|
+ },
|
|
|
+ ],
|
|
|
+ },
|
|
|
+ ],
|
|
|
+ };
|
|
|
|
|
|
// 调用保存接口
|
|
|
- const response = await ExecDataByConfig(params)
|
|
|
- if (response.msg === 'ok') {
|
|
|
- this.$message.success('保存成功')
|
|
|
- this.handleDialogClose()
|
|
|
- this.$emit('success')
|
|
|
+ const response = await ExecDataByConfig(params);
|
|
|
+ if (response.msg === "ok") {
|
|
|
+ this.$message.success("保存成功");
|
|
|
+ this.handleDialogClose();
|
|
|
+ this.$emit("success");
|
|
|
} else {
|
|
|
- this.$message.error(response.data || '保存失败')
|
|
|
+ this.$message.error(response.data || "保存失败");
|
|
|
}
|
|
|
} catch (error) {
|
|
|
- console.error('保存失败:', error)
|
|
|
- this.$message.error('保存失败')
|
|
|
+ console.error("保存失败:", error);
|
|
|
+ this.$message.error("保存失败");
|
|
|
}
|
|
|
+ } else {
|
|
|
+ // 收集并显示验证错误信息
|
|
|
+ const errorMessages = [];
|
|
|
+ for (const field in errorFields) {
|
|
|
+ const errors = errorFields[field];
|
|
|
+ errors.forEach((error) => {
|
|
|
+ errorMessages.push(error.message);
|
|
|
+ });
|
|
|
+ }
|
|
|
+ this.$message.error(`表单验证失败:${errorMessages.join("、")}`);
|
|
|
+ return false;
|
|
|
}
|
|
|
- })
|
|
|
- }
|
|
|
- }
|
|
|
-}
|
|
|
+ });
|
|
|
+ },
|
|
|
+ },
|
|
|
+};
|
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
:deep(.el-dialog) {
|
|
|
border-radius: 8px;
|
|
|
-
|
|
|
+
|
|
|
.el-dialog__header {
|
|
|
padding: 20px;
|
|
|
border-bottom: 1px solid #ebeef5;
|
|
|
margin-right: 0;
|
|
|
-
|
|
|
+
|
|
|
.el-dialog__title {
|
|
|
font-size: 16px;
|
|
|
font-weight: 500;
|
|
@@ -568,31 +748,31 @@ export default {
|
|
|
|
|
|
.el-dialog__body {
|
|
|
padding: 20px;
|
|
|
-
|
|
|
+
|
|
|
.el-form {
|
|
|
.el-form-item {
|
|
|
margin-bottom: 18px;
|
|
|
-
|
|
|
+
|
|
|
.el-form-item__label {
|
|
|
font-weight: normal;
|
|
|
color: #606266;
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
.el-textarea {
|
|
|
width: 100%;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
.el-table {
|
|
|
margin-top: 8px;
|
|
|
-
|
|
|
+
|
|
|
th {
|
|
|
background-color: #f5f7fa;
|
|
|
color: #333;
|
|
|
font-weight: 500;
|
|
|
padding: 8px 0;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
td {
|
|
|
padding: 8px 0;
|
|
|
}
|
|
@@ -604,12 +784,12 @@ export default {
|
|
|
padding: 15px 20px;
|
|
|
border-top: 1px solid #ebeef5;
|
|
|
text-align: right;
|
|
|
-
|
|
|
+
|
|
|
.el-button {
|
|
|
padding: 9px 20px;
|
|
|
font-size: 13px;
|
|
|
border-radius: 4px;
|
|
|
-
|
|
|
+
|
|
|
& + .el-button {
|
|
|
margin-left: 10px;
|
|
|
}
|
|
@@ -644,30 +824,12 @@ export default {
|
|
|
padding: 0 4px;
|
|
|
box-sizing: border-box;
|
|
|
|
|
|
- &:first-child {
|
|
|
- width: 180px;
|
|
|
+ &:not(:last-child) {
|
|
|
padding-right: 16px;
|
|
|
margin-right: 4px;
|
|
|
-
|
|
|
- &::after {
|
|
|
- content: '';
|
|
|
- position: absolute;
|
|
|
- right: 0;
|
|
|
- top: 50%;
|
|
|
- height: 14px;
|
|
|
- width: 1px;
|
|
|
- background-color: #dcdfe6;
|
|
|
- transform: translateY(-50%);
|
|
|
- }
|
|
|
- }
|
|
|
|
|
|
- &:nth-child(2) {
|
|
|
- width: 160px;
|
|
|
- padding-right: 16px;
|
|
|
- margin-right: 4px;
|
|
|
-
|
|
|
&::after {
|
|
|
- content: '';
|
|
|
+ content: "";
|
|
|
position: absolute;
|
|
|
right: 0;
|
|
|
top: 50%;
|
|
@@ -678,34 +840,31 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ &:nth-child(1) {
|
|
|
+ width: 120px;
|
|
|
+ } // 编号
|
|
|
+ &:nth-child(2) {
|
|
|
+ width: 250px;
|
|
|
+ } // 名称
|
|
|
&:nth-child(3) {
|
|
|
- width: 140px;
|
|
|
- padding-right: 16px;
|
|
|
- margin-right: 4px;
|
|
|
-
|
|
|
- &::after {
|
|
|
- content: '';
|
|
|
- position: absolute;
|
|
|
- right: 0;
|
|
|
- top: 50%;
|
|
|
- height: 14px;
|
|
|
- width: 1px;
|
|
|
- background-color: #dcdfe6;
|
|
|
- transform: translateY(-50%);
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- &:last-child {
|
|
|
- flex: 1;
|
|
|
- min-width: 80px;
|
|
|
- }
|
|
|
+ width: 120px;
|
|
|
+ } // 规格
|
|
|
+ &:nth-child(4) {
|
|
|
+ width: 120px;
|
|
|
+ } // 型号
|
|
|
+ &:nth-child(5) {
|
|
|
+ width: 80px;
|
|
|
+ } // 单位
|
|
|
+ &:nth-child(6) {
|
|
|
+ width: 80px;
|
|
|
+ } // 库存
|
|
|
|
|
|
.label {
|
|
|
display: inline-flex;
|
|
|
align-items: center;
|
|
|
justify-content: center;
|
|
|
font-weight: 500;
|
|
|
- color: #409EFF;
|
|
|
+ color: #409eff;
|
|
|
background: rgba(64, 158, 255, 0.08);
|
|
|
padding: 1px 6px;
|
|
|
border-radius: 3px;
|
|
@@ -732,53 +891,17 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-:deep(.el-select-dropdown__item) {
|
|
|
- padding: 0 !important;
|
|
|
- height: auto !important;
|
|
|
- margin: 1px;
|
|
|
- line-height: normal;
|
|
|
-
|
|
|
- &.hover, &:hover {
|
|
|
- background-color: transparent;
|
|
|
-
|
|
|
- .product-option {
|
|
|
- background-color: #f9fafc;
|
|
|
- border-color: #e4e7ed;
|
|
|
- box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
|
|
|
- }
|
|
|
+:deep(.el-tooltip__popper) {
|
|
|
+ max-width: 300px;
|
|
|
+ line-height: 1.4;
|
|
|
+ padding: 8px 12px;
|
|
|
+ font-size: 12px;
|
|
|
+ word-break: break-all;
|
|
|
+ white-space: pre-wrap;
|
|
|
+
|
|
|
+ &.is-light {
|
|
|
+ border: 1px solid #e4e7ed;
|
|
|
+ color: #606266;
|
|
|
}
|
|
|
-
|
|
|
- &.selected {
|
|
|
- .product-option {
|
|
|
- background-color: #f0f7ff;
|
|
|
- border-color: rgba(64, 158, 255, 0.2);
|
|
|
-
|
|
|
- .label {
|
|
|
- background: rgba(64, 158, 255, 0.12);
|
|
|
- border-color: rgba(64, 158, 255, 0.3);
|
|
|
- }
|
|
|
-
|
|
|
- .value {
|
|
|
- color: #409EFF;
|
|
|
- }
|
|
|
-
|
|
|
- &::after {
|
|
|
- content: '';
|
|
|
- position: absolute;
|
|
|
- right: 8px;
|
|
|
- top: 50%;
|
|
|
- transform: translateY(-50%);
|
|
|
- width: 4px;
|
|
|
- height: 4px;
|
|
|
- border-radius: 50%;
|
|
|
- background-color: #409EFF;
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-:deep(.el-select-dropdown__wrap) {
|
|
|
- padding: 1px;
|
|
|
- max-height: 280px;
|
|
|
}
|
|
|
-</style>
|
|
|
+</style>
|