src/api/erp/sale/order/index.ts
@@ -8,6 +8,7 @@ id?: number; // 订单工单编号 no: string; // 销售订单号 customerId: number; // 客户编号 customerName?: string; // 客户名称 accountId?: number; // 收款账户编号 orderTime: Date; // 订单时间 totalCount: number; // 合计数量 @@ -22,6 +23,8 @@ discountPercent?: number; // 优惠率,百分比 discountPrice?: number; // 优惠金额,单位:元 depositPrice?: number; // 定金金额,单位:元 contractId?: number; // 关联 CRM 合同编号 contractNo?: string; // CRM 合同单号 items?: SaleOrderItem[]; // 销售订单产品明细列表 }