更新采购申请

This commit is contained in:
吴红兵
2026-03-01 16:00:24 +08:00
parent b1df2277fe
commit efc5dda78a
2 changed files with 324 additions and 58 deletions

View File

@@ -102,6 +102,31 @@ export function sendToAgent(applyId: number | string) {
});
}
/**
* 撤回招标代理:撤回已发送的招标代理
* @param applyId 采购申请ID
*/
export function revokeAgent(applyId: number | string) {
return request({
url: '/purchase/purchasingapply/revokeAgent',
method: 'post',
data: { id: Number(applyId) }
});
}
/**
* 保存实施采购方式(分步骤实施采购-第一步)
* @param id 采购申请ID
* @param implementType 实施采购方式1-自行组织采购2-委托代理采购
*/
export function saveImplementType(id: number | string, implementType: string) {
return request({
url: '/purchase/purchasingapply/save-implement-type',
method: 'post',
data: { id: Number(id), implementType }
});
}
/**
* 修改采购申请
* @param obj 对象数据