@be-link/pos-cli-nodejs 1.0.21 → 1.0.23

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@be-link/pos-cli-nodejs",
3
- "version": "1.0.21",
3
+ "version": "1.0.23",
4
4
  "description": "正向订单服务Nodejs客户端",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -19,6 +19,7 @@ declare class OrderJobService extends BaseService implements Service.OrderJobCon
19
19
  jobNotifySupplierPendingOrder(): Promise<void>;
20
20
  jobNotifySupplierTomorrowOrder(): Promise<void>;
21
21
  jobNotifySupplierInvoiceOrder(): Promise<void>;
22
+ jobNotifySupplierInvoiceDay(): Promise<void>;
22
23
  jobNotifyFeishuOfConfirmBus(): Promise<void>;
23
24
  jobPushTourSupplierForConfirmOrder(): Promise<void>;
24
25
  }
@@ -61,6 +61,9 @@ class OrderJobService extends service_1.default {
61
61
  jobNotifySupplierInvoiceOrder() {
62
62
  return (0, http_1.callApi)(this.getApiUrl(this.jobNotifySupplierInvoiceOrder));
63
63
  }
64
+ jobNotifySupplierInvoiceDay() {
65
+ return (0, http_1.callApi)(this.getApiUrl(this.jobNotifySupplierInvoiceDay));
66
+ }
64
67
  jobNotifyFeishuOfConfirmBus() {
65
68
  return (0, http_1.callApi)(this.getApiUrl(this.jobNotifyFeishuOfConfirmBus));
66
69
  }
@@ -34,6 +34,8 @@ export declare namespace Service {
34
34
  jobNotifySupplierTomorrowOrder(): Promise<void>;
35
35
  /** 每天15点通知酒店和一日聚门店处理待开发票的订单 */
36
36
  jobNotifySupplierInvoiceOrder(): Promise<void>;
37
+ /** 每天通知超过5天未处理的发票 */
38
+ jobNotifySupplierInvoiceDay(): Promise<void>;
37
39
  /** 每天早上10点,出团前5天飞书通知客服再次确认班车 */
38
40
  jobNotifyFeishuOfConfirmBus(): Promise<void>;
39
41
  /** 从8点开始每隔3小时催促供应商接单 */
@@ -13,6 +13,8 @@ export declare namespace Service {
13
13
  tradeOrderId: string;
14
14
  /** 备注类型 */
15
15
  type: PosConstants.NoteTypeEnum;
16
+ /** 备注状态 */
17
+ status?: PosConstants.NoteStatusEnum;
16
18
  }
17
19
  interface queryNoteByOrderIdList {
18
20
  /** 订单Id列表 */