@be-link/pos-cli-nodejs 0.0.165 → 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
|
}
|
package/types.d.ts
CHANGED
|
@@ -42,6 +42,8 @@ export interface IPositiveOrder {
|
|
|
42
42
|
categoryTwo: string;
|
|
43
43
|
/** 快照:商品归属门店ID */
|
|
44
44
|
storeId: string;
|
|
45
|
+
/** 快照:商品归属供应商ID */
|
|
46
|
+
supplierId: string;
|
|
45
47
|
/** 快照:交易主商品ID */
|
|
46
48
|
itemId: string;
|
|
47
49
|
/** 交易主SKUID(改期场景会更新该字段) */
|
|
@@ -169,6 +171,8 @@ export interface IPositiveItemInfo {
|
|
|
169
171
|
featuredTags: string[];
|
|
170
172
|
/** 门店id */
|
|
171
173
|
storeId?: string;
|
|
174
|
+
/** 供应商id */
|
|
175
|
+
supplierId?: string;
|
|
172
176
|
/** 头图 */
|
|
173
177
|
headPics: string[];
|
|
174
178
|
/** 视频 */
|