@be-link/ecommerce-plan-allocation-service-node-sdk 0.0.45 → 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,21 +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.PurchaseOrderDetail {
|
|
203
|
-
productName: string;
|
|
204
|
-
productImage: string;
|
|
205
|
-
imgList: string[];
|
|
206
|
-
specName: string;
|
|
207
|
-
storageMethod: string;
|
|
208
|
-
classification: string;
|
|
209
|
-
supplierName: string;
|
|
210
|
-
destinationName: string;
|
|
211
|
-
}
|
|
212
201
|
/** 查询采购单详情响应(含明细列表) */
|
|
213
202
|
interface GetDetail {
|
|
214
203
|
order: DetailOrder;
|
|
215
|
-
details:
|
|
204
|
+
details: Entity.PurchaseOrderDetailWithProduct[];
|
|
216
205
|
total: number;
|
|
217
206
|
}
|
|
218
207
|
/** 导出采购单Excel的每一行字段 */
|