2025-08-07 19:22:17 +08:00
|
|
|
<template>
|
|
|
|
<div class="p-2">
|
|
|
|
<el-row :gutter="20">
|
|
|
|
<!-- 流程分类树 -->
|
|
|
|
<el-col style="" :span="5">
|
|
|
|
<el-card shadow="hover">
|
|
|
|
<template #header>
|
|
|
|
<el-row :gutter="10" class="mb8">
|
|
|
|
<el-col :span="1.5" :offset="0"
|
|
|
|
><el-button type="primary" size="default" @click="addBatch" icon="FolderAdd" plain>新增</el-button></el-col
|
|
|
|
>
|
|
|
|
<el-col :span="1.5" :offset="0"
|
|
|
|
><el-button type="danger" size="default" @click="handleDeleteBatch" icon="FolderDelete" plain>删除</el-button></el-col
|
|
|
|
>
|
|
|
|
</el-row>
|
|
|
|
</template>
|
|
|
|
|
2025-08-09 18:02:06 +08:00
|
|
|
<el-input v-model="batchNumber" placeholder="请输入批次号" @input="searchBatchList" prefix-icon="Search" clearable />
|
2025-08-07 19:22:17 +08:00
|
|
|
<el-tree
|
|
|
|
ref="batchTreeRef"
|
|
|
|
class="mt-2"
|
|
|
|
node-key="batchNumber"
|
|
|
|
:data="batchOptions"
|
|
|
|
:props="{ label: 'batchNumber', children: 'children' }"
|
|
|
|
:expand-on-click-node="false"
|
|
|
|
highlight-current
|
|
|
|
default-expand-all
|
|
|
|
@node-click="handleNodeClick"
|
2025-08-09 18:02:06 +08:00
|
|
|
>
|
|
|
|
<template #default="{ node, data }">
|
|
|
|
<div class="custom-tree-node">
|
|
|
|
{{node.label }}
|
|
|
|
<dict-tag :options="wf_business_status" :value="data.approvalProject" />
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
</el-tree>
|
2025-08-07 19:22:17 +08:00
|
|
|
<pagination
|
|
|
|
v-show="total > 0"
|
|
|
|
:total="total"
|
|
|
|
v-model:page="queryParams.pageNum"
|
|
|
|
v-model:limit="queryParams.pageSize"
|
|
|
|
@pagination="getBatchList"
|
|
|
|
layout="prev, pager, next,jumper"
|
|
|
|
/>
|
|
|
|
</el-card>
|
|
|
|
</el-col>
|
|
|
|
<el-col :span="19">
|
|
|
|
<el-card shadow="never">
|
|
|
|
<template #header>
|
|
|
|
<el-row :gutter="10" class="mb8">
|
2025-08-09 18:02:06 +08:00
|
|
|
<el-col :span="1.5" v-if="form.approvalProject == 'draft'">
|
2025-08-07 19:22:17 +08:00
|
|
|
<el-button type="primary" plain icon="SemiSelect" @click="handleAdd" v-hasPermi="['cailiaoshebei:cailiaoshebei:add']">选择</el-button>
|
|
|
|
</el-col>
|
2025-08-09 18:02:06 +08:00
|
|
|
<el-col :span="1.5" v-if="form.approvalProject == 'draft'">
|
2025-08-07 19:22:17 +08:00
|
|
|
<el-button type="success" plain icon="Check" @click="submitForm" v-hasPermi="['cailiaoshebei:cailiaoshebei:delete']">保存</el-button>
|
|
|
|
</el-col>
|
2025-08-08 20:03:00 +08:00
|
|
|
<el-col :span="1.5">
|
|
|
|
<el-button plain type="warning" icon="Finished" @click="handleAudit()" v-hasPermi="['out:monthPlan:remove']">审核</el-button>
|
|
|
|
</el-col>
|
2025-08-07 19:22:17 +08:00
|
|
|
|
|
|
|
<right-toolbar v-model:showSearch="showSearch" @queryTable="getList"></right-toolbar>
|
|
|
|
</el-row>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<el-table v-loading="loading" :data="cailiaoshebeiList" @selection-change="handleSelectionChange">
|
|
|
|
<el-table-column type="selection" width="55" align="center" />
|
|
|
|
<!-- <el-table-column label="供货商ID" align="center" prop="supplierId" /> -->
|
|
|
|
<el-table-column label="供货商" align="center" prop="supplierCompany" />
|
|
|
|
<el-table-column label="设备材料名称" align="center" prop="name" />
|
|
|
|
<el-table-column label="规格型号" align="center" prop="specification" />
|
|
|
|
<el-table-column label="物料编码" align="center" prop="materialCode" width="200" />
|
|
|
|
<el-table-column label="计量单位" align="center" prop="unit" width="80" />
|
|
|
|
<el-table-column label="供应周期(天)" align="center" prop="estimatedCycle" />
|
|
|
|
<el-table-column label="需求数量" align="center" prop="demandQuantity">
|
|
|
|
<template #default="scope">
|
2025-08-09 18:02:06 +08:00
|
|
|
<el-input v-model="scope.row.demandQuantity" type="number" :disabled="form.approvalProject != 'draft'"/>
|
2025-08-07 19:22:17 +08:00
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column label="计划到场时间" align="center" prop="arrivalTime" width="250">
|
|
|
|
<template #default="scope">
|
|
|
|
<div class="flex justify-center w100%">
|
2025-08-09 18:02:06 +08:00
|
|
|
<el-date-picker v-model="scope.row.arrivalTime" type="date" value-format="YYYY-MM-DD" :disabled="form.approvalProject != 'draft'" />
|
2025-08-07 19:22:17 +08:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
</el-table>
|
|
|
|
</el-card>
|
|
|
|
</el-col>
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
<!-- 添加或修改物资-材料设备对话框 -->
|
|
|
|
<el-dialog :title="dialog.title" v-model="dialog.visible" width="650px" append-to-body>
|
|
|
|
<el-transfer
|
|
|
|
v-model="cailiaoshebeiSelectedList"
|
|
|
|
filterable
|
|
|
|
:data="cailiaoshebeiAllList"
|
|
|
|
:props="{
|
|
|
|
label: 'name',
|
2025-08-09 18:02:06 +08:00
|
|
|
key: 'cailiaoshebeiId'
|
2025-08-07 19:22:17 +08:00
|
|
|
}"
|
2025-08-09 18:02:06 +08:00
|
|
|
><template #default="{ option }">
|
|
|
|
{{ `${option.specification || ''} ${option.name || ''}` }}1
|
|
|
|
</template>
|
|
|
|
</el-transfer>
|
2025-08-07 19:22:17 +08:00
|
|
|
<template #footer>
|
|
|
|
<div class="dialog-footer">
|
|
|
|
<el-button :loading="buttonLoading" type="primary" @click="submitTransferForm">确 定</el-button>
|
|
|
|
<el-button @click="cancel">取 消</el-button>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
</el-dialog>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script setup name="Cailiaoshebei" lang="ts">
|
|
|
|
import {
|
|
|
|
listCailiaoshebei,
|
|
|
|
getCailiaoshebei,
|
|
|
|
delCailiaoshebei,
|
|
|
|
addCailiaoshebei,
|
|
|
|
updateCailiaoshebei,
|
|
|
|
listBatch,
|
|
|
|
getBatch,
|
2025-08-09 18:02:06 +08:00
|
|
|
delBatch,
|
|
|
|
listSelectCailiaoshebei
|
2025-08-07 19:22:17 +08:00
|
|
|
} from '@/api/materials/batchPlan';
|
|
|
|
import { CailiaoshebeiVO, CailiaoshebeiQuery, CailiaoshebeiForm } from '@/api/materials/batchPlan/types';
|
|
|
|
|
|
|
|
import { listContractor } from '@/api/project/contractor';
|
|
|
|
import { useUserStoreHook } from '@/store/modules/user';
|
|
|
|
|
|
|
|
const { proxy } = getCurrentInstance() as ComponentInternalInstance;
|
|
|
|
const { supply } = toRefs<any>(proxy?.useDict('supply'));
|
|
|
|
// 获取用户 store
|
|
|
|
const userStore = useUserStoreHook();
|
|
|
|
// 从 store 中获取项目列表和当前选中的项目
|
|
|
|
const currentProject = computed(() => userStore.selectedProject);
|
|
|
|
const batchTreeRef = ref<any>(null);
|
|
|
|
const cailiaoshebeiList = ref<CailiaoshebeiVO[]>([]);
|
|
|
|
const cailiaoshebeiAllList = ref<CailiaoshebeiVO[]>([]);
|
|
|
|
const cailiaoshebeiSelectedList = ref([]);
|
|
|
|
const buttonLoading = ref(false);
|
|
|
|
const loading = ref(false);
|
|
|
|
const showSearch = ref(true);
|
|
|
|
const ids = ref<Array<string | number>>([]);
|
|
|
|
const single = ref(true);
|
|
|
|
const multiple = ref(true);
|
|
|
|
const total = ref(0);
|
|
|
|
const batchOptions = ref<any[]>([]);
|
|
|
|
const { wf_business_status } = toRefs<any>(proxy?.useDict('wf_business_status'));
|
|
|
|
|
|
|
|
const queryFormRef = ref<ElFormInstance>();
|
|
|
|
const cailiaoshebeiFormRef = ref<ElFormInstance>();
|
|
|
|
|
|
|
|
const dialog = reactive<DialogOption>({
|
|
|
|
visible: false,
|
|
|
|
title: ''
|
|
|
|
});
|
|
|
|
|
|
|
|
const initFormData: CailiaoshebeiForm = {
|
|
|
|
id: undefined,
|
|
|
|
batchNumber: undefined,
|
|
|
|
supplierId: undefined,
|
|
|
|
addDataList: [],
|
|
|
|
|
|
|
|
supplier: undefined,
|
|
|
|
name: undefined,
|
|
|
|
supply: undefined,
|
|
|
|
specification: undefined,
|
|
|
|
signalment: undefined,
|
|
|
|
materialCode: undefined,
|
|
|
|
arrivalTime: undefined,
|
|
|
|
approvalProject: undefined,
|
|
|
|
|
|
|
|
finishTime: undefined,
|
|
|
|
unit: undefined,
|
|
|
|
plan: undefined,
|
|
|
|
realQuantity: undefined,
|
|
|
|
projectId: currentProject.value.id,
|
|
|
|
remark: undefined
|
|
|
|
};
|
|
|
|
const data = reactive<PageData<CailiaoshebeiForm, CailiaoshebeiQuery>>({
|
|
|
|
form: { ...initFormData },
|
|
|
|
queryParams: {
|
|
|
|
pageNum: 1,
|
|
|
|
pageSize: 10,
|
|
|
|
batchNumber: undefined,
|
|
|
|
supplierId: undefined,
|
|
|
|
supplier: undefined,
|
|
|
|
name: undefined,
|
|
|
|
projectId: currentProject.value.id,
|
|
|
|
supply: undefined,
|
|
|
|
specification: undefined,
|
|
|
|
signalment: undefined,
|
|
|
|
materialCode: undefined,
|
|
|
|
arrivalTime: undefined,
|
|
|
|
finishTime: undefined,
|
|
|
|
unit: undefined,
|
|
|
|
plan: undefined,
|
|
|
|
realQuantity: undefined,
|
|
|
|
params: {}
|
|
|
|
},
|
|
|
|
rules: {
|
|
|
|
id: [{ required: true, message: '主键ID不能为空', trigger: 'blur' }]
|
|
|
|
}
|
|
|
|
});
|
2025-08-09 18:02:06 +08:00
|
|
|
const batchNumber = ref('');
|
2025-08-07 19:22:17 +08:00
|
|
|
const { queryParams, form, rules } = toRefs(data);
|
|
|
|
|
|
|
|
/** 查询物资-材料设备列表 */
|
|
|
|
const getList = async () => {
|
2025-08-08 20:03:00 +08:00
|
|
|
if (!queryParams.value.batchNumber) return;
|
2025-08-07 19:22:17 +08:00
|
|
|
loading.value = true;
|
|
|
|
const res = await listCailiaoshebei(queryParams.value);
|
|
|
|
cailiaoshebeiList.value = res.rows;
|
|
|
|
|
|
|
|
loading.value = false;
|
|
|
|
};
|
|
|
|
|
|
|
|
//查询批次列表
|
|
|
|
const getBatchList = async () => {
|
|
|
|
const res = await listBatch(queryParams.value);
|
|
|
|
batchOptions.value = res.rows;
|
|
|
|
total.value = res.total;
|
|
|
|
try {
|
2025-08-08 20:03:00 +08:00
|
|
|
queryParams.value.batchNumber = res.rows[0].batchNumber;
|
2025-08-07 19:22:17 +08:00
|
|
|
batchTreeRef.value.setCurrentKey(res.rows[0].batchNumber);
|
|
|
|
form.value.batchNumber = res.rows[0].batchNumber;
|
|
|
|
form.value.approvalProject = res.rows[0].approvalProject;
|
|
|
|
} catch (error) {
|
|
|
|
form.value.batchNumber = '';
|
2025-08-08 20:03:00 +08:00
|
|
|
queryParams.value.batchNumber = '';
|
2025-08-07 19:22:17 +08:00
|
|
|
}
|
|
|
|
getList();
|
|
|
|
};
|
|
|
|
|
|
|
|
/** 节点单击事件 */
|
|
|
|
const handleNodeClick = (data: any) => {
|
|
|
|
queryParams.value.batchNumber = data.batchNumber;
|
|
|
|
form.value.batchNumber = data.batchNumber;
|
|
|
|
form.value.approvalProject = data.approvalProject;
|
|
|
|
|
|
|
|
console.log('🚀 ~ handleNodeClick ~ form.value:', form.value);
|
|
|
|
if (data.batchNumber === '0') {
|
|
|
|
queryParams.value.batchNumber = '';
|
|
|
|
}
|
|
|
|
getList();
|
|
|
|
};
|
|
|
|
|
2025-08-09 18:02:06 +08:00
|
|
|
const searchBatchList = async () => {
|
|
|
|
queryParams.value.batchNumber = batchNumber.value;
|
|
|
|
getBatchList();
|
|
|
|
};
|
|
|
|
|
2025-08-07 19:22:17 +08:00
|
|
|
/** 取消按钮 */
|
|
|
|
const cancel = () => {
|
|
|
|
reset();
|
|
|
|
dialog.visible = false;
|
|
|
|
};
|
|
|
|
|
|
|
|
/** 表单重置 */
|
|
|
|
const reset = () => {
|
|
|
|
const preservedBatchId = form.value.batchNumber; // 先保存当前的 batchNumber
|
2025-08-09 18:02:06 +08:00
|
|
|
const status=form.value.approvalProject
|
|
|
|
form.value = { ...initFormData, batchNumber: preservedBatchId,approvalProject:status }; // 重置但保留
|
2025-08-07 19:22:17 +08:00
|
|
|
cailiaoshebeiFormRef.value?.resetFields();
|
|
|
|
};
|
|
|
|
|
|
|
|
/** 搜索按钮操作 */
|
|
|
|
const handleQuery = () => {
|
|
|
|
queryParams.value.pageNum = 1;
|
|
|
|
getList();
|
|
|
|
};
|
|
|
|
|
|
|
|
/** 重置按钮操作 */
|
|
|
|
const resetQuery = () => {
|
|
|
|
queryFormRef.value?.resetFields();
|
|
|
|
handleQuery();
|
|
|
|
};
|
|
|
|
|
|
|
|
/** 多选框选中数据 */
|
|
|
|
const handleSelectionChange = (selection: CailiaoshebeiVO[]) => {
|
|
|
|
ids.value = selection.map((item) => item.id);
|
|
|
|
single.value = selection.length != 1;
|
|
|
|
multiple.value = !selection.length;
|
|
|
|
};
|
|
|
|
|
|
|
|
/** 新增按钮操作 */
|
|
|
|
const handleAdd = () => {
|
|
|
|
reset();
|
2025-08-09 18:02:06 +08:00
|
|
|
|
|
|
|
listSelectCailiaoshebei({
|
2025-08-07 19:22:17 +08:00
|
|
|
projectId: currentProject.value.id
|
|
|
|
}).then((res) => {
|
|
|
|
cailiaoshebeiAllList.value = res.rows;
|
|
|
|
});
|
|
|
|
|
|
|
|
dialog.visible = true;
|
|
|
|
dialog.title = '选择物资-材料设备';
|
|
|
|
};
|
|
|
|
|
|
|
|
/** 提交按钮 */
|
|
|
|
const submitForm = async () => {
|
|
|
|
buttonLoading.value = true;
|
|
|
|
cailiaoshebeiList.value.forEach((item) => {
|
|
|
|
if (item.id) {
|
|
|
|
delete item.id;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2025-08-09 18:02:06 +08:00
|
|
|
await addCailiaoshebei({ addDataList: cailiaoshebeiList.value,batchNumber:form.value.batchNumber,projectId:currentProject.value.id } as any).finally(() => (buttonLoading.value = false));
|
|
|
|
|
2025-08-07 19:22:17 +08:00
|
|
|
proxy?.$modal.msgSuccess('操作成功');
|
|
|
|
dialog.visible = false;
|
|
|
|
};
|
|
|
|
|
|
|
|
/** 提交穿梭框数据 */
|
|
|
|
const submitTransferForm = async () => {
|
|
|
|
cailiaoshebeiList.value = cailiaoshebeiSelectedList.value.map((id) => {
|
2025-08-09 18:02:06 +08:00
|
|
|
const item = cailiaoshebeiAllList.value.find((option) => option.cailiaoshebeiId === id);
|
2025-08-07 19:22:17 +08:00
|
|
|
return item;
|
|
|
|
});
|
|
|
|
dialog.visible = false;
|
|
|
|
};
|
|
|
|
|
|
|
|
/** 新增批次 */
|
|
|
|
const addBatch = async () => {
|
|
|
|
await proxy?.$modal.confirm('是否确认新增批次?').finally(() => (loading.value = false));
|
2025-08-09 18:02:06 +08:00
|
|
|
await getBatch({ projectId: currentProject.value.id });
|
|
|
|
queryParams.value.batchNumber = '';
|
2025-08-07 19:22:17 +08:00
|
|
|
await getBatchList();
|
|
|
|
|
|
|
|
proxy?.$modal.msgSuccess('新增成功');
|
|
|
|
};
|
|
|
|
|
|
|
|
/** 删除批次 */
|
|
|
|
const handleDeleteBatch = async () => {
|
|
|
|
const _ids = batchTreeRef.value.getCurrentNode()?.id;
|
|
|
|
await proxy?.$modal.confirm('是否确认删除批次编号为"' + _ids + '"的数据项?').finally(() => (loading.value = false));
|
|
|
|
await delBatch(_ids);
|
|
|
|
proxy?.$modal.msgSuccess('删除成功');
|
|
|
|
queryParams.value.batchNumber = '';
|
|
|
|
|
|
|
|
await getBatchList();
|
|
|
|
};
|
|
|
|
|
|
|
|
/** 删除按钮操作 */
|
|
|
|
const handleDelete = async (row?: CailiaoshebeiVO) => {
|
|
|
|
const _ids = row?.id || ids.value;
|
|
|
|
await proxy?.$modal.confirm('是否确认删除物资-材料设备编号为"' + _ids + '"的数据项?').finally(() => (loading.value = false));
|
|
|
|
await delCailiaoshebei(_ids);
|
|
|
|
proxy?.$modal.msgSuccess('删除成功');
|
|
|
|
await getList();
|
|
|
|
};
|
|
|
|
|
|
|
|
/** 审核按钮操作 */
|
2025-08-08 20:03:00 +08:00
|
|
|
const handleAudit = async () => {
|
|
|
|
if (!form.value.approvalProject) {
|
|
|
|
proxy?.$modal.msgError('请选择批次号');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
proxy?.$tab.closePage(proxy.$route);
|
2025-08-07 19:22:17 +08:00
|
|
|
proxy?.$tab.openPage('/materials-management/batchPlan/indexEdit', '审核物资设备批次需求计划', {
|
2025-08-08 20:03:00 +08:00
|
|
|
id: form.value.batchNumber,
|
|
|
|
approvalProject: form.value.approvalProject + '_batchRequirements',
|
2025-08-07 19:22:17 +08:00
|
|
|
type: 'update'
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
/** 查询供货商列表 */
|
|
|
|
const supplierOptions = ref([]);
|
|
|
|
const getSupplierList = async () => {
|
|
|
|
const res = await listContractor({
|
|
|
|
projectId: currentProject.value.id,
|
|
|
|
pageNum: 1,
|
|
|
|
pageSize: 10000
|
|
|
|
});
|
|
|
|
supplierOptions.value = res.rows;
|
|
|
|
};
|
|
|
|
|
|
|
|
onMounted(() => {
|
|
|
|
getBatchList();
|
|
|
|
getSupplierList();
|
|
|
|
});
|
|
|
|
|
|
|
|
//监听项目id刷新数据
|
|
|
|
const listeningProject = watch(
|
|
|
|
() => currentProject.value.id,
|
|
|
|
(nid, oid) => {
|
|
|
|
queryParams.value.projectId = nid;
|
|
|
|
form.value.projectId = nid;
|
|
|
|
getBatchList();
|
|
|
|
getSupplierList();
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
onUnmounted(() => {
|
|
|
|
listeningProject();
|
|
|
|
});
|
|
|
|
</script>
|
2025-08-09 18:02:06 +08:00
|
|
|
<style scoped lang="scss">
|
|
|
|
.custom-tree-node {
|
|
|
|
flex: 1;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between;
|
|
|
|
font-size: 14px;
|
|
|
|
padding-right: 8px;
|
|
|
|
}
|
|
|
|
</style
|
|
|
|
|