| | |
| | | status: number; // 状态 |
| | | remark: string; // 备注 |
| | | outCount: number; // 销售出库数量 |
| | | fileUrl?: string; // 附件地址 |
| | | outStatus?: number; // 出库状态:0-未出库,1-部分出库,2-全部出库 |
| | | attachmentList?: { id: number; name?: string; url?: string }[]; // 附件列表 |
| | | inCount?: number; // 采购入库数量 |
| | | returnCount: number; // 销售退货数量 |
| | | totalProductPrice?: number; // 产品金额,单位:元 |
| | |
| | | depositPrice?: number; // 定金金额,单位:元 |
| | | contractId?: number; // 关联 CRM 合同编号 |
| | | contractNo?: string; // CRM 合同单号 |
| | | needProduction?: number; // 是否需要生产:0-不需要,1-需要 |
| | | productionStatus?: number; // 生产状态:0-未完成,1-已完成 |
| | | productionFinishTime?: Date; // 生产完成时间 |
| | | hasSalesNotice?: boolean; // 是否已生成发货通知单 |
| | | canCreateSalesNotice?: boolean; // 是否可以生成发货通知单 |
| | | items?: SaleOrderItem[]; // 销售订单产品明细列表 |
| | | } |
| | | |
| | |
| | | totalTaxPrice?: number; // 含税总价,单位:元 |
| | | remark?: string; // 备注 |
| | | stockCount?: number; // 库存数量(显示字段) |
| | | needProduction?: number; // 是否需要生产:0-不需要,1-需要 |
| | | mpsId?: number; // MPS编号 |
| | | } |
| | | } |
| | | |