Merge branch 'feature-purchase' into developer

This commit is contained in:
吴红兵
2026-03-04 12:56:53 +08:00

View File

@@ -708,6 +708,16 @@ const handleMoreCommand = (command: string, row: any) => {
}
};
/** 更新材料 */
const handleUpdateFiles = (row: any) => {
const id = row?.id ?? row?.purchaseId;
if (!id) {
useMessage().warning('无法获取采购申请ID');
return;
}
updateFilesDialogRef.value?.open(id, row.purchaseNo);
};
/** 下载审批表 */
const handleDownloadApply = (row: any) => {
const id = row?.id ?? row?.purchaseId;