@be-link/pos-cli-nodejs 0.0.166 → 0.0.168
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
|
@@ -20,6 +20,7 @@ declare class OrderJobService extends BaseService implements Service.OrderJobCon
|
|
|
20
20
|
jobNotifySupplierTomorrowOrder(): Promise<void>;
|
|
21
21
|
jobNotifySupplierInvoiceOrder(): Promise<void>;
|
|
22
22
|
jobNotifyFeishuOfConfirmBus(): Promise<void>;
|
|
23
|
+
jobPushTourSupplierForConfirmOrder(): Promise<void>;
|
|
23
24
|
}
|
|
24
25
|
declare const orderJobService: OrderJobService;
|
|
25
26
|
export default orderJobService;
|
|
@@ -64,6 +64,9 @@ class OrderJobService extends service_1.default {
|
|
|
64
64
|
jobNotifyFeishuOfConfirmBus() {
|
|
65
65
|
return (0, http_1.callApi)(this.getApiUrl(this.jobNotifyFeishuOfConfirmBus));
|
|
66
66
|
}
|
|
67
|
+
jobPushTourSupplierForConfirmOrder() {
|
|
68
|
+
return (0, http_1.callApi)(this.getApiUrl(this.jobPushTourSupplierForConfirmOrder));
|
|
69
|
+
}
|
|
67
70
|
}
|
|
68
71
|
const orderJobService = new OrderJobService();
|
|
69
72
|
exports.default = orderJobService;
|
|
@@ -36,5 +36,7 @@ export declare namespace Service {
|
|
|
36
36
|
jobNotifySupplierInvoiceOrder(): Promise<void>;
|
|
37
37
|
/** 每天早上10点,出团前5天飞书通知客服再次确认班车 */
|
|
38
38
|
jobNotifyFeishuOfConfirmBus(): Promise<void>;
|
|
39
|
+
/** 从8点开始每隔3小时催促供应商接单 */
|
|
40
|
+
jobPushTourSupplierForConfirmOrder(): Promise<void>;
|
|
39
41
|
}
|
|
40
42
|
}
|