@be-link/ecommerce-plan-allocation-service-node-sdk 0.0.44 → 0.0.46
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -198,13 +198,10 @@ export declare namespace PurchaseOrderTypes {
|
|
|
198
198
|
createdAt: number;
|
|
199
199
|
status: ENUM.PURCHASE_ORDER_ENUM.STATUS;
|
|
200
200
|
}
|
|
201
|
-
/** 采购单明细列表项 */
|
|
202
|
-
interface DetailItem extends Entity.PurchaseOrderDetailWithProduct {
|
|
203
|
-
}
|
|
204
201
|
/** 查询采购单详情响应(含明细列表) */
|
|
205
202
|
interface GetDetail {
|
|
206
203
|
order: DetailOrder;
|
|
207
|
-
details:
|
|
204
|
+
details: Entity.PurchaseOrderDetailWithProduct[];
|
|
208
205
|
total: number;
|
|
209
206
|
}
|
|
210
207
|
/** 导出采购单Excel的每一行字段 */
|