|
|
|
|
@ -3,24 +3,32 @@
|
|
|
|
|
<transition :enter-active-class="proxy?.animate.searchAnimate.enter" :leave-active-class="proxy?.animate.searchAnimate.leave">
|
|
|
|
|
<div v-show="showSearch" class="mb-[10px]">
|
|
|
|
|
<el-card shadow="hover">
|
|
|
|
|
<el-form ref="queryFormRef" :model="queryParams" :inline="true" label-width="100px">
|
|
|
|
|
<el-form ref="queryFormRef" :model="queryParams" :inline="true" label-width="80px">
|
|
|
|
|
<el-form-item label="计划标识" prop="planFlag">
|
|
|
|
|
<el-select v-model="queryParams.planFlag" placeholder="请选择计划标识" clearable>
|
|
|
|
|
<el-option v-for="dict in plan_flag" :key="dict.value" :label="dict.label" :value="dict.value" />
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<!-- <el-form-item label="合同ID" prop="contractId">-->
|
|
|
|
|
<!-- <el-input v-model="queryParams.contractId" placeholder="请输入合同ID" clearable @keyup.enter="handleQuery" />-->
|
|
|
|
|
<!-- </el-form-item>-->
|
|
|
|
|
<el-form-item label="产品名称" prop="productName">
|
|
|
|
|
<el-input v-model="queryParams.productName" placeholder="请输入产品名称" clearable @keyup.enter="handleQuery" />
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="规格描述" prop="specificationDescription">
|
|
|
|
|
<el-input v-model="queryParams.specificationDescription" placeholder="请输入规格描述" clearable @keyup.enter="handleQuery" />
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<!-- <el-form-item label="物料ID" prop="materielId">-->
|
|
|
|
|
<!-- <el-input v-model="queryParams.materielId" placeholder="请输入物料ID" clearable @keyup.enter="handleQuery" />-->
|
|
|
|
|
<!-- </el-form-item>-->
|
|
|
|
|
<!-- <el-form-item label="销售物料ID" prop="relationMaterielId">-->
|
|
|
|
|
<!-- <el-input v-model="queryParams.relationMaterielId" placeholder="请输入销售物料ID" clearable @keyup.enter="handleQuery" />-->
|
|
|
|
|
<!-- </el-form-item>-->
|
|
|
|
|
<!-- <el-form-item label="激活标识" prop="activeFlag">-->
|
|
|
|
|
<!-- <el-select v-model="queryParams.activeFlag" placeholder="请选择激活标识" clearable>-->
|
|
|
|
|
<!-- <el-option v-for="dict in active_flag" :key="dict.value" :label="dict.label" :value="dict.value" />-->
|
|
|
|
|
<!-- </el-select>-->
|
|
|
|
|
<!-- </el-form-item>-->
|
|
|
|
|
<!-- <el-form-item label="物料ID" prop="materialId">-->
|
|
|
|
|
<!-- <el-input v-model="queryParams.materialId" placeholder="请输入物料ID" clearable @keyup.enter="handleQuery" />-->
|
|
|
|
|
<!-- </el-form-item>-->
|
|
|
|
|
<!-- <el-form-item label="销售物料ID" prop="relationMaterialId">-->
|
|
|
|
|
<!-- <el-input v-model="queryParams.relationMaterialId" placeholder="请输入销售物料ID" clearable @keyup.enter="handleQuery" />-->
|
|
|
|
|
<!-- </el-form-item>-->
|
|
|
|
|
<!-- <el-form-item label="激活标识" prop="activeFlag">-->
|
|
|
|
|
<!-- <el-select v-model="queryParams.activeFlag" placeholder="请选择激活标识" clearable>-->
|
|
|
|
|
<!-- <el-option v-for="dict in active_flag" :key="dict.value" :label="dict.label" :value="dict.value" />-->
|
|
|
|
|
<!-- </el-select>-->
|
|
|
|
|
<!-- </el-form-item>-->
|
|
|
|
|
<el-form-item>
|
|
|
|
|
<el-button type="primary" icon="Search" @click="handleQuery">搜索</el-button>
|
|
|
|
|
<el-button icon="Refresh" @click="resetQuery">重置</el-button>
|
|
|
|
|
@ -34,49 +42,61 @@
|
|
|
|
|
<template #header>
|
|
|
|
|
<el-row :gutter="10" class="mb8">
|
|
|
|
|
<el-col :span="1.5">
|
|
|
|
|
<el-button type="primary" plain icon="Plus" @click="handleAdd" v-hasPermi="['oa/erp:contractMateriel:add']"> 新增 </el-button>
|
|
|
|
|
<el-button type="primary" plain icon="Plus" @click="handleAdd" v-hasPermi="['oa/erp:contractMaterial:add']"> 新增 </el-button>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="1.5">
|
|
|
|
|
<el-button type="success" plain icon="Edit" :disabled="single" @click="handleUpdate()" v-hasPermi="['oa/erp:contractMateriel:edit']"
|
|
|
|
|
<el-button type="success" plain icon="Edit" :disabled="single" @click="handleUpdate()" v-hasPermi="['oa/erp:contractMaterial:edit']"
|
|
|
|
|
>修改
|
|
|
|
|
</el-button>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="1.5">
|
|
|
|
|
<el-button type="danger" plain icon="Delete" :disabled="multiple" @click="handleDelete()" v-hasPermi="['oa/erp:contractMateriel:remove']"
|
|
|
|
|
<el-button type="danger" plain icon="Delete" :disabled="multiple" @click="handleDelete()" v-hasPermi="['oa/erp:contractMaterial:remove']"
|
|
|
|
|
>删除
|
|
|
|
|
</el-button>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="1.5">
|
|
|
|
|
<el-button type="warning" plain icon="Download" @click="handleExport" v-hasPermi="['oa/erp:contractMateriel:export']">导出 </el-button>
|
|
|
|
|
<el-button type="warning" plain icon="Download" @click="handleExport" v-hasPermi="['oa/erp:contractMaterial:export']">导出 </el-button>
|
|
|
|
|
</el-col>
|
|
|
|
|
<right-toolbar v-model:showSearch="showSearch" :columns="columns" :search="true" @queryTable="getList"></right-toolbar>
|
|
|
|
|
</el-row>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<el-table v-loading="loading" border :data="contractMaterielList" @selection-change="handleSelectionChange">
|
|
|
|
|
<el-table v-loading="loading" border :data="contractMaterialList" @selection-change="handleSelectionChange">
|
|
|
|
|
<el-table-column type="selection" width="55" align="center" />
|
|
|
|
|
<el-table-column label="合同物料ID" align="center" prop="contractMaterielId" v-if="columns[0].visible" />
|
|
|
|
|
<el-table-column label="合同ID" align="center" prop="contractId" v-if="columns[2].visible" />
|
|
|
|
|
<el-table-column label="产品名称" align="center" prop="productName" v-if="columns[3].visible" />
|
|
|
|
|
<el-table-column label="规格描述" align="center" prop="specificationDescription" v-if="columns[4].visible" />
|
|
|
|
|
<el-table-column label="物料ID" align="center" prop="materielId" v-if="columns[5].visible" />
|
|
|
|
|
<el-table-column label="销售物料ID" align="center" prop="relationMaterielId" v-if="columns[6].visible" />
|
|
|
|
|
<el-table-column label="数量" align="center" prop="amount" v-if="columns[7].visible" />
|
|
|
|
|
<el-table-column label="单位ID" align="center" prop="unitId" v-if="columns[8].visible" />
|
|
|
|
|
<el-table-column label="未税单价" align="center" prop="beforePrice" v-if="columns[9].visible" />
|
|
|
|
|
<el-table-column label="税率" align="center" prop="taxRate" v-if="columns[10].visible" />
|
|
|
|
|
<el-table-column label="含税单价" align="center" prop="includingPrice" v-if="columns[11].visible" />
|
|
|
|
|
<el-table-column label="小计" align="center" prop="subtotal" v-if="columns[12].visible" />
|
|
|
|
|
<el-table-column label="备注" align="center" prop="remark" v-if="columns[13].visible" />
|
|
|
|
|
<el-table-column label="激活标识" align="center" prop="activeFlag" v-if="columns[14].visible">
|
|
|
|
|
<el-table-column label="合同物料ID" align="center" prop="contractMaterialId" v-if="columns[0].visible" />
|
|
|
|
|
<el-table-column label="计划标识" align="center" prop="planFlag" v-if="columns[2].visible">
|
|
|
|
|
<template #default="scope">
|
|
|
|
|
<dict-tag :options="plan_flag" :value="scope.row.planFlag" />
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="合同ID" align="center" prop="contractId" v-if="columns[3].visible" />
|
|
|
|
|
<el-table-column label="产品名称" align="center" prop="productName" v-if="columns[4].visible" />
|
|
|
|
|
<el-table-column label="规格描述" align="center" prop="specificationDescription" v-if="columns[5].visible" />
|
|
|
|
|
<el-table-column label="物料ID" align="center" prop="materialId" v-if="columns[6].visible" />
|
|
|
|
|
<el-table-column label="销售物料ID" align="center" prop="relationMaterialId" v-if="columns[7].visible" />
|
|
|
|
|
<el-table-column label="数量" align="center" prop="amount" v-if="columns[8].visible" />
|
|
|
|
|
<el-table-column label="单位ID" align="center" prop="unitId" v-if="columns[9].visible" />
|
|
|
|
|
<el-table-column label="未税单价" align="center" prop="beforePrice" v-if="columns[10].visible" />
|
|
|
|
|
<el-table-column label="税率" align="center" prop="taxRate" v-if="columns[11].visible" />
|
|
|
|
|
<el-table-column label="含税单价" align="center" prop="includingPrice" v-if="columns[12].visible" />
|
|
|
|
|
<el-table-column label="小计" align="center" prop="subtotal" v-if="columns[13].visible" />
|
|
|
|
|
<el-table-column label="备注" align="center" prop="remark" v-if="columns[14].visible" />
|
|
|
|
|
<el-table-column label="激活标识" align="center" prop="activeFlag" v-if="columns[15].visible">
|
|
|
|
|
<template #default="scope">
|
|
|
|
|
<dict-tag :options="active_flag" :value="scope.row.activeFlag" />
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="创建部门" align="center" prop="createDept" v-if="columns[17].visible" />
|
|
|
|
|
<el-table-column label="创建人" align="center" prop="createBy" v-if="columns[18].visible" />
|
|
|
|
|
<el-table-column label="创建时间" align="center" prop="createTime" width="180" v-if="columns[19].visible">
|
|
|
|
|
<template #default="scope">
|
|
|
|
|
<span>{{ parseTime(scope.row.createTime, '{y}-{m}-{d} {h}:{i}:{s}') }}</span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="操作" align="center" fixed="right" class-name="small-padding fixed-width">
|
|
|
|
|
<template #default="scope">
|
|
|
|
|
<el-tooltip content="修改" placement="top">
|
|
|
|
|
<el-button link type="primary" icon="Edit" @click="handleUpdate(scope.row)" v-hasPermi="['oa/erp:contractMateriel:edit']"></el-button>
|
|
|
|
|
<el-button link type="primary" icon="Edit" @click="handleUpdate(scope.row)" v-hasPermi="['oa/erp:contractMaterial:edit']"></el-button>
|
|
|
|
|
</el-tooltip>
|
|
|
|
|
<el-tooltip content="删除" placement="top">
|
|
|
|
|
<el-button
|
|
|
|
|
@ -84,7 +104,7 @@
|
|
|
|
|
type="primary"
|
|
|
|
|
icon="Delete"
|
|
|
|
|
@click="handleDelete(scope.row)"
|
|
|
|
|
v-hasPermi="['oa/erp:contractMateriel:remove']"
|
|
|
|
|
v-hasPermi="['oa/erp:contractMaterial:remove']"
|
|
|
|
|
></el-button>
|
|
|
|
|
</el-tooltip>
|
|
|
|
|
</template>
|
|
|
|
|
@ -95,7 +115,12 @@
|
|
|
|
|
</el-card>
|
|
|
|
|
<!-- 添加或修改合同物料信息对话框 -->
|
|
|
|
|
<el-dialog :title="dialog.title" v-model="dialog.visible" width="500px" append-to-body>
|
|
|
|
|
<el-form ref="contractMaterielFormRef" :model="form" :rules="rules" label-width="120px">
|
|
|
|
|
<el-form ref="contractMaterialFormRef" :model="form" :rules="rules" label-width="120px">
|
|
|
|
|
<el-form-item label="计划标识" prop="planFlag">
|
|
|
|
|
<el-radio-group v-model="form.planFlag">
|
|
|
|
|
<el-radio v-for="dict in plan_flag" :key="dict.value" :value="dict.value">{{ dict.label }}</el-radio>
|
|
|
|
|
</el-radio-group>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="合同ID" prop="contractId">
|
|
|
|
|
<el-input v-model="form.contractId" placeholder="请输入合同ID" />
|
|
|
|
|
</el-form-item>
|
|
|
|
|
@ -105,11 +130,11 @@
|
|
|
|
|
<el-form-item label="规格描述" prop="specificationDescription">
|
|
|
|
|
<el-input v-model="form.specificationDescription" placeholder="请输入规格描述" />
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="物料ID" prop="materielId">
|
|
|
|
|
<el-input v-model="form.materielId" placeholder="请输入物料ID" />
|
|
|
|
|
<el-form-item label="物料ID" prop="materialId">
|
|
|
|
|
<el-input v-model="form.materialId" placeholder="请输入物料ID" />
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="销售物料ID" prop="relationMaterielId">
|
|
|
|
|
<el-input v-model="form.relationMaterielId" placeholder="请输入销售物料ID" />
|
|
|
|
|
<el-form-item label="销售物料ID" prop="relationMaterialId">
|
|
|
|
|
<el-input v-model="form.relationMaterialId" placeholder="请输入销售物料ID" />
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="数量" prop="amount">
|
|
|
|
|
<el-input v-model="form.amount" placeholder="请输入数量" />
|
|
|
|
|
@ -148,20 +173,20 @@
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script setup name="ContractMateriel" lang="ts">
|
|
|
|
|
<script setup name="ContractMaterial" lang="ts">
|
|
|
|
|
import {
|
|
|
|
|
listContractMateriel,
|
|
|
|
|
getContractMateriel,
|
|
|
|
|
delContractMateriel,
|
|
|
|
|
addContractMateriel,
|
|
|
|
|
updateContractMateriel
|
|
|
|
|
} from '@/api/oa/erp/contractMateriel';
|
|
|
|
|
import { ContractMaterielVO, ContractMaterielQuery, ContractMaterielForm } from '@/api/oa/erp/contractMateriel/types';
|
|
|
|
|
listContractMaterial,
|
|
|
|
|
getContractMaterial,
|
|
|
|
|
delContractMaterial,
|
|
|
|
|
addContractMaterial,
|
|
|
|
|
updateContractMaterial
|
|
|
|
|
} from '@/api/oa/erp/contractMaterial';
|
|
|
|
|
import { ContractMaterialVO, ContractMaterialQuery, ContractMaterialForm } from '@/api/oa/erp/contractMaterial/types';
|
|
|
|
|
|
|
|
|
|
const { proxy } = getCurrentInstance() as ComponentInternalInstance;
|
|
|
|
|
const { active_flag } = toRefs<any>(proxy?.useDict('active_flag'));
|
|
|
|
|
const { active_flag, plan_flag } = toRefs<any>(proxy?.useDict('active_flag', 'plan_flag'));
|
|
|
|
|
|
|
|
|
|
const contractMaterielList = ref<ContractMaterielVO[]>([]);
|
|
|
|
|
const contractMaterialList = ref<ContractMaterialVO[]>([]);
|
|
|
|
|
const buttonLoading = ref(false);
|
|
|
|
|
const loading = ref(true);
|
|
|
|
|
const showSearch = ref(true);
|
|
|
|
|
@ -171,7 +196,7 @@ const multiple = ref(true);
|
|
|
|
|
const total = ref(0);
|
|
|
|
|
|
|
|
|
|
const queryFormRef = ref<ElFormInstance>();
|
|
|
|
|
const contractMaterielFormRef = ref<ElFormInstance>();
|
|
|
|
|
const contractMaterialFormRef = ref<ElFormInstance>();
|
|
|
|
|
|
|
|
|
|
const dialog = reactive<DialogOption>({
|
|
|
|
|
visible: false,
|
|
|
|
|
@ -181,35 +206,37 @@ const dialog = reactive<DialogOption>({
|
|
|
|
|
// 列显隐信息
|
|
|
|
|
const columns = ref<FieldOption[]>([
|
|
|
|
|
{ key: 0, label: `合同物料ID`, visible: false },
|
|
|
|
|
{ key: 1, label: `租户编号`, visible: true },
|
|
|
|
|
{ key: 2, label: `合同ID`, visible: true },
|
|
|
|
|
{ key: 3, label: `产品名称`, visible: true },
|
|
|
|
|
{ key: 4, label: `规格描述`, visible: true },
|
|
|
|
|
{ key: 5, label: `物料ID`, visible: true },
|
|
|
|
|
{ key: 6, label: `销售物料ID`, visible: true },
|
|
|
|
|
{ key: 7, label: `数量`, visible: true },
|
|
|
|
|
{ key: 8, label: `单位ID`, visible: true },
|
|
|
|
|
{ key: 9, label: `未税单价`, visible: true },
|
|
|
|
|
{ key: 10, label: `税率`, visible: true },
|
|
|
|
|
{ key: 11, label: `含税单价`, visible: true },
|
|
|
|
|
{ key: 12, label: `小计`, visible: true },
|
|
|
|
|
{ key: 13, label: `备注`, visible: true },
|
|
|
|
|
{ key: 14, label: `激活标识`, visible: false },
|
|
|
|
|
{ key: 15, label: `删除标志`, visible: false },
|
|
|
|
|
{ key: 16, label: `创建部门`, visible: false },
|
|
|
|
|
{ key: 17, label: `创建人`, visible: false },
|
|
|
|
|
{ key: 18, label: `创建时间`, visible: false },
|
|
|
|
|
{ key: 19, label: `更新人`, visible: false },
|
|
|
|
|
{ key: 20, label: `更新时间`, visible: false }
|
|
|
|
|
{ key: 1, label: `租户编号`, visible: false },
|
|
|
|
|
{ key: 2, label: `计划标识`, visible: true },
|
|
|
|
|
{ key: 3, label: `合同ID`, visible: true },
|
|
|
|
|
{ key: 4, label: `产品名称`, visible: true },
|
|
|
|
|
{ key: 5, label: `规格描述`, visible: true },
|
|
|
|
|
{ key: 6, label: `物料ID`, visible: true },
|
|
|
|
|
{ key: 7, label: `销售物料ID`, visible: true },
|
|
|
|
|
{ key: 8, label: `数量`, visible: true },
|
|
|
|
|
{ key: 9, label: `单位ID`, visible: true },
|
|
|
|
|
{ key: 10, label: `未税单价`, visible: true },
|
|
|
|
|
{ key: 11, label: `税率`, visible: true },
|
|
|
|
|
{ key: 12, label: `含税单价`, visible: true },
|
|
|
|
|
{ key: 13, label: `小计`, visible: true },
|
|
|
|
|
{ key: 14, label: `备注`, visible: true },
|
|
|
|
|
{ key: 15, label: `激活标识`, visible: true },
|
|
|
|
|
{ key: 16, label: `删除标志`, visible: false },
|
|
|
|
|
{ key: 17, label: `创建部门`, visible: false },
|
|
|
|
|
{ key: 18, label: `创建人`, visible: false },
|
|
|
|
|
{ key: 19, label: `创建时间`, visible: false },
|
|
|
|
|
{ key: 20, label: `更新人`, visible: false },
|
|
|
|
|
{ key: 21, label: `更新时间`, visible: false }
|
|
|
|
|
]);
|
|
|
|
|
|
|
|
|
|
const initFormData: ContractMaterielForm = {
|
|
|
|
|
contractMaterielId: undefined,
|
|
|
|
|
const initFormData: ContractMaterialForm = {
|
|
|
|
|
contractMaterialId: undefined,
|
|
|
|
|
planFlag: undefined,
|
|
|
|
|
contractId: undefined,
|
|
|
|
|
productName: undefined,
|
|
|
|
|
specificationDescription: undefined,
|
|
|
|
|
materielId: undefined,
|
|
|
|
|
relationMaterielId: undefined,
|
|
|
|
|
materialId: undefined,
|
|
|
|
|
relationMaterialId: undefined,
|
|
|
|
|
amount: undefined,
|
|
|
|
|
unitId: undefined,
|
|
|
|
|
beforePrice: undefined,
|
|
|
|
|
@ -219,16 +246,17 @@ const initFormData: ContractMaterielForm = {
|
|
|
|
|
remark: undefined,
|
|
|
|
|
activeFlag: undefined
|
|
|
|
|
};
|
|
|
|
|
const data = reactive<PageData<ContractMaterielForm, ContractMaterielQuery>>({
|
|
|
|
|
const data = reactive<PageData<ContractMaterialForm, ContractMaterialQuery>>({
|
|
|
|
|
form: { ...initFormData },
|
|
|
|
|
queryParams: {
|
|
|
|
|
pageNum: 1,
|
|
|
|
|
pageSize: 10,
|
|
|
|
|
planFlag: undefined,
|
|
|
|
|
contractId: undefined,
|
|
|
|
|
productName: undefined,
|
|
|
|
|
specificationDescription: undefined,
|
|
|
|
|
materielId: undefined,
|
|
|
|
|
relationMaterielId: undefined,
|
|
|
|
|
materialId: undefined,
|
|
|
|
|
relationMaterialId: undefined,
|
|
|
|
|
amount: undefined,
|
|
|
|
|
unitId: undefined,
|
|
|
|
|
beforePrice: undefined,
|
|
|
|
|
@ -238,7 +266,9 @@ const data = reactive<PageData<ContractMaterielForm, ContractMaterielQuery>>({
|
|
|
|
|
activeFlag: undefined,
|
|
|
|
|
params: {}
|
|
|
|
|
},
|
|
|
|
|
rules: {}
|
|
|
|
|
rules: {
|
|
|
|
|
contractMaterialId: [{ required: true, message: '合同物料ID不能为空', trigger: 'blur' }]
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const { queryParams, form, rules } = toRefs(data);
|
|
|
|
|
@ -246,8 +276,8 @@ const { queryParams, form, rules } = toRefs(data);
|
|
|
|
|
/** 查询合同物料信息列表 */
|
|
|
|
|
const getList = async () => {
|
|
|
|
|
loading.value = true;
|
|
|
|
|
const res = await listContractMateriel(queryParams.value);
|
|
|
|
|
contractMaterielList.value = res.rows;
|
|
|
|
|
const res = await listContractMaterial(queryParams.value);
|
|
|
|
|
contractMaterialList.value = res.rows;
|
|
|
|
|
total.value = res.total;
|
|
|
|
|
loading.value = false;
|
|
|
|
|
};
|
|
|
|
|
@ -261,7 +291,7 @@ const cancel = () => {
|
|
|
|
|
/** 表单重置 */
|
|
|
|
|
const reset = () => {
|
|
|
|
|
form.value = { ...initFormData };
|
|
|
|
|
contractMaterielFormRef.value?.resetFields();
|
|
|
|
|
contractMaterialFormRef.value?.resetFields();
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/** 搜索按钮操作 */
|
|
|
|
|
@ -277,8 +307,8 @@ const resetQuery = () => {
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/** 多选框选中数据 */
|
|
|
|
|
const handleSelectionChange = (selection: ContractMaterielVO[]) => {
|
|
|
|
|
ids.value = selection.map((item) => item.contractMaterielId);
|
|
|
|
|
const handleSelectionChange = (selection: ContractMaterialVO[]) => {
|
|
|
|
|
ids.value = selection.map((item) => item.contractMaterialId);
|
|
|
|
|
single.value = selection.length != 1;
|
|
|
|
|
multiple.value = !selection.length;
|
|
|
|
|
};
|
|
|
|
|
@ -291,10 +321,10 @@ const handleAdd = () => {
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/** 修改按钮操作 */
|
|
|
|
|
const handleUpdate = async (row?: ContractMaterielVO) => {
|
|
|
|
|
const handleUpdate = async (row?: ContractMaterialVO) => {
|
|
|
|
|
reset();
|
|
|
|
|
const _contractMaterielId = row?.contractMaterielId || ids.value[0];
|
|
|
|
|
const res = await getContractMateriel(_contractMaterielId);
|
|
|
|
|
const _contractMaterialId = row?.contractMaterialId || ids.value[0];
|
|
|
|
|
const res = await getContractMaterial(_contractMaterialId);
|
|
|
|
|
Object.assign(form.value, res.data);
|
|
|
|
|
dialog.visible = true;
|
|
|
|
|
dialog.title = '修改合同物料信息';
|
|
|
|
|
@ -302,13 +332,13 @@ const handleUpdate = async (row?: ContractMaterielVO) => {
|
|
|
|
|
|
|
|
|
|
/** 提交按钮 */
|
|
|
|
|
const submitForm = () => {
|
|
|
|
|
contractMaterielFormRef.value?.validate(async (valid: boolean) => {
|
|
|
|
|
contractMaterialFormRef.value?.validate(async (valid: boolean) => {
|
|
|
|
|
if (valid) {
|
|
|
|
|
buttonLoading.value = true;
|
|
|
|
|
if (form.value.contractMaterielId) {
|
|
|
|
|
await updateContractMateriel(form.value).finally(() => (buttonLoading.value = false));
|
|
|
|
|
if (form.value.contractMaterialId) {
|
|
|
|
|
await updateContractMaterial(form.value).finally(() => (buttonLoading.value = false));
|
|
|
|
|
} else {
|
|
|
|
|
await addContractMateriel(form.value).finally(() => (buttonLoading.value = false));
|
|
|
|
|
await addContractMaterial(form.value).finally(() => (buttonLoading.value = false));
|
|
|
|
|
}
|
|
|
|
|
proxy?.$modal.msgSuccess('操作成功');
|
|
|
|
|
dialog.visible = false;
|
|
|
|
|
@ -318,10 +348,10 @@ const submitForm = () => {
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/** 删除按钮操作 */
|
|
|
|
|
const handleDelete = async (row?: ContractMaterielVO) => {
|
|
|
|
|
const _contractMaterielIds = row?.contractMaterielId || ids.value;
|
|
|
|
|
await proxy?.$modal.confirm('是否确认删除合同物料信息编号为"' + _contractMaterielIds + '"的数据项?').finally(() => (loading.value = false));
|
|
|
|
|
await delContractMateriel(_contractMaterielIds);
|
|
|
|
|
const handleDelete = async (row?: ContractMaterialVO) => {
|
|
|
|
|
const _contractMaterialIds = row?.contractMaterialId || ids.value;
|
|
|
|
|
await proxy?.$modal.confirm('是否确认删除合同物料信息编号为"' + _contractMaterialIds + '"的数据项?').finally(() => (loading.value = false));
|
|
|
|
|
await delContractMaterial(_contractMaterialIds);
|
|
|
|
|
proxy?.$modal.msgSuccess('删除成功');
|
|
|
|
|
await getList();
|
|
|
|
|
};
|
|
|
|
|
@ -329,11 +359,11 @@ const handleDelete = async (row?: ContractMaterielVO) => {
|
|
|
|
|
/** 导出按钮操作 */
|
|
|
|
|
const handleExport = () => {
|
|
|
|
|
proxy?.download(
|
|
|
|
|
'oa/erp/contractMateriel/export',
|
|
|
|
|
'oa/erp/contractMaterial/export',
|
|
|
|
|
{
|
|
|
|
|
...queryParams.value
|
|
|
|
|
},
|
|
|
|
|
`contractMateriel_${new Date().getTime()}.xlsx`
|
|
|
|
|
`contractMaterial_${new Date().getTime()}.xlsx`
|
|
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|
|