@be-link/pos-cli-nodejs 1.0.195 → 1.0.197
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.
- package/package.json +1 -1
- package/pos/modules/orderQuery/types.d.ts +8 -0
- package/types.d.ts +8 -0
package/package.json
CHANGED
|
@@ -424,6 +424,10 @@ export declare namespace Service {
|
|
|
424
424
|
supplierIds?: string[];
|
|
425
425
|
/** 订单来源人门店ID */
|
|
426
426
|
fromEcsStoreIds?: string[];
|
|
427
|
+
/** 下单人 ECS 门店 ID 列表(快照 ecsStoreId) */
|
|
428
|
+
ecsStoreIdList?: string[];
|
|
429
|
+
/** 是否无来源销售(fromUnionId 为空) */
|
|
430
|
+
isEmptyFromUnionId?: boolean;
|
|
427
431
|
/** 支付时间范围 */
|
|
428
432
|
paidAtRange?: [number, number];
|
|
429
433
|
/** 来源类型 */
|
|
@@ -488,6 +492,10 @@ export declare namespace Service {
|
|
|
488
492
|
isNotFinishedNote?: boolean;
|
|
489
493
|
/** 是否排除已合并的订单 */
|
|
490
494
|
isExcludeMerged?: boolean;
|
|
495
|
+
/** 下单人 ECS 门店 ID 列表(快照 ecsStoreId) */
|
|
496
|
+
ecsStoreIdList?: string[];
|
|
497
|
+
/** 是否无来源销售(fromUnionId 为空) */
|
|
498
|
+
isEmptyFromUnionId?: boolean;
|
|
491
499
|
};
|
|
492
500
|
/** 查询块 */
|
|
493
501
|
needBlocks: K;
|
package/types.d.ts
CHANGED
|
@@ -330,6 +330,14 @@ export interface IPositiveItemInfo {
|
|
|
330
330
|
createdAt: number;
|
|
331
331
|
/** 更新时间 */
|
|
332
332
|
updatedAt: number;
|
|
333
|
+
/** 出行前 N 天(免损截止) */
|
|
334
|
+
freeRefundDeadlineDays: number | null;
|
|
335
|
+
/** N 点前,格式 HH:mm:ss */
|
|
336
|
+
freeRefundDeadlineTime: string | null;
|
|
337
|
+
/** 接单前自动退款开关 */
|
|
338
|
+
supportAutoRefundBeforeAccept: number;
|
|
339
|
+
/** 接单后自动退款开关 */
|
|
340
|
+
supportAutoRefundAfterAccept: number;
|
|
333
341
|
}
|
|
334
342
|
export type IPositiveItemInfoV2 = {
|
|
335
343
|
_id: string;
|