@be-link/ecommerce-plan-allocation-service-node-sdk 0.0.55 → 0.0.56
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.
|
@@ -12,7 +12,7 @@ export declare namespace ProductStatisticsTypes {
|
|
|
12
12
|
salesVolume: number;
|
|
13
13
|
/** getVerificationRecords 汇总已核销数量 */
|
|
14
14
|
verifiedCount: number;
|
|
15
|
-
/**
|
|
15
|
+
/** getVerificationRecords 汇总未核销数量 */
|
|
16
16
|
unverifiedCount: number;
|
|
17
17
|
/** 退货量 */
|
|
18
18
|
refundCount: number;
|
|
@@ -81,14 +81,14 @@ export declare namespace ProductStatisticsTypes {
|
|
|
81
81
|
namespace Request {
|
|
82
82
|
/**
|
|
83
83
|
* 查询入库单商品统计请求
|
|
84
|
-
* orderTimeStart/orderTimeEnd:下单时间(订单创建时间,毫秒),用于拉 POS orderList
|
|
84
|
+
* orderTimeStart/orderTimeEnd:下单时间(订单创建时间,毫秒),用于拉 POS orderList 与核销流水;可选。开始缺省默认当前时间减 30 天,结束缺省默认当前时间;二者独立补全后再做先后校验
|
|
85
85
|
*/
|
|
86
86
|
interface GetStockInProductStats {
|
|
87
87
|
storeId: string;
|
|
88
88
|
updatedAtStart?: number;
|
|
89
89
|
updatedAtEnd?: number;
|
|
90
|
-
orderTimeStart
|
|
91
|
-
orderTimeEnd
|
|
90
|
+
orderTimeStart?: number;
|
|
91
|
+
orderTimeEnd?: number;
|
|
92
92
|
pageIndex: number;
|
|
93
93
|
pageSize: number;
|
|
94
94
|
}
|