@be-link/pos-cli-nodejs 0.0.137 → 0.0.138
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
|
@@ -17,6 +17,7 @@ declare class OrderJobService extends BaseService implements Service.OrderJobCon
|
|
|
17
17
|
jobNotifyFeishuOfMissingTourItineraryInfo(): Promise<void>;
|
|
18
18
|
jobNotifySupplierPendingOrder(): Promise<void>;
|
|
19
19
|
jobNotifySupplierTomorrowOrder(): Promise<void>;
|
|
20
|
+
jobNotifySupplierInvoiceOrder(): Promise<void>;
|
|
20
21
|
}
|
|
21
22
|
declare const orderJobService: OrderJobService;
|
|
22
23
|
export default orderJobService;
|
|
@@ -55,6 +55,9 @@ class OrderJobService extends service_1.default {
|
|
|
55
55
|
jobNotifySupplierTomorrowOrder() {
|
|
56
56
|
return (0, http_1.callApi)(this.getApiUrl(this.jobNotifySupplierTomorrowOrder));
|
|
57
57
|
}
|
|
58
|
+
jobNotifySupplierInvoiceOrder() {
|
|
59
|
+
return (0, http_1.callApi)(this.getApiUrl(this.jobNotifySupplierInvoiceOrder));
|
|
60
|
+
}
|
|
58
61
|
}
|
|
59
62
|
const orderJobService = new OrderJobService();
|
|
60
63
|
exports.default = orderJobService;
|
|
@@ -30,5 +30,7 @@ export declare namespace Service {
|
|
|
30
30
|
jobNotifySupplierPendingOrder(): Promise<void>;
|
|
31
31
|
/** 每天20点通知酒店和一日聚门店查看明日到店的订单 */
|
|
32
32
|
jobNotifySupplierTomorrowOrder(): Promise<void>;
|
|
33
|
+
/** 每天15点通知酒店和一日聚门店处理待开发票的订单 */
|
|
34
|
+
jobNotifySupplierInvoiceOrder(): Promise<void>;
|
|
33
35
|
}
|
|
34
36
|
}
|