@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
|
@@ -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小时催促供应商接单 */
|