This commit is contained in:
吴红兵
2026-03-08 23:23:02 +08:00
parent 42ab802371
commit 4b33dc9aab
2 changed files with 231 additions and 2 deletions

View File

@@ -252,6 +252,19 @@ export function saveRepresentor(id: number, representorTeacherNo?: string, repre
});
}
/**
* 随机抽取部门参与人
* @param applyId 采购申请ID
* @param memberTeacherNos 参与随机抽取的人员工号列表(逗号分隔)
*/
export function randomSelectRepresentor(applyId: string, memberTeacherNos: string) {
return request({
url: '/purchase/purchasingapply/randomSelectRepresentor',
method: 'post',
data: { applyId, memberTeacherNos },
});
}
/**
* 文件归档按文件类型打包下载该申请单下所有附件的下载地址GET 请求,浏览器直接下载 zip
* @param purchaseId 采购申请ID