更新采购申请
This commit is contained in:
@@ -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 对象数据
|
||||
|
||||
Reference in New Issue
Block a user