360 lines
13 KiB
Vue
360 lines
13 KiB
Vue
<template>
|
|
<div class="edit-popup">
|
|
|
|
<popup ref="popupRef" :title="popupTitle" :async="true" width="80%" @confirm="handleSubmit" @close="handleClose">
|
|
<el-form ref="formRef" :model="formData" label-width="auto" :rules="formRules">
|
|
<div style="display: flex; flex-direction: row-reverse; justify-content: flex-start;margin-bottom: 30px;">
|
|
|
|
<el-select class="w-[180px]" v-model="formData.dept_id" clearable placeholder="请选择部门">
|
|
<el-option v-for="(item, index) in list2" :key="index" :label="item.name" :value="item.id" />
|
|
</el-select>
|
|
<el-select class="w-[180px]" v-model="formData.org_id" clearable placeholder="请选择组织" @change="deptrmt">
|
|
<el-option v-for="(item, index) in list1" :key="index" :label="item.name" :value="item.id" />
|
|
</el-select>
|
|
</div>
|
|
|
|
<el-row :gutter="10">
|
|
|
|
|
|
<el-col :span="8">
|
|
<el-form-item label="项目名称" prop="project_id" @click="showDialog1 = true">
|
|
<el-input v-model="project_name" clearable readonly placeholder="点击选择项目" />
|
|
</el-form-item>
|
|
</el-col> <el-col :span="8">
|
|
<el-form-item label="项目编码" prop="contract_id">
|
|
<el-input v-model="project_code" clearable disabled placeholder="系统自动填写" />
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="8">
|
|
<el-form-item label="希望到货日期" prop="arrival_date"
|
|
:rules="[{ required: true, message: '不可为空', trigger: 'change' }]">
|
|
|
|
<el-date-picker class="flex-1 !flex" v-model="formData.arrival_date" clearable type="date"
|
|
value-format="YYYY-MM-DD " placeholder="选择希望到货日期">
|
|
</el-date-picker>
|
|
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="8">
|
|
<el-form-item label="申请日期" prop="apply_date"
|
|
:rules="[{ required: true, message: '不可为空', trigger: 'change' }]">
|
|
|
|
<el-date-picker class="flex-1 !flex" v-model="formData.apply_date" clearable type="date"
|
|
value-format="YYYY-MM-DD" placeholder="选择申请日期">
|
|
</el-date-picker>
|
|
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="12">
|
|
<el-form-item label="备注" prop="remark">
|
|
<el-input v-model="formData.remark" type="textarea" clearable placeholder="请输入备注" />
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="24">
|
|
<el-form-item label="附件">
|
|
<uploadAnnex :formData="formData"></uploadAnnex>
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-row>
|
|
|
|
<div style="margin: 20px 0;" v-if="mode == 'add'">申购明细</div>
|
|
<el-col :span="24" v-if="mode == 'add'">
|
|
<div style=" display: flex;justify-content: flex-end;margin-bottom: 30px;">
|
|
<el-button @click="showDialog = true" type="primary" plain>选择材料</el-button>
|
|
<toolTip content="可在项目管理-项目预算-材料预算-材料预算添加"
|
|
url="/construction/project/project_cost/project_material_budget/project_material_budget">
|
|
</toolTip>
|
|
</div>
|
|
</el-col>
|
|
<el-row v-if="mode == 'add'">
|
|
<el-table :data="tablist1">
|
|
<el-table-column label="序号">
|
|
<template #default="{ row }">
|
|
|
|
<el-button @click="handleAdd(row)" size="small">+</el-button>
|
|
<el-button @click="handleDelete(row)" size="small">-</el-button>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="材料名称" prop="material_name">
|
|
|
|
<template #default="{ row, $index }">
|
|
<el-input v-model="row.material_name" disabled @click="subjectmu(row, $index)" />
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="材料编码" prop="material_code">
|
|
|
|
<template #default="{ row }">
|
|
<el-input v-model="row.material_code" disabled />
|
|
</template></el-table-column>
|
|
|
|
<el-table-column label="规格型号" prop="material_specs">
|
|
|
|
<template #default="{ row }">
|
|
<el-input v-model="row.material_specs" disabled /> </template>
|
|
</el-table-column>
|
|
|
|
<el-table-column label="品牌" prop="material_brand">
|
|
|
|
<template #default="{ row }">
|
|
<el-input v-model="row.material_brand" disabled /> </template>
|
|
</el-table-column>
|
|
<el-table-column label="参数说明" prop="material_parameter_description">
|
|
|
|
<template #default="{ row }">
|
|
<el-input v-model="row.material_parameter_description" disabled /> </template>
|
|
</el-table-column>
|
|
<el-table-column label="单位" prop="material_unit">
|
|
|
|
<template #default="{ row }">
|
|
<el-input v-model="row.material_unit" disabled /> </template>
|
|
</el-table-column>
|
|
<el-table-column label="可申购数量" prop="residual_num">
|
|
|
|
<template #default="{ row }">
|
|
<el-input v-model="row.residual_num" disabled /> </template>
|
|
</el-table-column>
|
|
|
|
<el-table-column label="申请采购数量" prop="num">
|
|
|
|
<template #default="{ row }">
|
|
<el-input v-model="row.num" /> </template>
|
|
</el-table-column>
|
|
|
|
<el-table-column label="备注" prop="remark">
|
|
|
|
<template #default="{ row }">
|
|
<el-input v-model="row.remark" /> </template>
|
|
</el-table-column>
|
|
</el-table>
|
|
|
|
|
|
</el-row>
|
|
<div v-if="showDialog">
|
|
<el-dialog v-model="showDialog" title="选择材料预算" width="70%">
|
|
<materialDialog @customEvent="customEvent" :project_id="formData.project_id"></materialDialog>
|
|
</el-dialog>
|
|
</div>
|
|
|
|
<el-dialog v-model="showDialog1" title="选择项目" width="70%">
|
|
<projectDialog @customEvent="customEvent1"></projectDialog>
|
|
</el-dialog>
|
|
</el-form>
|
|
</popup>
|
|
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup name="projectEdit">
|
|
import materialDialog from '@/components/material_budget_detail/index.vue'
|
|
import type { FormInstance } from 'element-plus'
|
|
import Popup from '@/components/popup/index.vue'
|
|
import projectDialog from '@/components/project/index.vue'
|
|
import { materialrequestAdd, materialrequestEdit, materialrequestDetail } from '@/api/material_purchase_request'
|
|
import { materialrequestDetailLists } from '@/api/material_purchase_request_detail'
|
|
import type { PropType } from 'vue'
|
|
const list1 = reactive([])
|
|
const list2 = reactive([])
|
|
import { deptAll } from '@/api/org/department'
|
|
import { getAll } from '@/api/org/organization'
|
|
|
|
|
|
const active = ref(0)
|
|
const formDataannex = reactive([])
|
|
const project_name = ref('')
|
|
const project_code = ref('')
|
|
|
|
const tablist1 = reactive([])
|
|
|
|
|
|
const handleAdd = (row: any) => {
|
|
// 在 row 后面插入一行数据
|
|
const index = tablist1.indexOf(row);
|
|
tablist1.splice(index + 1, 0, {});
|
|
};
|
|
|
|
const handleDelete = (row: any) => {
|
|
// 删除 row
|
|
const index = tablist1.indexOf(row);
|
|
tablist1.splice(index, 1);
|
|
};
|
|
|
|
// 删除上传的文件
|
|
const delFileFn = (index: number) => {
|
|
formDataannex.splice(index, 1)
|
|
}
|
|
//获取所有组织
|
|
const getlist = () => {
|
|
getAll().then((res) => {
|
|
Object.assign(list1, res)
|
|
if (res.length > 0 && !formData.org_id) {
|
|
formData.org_id = res[0].id
|
|
deptAll({ 'org_id': res[0].id }).then((res) => {
|
|
if (res.length > 0) {
|
|
Object.assign(list2, res)
|
|
formData.dept_id = res[0].id
|
|
}
|
|
|
|
})
|
|
}
|
|
})
|
|
}
|
|
//获取部门
|
|
const deptrmt = (e: any) => {
|
|
formData.dept_id = ''
|
|
getlist1(e)
|
|
|
|
}
|
|
//获取所有部门
|
|
const getlist1 = (id: any) => {
|
|
deptAll({ 'org_id': id }).then((res) => {
|
|
list2.splice(0, list2.length, ...res)
|
|
})
|
|
}
|
|
defineProps({
|
|
dictData: {
|
|
type: Object as PropType<Record<string, any[]>>,
|
|
default: () => ({})
|
|
}
|
|
})
|
|
const emit = defineEmits(['success', 'close'])
|
|
const formRef = shallowRef<FormInstance>()
|
|
const popupRef = shallowRef<InstanceType<typeof Popup>>()
|
|
const mode = ref('add')
|
|
const showDialog = ref(false)
|
|
const showDialog1 = ref(false)
|
|
|
|
const customEvent = (e: any) => {
|
|
tablist1.push({
|
|
'id': e.id,
|
|
'material_name': e.material_name,
|
|
'material_code': e.material_code,
|
|
'material_specs': e.material_specs,
|
|
'material_parameter_description': e.material_parameter_description,
|
|
'material_brand': e.material_brand,
|
|
'material_unit': e.material_unit,
|
|
residual_num: e.residual_num
|
|
})
|
|
showDialog.value = false;
|
|
};
|
|
const customEvent1 = (e: any) => {
|
|
formData.project_id = e.id;
|
|
project_name.value = e.name;
|
|
project_code.value = e.project_code;
|
|
showDialog1.value = false;
|
|
tablist1.splice(0, 99999)
|
|
};
|
|
// 弹窗标题
|
|
const popupTitle = computed(() => {
|
|
return mode.value == 'edit' ? '编辑采购需求目表' : '新增采购需求表'
|
|
})
|
|
|
|
// 表单数据
|
|
const formData = reactive({
|
|
id: '',
|
|
org_id: '',
|
|
dept_id: '',
|
|
project_id: '',
|
|
project_name: '',
|
|
project_code: '',
|
|
apply_date: '',
|
|
arrival_date: '',
|
|
remark: '',
|
|
annex: [],
|
|
purchase_request_detail: [],
|
|
})
|
|
|
|
// 表单验证
|
|
const formRules = reactive<any>({
|
|
|
|
})
|
|
|
|
|
|
// 获取详情
|
|
const setFormData = async (data: Record<any, any>) => {
|
|
if (data.annex && data.annex.length > 0) {
|
|
|
|
const arry1 = data.annex.map((item: any, index: any) => {
|
|
return {
|
|
name: `文件${index + 1}`,
|
|
uri: item
|
|
};
|
|
});
|
|
Object.assign(formDataannex, arry1)
|
|
|
|
}
|
|
|
|
if (data.dept_id) {
|
|
getlist1(data.org_id)
|
|
}
|
|
for (const key in formData) {
|
|
if (data[key] != null && data[key] != undefined) {
|
|
//@ts-ignore
|
|
formData[key] = data[key]
|
|
}
|
|
}
|
|
|
|
|
|
project_name.value = data.project_name;
|
|
project_code.value = data.project_code
|
|
materialrequestDetailLists({ project_material_budget_detail_id: formData.id }).then(res => {
|
|
res.lists.forEach((item, index) => {
|
|
tablist1[index] = res.lists[index]
|
|
})
|
|
})
|
|
|
|
|
|
}
|
|
const getDetail = async (row: Record<string, any>) => {
|
|
const data = await materialrequestDetail({
|
|
id: row.id
|
|
})
|
|
setFormData(data)
|
|
}
|
|
|
|
|
|
// 提交按钮
|
|
const handleSubmit = async () => {
|
|
if (formDataannex.length > 0) {
|
|
formData.annex = formDataannex.map((item: any) => item.uri)
|
|
}
|
|
if (tablist1.length > 0) {
|
|
formData.purchase_request_detail = tablist1.map((item) => ({
|
|
"project_material_budget_detail_id": item.id,
|
|
"num": item.num,
|
|
"remark": item.remark
|
|
}))
|
|
}
|
|
|
|
await formRef.value?.validate()
|
|
|
|
|
|
const data = { ...formData }
|
|
mode.value == 'edit'
|
|
? await materialrequestEdit(data)
|
|
: await materialrequestAdd(data)
|
|
popupRef.value?.close()
|
|
emit('success')
|
|
}
|
|
|
|
//打开弹窗
|
|
const open = (type = 'add') => {
|
|
mode.value = type
|
|
popupRef.value?.open()
|
|
|
|
getlist()
|
|
}
|
|
|
|
// 关闭回调
|
|
const handleClose = () => {
|
|
emit('close')
|
|
}
|
|
|
|
|
|
|
|
defineExpose({
|
|
open,
|
|
setFormData,
|
|
getDetail
|
|
})
|
|
</script>
|