@be-link/pos-cli-nodejs 1.0.43 → 1.0.45
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
CHANGED
|
@@ -480,6 +480,7 @@ export declare namespace Service {
|
|
|
480
480
|
interface queryStoreOrderList<K> {
|
|
481
481
|
/** 条件 */
|
|
482
482
|
conditions: {
|
|
483
|
+
orderIdList?: string[];
|
|
483
484
|
/** 状态 */
|
|
484
485
|
statusList?: string[];
|
|
485
486
|
/** 购买人姓名 */
|
|
@@ -498,6 +499,12 @@ export declare namespace Service {
|
|
|
498
499
|
pageSize?: number;
|
|
499
500
|
/** 页面下标 */
|
|
500
501
|
pageIndex?: number;
|
|
502
|
+
/** 拼团类型 */
|
|
503
|
+
groupType?: number[];
|
|
504
|
+
/** 是否排除已合并订单 */
|
|
505
|
+
isExcludeMerged?: boolean;
|
|
506
|
+
/** 套餐 */
|
|
507
|
+
combo?: string;
|
|
501
508
|
};
|
|
502
509
|
/** 排序 */
|
|
503
510
|
sort: {
|
|
@@ -610,6 +617,8 @@ export declare namespace Service {
|
|
|
610
617
|
categoryList?: string[];
|
|
611
618
|
}
|
|
612
619
|
interface getStoreOrderCount {
|
|
620
|
+
/** 订单号 */
|
|
621
|
+
orderIdList?: string[];
|
|
613
622
|
/** 状态 */
|
|
614
623
|
statusList?: string[];
|
|
615
624
|
/** 购买人姓名 */
|
|
@@ -624,6 +633,12 @@ export declare namespace Service {
|
|
|
624
633
|
createdAtRange?: [number, number];
|
|
625
634
|
/** 门店列表 */
|
|
626
635
|
storeIdList: string[];
|
|
636
|
+
/** 是否排除已合并子单 */
|
|
637
|
+
isExcludeMerged?: boolean;
|
|
638
|
+
/** 套餐 */
|
|
639
|
+
combo?: string;
|
|
640
|
+
/** 拼团类型 */
|
|
641
|
+
groupType?: number[];
|
|
627
642
|
}
|
|
628
643
|
interface getSupplierOrderCount {
|
|
629
644
|
/** id列表 */
|