| | |
| | | import type { PageParam, PageResult } from '../../../../packages/effects/request/src'; |
| | | import type { PageParam, PageResult } from '@vben/request'; |
| | | |
| | | import { requestClient } from '#/api/request'; |
| | | |
| | |
| | | totalTaxPrice?: number; // 含税总价,单位:元 |
| | | remark?: string; // 备注 |
| | | stockCount?: number; // 库存数量(显示字段) |
| | | qcCheckFlag?: boolean; // 是否需要来料检验 |
| | | } |
| | | } |
| | | |
| | |
| | | name: string; // 流程名称 |
| | | version: number; // 版本号 |
| | | } |
| | | |
| | | /** 确认收货 */ |
| | | export function confirmReceipt(id: number) { |
| | | return requestClient.post<number>('/erp/purchase-order/confirm-receipt', null, { |
| | | params: { id }, |
| | | }); |
| | | } |