| | |
| | | import type { PageParam, PageResult } from '..\..\..\..\..\packages\effects\request\src'; |
| | | import type { PageParam, PageResult } from '@vben/request'; |
| | | |
| | | import { requestClient } from '#/api/request'; |
| | | |
| | |
| | | export interface SalesNoticeLine { |
| | | id?: number; // 行编号 |
| | | noticeId?: number; // 发货通知单编号 |
| | | saleOrderItemId?: number; // 销售订单明细ID(用于追溯) |
| | | itemId?: number; // 物料编号 |
| | | itemCode?: string; // 物料编码 |
| | | itemName?: string; // 物料名称 |
| | |
| | | batchId?: number; // 批次编号 |
| | | batchCode?: string; // 批次号 |
| | | quantity?: number; // 发货数量 |
| | | outCount?: number; // 已出库数量 |
| | | oqcCheckFlag?: boolean; // 是否检验 |
| | | remark?: string; // 备注 |
| | | } |