@pisell/pisellos 2.2.178 → 2.2.180
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/dist/modules/Customer/index.d.ts +0 -6
- package/dist/modules/Customer/index.js +83 -129
- package/dist/modules/Customer/types.d.ts +0 -2
- package/dist/modules/Discount/index.d.ts +4 -2
- package/dist/modules/Discount/index.js +93 -8
- package/dist/modules/Discount/types.d.ts +7 -1
- package/dist/modules/Order/index.d.ts +17 -87
- package/dist/modules/Order/index.js +501 -1357
- package/dist/modules/Order/types.d.ts +19 -198
- package/dist/modules/Order/types.js +0 -31
- package/dist/modules/Order/utils.d.ts +1 -50
- package/dist/modules/Order/utils.js +32 -261
- package/dist/modules/Quotation/index.d.ts +1 -0
- package/dist/modules/Quotation/index.js +21 -23
- package/dist/modules/Rules/index.d.ts +0 -4
- package/dist/modules/Rules/index.js +10 -26
- package/dist/modules/SalesSummary/index.js +2 -4
- package/dist/modules/SalesSummary/utils.js +7 -21
- package/dist/modules/Schedule/index.js +2 -6
- package/dist/modules/index.d.ts +0 -1
- package/dist/modules/index.js +1 -2
- package/dist/server/index.js +29 -87
- package/dist/server/modules/order/index.d.ts +0 -23
- package/dist/server/modules/order/index.js +46 -123
- package/dist/server/modules/order/types.d.ts +2 -0
- package/dist/server/modules/order/utils/filterOrders.js +6 -20
- package/dist/server/modules/products/index.d.ts +1 -1
- package/dist/server/modules/products/index.js +113 -130
- package/dist/server/modules/schedule/index.js +6 -13
- package/dist/solution/BaseSales/index.d.ts +7 -89
- package/dist/solution/BaseSales/index.js +375 -1494
- package/dist/solution/BaseSales/types.d.ts +1 -67
- package/dist/solution/BaseSales/types.js +1 -3
- package/dist/solution/BaseSales/utils/parseSalesResponse.d.ts +1 -0
- package/dist/solution/BaseSales/utils/parseSalesResponse.js +1 -1
- package/dist/solution/BaseSales/utils/transformBaseProductToOrderProduct.js +16 -68
- package/dist/solution/BaseSales/utils.js +8 -46
- package/dist/solution/BookingByStep/index.d.ts +1 -1
- package/dist/solution/BookingTicket/index.d.ts +1 -133
- package/dist/solution/BookingTicket/index.js +175 -780
- package/dist/solution/BookingTicket/types.d.ts +0 -2
- package/dist/solution/BookingTicket/types.js +0 -3
- package/dist/solution/BookingTicket/utils/cartView.js +2 -4
- package/dist/solution/ScanOrder/index.d.ts +3 -9
- package/dist/solution/ScanOrder/index.js +128 -231
- package/dist/solution/ScanOrder/utils.js +8 -46
- package/dist/solution/ShopDiscount/index.d.ts +1 -0
- package/dist/solution/ShopDiscount/index.js +23 -18
- package/dist/solution/VenueBooking/index.d.ts +9 -5
- package/dist/solution/VenueBooking/index.js +55 -103
- package/dist/solution/VenueBooking/utils/slotMerge.d.ts +0 -4
- package/dist/solution/VenueBooking/utils/slotMerge.js +0 -10
- package/lib/model/strategy/adapter/promotion/index.js +0 -49
- package/lib/modules/Customer/index.d.ts +0 -6
- package/lib/modules/Customer/index.js +11 -26
- package/lib/modules/Customer/types.d.ts +0 -2
- package/lib/modules/Discount/index.d.ts +4 -2
- package/lib/modules/Discount/index.js +63 -8
- package/lib/modules/Discount/types.d.ts +7 -1
- package/lib/modules/Order/index.d.ts +17 -87
- package/lib/modules/Order/index.js +150 -677
- package/lib/modules/Order/types.d.ts +19 -198
- package/lib/modules/Order/types.js +0 -1
- package/lib/modules/Order/utils.d.ts +1 -50
- package/lib/modules/Order/utils.js +22 -229
- package/lib/modules/Quotation/index.d.ts +1 -0
- package/lib/modules/Quotation/index.js +15 -18
- package/lib/modules/Rules/index.d.ts +0 -4
- package/lib/modules/Rules/index.js +14 -22
- package/lib/modules/SalesSummary/index.js +2 -4
- package/lib/modules/SalesSummary/utils.js +7 -21
- package/lib/modules/Schedule/index.js +1 -3
- package/lib/modules/index.d.ts +0 -1
- package/lib/modules/index.js +1 -3
- package/lib/server/index.js +4 -41
- package/lib/server/modules/order/index.d.ts +0 -23
- package/lib/server/modules/order/index.js +14 -46
- package/lib/server/modules/order/types.d.ts +2 -0
- package/lib/server/modules/order/utils/filterOrders.js +4 -12
- package/lib/server/modules/products/index.d.ts +1 -1
- package/lib/server/modules/products/index.js +20 -30
- package/lib/server/modules/schedule/index.js +1 -2
- package/lib/solution/BaseSales/index.d.ts +7 -89
- package/lib/solution/BaseSales/index.js +22 -736
- package/lib/solution/BaseSales/types.d.ts +1 -67
- package/lib/solution/BaseSales/types.js +1 -3
- package/lib/solution/BaseSales/utils/parseSalesResponse.d.ts +1 -0
- package/lib/solution/BaseSales/utils/parseSalesResponse.js +1 -0
- package/lib/solution/BaseSales/utils/transformBaseProductToOrderProduct.js +12 -71
- package/lib/solution/BaseSales/utils.js +6 -46
- package/lib/solution/BookingByStep/index.d.ts +1 -1
- package/lib/solution/BookingTicket/index.d.ts +1 -133
- package/lib/solution/BookingTicket/index.js +8 -352
- package/lib/solution/BookingTicket/types.d.ts +0 -2
- package/lib/solution/BookingTicket/types.js +0 -6
- package/lib/solution/BookingTicket/utils/cartView.js +2 -4
- package/lib/solution/ScanOrder/index.d.ts +3 -9
- package/lib/solution/ScanOrder/index.js +66 -147
- package/lib/solution/ScanOrder/utils.js +6 -46
- package/lib/solution/ShopDiscount/index.d.ts +1 -0
- package/lib/solution/ShopDiscount/index.js +4 -2
- package/lib/solution/VenueBooking/index.d.ts +9 -5
- package/lib/solution/VenueBooking/index.js +14 -50
- package/lib/solution/VenueBooking/utils/slotMerge.d.ts +0 -4
- package/lib/solution/VenueBooking/utils/slotMerge.js +0 -10
- package/package.json +2 -2
- package/dist/modules/BookingContext/index.d.ts +0 -37
- package/dist/modules/BookingContext/index.js +0 -436
- package/dist/modules/BookingContext/types.d.ts +0 -102
- package/dist/modules/BookingContext/types.js +0 -51
- package/dist/modules/BookingContext/utils/buildCacheItemFromOrderLine.d.ts +0 -16
- package/dist/modules/BookingContext/utils/buildCacheItemFromOrderLine.js +0 -193
- package/dist/modules/BookingContext/utils/buildNormalProductCacheItemFromOrderLine.d.ts +0 -8
- package/dist/modules/BookingContext/utils/buildNormalProductCacheItemFromOrderLine.js +0 -137
- package/dist/modules/BookingContext/utils/cacheItemToBookingInput.d.ts +0 -75
- package/dist/modules/BookingContext/utils/cacheItemToBookingInput.js +0 -215
- package/dist/modules/BookingContext/utils/flexible.d.ts +0 -28
- package/dist/modules/BookingContext/utils/flexible.js +0 -56
- package/dist/modules/BookingContext/utils/formatResourceList.d.ts +0 -8
- package/dist/modules/BookingContext/utils/formatResourceList.js +0 -38
- package/dist/modules/BookingContext/utils/index.d.ts +0 -11
- package/dist/modules/BookingContext/utils/index.js +0 -11
- package/dist/modules/BookingContext/utils/noResource.d.ts +0 -13
- package/dist/modules/BookingContext/utils/noResource.js +0 -77
- package/dist/modules/BookingContext/utils/productExtend.d.ts +0 -72
- package/dist/modules/BookingContext/utils/productExtend.js +0 -339
- package/dist/modules/BookingContext/utils/resourceErrors.d.ts +0 -41
- package/dist/modules/BookingContext/utils/resourceErrors.js +0 -74
- package/dist/modules/BookingContext/utils/resourceSelection.d.ts +0 -7
- package/dist/modules/BookingContext/utils/resourceSelection.js +0 -24
- package/dist/modules/BookingContext/utils/resources.d.ts +0 -80
- package/dist/modules/BookingContext/utils/resources.js +0 -486
- package/dist/modules/BookingContext/utils/serviceTimes.d.ts +0 -55
- package/dist/modules/BookingContext/utils/serviceTimes.js +0 -151
- package/dist/modules/BookingContext/utils/timeSlices.d.ts +0 -42
- package/dist/modules/BookingContext/utils/timeSlices.js +0 -100
- package/dist/modules/Order/utils/manualProductDiscount.d.ts +0 -106
- package/dist/modules/Order/utils/manualProductDiscount.js +0 -212
- package/dist/solution/BaseSales/utils/cartPromotion.d.ts +0 -275
- package/dist/solution/BaseSales/utils/cartPromotion.js +0 -1258
- package/dist/solution/BaseSales/utils/quotationPrice.d.ts +0 -7
- package/dist/solution/BaseSales/utils/quotationPrice.js +0 -237
- package/dist/solution/BookingTicket/utils/addProductDecision.d.ts +0 -113
- package/dist/solution/BookingTicket/utils/addProductDecision.js +0 -346
- package/lib/modules/BookingContext/index.d.ts +0 -37
- package/lib/modules/BookingContext/index.js +0 -297
- package/lib/modules/BookingContext/types.d.ts +0 -102
- package/lib/modules/BookingContext/types.js +0 -34
- package/lib/modules/BookingContext/utils/buildCacheItemFromOrderLine.d.ts +0 -16
- package/lib/modules/BookingContext/utils/buildCacheItemFromOrderLine.js +0 -207
- package/lib/modules/BookingContext/utils/buildNormalProductCacheItemFromOrderLine.d.ts +0 -8
- package/lib/modules/BookingContext/utils/buildNormalProductCacheItemFromOrderLine.js +0 -141
- package/lib/modules/BookingContext/utils/cacheItemToBookingInput.d.ts +0 -75
- package/lib/modules/BookingContext/utils/cacheItemToBookingInput.js +0 -198
- package/lib/modules/BookingContext/utils/flexible.d.ts +0 -28
- package/lib/modules/BookingContext/utils/flexible.js +0 -80
- package/lib/modules/BookingContext/utils/formatResourceList.d.ts +0 -8
- package/lib/modules/BookingContext/utils/formatResourceList.js +0 -50
- package/lib/modules/BookingContext/utils/index.d.ts +0 -11
- package/lib/modules/BookingContext/utils/index.js +0 -43
- package/lib/modules/BookingContext/utils/noResource.d.ts +0 -13
- package/lib/modules/BookingContext/utils/noResource.js +0 -90
- package/lib/modules/BookingContext/utils/productExtend.d.ts +0 -72
- package/lib/modules/BookingContext/utils/productExtend.js +0 -283
- package/lib/modules/BookingContext/utils/resourceErrors.d.ts +0 -41
- package/lib/modules/BookingContext/utils/resourceErrors.js +0 -80
- package/lib/modules/BookingContext/utils/resourceSelection.d.ts +0 -7
- package/lib/modules/BookingContext/utils/resourceSelection.js +0 -46
- package/lib/modules/BookingContext/utils/resources.d.ts +0 -80
- package/lib/modules/BookingContext/utils/resources.js +0 -377
- package/lib/modules/BookingContext/utils/serviceTimes.d.ts +0 -55
- package/lib/modules/BookingContext/utils/serviceTimes.js +0 -162
- package/lib/modules/BookingContext/utils/timeSlices.d.ts +0 -42
- package/lib/modules/BookingContext/utils/timeSlices.js +0 -124
- package/lib/modules/Order/utils/manualProductDiscount.d.ts +0 -106
- package/lib/modules/Order/utils/manualProductDiscount.js +0 -207
- package/lib/solution/BaseSales/utils/cartPromotion.d.ts +0 -275
- package/lib/solution/BaseSales/utils/cartPromotion.js +0 -836
- package/lib/solution/BaseSales/utils/quotationPrice.d.ts +0 -7
- package/lib/solution/BaseSales/utils/quotationPrice.js +0 -277
- package/lib/solution/BookingTicket/utils/addProductDecision.d.ts +0 -113
- package/lib/solution/BookingTicket/utils/addProductDecision.js +0 -318
|
@@ -1,198 +0,0 @@
|
|
|
1
|
-
var __create = Object.create;
|
|
2
|
-
var __defProp = Object.defineProperty;
|
|
3
|
-
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
-
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
-
var __getProtoOf = Object.getPrototypeOf;
|
|
6
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
7
|
-
var __export = (target, all) => {
|
|
8
|
-
for (var name in all)
|
|
9
|
-
__defProp(target, name, { get: all[name], enumerable: true });
|
|
10
|
-
};
|
|
11
|
-
var __copyProps = (to, from, except, desc) => {
|
|
12
|
-
if (from && typeof from === "object" || typeof from === "function") {
|
|
13
|
-
for (let key of __getOwnPropNames(from))
|
|
14
|
-
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
15
|
-
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
16
|
-
}
|
|
17
|
-
return to;
|
|
18
|
-
};
|
|
19
|
-
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
20
|
-
// If the importer is in node compatibility mode or this is not an ESM
|
|
21
|
-
// file that has been converted to a CommonJS file using a Babel-
|
|
22
|
-
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
23
|
-
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
24
|
-
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
25
|
-
mod
|
|
26
|
-
));
|
|
27
|
-
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
28
|
-
|
|
29
|
-
// src/modules/BookingContext/utils/cacheItemToBookingInput.ts
|
|
30
|
-
var cacheItemToBookingInput_exports = {};
|
|
31
|
-
__export(cacheItemToBookingInput_exports, {
|
|
32
|
-
cacheItemToBookingInput: () => cacheItemToBookingInput
|
|
33
|
-
});
|
|
34
|
-
module.exports = __toCommonJS(cacheItemToBookingInput_exports);
|
|
35
|
-
var import_dayjs = __toESM(require("dayjs"));
|
|
36
|
-
var import_serviceTimes = require("./serviceTimes");
|
|
37
|
-
var import_resources = require("./resources");
|
|
38
|
-
var import_flexible = require("./flexible");
|
|
39
|
-
function normalizeExtendCapacityForMetadata(capacity) {
|
|
40
|
-
if (!Array.isArray(capacity) || capacity.length === 0)
|
|
41
|
-
return void 0;
|
|
42
|
-
const normalized = capacity.map((item) => {
|
|
43
|
-
if (!item || typeof item !== "object")
|
|
44
|
-
return null;
|
|
45
|
-
if (item.id === void 0 || item.id === null)
|
|
46
|
-
return null;
|
|
47
|
-
const row = {
|
|
48
|
-
id: item.id,
|
|
49
|
-
value: Number(item.value ?? 0)
|
|
50
|
-
};
|
|
51
|
-
if (item.name !== void 0)
|
|
52
|
-
row.name = item.name;
|
|
53
|
-
return row;
|
|
54
|
-
}).filter((item) => item != null);
|
|
55
|
-
return normalized.length > 0 ? normalized : void 0;
|
|
56
|
-
}
|
|
57
|
-
function safeFormat(value, fmt) {
|
|
58
|
-
if (value === void 0 || value === null)
|
|
59
|
-
return void 0;
|
|
60
|
-
const d = (0, import_dayjs.default)(value);
|
|
61
|
-
if (!d.isValid())
|
|
62
|
-
return void 0;
|
|
63
|
-
return d.format(fmt);
|
|
64
|
-
}
|
|
65
|
-
function normalizeTimeString(value) {
|
|
66
|
-
if (value === void 0 || value === null)
|
|
67
|
-
return void 0;
|
|
68
|
-
if (typeof value === "string") {
|
|
69
|
-
const t = value.trim();
|
|
70
|
-
const hhmmFromHhmmss = t.match(/^(\d{1,2}:\d{2}):\d{2}$/);
|
|
71
|
-
if (hhmmFromHhmmss)
|
|
72
|
-
return hhmmFromHhmmss[1];
|
|
73
|
-
if (/^\d{1,2}:\d{2}$/.test(t))
|
|
74
|
-
return t;
|
|
75
|
-
}
|
|
76
|
-
const d = (0, import_dayjs.default)(value);
|
|
77
|
-
if (d.isValid())
|
|
78
|
-
return d.format("HH:mm");
|
|
79
|
-
return void 0;
|
|
80
|
-
}
|
|
81
|
-
function resolveDurationMinutes(value) {
|
|
82
|
-
if (typeof value === "number" && Number.isFinite(value))
|
|
83
|
-
return value;
|
|
84
|
-
if (typeof value !== "string")
|
|
85
|
-
return void 0;
|
|
86
|
-
if (import_flexible.flexibleObj.isFlexible(value))
|
|
87
|
-
return import_flexible.flexibleObj.getValue(value);
|
|
88
|
-
const n = Number(value);
|
|
89
|
-
return Number.isNaN(n) ? void 0 : n;
|
|
90
|
-
}
|
|
91
|
-
function flattenResources(cacheItem) {
|
|
92
|
-
var _a;
|
|
93
|
-
const resourceMap = ((_a = cacheItem == null ? void 0 : cacheItem._extend) == null ? void 0 : _a.resource) || {};
|
|
94
|
-
const topLevelCapacity = (0, import_resources.getSumCapacity)(cacheItem, false);
|
|
95
|
-
const result = [];
|
|
96
|
-
Object.values(resourceMap).forEach((arr) => {
|
|
97
|
-
if (!Array.isArray(arr))
|
|
98
|
-
return;
|
|
99
|
-
arr.forEach((r) => {
|
|
100
|
-
const item = {
|
|
101
|
-
form_id: r == null ? void 0 : r.form_id,
|
|
102
|
-
relation_type: (r == null ? void 0 : r.relation_type) || "form",
|
|
103
|
-
relation_id: r == null ? void 0 : r.relation_id,
|
|
104
|
-
capacity: topLevelCapacity
|
|
105
|
-
};
|
|
106
|
-
item.like_status = (r == null ? void 0 : r.like_status) || "common";
|
|
107
|
-
if ((r == null ? void 0 : r.metadata) !== void 0) {
|
|
108
|
-
item.metadata = { ...r.metadata };
|
|
109
|
-
}
|
|
110
|
-
if ((r == null ? void 0 : r.children) !== void 0)
|
|
111
|
-
item.children = r.children;
|
|
112
|
-
result.push(item);
|
|
113
|
-
});
|
|
114
|
-
});
|
|
115
|
-
return result;
|
|
116
|
-
}
|
|
117
|
-
function deriveResourceSelectType(cacheItem) {
|
|
118
|
-
var _a, _b, _c, _d, _e, _f, _g, _h;
|
|
119
|
-
const localFirst = (_d = (_c = (_b = (_a = cacheItem == null ? void 0 : cacheItem._data) == null ? void 0 : _a.resources) == null ? void 0 : _b[0]) == null ? void 0 : _c.select_type) == null ? void 0 : _d.type;
|
|
120
|
-
if (localFirst)
|
|
121
|
-
return localFirst;
|
|
122
|
-
const productFirst = (_h = (_g = (_f = (_e = cacheItem == null ? void 0 : cacheItem.product_resource) == null ? void 0 : _e.resources) == null ? void 0 : _f[0]) == null ? void 0 : _g.select_type) == null ? void 0 : _h.type;
|
|
123
|
-
if (productFirst)
|
|
124
|
-
return productFirst;
|
|
125
|
-
return void 0;
|
|
126
|
-
}
|
|
127
|
-
function cacheItemToBookingInput(cacheItem, options) {
|
|
128
|
-
var _a, _b;
|
|
129
|
-
if (!cacheItem)
|
|
130
|
-
return { metadata: { holder_id: null } };
|
|
131
|
-
const ext = cacheItem._extend || {};
|
|
132
|
-
const isMultiDay = (0, import_serviceTimes.isMultiDayProduct)(cacheItem) || ext.is_all === 1 || ext.sub_type === "days";
|
|
133
|
-
const isSession = (0, import_serviceTimes.isSessionProduct)(cacheItem);
|
|
134
|
-
const result = {};
|
|
135
|
-
if (isSession && ((_a = ext == null ? void 0 : ext.other) == null ? void 0 : _a.session)) {
|
|
136
|
-
const session = ext.other.session;
|
|
137
|
-
result.start_date = safeFormat(ext.start_date || ext.startDate || session.start_at, "YYYY-MM-DD");
|
|
138
|
-
result.start_time = normalizeTimeString(ext.start_time) || normalizeTimeString(session.start_time) || safeFormat(session.start_at, "HH:mm");
|
|
139
|
-
result.end_date = safeFormat(ext.end_date || ext.endDate || session.end_at, "YYYY-MM-DD");
|
|
140
|
-
result.end_time = normalizeTimeString(ext.end_time) || normalizeTimeString(session.end_time) || safeFormat(session.end_at, "HH:mm");
|
|
141
|
-
} else {
|
|
142
|
-
result.start_date = safeFormat(ext.start_date || ext.startDate, "YYYY-MM-DD");
|
|
143
|
-
result.start_time = normalizeTimeString(ext.start_time) || safeFormat(ext.startDate, "HH:mm");
|
|
144
|
-
result.end_date = safeFormat(ext.end_date || ext.endDate, "YYYY-MM-DD");
|
|
145
|
-
result.end_time = normalizeTimeString(ext.end_time) || safeFormat(ext.endDate, "HH:mm");
|
|
146
|
-
}
|
|
147
|
-
if (isMultiDay) {
|
|
148
|
-
result.is_all = 1;
|
|
149
|
-
result.sub_type = "days";
|
|
150
|
-
result.duration = Number(ext.duration) || (0, import_serviceTimes.getDays)(cacheItem, "days");
|
|
151
|
-
if (result.start_date)
|
|
152
|
-
result.select_date = result.start_date;
|
|
153
|
-
if (result.start_time && (!result.end_time || result.end_time === "00:00")) {
|
|
154
|
-
result.end_time = result.start_time;
|
|
155
|
-
}
|
|
156
|
-
} else {
|
|
157
|
-
result.is_all = 0;
|
|
158
|
-
result.sub_type = ext.sub_type || "minutes";
|
|
159
|
-
const duration = resolveDurationMinutes(ext.duration);
|
|
160
|
-
if (duration !== void 0)
|
|
161
|
-
result.duration = duration;
|
|
162
|
-
}
|
|
163
|
-
result.number = (0, import_resources.getSumCapacity)(cacheItem, true);
|
|
164
|
-
result.resources = flattenResources(cacheItem);
|
|
165
|
-
if (ext.holder !== void 0)
|
|
166
|
-
result.holder = ext.holder;
|
|
167
|
-
if (Array.isArray(ext.relation_forms))
|
|
168
|
-
result.relation_forms = ext.relation_forms;
|
|
169
|
-
result.like_status = ext.like_status || "common";
|
|
170
|
-
if (cacheItem.schedule_event_id !== void 0) {
|
|
171
|
-
result.schedule_event_id = cacheItem.schedule_event_id;
|
|
172
|
-
}
|
|
173
|
-
const metadata = { holder_id: null };
|
|
174
|
-
if (ext.holder_id !== void 0 && ext.holder_id !== null) {
|
|
175
|
-
metadata.holder_id = ext.holder_id;
|
|
176
|
-
}
|
|
177
|
-
if (ext.collect_pax !== void 0)
|
|
178
|
-
metadata.collect_pax = ext.collect_pax;
|
|
179
|
-
const extendCapacity = normalizeExtendCapacityForMetadata(ext.capacity);
|
|
180
|
-
if (extendCapacity) {
|
|
181
|
-
metadata.capacity = extendCapacity;
|
|
182
|
-
} else if (ext.capacity_snapshot !== void 0) {
|
|
183
|
-
metadata.capacity = ext.capacity_snapshot;
|
|
184
|
-
}
|
|
185
|
-
const selectType = deriveResourceSelectType(cacheItem) || ((_b = options == null ? void 0 : options.bookingConfig) == null ? void 0 : _b.resource_select_type);
|
|
186
|
-
if (selectType)
|
|
187
|
-
metadata.resource_select_type = selectType;
|
|
188
|
-
result.metadata = metadata;
|
|
189
|
-
result.schedule_id = 0;
|
|
190
|
-
result.relation_id = 0;
|
|
191
|
-
result.form_id = 0;
|
|
192
|
-
result.relation_type = "";
|
|
193
|
-
return result;
|
|
194
|
-
}
|
|
195
|
-
// Annotate the CommonJS export names for ESM import in node:
|
|
196
|
-
0 && (module.exports = {
|
|
197
|
-
cacheItemToBookingInput
|
|
198
|
-
});
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* 灵活时长(flexible duration)协议工具。
|
|
3
|
-
*
|
|
4
|
-
* info2 用 `flexible_<minutes>` 字符串前缀标记"灵活时长",对外用同名 API 暴露 create / getValue / isFlexible / add。
|
|
5
|
-
* OS 这边一比一搬运,无外部依赖。
|
|
6
|
-
*/
|
|
7
|
-
export declare const flexibleObj: {
|
|
8
|
-
create(num: number): string;
|
|
9
|
-
getValue(str: string | number): number;
|
|
10
|
-
isFlexible(str: string | number | undefined | null): boolean;
|
|
11
|
-
add(current: number | string, duration: number): string | number;
|
|
12
|
-
};
|
|
13
|
-
/**
|
|
14
|
-
* 取 duration 数值(兼容 number / { type, value } / 灵活时长字符串)。
|
|
15
|
-
* 与 info2 `getDuration` 行为等价。
|
|
16
|
-
*/
|
|
17
|
-
/**
|
|
18
|
-
* 商品定义是否为「灵活时长」类型(仅看 product.duration 对象,不把 flexible_423 字符串当类型)。
|
|
19
|
-
* 与 info2 `getDuration({ type: 'flexible' }) === 'flexible'` 判定对齐。
|
|
20
|
-
*/
|
|
21
|
-
export declare function isProductFlexibleDuration(duration: number | string | {
|
|
22
|
-
type: string;
|
|
23
|
-
value: number;
|
|
24
|
-
} | undefined | null): boolean;
|
|
25
|
-
export declare function getDurationValue(duration: number | string | {
|
|
26
|
-
type: string;
|
|
27
|
-
value: number;
|
|
28
|
-
} | undefined | null): number | 'flexible' | undefined;
|
|
@@ -1,80 +0,0 @@
|
|
|
1
|
-
var __defProp = Object.defineProperty;
|
|
2
|
-
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
|
-
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
4
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
5
|
-
var __export = (target, all) => {
|
|
6
|
-
for (var name in all)
|
|
7
|
-
__defProp(target, name, { get: all[name], enumerable: true });
|
|
8
|
-
};
|
|
9
|
-
var __copyProps = (to, from, except, desc) => {
|
|
10
|
-
if (from && typeof from === "object" || typeof from === "function") {
|
|
11
|
-
for (let key of __getOwnPropNames(from))
|
|
12
|
-
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
13
|
-
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
14
|
-
}
|
|
15
|
-
return to;
|
|
16
|
-
};
|
|
17
|
-
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
18
|
-
|
|
19
|
-
// src/modules/BookingContext/utils/flexible.ts
|
|
20
|
-
var flexible_exports = {};
|
|
21
|
-
__export(flexible_exports, {
|
|
22
|
-
flexibleObj: () => flexibleObj,
|
|
23
|
-
getDurationValue: () => getDurationValue,
|
|
24
|
-
isProductFlexibleDuration: () => isProductFlexibleDuration
|
|
25
|
-
});
|
|
26
|
-
module.exports = __toCommonJS(flexible_exports);
|
|
27
|
-
var PREFIX = "flexible_";
|
|
28
|
-
var flexibleObj = {
|
|
29
|
-
create(num) {
|
|
30
|
-
return `${PREFIX}${num}`;
|
|
31
|
-
},
|
|
32
|
-
getValue(str) {
|
|
33
|
-
if (typeof str === "string" && flexibleObj.isFlexible(str)) {
|
|
34
|
-
return Number(str.replace(PREFIX, ""));
|
|
35
|
-
}
|
|
36
|
-
return Number(str);
|
|
37
|
-
},
|
|
38
|
-
isFlexible(str) {
|
|
39
|
-
if (typeof str !== "string")
|
|
40
|
-
return false;
|
|
41
|
-
return str.indexOf(PREFIX) > -1;
|
|
42
|
-
},
|
|
43
|
-
add(current, duration) {
|
|
44
|
-
if (flexibleObj.isFlexible(current)) {
|
|
45
|
-
return flexibleObj.create(flexibleObj.getValue(current) + duration);
|
|
46
|
-
}
|
|
47
|
-
return Number(current) + duration;
|
|
48
|
-
}
|
|
49
|
-
};
|
|
50
|
-
function isProductFlexibleDuration(duration) {
|
|
51
|
-
return Boolean(
|
|
52
|
-
duration && typeof duration === "object" && duration.type === "flexible"
|
|
53
|
-
);
|
|
54
|
-
}
|
|
55
|
-
function getDurationValue(duration) {
|
|
56
|
-
if (duration === void 0 || duration === null)
|
|
57
|
-
return void 0;
|
|
58
|
-
if (typeof duration === "number")
|
|
59
|
-
return duration;
|
|
60
|
-
if (typeof duration === "string") {
|
|
61
|
-
if (flexibleObj.isFlexible(duration))
|
|
62
|
-
return "flexible";
|
|
63
|
-
return Number(duration);
|
|
64
|
-
}
|
|
65
|
-
if (typeof duration === "object") {
|
|
66
|
-
if (duration.type === "minutes")
|
|
67
|
-
return duration.value;
|
|
68
|
-
if (duration.type === "flexible")
|
|
69
|
-
return "flexible";
|
|
70
|
-
if (duration.type === "days")
|
|
71
|
-
return duration.value;
|
|
72
|
-
}
|
|
73
|
-
return void 0;
|
|
74
|
-
}
|
|
75
|
-
// Annotate the CommonJS export names for ESM import in node:
|
|
76
|
-
0 && (module.exports = {
|
|
77
|
-
flexibleObj,
|
|
78
|
-
getDurationValue,
|
|
79
|
-
isProductFlexibleDuration
|
|
80
|
-
});
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* 将 `/schedule/resource/list` 原始数组格式化为 `list + listMap`。
|
|
3
|
-
* 逻辑与 info2 [`getFormatResourceListAndMap`] 对齐:追加无资源占位行、按 id 建 map。
|
|
4
|
-
*/
|
|
5
|
-
export declare function formatResourceListAndMap(data: any[] | null | undefined, _bookingIds?: number[]): {
|
|
6
|
-
list: any[];
|
|
7
|
-
listMap: Record<string, any>;
|
|
8
|
-
};
|
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
var __defProp = Object.defineProperty;
|
|
2
|
-
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
|
-
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
4
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
5
|
-
var __export = (target, all) => {
|
|
6
|
-
for (var name in all)
|
|
7
|
-
__defProp(target, name, { get: all[name], enumerable: true });
|
|
8
|
-
};
|
|
9
|
-
var __copyProps = (to, from, except, desc) => {
|
|
10
|
-
if (from && typeof from === "object" || typeof from === "function") {
|
|
11
|
-
for (let key of __getOwnPropNames(from))
|
|
12
|
-
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
13
|
-
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
14
|
-
}
|
|
15
|
-
return to;
|
|
16
|
-
};
|
|
17
|
-
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
18
|
-
|
|
19
|
-
// src/modules/BookingContext/utils/formatResourceList.ts
|
|
20
|
-
var formatResourceList_exports = {};
|
|
21
|
-
__export(formatResourceList_exports, {
|
|
22
|
-
formatResourceListAndMap: () => formatResourceListAndMap
|
|
23
|
-
});
|
|
24
|
-
module.exports = __toCommonJS(formatResourceList_exports);
|
|
25
|
-
var import_noResource = require("./noResource");
|
|
26
|
-
function formatResourceListAndMap(data, _bookingIds = []) {
|
|
27
|
-
const resourceList = (Array.isArray(data) ? data : []).concat([(0, import_noResource.getNoResource2)({})]);
|
|
28
|
-
const map = resourceList.reduce((prev, item) => {
|
|
29
|
-
if ((item == null ? void 0 : item.id) !== void 0 && (item == null ? void 0 : item.id) !== null) {
|
|
30
|
-
prev[String(item.id)] = item;
|
|
31
|
-
}
|
|
32
|
-
return prev;
|
|
33
|
-
}, {});
|
|
34
|
-
const getCapacity = (item) => item.capacity;
|
|
35
|
-
const list = resourceList.map((item) => {
|
|
36
|
-
const newItem = {
|
|
37
|
-
...item,
|
|
38
|
-
capacity: getCapacity(item)
|
|
39
|
-
};
|
|
40
|
-
if (newItem.id !== void 0 && newItem.id !== null) {
|
|
41
|
-
map[String(newItem.id)] = newItem;
|
|
42
|
-
}
|
|
43
|
-
return newItem;
|
|
44
|
-
});
|
|
45
|
-
return { list, listMap: map };
|
|
46
|
-
}
|
|
47
|
-
// Annotate the CommonJS export names for ESM import in node:
|
|
48
|
-
0 && (module.exports = {
|
|
49
|
-
formatResourceListAndMap
|
|
50
|
-
});
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
export * from './flexible';
|
|
2
|
-
export * from './serviceTimes';
|
|
3
|
-
export * from './timeSlices';
|
|
4
|
-
export * from './noResource';
|
|
5
|
-
export * from './resources';
|
|
6
|
-
export * from './resourceSelection';
|
|
7
|
-
export * from './resourceErrors';
|
|
8
|
-
export * from './productExtend';
|
|
9
|
-
export * from './cacheItemToBookingInput';
|
|
10
|
-
export * from './buildCacheItemFromOrderLine';
|
|
11
|
-
export * from './buildNormalProductCacheItemFromOrderLine';
|
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
var __defProp = Object.defineProperty;
|
|
2
|
-
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
|
-
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
4
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
5
|
-
var __copyProps = (to, from, except, desc) => {
|
|
6
|
-
if (from && typeof from === "object" || typeof from === "function") {
|
|
7
|
-
for (let key of __getOwnPropNames(from))
|
|
8
|
-
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
9
|
-
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
10
|
-
}
|
|
11
|
-
return to;
|
|
12
|
-
};
|
|
13
|
-
var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
|
|
14
|
-
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
15
|
-
|
|
16
|
-
// src/modules/BookingContext/utils/index.ts
|
|
17
|
-
var utils_exports = {};
|
|
18
|
-
module.exports = __toCommonJS(utils_exports);
|
|
19
|
-
__reExport(utils_exports, require("./flexible"), module.exports);
|
|
20
|
-
__reExport(utils_exports, require("./serviceTimes"), module.exports);
|
|
21
|
-
__reExport(utils_exports, require("./timeSlices"), module.exports);
|
|
22
|
-
__reExport(utils_exports, require("./noResource"), module.exports);
|
|
23
|
-
__reExport(utils_exports, require("./resources"), module.exports);
|
|
24
|
-
__reExport(utils_exports, require("./resourceSelection"), module.exports);
|
|
25
|
-
__reExport(utils_exports, require("./resourceErrors"), module.exports);
|
|
26
|
-
__reExport(utils_exports, require("./productExtend"), module.exports);
|
|
27
|
-
__reExport(utils_exports, require("./cacheItemToBookingInput"), module.exports);
|
|
28
|
-
__reExport(utils_exports, require("./buildCacheItemFromOrderLine"), module.exports);
|
|
29
|
-
__reExport(utils_exports, require("./buildNormalProductCacheItemFromOrderLine"), module.exports);
|
|
30
|
-
// Annotate the CommonJS export names for ESM import in node:
|
|
31
|
-
0 && (module.exports = {
|
|
32
|
-
...require("./flexible"),
|
|
33
|
-
...require("./serviceTimes"),
|
|
34
|
-
...require("./timeSlices"),
|
|
35
|
-
...require("./noResource"),
|
|
36
|
-
...require("./resources"),
|
|
37
|
-
...require("./resourceSelection"),
|
|
38
|
-
...require("./resourceErrors"),
|
|
39
|
-
...require("./productExtend"),
|
|
40
|
-
...require("./cacheItemToBookingInput"),
|
|
41
|
-
...require("./buildCacheItemFromOrderLine"),
|
|
42
|
-
...require("./buildNormalProductCacheItemFromOrderLine")
|
|
43
|
-
});
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* 「无资源」占位资源行的数据骨架。
|
|
3
|
-
*
|
|
4
|
-
* 与 info2 [`booking/mock.ts#getNoResource2`] 一比一对齐,区别仅在于:
|
|
5
|
-
* - `main_field / room_name / labelText` 三个 i18n 文案字段在 OS 这边**置空**,
|
|
6
|
-
* 调用方(UI)在 `id === 0` 时自行渲染本地化的「无资源 / No resource」。
|
|
7
|
-
*
|
|
8
|
-
* 用途:`getResourceByIds` 在拼装 `optional_resource` 列表时,会在末尾 concat 一行此占位,
|
|
9
|
-
* 让用户能选择「不指定资源」。
|
|
10
|
-
*/
|
|
11
|
-
export declare function getNoResource2(other?: {
|
|
12
|
-
form_id?: number | string;
|
|
13
|
-
} & Record<string, any>): any;
|
|
@@ -1,90 +0,0 @@
|
|
|
1
|
-
var __defProp = Object.defineProperty;
|
|
2
|
-
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
|
-
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
4
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
5
|
-
var __export = (target, all) => {
|
|
6
|
-
for (var name in all)
|
|
7
|
-
__defProp(target, name, { get: all[name], enumerable: true });
|
|
8
|
-
};
|
|
9
|
-
var __copyProps = (to, from, except, desc) => {
|
|
10
|
-
if (from && typeof from === "object" || typeof from === "function") {
|
|
11
|
-
for (let key of __getOwnPropNames(from))
|
|
12
|
-
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
13
|
-
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
14
|
-
}
|
|
15
|
-
return to;
|
|
16
|
-
};
|
|
17
|
-
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
18
|
-
|
|
19
|
-
// src/modules/BookingContext/utils/noResource.ts
|
|
20
|
-
var noResource_exports = {};
|
|
21
|
-
__export(noResource_exports, {
|
|
22
|
-
getNoResource2: () => getNoResource2
|
|
23
|
-
});
|
|
24
|
-
module.exports = __toCommonJS(noResource_exports);
|
|
25
|
-
function getNoResource2(other) {
|
|
26
|
-
return {
|
|
27
|
-
form_tag: null,
|
|
28
|
-
policy: 148,
|
|
29
|
-
partyroom_package: { type: "product_all" },
|
|
30
|
-
sort: "2",
|
|
31
|
-
status: "active",
|
|
32
|
-
description: "",
|
|
33
|
-
media: "",
|
|
34
|
-
main_field: "",
|
|
35
|
-
subtitle: "",
|
|
36
|
-
room_name: "",
|
|
37
|
-
labelText: "",
|
|
38
|
-
form_record_id: 0,
|
|
39
|
-
item_type: "resources",
|
|
40
|
-
form_id: 0,
|
|
41
|
-
id: 0,
|
|
42
|
-
form_resource_sort: 0,
|
|
43
|
-
form_title: "",
|
|
44
|
-
capacity: 999999,
|
|
45
|
-
form: {
|
|
46
|
-
id: 0,
|
|
47
|
-
shop_id: 0,
|
|
48
|
-
title: "",
|
|
49
|
-
navigation_display: 1,
|
|
50
|
-
button: "",
|
|
51
|
-
describe: "",
|
|
52
|
-
status: "published",
|
|
53
|
-
resource_sort: 0,
|
|
54
|
-
code: "resources",
|
|
55
|
-
type: "manual",
|
|
56
|
-
version: 1,
|
|
57
|
-
setting: null,
|
|
58
|
-
created_at: "2000-01-01 00:00:00",
|
|
59
|
-
updated_at: "2000-01-01 00:00:00"
|
|
60
|
-
},
|
|
61
|
-
times: [
|
|
62
|
-
{
|
|
63
|
-
keys: "noResource2-placeholder",
|
|
64
|
-
schedule_id: 0,
|
|
65
|
-
item_type: "resources",
|
|
66
|
-
item_id: 0,
|
|
67
|
-
start_date: "2000-01-01",
|
|
68
|
-
end_date: "2300-01-01",
|
|
69
|
-
start_time: "00:00",
|
|
70
|
-
end_time: "23:59",
|
|
71
|
-
is_all: 1,
|
|
72
|
-
max_participants_type: "custom-limit",
|
|
73
|
-
max_participants_limit: 0,
|
|
74
|
-
relation_type: "form",
|
|
75
|
-
start_at: "2000-01-01 00:00",
|
|
76
|
-
end_at: "2300-01-05 23:59",
|
|
77
|
-
is_blocked: 0,
|
|
78
|
-
blocked_times: [],
|
|
79
|
-
order_event_count: 0,
|
|
80
|
-
unique: "noResource2-unique",
|
|
81
|
-
event_list: []
|
|
82
|
-
}
|
|
83
|
-
],
|
|
84
|
-
...other || {}
|
|
85
|
-
};
|
|
86
|
-
}
|
|
87
|
-
// Annotate the CommonJS export names for ESM import in node:
|
|
88
|
-
0 && (module.exports = {
|
|
89
|
-
getNoResource2
|
|
90
|
-
});
|
|
@@ -1,72 +0,0 @@
|
|
|
1
|
-
import { getSumCapacity } from './resources';
|
|
2
|
-
import { TimeSlicesResult, TimeSlice, DurationSlice } from './timeSlices';
|
|
3
|
-
/**
|
|
4
|
-
* 上下文(与 info2 state.bookingConfig / state.service / state.date 一一对应)。
|
|
5
|
-
*
|
|
6
|
-
* 设计原则:所有助手函数都通过 context 显式拿数据,**不读 mini-redux**,
|
|
7
|
-
* 让 OS 这层完全可在 Node 单测下运行(dayjs 在 Node 也是纯函数)。
|
|
8
|
-
*/
|
|
9
|
-
export interface BookingCalcContext {
|
|
10
|
-
/** 来自 `/core/board/management/config` 的整套配置;常用路径见 sliceTimeSlices / appointmentTimingPreference。 */
|
|
11
|
-
bookingConfig?: any;
|
|
12
|
-
/** 资源 origin map(id → resource origin)。 */
|
|
13
|
-
resourcesOriginMap?: Record<string, any>;
|
|
14
|
-
/** 资源全集列表(display_scope=all 时用)。 */
|
|
15
|
-
resourcesOrigin?: any[];
|
|
16
|
-
/** 当前选择的日期(dayjs 或 string)。 */
|
|
17
|
-
date?: any;
|
|
18
|
-
/** 上一个服务行(getServiceStartTimeAndEndTime 拼接续接 start_time 用)。可缺省。 */
|
|
19
|
-
previousService?: any;
|
|
20
|
-
/** 日历选中的资源 id(替代 info2 sessionStorage.serviceParams.resource_id)。 */
|
|
21
|
-
resourceIdFromCalendar?: number;
|
|
22
|
-
/** 资源自动分派开关(替代 info2 localStorage 'resource-auto-allocation');默认全开。 */
|
|
23
|
-
isAutoAllocationOn?: (formId: any) => boolean;
|
|
24
|
-
/** 当前预设开始时间(替代 info2 sessionStorage.serviceParams.start_date 取 HH:mm)。 */
|
|
25
|
-
presetStartTime?: string;
|
|
26
|
-
/** 店铺打烊时间(替代 info2 localStorage shopOpeningHours),默认 23:59。 */
|
|
27
|
-
shopOpeningHours?: string;
|
|
28
|
-
}
|
|
29
|
-
/** 从 BookingContext.date 提取 HH:mm(仅当日期带有效时分时)。 */
|
|
30
|
-
export declare function derivePresetStartTimeFromDate(date: any): string | undefined;
|
|
31
|
-
/**
|
|
32
|
-
* 时间切片对象(含灵活时长选项)。与 info2 `getTimeObj` 等价。
|
|
33
|
-
*/
|
|
34
|
-
export declare function getTimeObj(params: {
|
|
35
|
-
cacheItem: any;
|
|
36
|
-
useStartTime?: string;
|
|
37
|
-
useDuration?: number | string;
|
|
38
|
-
ctx: BookingCalcContext;
|
|
39
|
-
}): TimeSlicesResult & {
|
|
40
|
-
timeSlices: TimeSlice[];
|
|
41
|
-
durationSlicesBasedOnTime: DurationSlice[];
|
|
42
|
-
};
|
|
43
|
-
/**
|
|
44
|
-
* 计算商品行 _extend(包含 start_time / endDate / duration / start_date / end_date / sub_type 等)。
|
|
45
|
-
* 与 info2 `utilsByBooking.ts#getServiceStartTimeAndEndTime` 等价;显著差异:
|
|
46
|
-
* - 不读 `state.service.value` / `mini-redux`,由 ctx.previousService 显式注入。
|
|
47
|
-
* - 不读 `sessionStorage.serviceParams`,由 ctx.presetStartTime / ctx.resourceIdFromCalendar 注入。
|
|
48
|
-
* - cacheItem.isCustomItem → 直接返回 `{ duration: null }`。
|
|
49
|
-
*/
|
|
50
|
-
export declare function getServiceStartTimeAndEndTime(params: {
|
|
51
|
-
cacheItem: any;
|
|
52
|
-
timeObj: TimeSlicesResult;
|
|
53
|
-
ctx: BookingCalcContext;
|
|
54
|
-
}): any;
|
|
55
|
-
/**
|
|
56
|
-
* 综合:把 cacheItem 拼装出完整的 _extend / _data(资源 / 容量 / timeObj),并标记 autoClose。
|
|
57
|
-
* 与 info2 `service/addService/utils.tsx#getProductExtend` 等价;剥 React `console.time` / JSX。
|
|
58
|
-
*
|
|
59
|
-
* 入参 ctx 必须至少给:bookingConfig / resourcesOriginMap / resourcesOrigin / date。
|
|
60
|
-
*/
|
|
61
|
-
export declare function getProductExtend(params: {
|
|
62
|
-
cacheItem: any;
|
|
63
|
-
ctx: BookingCalcContext;
|
|
64
|
-
isDisabledTime?: boolean;
|
|
65
|
-
}): any;
|
|
66
|
-
/**
|
|
67
|
-
* 是否可自动关闭弹窗(不需要用户进 EditService 抽屉)。
|
|
68
|
-
* 与 info2 `service/addService/utils.tsx#getIsAutoClose` 等价;
|
|
69
|
-
* `getAutoAllocationStorage` 抽象为入参 `isAutoAllocationOn(formId)`。
|
|
70
|
-
*/
|
|
71
|
-
export declare function getIsAutoClose(cacheItem: any, isAutoAllocationOn: (formId: any) => boolean): boolean;
|
|
72
|
-
export { getSumCapacity };
|