@pisell/pisellos 2.2.112 → 2.2.113
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.
|
@@ -561,13 +561,16 @@ export var SalesImpl = /*#__PURE__*/function (_BaseModule) {
|
|
|
561
561
|
return _this3.normalizeMatchedBooking(current, deviceCurrent, booking);
|
|
562
562
|
}).filter(function (booking) {
|
|
563
563
|
return Boolean(booking);
|
|
564
|
-
}).filter(function (booking) {
|
|
565
|
-
return !booking.status;
|
|
566
564
|
}).sort(function (left, right) {
|
|
567
565
|
var leftStartAt = _this3.toBookingDateTime(left.start_date, left.start_time).valueOf();
|
|
568
566
|
var rightStartAt = _this3.toBookingDateTime(right.start_date, right.start_time).valueOf();
|
|
569
567
|
return leftStartAt - rightStartAt;
|
|
570
|
-
}); //
|
|
568
|
+
}); // 过滤掉没有 status 的 booking
|
|
569
|
+
normalizedBookings = normalizedBookings.filter(function (booking) {
|
|
570
|
+
return !booking.status;
|
|
571
|
+
});
|
|
572
|
+
|
|
573
|
+
// 建立 resourceId -> bookings[] 倒排索引,加速资源匹配
|
|
571
574
|
bookingMap = new Map();
|
|
572
575
|
normalizedBookings.forEach(function (booking) {
|
|
573
576
|
if (!Array.isArray(booking.resources)) return;
|
|
@@ -598,7 +601,7 @@ export var SalesImpl = /*#__PURE__*/function (_BaseModule) {
|
|
|
598
601
|
list: list
|
|
599
602
|
});
|
|
600
603
|
return _context3.abrupt("return", list);
|
|
601
|
-
case
|
|
604
|
+
case 21:
|
|
602
605
|
case "end":
|
|
603
606
|
return _context3.stop();
|
|
604
607
|
}
|
|
@@ -409,11 +409,12 @@ var SalesImpl = class extends import_BaseModule.BaseModule {
|
|
|
409
409
|
const resourceList = ((_a = resourceResponse == null ? void 0 : resourceResponse.data) == null ? void 0 : _a.list) ?? [];
|
|
410
410
|
if (!Array.isArray(resourceList) || resourceList.length === 0)
|
|
411
411
|
return [];
|
|
412
|
-
|
|
412
|
+
let normalizedBookings = bookingList.map((booking) => this.normalizeMatchedBooking(current, deviceCurrent, booking)).filter((booking) => Boolean(booking)).sort((left, right) => {
|
|
413
413
|
const leftStartAt = this.toBookingDateTime(left.start_date, left.start_time).valueOf();
|
|
414
414
|
const rightStartAt = this.toBookingDateTime(right.start_date, right.start_time).valueOf();
|
|
415
415
|
return leftStartAt - rightStartAt;
|
|
416
416
|
});
|
|
417
|
+
normalizedBookings = normalizedBookings.filter((booking) => !booking.status);
|
|
417
418
|
const bookingMap = /* @__PURE__ */ new Map();
|
|
418
419
|
normalizedBookings.forEach((booking) => {
|
|
419
420
|
if (!Array.isArray(booking.resources))
|