更新采购文件审核导出

This commit is contained in:
吴红兵
2026-02-24 17:21:23 +08:00
parent 9699cdc849
commit 47dd3a0647
2 changed files with 30 additions and 1 deletions

View File

@@ -190,3 +190,11 @@ export function getApplyTemplateDownloadUrl(id: string | number) {
return `/purchase/purchasingapply/export-apply-template?id=${encodeURIComponent(String(id))}`;
}
/**
* 下载文件审批表:导出采购文件审批表 Word 文档fileapply.docx 模板)
* @param id 采购申请ID
*/
export function getFileApplyTemplateDownloadUrl(id: string | number) {
return `/purchase/purchasingapply/export-file-apply-template?id=${encodeURIComponent(String(id))}`;
}