| | |
| | | totalCount?: number; // 合计数量 |
| | | totalPrice?: number; // 合计金额,单位:元 |
| | | totalProductPrice?: number; // 产品金额,单位:元 |
| | | totalTaxPrice?: number; // 合计税额,单位:元 |
| | | discountPercent?: number; // 优惠率,百分比 |
| | | discountPrice?: number; // 优惠金额,单位:元 |
| | | depositPrice?: number; // 定金金额,单位:元 |
| | |
| | | return requestClient.get<any[]>('/erp/purchase-order/approve-process-list'); |
| | | } |
| | | |
| | | /** 反审批(协同办公已办任务中撤回已审核订单,回退为未审核) */ |
| | | export function reverseApprove(processInstanceId: string) { |
| | | return requestClient.post('/erp/purchase-order/reverse-approve', null, { |
| | | params: { processInstanceId }, |
| | | }); |
| | | } |
| | | |
| | | /** 获取采购审核流程列表响应 */ |
| | | export interface ProcessDefinition { |
| | | id: string; // 流程定义ID |