| | |
| | | import type { PageParam, PageResult } from '../../../../packages/effects/request/src'; |
| | | import type { PageParam, PageResult } from '@vben/request'; |
| | | |
| | | import { requestClient } from '#/api/request'; |
| | | |
| | |
| | | otherPrice?: number; // 其他费用 |
| | | totalProductPrice?: number; // 合计商品金额 |
| | | taxPrice?: number; // 合计税额 |
| | | inspectionStatus?: number; // 验收状态(0:待验收 1:已验收 2:验收不合格) |
| | | inspectionTime?: string; // 验收时间 |
| | | inspectorId?: number; // 验收人员编号 |
| | | inspectionResult?: string; // 验收结果 |
| | | items?: PurchaseInItem[]; // 采购入库明细 |
| | | } |
| | | |
| | |
| | | params, |
| | | }); |
| | | } |
| | | |
| | | /** 验收采购入库 */ |
| | | export function inspectPurchaseIn(data: { |
| | | id: number; |
| | | inspectionStatus: number; |
| | | inspectionResult?: string; |
| | | }) { |
| | | return requestClient.put('/erp/purchase-in/inspect', data); |
| | | } |