@vendit-dev/thirdparty-adapters 0.7.28 → 0.7.30

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.
@@ -121,12 +121,15 @@ var getMealConditionText = function (_mealCondition) {
121
121
  function groupByRoomWithTotalCounts(roomAndRoomRateInformations, totalRoomCount) {
122
122
  var groupedRooms = Array(totalRoomCount).fill([]);
123
123
  return roomAndRoomRateInformations.reduce(function (acc, curr) {
124
- var RoomTypeCode = curr.RoomInformation.RoomTypeCode, RoomDate = curr.RoomRateInformation.RoomDate;
124
+ var RoomTypeCode = curr.RoomInformation.RoomTypeCode, RoomRateInformation = curr.RoomRateInformation;
125
+ var roomRateInformation = (0, tl_lincoln_types_1.makeArray)(RoomRateInformation);
125
126
  var existingRooms = acc.find(function (groupedRoom) {
126
127
  var _a, _b;
127
- return groupedRoom.length > 0
128
- && ((_b = (_a = groupedRoom[0]) === null || _a === void 0 ? void 0 : _a.RoomInformation) === null || _b === void 0 ? void 0 : _b.RoomTypeCode) === RoomTypeCode
129
- && !groupedRoom.some(function (room) { return room.RoomRateInformation.RoomDate === RoomDate; });
128
+ return groupedRoom.length > 0 &&
129
+ ((_b = (_a = groupedRoom[0]) === null || _a === void 0 ? void 0 : _a.RoomInformation) === null || _b === void 0 ? void 0 : _b.RoomTypeCode) === RoomTypeCode &&
130
+ !groupedRoom.some(function (room) {
131
+ return (0, tl_lincoln_types_1.makeArray)(room.RoomRateInformation).some(function (r) { return r.RoomDate === roomRateInformation[0].RoomDate; });
132
+ });
130
133
  });
131
134
  if (existingRooms) {
132
135
  existingRooms.push(curr);
@@ -199,61 +202,81 @@ function formatPhoneNumber(text) {
199
202
  return onlyNumberText;
200
203
  }
201
204
  var makePaymentInfo = function (_a) {
202
- var datas = _a.datas, basicInformation = _a.basicInformation, reservationType = _a.reservationType, OptionList = _a.OptionList, PointDiscountList = _a.PointDiscountList;
203
- var paymentInfo = datas.reduce(function (paymentInput, _a) {
204
- var _b, _c, _d, _e;
205
- var RoomInfo = _a.RoomInformation, RoomRateInformation = _a.RoomRateInformation;
206
- var roomAmount = (_b = RoomRateInformation === null || RoomRateInformation === void 0 ? void 0 : RoomRateInformation.TotalPerRoomRate) !== null && _b !== void 0 ? _b : (((RoomRateInformation === null || RoomRateInformation === void 0 ? void 0 : RoomRateInformation.PerMaleRate) || 0)
207
- * (RoomInfo.RoomPaxMaleCount || 0)
208
- + ((RoomRateInformation === null || RoomRateInformation === void 0 ? void 0 : RoomRateInformation.PerFemaleRate)
209
- || (RoomRateInformation === null || RoomRateInformation === void 0 ? void 0 : RoomRateInformation.PerMaleRate)
210
- || 0)
211
- * (RoomInfo.RoomPaxFemaleCount || 0)
212
- || 0);
213
- paymentInput.amount += roomAmount;
214
- (_c = paymentInput.segments) === null || _c === void 0 ? void 0 : _c.push({
215
- amount: roomAmount,
216
- servedAt: RoomRateInformation.RoomDate,
217
- referenceType: 'RESERVATION',
218
- referenceSubType: reservationType,
219
- });
220
- if (basicInformation.MealCondition !== 'Other'
221
- && basicInformation.MealCondition !== 'WithoutMeal') {
222
- paymentInput.amount += (RoomRateInformation === null || RoomRateInformation === void 0 ? void 0 : RoomRateInformation.TotalPerRoomServiceFee) || 0;
223
- (_d = paymentInput.segments) === null || _d === void 0 ? void 0 : _d.push({
224
- amount: (RoomRateInformation === null || RoomRateInformation === void 0 ? void 0 : RoomRateInformation.TotalPerRoomServiceFee) || 0,
225
- servedAt: RoomRateInformation.RoomDate,
226
- referenceType: 'SERVICE',
227
- referenceSubType: (0, exports.formattedNameForMealCondition)(basicInformation.MealCondition, basicInformation.SpecificMealCondition),
228
- });
229
- }
230
- if ((OptionList === null || OptionList === void 0 ? void 0 : OptionList.length) > 0) {
231
- (_e = paymentInput.segments) === null || _e === void 0 ? void 0 : _e.push.apply(_e, OptionList.map(function (option) { return ({
232
- amount: 0,
233
- servedAt: option.OptionDate,
234
- referenceType: 'SERVICE',
235
- referenceSubType: option.Name,
236
- }); }));
237
- }
238
- return Object.assign(paymentInput, {
205
+ var datas = _a.datas, basicInformation = _a.basicInformation, reservationType = _a.reservationType, OptionList = _a.OptionList, PointDiscountList = _a.PointDiscountList, basicRateInformation = _a.basicRateInformation;
206
+ var paymentInfo = (basicRateInformation === null || basicRateInformation === void 0 ? void 0 : basicRateInformation.Payment) === 'Hotel Collect'
207
+ ? {
208
+ amount: basicRateInformation.TotalAccommodationCharge || 0,
209
+ commissionAmount: basicRateInformation.TotalAccommodationCommissionAmount || 0,
239
210
  reservationType: reservationType,
211
+ segments: [],
212
+ externalRoomTypeCode: '',
213
+ }
214
+ : datas.reduce(function (paymentInput, _a) {
215
+ var _b, _c, _d, _e, _f, _g, _h, _j, _k;
216
+ var RoomInfo = _a.RoomInformation, RoomRateInformation = _a.RoomRateInformation;
217
+ var roomRateInformations = (0, tl_lincoln_types_1.makeArray)(RoomRateInformation);
218
+ var roomAmount = roomRateInformations.reduce(function (acc, curr) {
219
+ return (acc +
220
+ (curr.TotalPerRoomRate ||
221
+ 0 ||
222
+ (curr.PerMaleRate || 0) * (RoomInfo.RoomPaxMaleCount || 0) +
223
+ (curr.PerFemaleRate || curr.PerMaleRate || 0) *
224
+ (RoomInfo.RoomPaxFemaleCount || 0) ||
225
+ 0));
226
+ }, 0);
227
+ paymentInput.amount += roomAmount;
228
+ for (var _i = 0, roomRateInformations_1 = roomRateInformations; _i < roomRateInformations_1.length; _i++) {
229
+ var roomRateInformation = roomRateInformations_1[_i];
230
+ if (roomRateInformation.TotalPerRoomRate) {
231
+ (_b = paymentInput.segments) === null || _b === void 0 ? void 0 : _b.push({
232
+ amount: roomRateInformation.TotalPerRoomRate,
233
+ servedAt: roomRateInformation.RoomDate,
234
+ referenceType: 'RESERVATION',
235
+ referenceSubType: reservationType,
236
+ });
237
+ }
238
+ }
239
+ if (basicInformation.MealCondition !== 'Other' &&
240
+ basicInformation.MealCondition !== 'WithoutMeal') {
241
+ for (var _l = 0, roomRateInformations_2 = roomRateInformations; _l < roomRateInformations_2.length; _l++) {
242
+ var roomRateInformation = roomRateInformations_2[_l];
243
+ paymentInput.amount +=
244
+ roomRateInformation.TotalPerRoomServiceFee || 0;
245
+ (_c = paymentInput.segments) === null || _c === void 0 ? void 0 : _c.push({
246
+ amount: roomRateInformation.TotalPerRoomServiceFee || 0,
247
+ servedAt: roomRateInformation.RoomDate,
248
+ referenceType: 'SERVICE',
249
+ referenceSubType: (0, exports.formattedNameForMealCondition)(basicInformation.MealCondition, basicInformation.SpecificMealCondition),
250
+ });
251
+ }
252
+ }
253
+ if ((OptionList === null || OptionList === void 0 ? void 0 : OptionList.length) > 0) {
254
+ (_d = paymentInput.segments) === null || _d === void 0 ? void 0 : _d.push.apply(_d, OptionList.map(function (option) { return ({
255
+ amount: 0,
256
+ servedAt: option.OptionDate,
257
+ referenceType: 'SERVICE',
258
+ referenceSubType: option.Name,
259
+ }); }));
260
+ }
261
+ return Object.assign(paymentInput, {
262
+ reservationType: reservationType,
263
+ type: 'platform',
264
+ externalRoomTypeCode: (_e = RoomInfo.NetRmTypeGroupCode) !== null && _e !== void 0 ? _e : (_g = (_f = datas[0]) === null || _f === void 0 ? void 0 : _f.RoomInformation) === null || _g === void 0 ? void 0 : _g.NetRmTypeGroupCode,
265
+ externalRoomTypeName: (_h = RoomInfo.RoomTypeName) !== null && _h !== void 0 ? _h : (_k = (_j = datas[0]) === null || _j === void 0 ? void 0 : _j.RoomInformation) === null || _k === void 0 ? void 0 : _k.RoomTypeName,
266
+ useStartAt: "".concat(roomRateInformations[0].RoomDate).concat((basicInformation === null || basicInformation === void 0 ? void 0 : basicInformation.CheckInTime)
267
+ ? " ".concat(basicInformation === null || basicInformation === void 0 ? void 0 : basicInformation.CheckInTime)
268
+ : ''),
269
+ });
270
+ }, {
271
+ amount: 0,
272
+ commissionAmount: 0,
273
+ reservationType: 'lodge',
274
+ segments: [],
275
+ externalRoomTypeCode: '',
276
+ externalRoomTypeName: '',
240
277
  type: 'platform',
241
- externalRoomTypeCode: datas[0].RoomInformation.NetRmTypeGroupCode,
242
- externalRoomTypeName: datas[0].RoomInformation.RoomTypeName,
243
- useStartAt: "".concat(datas[0].RoomRateInformation.RoomDate).concat((basicInformation === null || basicInformation === void 0 ? void 0 : basicInformation.CheckInTime)
244
- ? " ".concat(basicInformation === null || basicInformation === void 0 ? void 0 : basicInformation.CheckInTime)
245
- : ''),
278
+ useStartAt: '',
246
279
  });
247
- }, {
248
- amount: 0,
249
- commissionAmount: 0,
250
- reservationType: 'lodge',
251
- segments: [],
252
- externalRoomTypeCode: '',
253
- externalRoomTypeName: '',
254
- type: 'platform',
255
- useStartAt: '',
256
- });
257
280
  if (PointDiscountList && (PointDiscountList === null || PointDiscountList === void 0 ? void 0 : PointDiscountList.length) > 0) {
258
281
  paymentInfo.amount -= PointDiscountList.reduce(function (acc, point) { return acc + point.PointsDiscount; }, 0);
259
282
  // auto segment 로 생성되도록 처리
@@ -273,10 +296,11 @@ var refineReservationData = function (infoTravelXML) {
273
296
  * settlementDiv가 없는 경우에는 지불된 것으로 간주
274
297
  * settlementDiv가 있는 경우, 현장결제, 지정없음, 부분결제가 아닌 경우에는 지불된 것으로 간주
275
298
  */
276
- var isFullyPaid = typeof settlementDiv === 'undefined'
277
- || (settlementDiv !== tl_lincoln_types_1.SettlementDiv.ON_SITE_PAYMENT
278
- && settlementDiv !== tl_lincoln_types_1.SettlementDiv.NONE
279
- && settlementDiv !== tl_lincoln_types_1.SettlementDiv.PARTIAL_SETTLEMENT);
299
+ var isFullyPaid = BasicRateInformation.Payment !== 'Hotel Collect' &&
300
+ (typeof settlementDiv === 'undefined' ||
301
+ (settlementDiv !== tl_lincoln_types_1.SettlementDiv.ON_SITE_PAYMENT &&
302
+ settlementDiv !== tl_lincoln_types_1.SettlementDiv.NONE &&
303
+ settlementDiv !== tl_lincoln_types_1.SettlementDiv.PARTIAL_SETTLEMENT));
280
304
  var roomAndRoomRateInformations = (0, tl_lincoln_types_1.makeArray)(RoomAndRoomRateInformation);
281
305
  var groupedRooms = groupByRoomWithTotalCounts(roomAndRoomRateInformations, BasicInformation.TotalRoomCount);
282
306
  var status = getReservationStatusFromDataClassification(TransactionType.DataClassification);
@@ -297,9 +321,9 @@ var refineReservationData = function (infoTravelXML) {
297
321
  name: BasicInformation.GuestOrGroupNameKanjiName,
298
322
  email: Member === null || Member === void 0 ? void 0 : Member.UserMailAddr,
299
323
  reservedBy: SalesOfficeInformation === null || SalesOfficeInformation === void 0 ? void 0 : SalesOfficeInformation.SalesOfficeCompanyName,
300
- memo: "".concat((Member === null || Member === void 0 ? void 0 : Member.UserKana)
301
- || (Member === null || Member === void 0 ? void 0 : Member.UserName)
302
- || "".concat(BasicInformation.GuestOrGroupNameKanjiName), " ").concat(BasicInformation === null || BasicInformation === void 0 ? void 0 : BasicInformation.PackagePlanName, "\n").concat((OtherInfo === null || OtherInfo === void 0 ? void 0 : OtherInfo.GuestRequest)
324
+ memo: "".concat((Member === null || Member === void 0 ? void 0 : Member.UserKana) ||
325
+ (Member === null || Member === void 0 ? void 0 : Member.UserName) ||
326
+ "".concat(BasicInformation.GuestOrGroupNameKanjiName), " ").concat(BasicInformation === null || BasicInformation === void 0 ? void 0 : BasicInformation.PackagePlanName, "\n").concat((OtherInfo === null || OtherInfo === void 0 ? void 0 : OtherInfo.GuestRequest)
303
327
  ? "[\uC694\uCCAD\uC0AC\uD56D]\n".concat(OtherInfo.GuestRequest)
304
328
  : '', "\n").concat((OtherInfo === null || OtherInfo === void 0 ? void 0 : OtherInfo.AdditionalInformation)
305
329
  ? "[\uCD94\uAC00\uC815\uBCF4]\n".concat(OtherInfo.AdditionalInformation)
@@ -318,21 +342,22 @@ var refineReservationData = function (infoTravelXML) {
318
342
  useStartAt: useStartAt,
319
343
  platform: tl_lincoln_ota_1.TL_LINCOLN_TO_VENDIT_OTA_MAP[(SalesOfficeInformation === null || SalesOfficeInformation === void 0 ? void 0 : SalesOfficeInformation.SalesOfficeCompanyName) || 'ANONYMOUS'] || (SalesOfficeInformation === null || SalesOfficeInformation === void 0 ? void 0 : SalesOfficeInformation.SalesOfficeCompanyName),
320
344
  externalPlatformCode: SalesOfficeInformation === null || SalesOfficeInformation === void 0 ? void 0 : SalesOfficeInformation.SalesOfficeCode,
321
- externalPlatformName: (SalesOfficeInformation === null || SalesOfficeInformation === void 0 ? void 0 : SalesOfficeInformation.SalesOfficeCompanyName)
322
- || (SalesOfficeInformation === null || SalesOfficeInformation === void 0 ? void 0 : SalesOfficeInformation.SalesOfficeName),
345
+ externalPlatformName: (SalesOfficeInformation === null || SalesOfficeInformation === void 0 ? void 0 : SalesOfficeInformation.SalesOfficeCompanyName) ||
346
+ (SalesOfficeInformation === null || SalesOfficeInformation === void 0 ? void 0 : SalesOfficeInformation.SalesOfficeName),
323
347
  },
324
348
  reservations: groupedRooms.map(function (key, index) {
325
349
  var _a, _b, _c, _d;
326
350
  var datas = groupedRooms[index];
327
351
  var roomsSortedByDate = datas.sort(function (a, b) {
328
- return new Date(a.RoomRateInformation.RoomDate).valueOf()
329
- - new Date(b.RoomRateInformation.RoomDate).valueOf();
352
+ return new Date((0, tl_lincoln_types_1.makeArray)(a.RoomRateInformation)[0].RoomDate).valueOf() -
353
+ new Date((0, tl_lincoln_types_1.makeArray)(b.RoomRateInformation)[0].RoomDate).valueOf();
330
354
  });
331
- var reservationType = Number(Allotment.UseDiv) === 1
332
- && BasicInformation.CheckInDate === BasicInformation.CheckOutDate
355
+ var reservationType = Number(Allotment.UseDiv) === 1 &&
356
+ BasicInformation.CheckInDate === BasicInformation.CheckOutDate
333
357
  ? 'rent'
334
358
  : 'lodge';
335
- var CheckInDate = roomsSortedByDate[0].RoomRateInformation.RoomDate;
359
+ var CheckInDate = (0, tl_lincoln_types_1.makeArray)(roomsSortedByDate[0].RoomRateInformation)[0]
360
+ .RoomDate;
336
361
  var CheckOutDate = (_a = (0, moment_1.default)(CheckInDate)
337
362
  .add(BasicInformation === null || BasicInformation === void 0 ? void 0 : BasicInformation.Nights, 'days')) === null || _a === void 0 ? void 0 : _a.format('YYYY-MM-DD');
338
363
  var OptionList = Option ? (0, tl_lincoln_types_1.makeArray)(Option) : [];
@@ -343,6 +368,7 @@ var refineReservationData = function (infoTravelXML) {
343
368
  reservationType: reservationType,
344
369
  OptionList: OptionList,
345
370
  PointDiscountList: PointDiscountList,
371
+ basicRateInformation: BasicRateInformation,
346
372
  });
347
373
  return {
348
374
  useStartAt: "".concat(CheckInDate).concat((BasicInformation === null || BasicInformation === void 0 ? void 0 : BasicInformation.CheckInTime)
@@ -352,19 +378,19 @@ var refineReservationData = function (infoTravelXML) {
352
378
  ? " ".concat(BasicInformation === null || BasicInformation === void 0 ? void 0 : BasicInformation.CheckOutTime)
353
379
  : ''),
354
380
  sleeps: isGroupReservation
355
- ? (BasicInformation.GrandTotalPaxCount || 0)
356
- / BasicInformation.TotalRoomCount
357
- || ((_b = datas[0].RoomInformation) === null || _b === void 0 ? void 0 : _b.PerRoomPaxCount)
381
+ ? (BasicInformation.GrandTotalPaxCount || 0) /
382
+ BasicInformation.TotalRoomCount ||
383
+ ((_b = datas[0].RoomInformation) === null || _b === void 0 ? void 0 : _b.PerRoomPaxCount)
358
384
  : (_d = (_c = roomsSortedByDate[0]) === null || _c === void 0 ? void 0 : _c.RoomInformation) === null || _d === void 0 ? void 0 : _d.PerRoomPaxCount,
359
- guestName: "".concat(BasicInformation.GuestOrGroupNameSingleByte
360
- || BasicInformation.GuestOrGroupNameKanjiName
361
- || 'Anonymous').concat(isGroupReservation ? " ".concat(index + 1) : ''),
385
+ guestName: "".concat(BasicInformation.GuestOrGroupNameKanjiName ||
386
+ BasicInformation.GuestOrGroupNameSingleByte ||
387
+ 'Anonymous').concat(isGroupReservation ? " ".concat(index + 1) : ''),
362
388
  externalPlatformCode: SalesOfficeInformation === null || SalesOfficeInformation === void 0 ? void 0 : SalesOfficeInformation.SalesOfficeCode,
363
- externalPlatformName: (SalesOfficeInformation === null || SalesOfficeInformation === void 0 ? void 0 : SalesOfficeInformation.SalesOfficeCompanyName)
364
- || (SalesOfficeInformation === null || SalesOfficeInformation === void 0 ? void 0 : SalesOfficeInformation.SalesOfficeName),
389
+ externalPlatformName: (SalesOfficeInformation === null || SalesOfficeInformation === void 0 ? void 0 : SalesOfficeInformation.SalesOfficeCompanyName) ||
390
+ (SalesOfficeInformation === null || SalesOfficeInformation === void 0 ? void 0 : SalesOfficeInformation.SalesOfficeName),
365
391
  cmsOtaNumber: "".concat(BasicInformation.TravelAgencyBookingNumber).concat(isGroupReservation ? "v".concat(index + 1) : ''),
366
- cmsProductName: roomsSortedByDate[0].RoomInformation.RoomTypeName
367
- || BasicInformation.PackagePlanName,
392
+ cmsProductName: roomsSortedByDate[0].RoomInformation.RoomTypeName ||
393
+ BasicInformation.PackagePlanName,
368
394
  platform: tl_lincoln_ota_1.TL_LINCOLN_TO_VENDIT_OTA_MAP[(SalesOfficeInformation === null || SalesOfficeInformation === void 0 ? void 0 : SalesOfficeInformation.SalesOfficeCompanyName) || 'ANONYMOUS'] || (SalesOfficeInformation === null || SalesOfficeInformation === void 0 ? void 0 : SalesOfficeInformation.SalesOfficeCompanyName),
369
395
  otaNumber: "".concat(tl_lincoln_ota_1.TL_LINCOLN_TO_VENDIT_OTA_MAP[(SalesOfficeInformation === null || SalesOfficeInformation === void 0 ? void 0 : SalesOfficeInformation.SalesOfficeCompanyName) || 'ANONYMOUS'] || (SalesOfficeInformation === null || SalesOfficeInformation === void 0 ? void 0 : SalesOfficeInformation.SalesOfficeCompanyName), "|").concat("".concat(BasicInformation.TravelAgencyBookingNumber)),
370
396
  externalRoomTypeCode: roomsSortedByDate[0].RoomInformation.NetRmTypeGroupCode,
@@ -372,10 +398,10 @@ var refineReservationData = function (infoTravelXML) {
372
398
  type: reservationType,
373
399
  phone: formatPhoneNumber("".concat((Member === null || Member === void 0 ? void 0 : Member.UserTel) || Basic.PhoneNumber || '')),
374
400
  status: status,
375
- memoContent: "".concat((Member === null || Member === void 0 ? void 0 : Member.UserKana)
376
- || (Member === null || Member === void 0 ? void 0 : Member.UserName)
377
- || "".concat(BasicInformation.GuestOrGroupNameKanjiName), " ").concat(roomsSortedByDate[0].RoomInformation.RoomTypeName
378
- || BasicInformation.PackagePlanName, "\n").concat((OtherInfo === null || OtherInfo === void 0 ? void 0 : OtherInfo.GuestRequest)
401
+ memoContent: "".concat((Member === null || Member === void 0 ? void 0 : Member.UserKana) ||
402
+ (Member === null || Member === void 0 ? void 0 : Member.UserName) ||
403
+ "".concat(BasicInformation.GuestOrGroupNameKanjiName), " ").concat(roomsSortedByDate[0].RoomInformation.RoomTypeName ||
404
+ BasicInformation.PackagePlanName, "\n").concat((OtherInfo === null || OtherInfo === void 0 ? void 0 : OtherInfo.GuestRequest)
379
405
  ? "[\uC694\uCCAD\uC0AC\uD56D]\n".concat(OtherInfo.GuestRequest)
380
406
  : '', "\n").concat((OtherInfo === null || OtherInfo === void 0 ? void 0 : OtherInfo.AdditionalInformation)
381
407
  ? "[\uCD94\uAC00\uC815\uBCF4]\n".concat(OtherInfo.AdditionalInformation)
@@ -385,8 +411,8 @@ var refineReservationData = function (infoTravelXML) {
385
411
  paymentInfo: Object.assign(paymentInfo, !isFullyPaid && {
386
412
  amount: (DepositList === null || DepositList === void 0 ? void 0 : DepositList.reduce(function (acc, deposit) { return acc + ((deposit === null || deposit === void 0 ? void 0 : deposit.DepositAmount) || 0); }, 0)) || 0,
387
413
  isFullyPaid: false,
388
- outstandingAmount: paymentInfo.amount
389
- - ((DepositList === null || DepositList === void 0 ? void 0 : DepositList.reduce(function (acc, deposit) { return acc + ((deposit === null || deposit === void 0 ? void 0 : deposit.DepositAmount) || 0); }, 0)) || 0),
414
+ outstandingAmount: paymentInfo.amount -
415
+ ((DepositList === null || DepositList === void 0 ? void 0 : DepositList.reduce(function (acc, deposit) { return acc + ((deposit === null || deposit === void 0 ? void 0 : deposit.DepositAmount) || 0); }, 0)) || 0),
390
416
  }),
391
417
  };
392
418
  }),
@@ -151,6 +151,9 @@ var TlLincoln = /** @class */ (function () {
151
151
  }
152
152
  _b = result['S:Envelope']['S:Body']['ns2:executeResponse'].return, rmTypeList = _b.rmTypeList, netRmTypeGroupList = _b.netRmTypeGroupList, netAgtRmTypeList = _b.netAgtRmTypeList;
153
153
  aggregateRoomTypeGroups = function (rmTypeCode) {
154
+ if (!netRmTypeGroupList) {
155
+ return [];
156
+ }
154
157
  var groups = (0, tl_lincoln_types_1.isArray)(netRmTypeGroupList)
155
158
  ? netRmTypeGroupList.filter(function (group) { return group.rmTypeCode === rmTypeCode; })
156
159
  : [netRmTypeGroupList];
@@ -228,7 +228,7 @@ export interface RoomAndRoomRateInformation {
228
228
  PlanGroupCode?: string | number;
229
229
  RepresentativePersonName?: string;
230
230
  };
231
- RoomRateInformation: RoomRateInformation & {
231
+ RoomRateInformation: SingleOrArray<RoomRateInformation & {
232
232
  PerMaleRate?: number;
233
233
  PerFemaleRate?: number;
234
234
  RoomRatePaxMaleCount?: number;
@@ -243,7 +243,7 @@ export interface RoomAndRoomRateInformation {
243
243
  RoomRateChildB50Request?: string;
244
244
  RoomRateChildC30Request?: string;
245
245
  RoomRateChildDNoneRequest?: string;
246
- };
246
+ }>;
247
247
  GuestInformation?: GuestInformation;
248
248
  }
249
249
  export interface RoomRateInformation {
@@ -293,7 +293,7 @@ export interface RoomAndGuestInformation {
293
293
  }
294
294
  export interface RoomAndGuestList {
295
295
  RoomInformation: RoomInformation;
296
- RoomRateInformation: RoomRateInformation;
296
+ RoomRateInformation: SingleOrArray<RoomRateInformation>;
297
297
  GuestInformation?: GuestInformation;
298
298
  }
299
299
  export interface GuestInformation {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vendit-dev/thirdparty-adapters",
3
- "version": "0.7.28",
3
+ "version": "0.7.30",
4
4
  "description": "Third party adapters between v-cloud and other PMS/CMS providers.",
5
5
  "main": "lib/index.js",
6
6
  "scripts": {
package/test.json CHANGED
@@ -1,664 +1,58 @@
1
1
  [
2
2
  {
3
3
  "type": "CREATED",
4
- "externalId": "1102711709",
4
+ "externalId": "1116603917",
5
5
  "externalRevision": "1",
6
6
  "guestOrGroupInfo": {
7
7
  "isGroupReservation": false,
8
- "name": "SHUXUAN ZHUO",
9
- "reservedBy": "Agoda",
10
- "memo": "SHUXUAN ZHUO Room Only\n[요청사항]\nNo Meals\n[Requests]HighFloor, QuietRoom\n[추가정보]\n[Benefits]Free WiFi\n[ExtraBed]0 [Nationality]China [Promotion]Limited Time Offer. Price includes 20% discount! [PromotionId]205069018 [CancelCode]3D100P_100P\n성인 2명\n[결제정보]\n지불수단: Bank transfer\n\n수수료율: 정보 없음\n수수료 총액: 정보 없음\n[할인정보]\n",
11
- "status": "reserved",
12
- "phone": "8619864818553",
13
- "useExpireAt": "2025-07-18",
14
- "useStartAt": "2025-07-14",
15
- "platform": "AGODA",
16
- "externalPlatformCode": 2540,
17
- "externalPlatformName": "Agoda"
18
- },
19
- "reservations": [
20
- {
21
- "useStartAt": "2025-07-14",
22
- "useExpireAt": "2025-07-18",
23
- "sleeps": 2,
24
- "guestName": "SHUXUAN ZHUO",
25
- "externalPlatformCode": 2540,
26
- "externalPlatformName": "Agoda",
27
- "cmsOtaNumber": "1621520541",
28
- "cmsProductName": "Standard Double",
29
- "platform": "AGODA",
30
- "otaNumber": "AGODA|1621520541",
31
- "externalRoomTypeCode": 1,
32
- "externalRoomTypeName": "Standard Double",
33
- "type": "lodge",
34
- "phone": "8619864818553",
35
- "status": "RESERVED",
36
- "memoContent": "SHUXUAN ZHUO Standard Double\n[요청사항]\nNo Meals\n[Requests]HighFloor, QuietRoom\n[추가정보]\n[Benefits]Free WiFi\n[ExtraBed]0 [Nationality]China [Promotion]Limited Time Offer. Price includes 20% discount! [PromotionId]205069018 [CancelCode]3D100P_100P\n[인원정보]\n성인 2명\n",
37
- "paymentInfo": {
38
- "amount": 195500,
39
- "commissionAmount": 0,
40
- "reservationType": "lodge",
41
- "segments": [
42
- {
43
- "amount": 46750,
44
- "servedAt": "2025-07-14",
45
- "referenceType": "RESERVATION",
46
- "referenceSubType": "lodge"
47
- },
48
- {
49
- "amount": 46750,
50
- "servedAt": "2025-07-15",
51
- "referenceType": "RESERVATION",
52
- "referenceSubType": "lodge"
53
- },
54
- {
55
- "amount": 51000,
56
- "servedAt": "2025-07-16",
57
- "referenceType": "RESERVATION",
58
- "referenceSubType": "lodge"
59
- },
60
- {
61
- "amount": 51000,
62
- "servedAt": "2025-07-17",
63
- "referenceType": "RESERVATION",
64
- "referenceSubType": "lodge"
65
- }
66
- ],
67
- "externalRoomTypeCode": 1,
68
- "externalRoomTypeName": "Standard Double",
69
- "type": "platform",
70
- "useStartAt": "2025-07-14"
71
- }
72
- }
73
- ],
74
- "rawData": "{\"?xml\":\"\",\"AllotmentBookingReport\":{\"TransactionType\":{\"DataFrom\":\"FromTravelAgency\",\"DataClassification\":\"NewBookReport\",\"DataID\":\"1102711709-1\",\"SystemDate\":\"2025-06-17\"},\"AccommodationInformation\":{\"AccommodationName\":\"Cotice The Bridge\",\"AccommodationCode\":59296741},\"SalesOfficeInformation\":{\"SalesOfficeCompanyName\":\"Agoda\",\"SalesOfficeName\":\"Package + International Rate + Beds Network - Maxi\",\"SalesOfficeCode\":2540},\"BasicInformation\":{\"TravelAgencyBookingNumber\":1621520541,\"TravelAgencyBookingDate\":\"2025-06-17\",\"TravelAgencyBookingTime\":\"12:11:30\",\"TravelAgencyReportNumber\":3235,\"GuestOrGroupNameSingleByte\":\"SHUXUAN ZHUO\",\"GuestOrGroupNameKanjiName\":\"SHUXUAN ZHUO\",\"CheckInDate\":\"2025-07-14\",\"CheckOutDate\":\"2025-07-18\",\"Nights\":4,\"TotalRoomCount\":1,\"GrandTotalPaxCount\":2,\"TotalPaxMaleCount\":2,\"TotalChildA70Count\":0,\"PackagePlanName\":\"Room Only\",\"PackagePlanCode\":18548907,\"MealCondition\":\"WithoutMeal\",\"SpecificMealCondition\":\"None Specified\",\"OtherServiceInformation\":\"Method of settlement: Travel company settlement\\nPayment:Bank transfer\\nNo Meals\\n[Requests]HighFloor, QuietRoom\\n[Benefits]Free WiFi\\n[ExtraBed]0 [Nationality]China [Promotion]Limited Time Offer. Price includes 20% discount! [PromotionId]205069018 [CancelCode]3D100P_100P\"},\"BasicRateInformation\":{\"RoomRateOrPersonalRate\":\"RoomRate\",\"TaxServiceFee\":\"IncludingServiceAndTax\",\"Payment\":\"Bank transfer\",\"TotalAccommodationCharge\":195500},\"RoomAndGuestInformation\":{\"RoomAndGuestList\":[{\"RoomInformation\":{\"RoomTypeCode\":894199466,\"RoomTypeName\":\"Standard Double\",\"PerRoomPaxCount\":2,\"RoomPaxMaleCount\":2},\"RoomRateInformation\":{\"RoomDate\":\"2025-07-14\",\"TotalPerRoomRate\":46750},\"GuestInformation\":{\"GuestInformationList\":{\"GuestNameSingleByte\":\"SHUXUAN ZHUO\",\"GuestKanjiName\":\"SHUXUAN ZHUO\",\"GuestCountry\":\"China\"}}},{\"RoomInformation\":{\"RoomTypeCode\":894199466,\"RoomTypeName\":\"Standard Double\",\"PerRoomPaxCount\":2,\"RoomPaxMaleCount\":2},\"RoomRateInformation\":{\"RoomDate\":\"2025-07-15\",\"TotalPerRoomRate\":46750}},{\"RoomInformation\":{\"RoomTypeCode\":894199466,\"RoomTypeName\":\"Standard Double\",\"PerRoomPaxCount\":2,\"RoomPaxMaleCount\":2},\"RoomRateInformation\":{\"RoomDate\":\"2025-07-16\",\"TotalPerRoomRate\":51000}},{\"RoomInformation\":{\"RoomTypeCode\":894199466,\"RoomTypeName\":\"Standard Double\",\"PerRoomPaxCount\":2,\"RoomPaxMaleCount\":2},\"RoomRateInformation\":{\"RoomDate\":\"2025-07-17\",\"TotalPerRoomRate\":51000}}]},\"RisaplsInformation\":{\"RisaplsCommonInformation\":{\"Basic\":{\"SalesOfficeCompanyCode\":46,\"TelegramDiv\":\"\",\"RisaplsDataID\":\"\",\"RisaplsTelegramNumber\":\"\",\"TelegramData\":\"NewBook Agoda SNT-NET 06-17 12:11 (46)\\nBooking No.: 1621520541 NO.00003235 Cotice The Bridge(59296741)\\nGuest:\\n SHUXUAN ZHUO TEL:86 19864818553\\n SHUXUAN ZHUO\\n Mail:1az5p41r0dgtgcekz4z5cmehdq90@agoda-messaging.com\\n\\nRate Name:Room Only(18548907)\\nCheck-In:2025.07.14 4night No Meals incl. service charge and taxes\\nTransportaion: Check-in time:\\nNo. of Guests: 2Person Details:(Adults)2Person\\nNo. of Rooms : 1Room\\n07.14 894199466- 1Room (Standard Double) 46,750KRW\\n Adults 2Person\\n07.15 894199466- 1Room (Standard Double) 46,750KRW\\n Adults 2Person\\n07.16 894199466- 1Room (Standard Double) 51,000KRW\\n Adults 2Person\\n07.17 894199466- 1Room (Standard Double) 51,000KRW\\n Adults 2Person\\n Accommodation cost : 195,500KRW\\n\\n Total Cost : 195,500KRW\\n [ Amounts claimed ] : 0KRW\\n ----------------------------------------------------------------\\n Method of settlement: Travel company settlement\\nPayment :Bank transfer\\n\\nRemarks:\\nNo Meals\\n[Requests]HighFloor, QuietRoom\\n[Benefits]Free WiFi\\n[ExtraBed]0 [Nationality]China [Promotion]Limited Time Offer. Price includes 20% discount! [PromotionId]205069018 [CancelCode]3D100P_100P\\n\\nSales channels:\\nPackage + International Rate + Beds Network - Maxi(2540) TEL\\n\\nGuest Information:\\n1Room SHUXUAN ZHUO\\n---\",\"PhoneNumber\":\"86 19864818553\",\"Email\":\"1az5p41r0dgtgcekz4z5cmehdq90@agoda-messaging.com\",\"TotalPaxManCount\":2,\"Version\":2,\"AccommodationId\":\"M43028\"},\"Allotment\":{\"AssignDiv\":0,\"GenderDiv\":0,\"HandleDiv\":1,\"RsvUserDiv\":0,\"UseDiv\":1},\"RoomAndRoomRateInformation\":[{\"RoomInformation\":{\"RoomTypeCode\":894199466,\"RoomTypeName\":\"Standard Double\",\"PerRoomPaxCount\":2,\"RoomPaxMaleCount\":2,\"RoomTypeAgent\":46,\"RoomFrame\":\"--\",\"NetRmTypeGroupCode\":1,\"PlanGroupCode\":2},\"RoomRateInformation\":{\"RoomDate\":\"2025-07-14\",\"TotalPerRoomRate\":46750,\"RoomRatePaxMaleCount\":2},\"GuestInformation\":{\"GuestInformationList\":{\"GuestNameSingleByte\":\"SHUXUAN ZHUO\",\"GuestKanjiName\":\"SHUXUAN ZHUO\",\"GuestCountry\":\"China\"}}},{\"RoomInformation\":{\"RoomTypeCode\":894199466,\"RoomTypeName\":\"Standard Double\",\"PerRoomPaxCount\":2,\"RoomPaxMaleCount\":2,\"RoomTypeAgent\":46,\"RoomFrame\":\"--\",\"NetRmTypeGroupCode\":1,\"PlanGroupCode\":2},\"RoomRateInformation\":{\"RoomDate\":\"2025-07-15\",\"TotalPerRoomRate\":46750,\"RoomRatePaxMaleCount\":2}},{\"RoomInformation\":{\"RoomTypeCode\":894199466,\"RoomTypeName\":\"Standard Double\",\"PerRoomPaxCount\":2,\"RoomPaxMaleCount\":2,\"RoomTypeAgent\":46,\"RoomFrame\":\"--\",\"NetRmTypeGroupCode\":1,\"PlanGroupCode\":2},\"RoomRateInformation\":{\"RoomDate\":\"2025-07-16\",\"TotalPerRoomRate\":51000,\"RoomRatePaxMaleCount\":2}},{\"RoomInformation\":{\"RoomTypeCode\":894199466,\"RoomTypeName\":\"Standard Double\",\"PerRoomPaxCount\":2,\"RoomPaxMaleCount\":2,\"RoomTypeAgent\":46,\"RoomFrame\":\"--\",\"NetRmTypeGroupCode\":1,\"PlanGroupCode\":2},\"RoomRateInformation\":{\"RoomDate\":\"2025-07-17\",\"TotalPerRoomRate\":51000,\"RoomRatePaxMaleCount\":2}}],\"OtherInfo\":{\"GuestRequest\":\"No Meals\\n[Requests]HighFloor, QuietRoom\",\"AdditionalInformation\":\"[Benefits]Free WiFi\\n[ExtraBed]0 [Nationality]China [Promotion]Limited Time Offer. Price includes 20% discount! [PromotionId]205069018 [CancelCode]3D100P_100P\"}},\"AgentNativeInformation\":{\"Extend\":{\"AmountClaimed\":0},\"Extendmytrip\":{\"SettlementDiv\":6}}}}}"
75
- },
76
- {
77
- "type": "CANCELLED",
78
- "externalId": "1101423326",
79
- "externalRevision": "2",
80
- "guestOrGroupInfo": {
81
- "isGroupReservation": false,
82
- "name": "XU RUOHUI",
8
+ "name": "JUNG ARIN",
83
9
  "reservedBy": "Trip.com Group(new)",
84
- "memo": "XU/RUOHUI Room only - 1478531354\n[요청사항]\nP:\n[추가정보]\nGuest Names: XU RUOHUI; XU CHENZHISHAN\n성인 2명\n[결제정보]\n지불수단: 정보 없음\n\n수수료율: 정보 없음\n수수료 총액: 정보 없음\n[할인정보]\n",
10
+ "memo": "JUNG/ARIN 스위트 - 1478366334\n[요청사항]\nQuiet room preferred;Good view;Away from elevator;Basic Deal;For contacting the guest please dial: +82269178710(verification code:797800)or +827079157125(verification code:797800);Please contact guest by system generated mail (jejucenterpoint.337smd7gml930rt@guest.trip.com), preferred language: (Korean);This booking was made through Trip.com, a Ctrip Group brand.;Customer phone number:82-1062719614;Contact guest by Korean; Contact Trip.com via hotelSupport@trip.com\n[추가정보]\nGuest Names: JUNG ARIN; JUNG HOEGYEONG; JUNG WOOHYEOK; LEE JAESUN\n성인 2명, 아동 2명\n[결제정보]\n지불수단: 정보 없음\n\n수수료율: 정보 없음\n수수료 총액: 정보 없음\n[할인정보]\n",
85
11
  "status": "reserved",
86
12
  "phone": "",
87
- "useExpireAt": "2025-08-31",
88
- "useStartAt": "2025-08-28",
13
+ "useExpireAt": "2025-08-07",
14
+ "useStartAt": "2025-08-06 15:00:00",
89
15
  "platform": "TRIPDOTCOM",
90
16
  "externalPlatformCode": "2Z",
91
17
  "externalPlatformName": "Trip.com Group(new)"
92
18
  },
93
19
  "reservations": [
94
20
  {
95
- "useStartAt": "2025-08-28",
96
- "useExpireAt": "2025-08-31",
97
- "sleeps": 2,
98
- "guestName": "XU RUOHUI",
21
+ "useStartAt": "2025-08-06 15:00:00",
22
+ "useExpireAt": "2025-08-07",
23
+ "sleeps": 4,
24
+ "guestName": "JUNG ARIN",
99
25
  "externalPlatformCode": "2Z",
100
26
  "externalPlatformName": "Trip.com Group(new)",
101
- "cmsOtaNumber": "1128140013795314",
102
- "cmsProductName": "Suite - 522937061",
27
+ "cmsOtaNumber": "1400819165251503",
28
+ "cmsProductName": "Suite - 515064650",
103
29
  "platform": "TRIPDOTCOM",
104
- "otaNumber": "TRIPDOTCOM|1128140013795314",
30
+ "otaNumber": "TRIPDOTCOM|1400819165251503",
105
31
  "externalRoomTypeCode": 4,
106
- "externalRoomTypeName": "Suite - 522937061",
107
- "type": "lodge",
108
- "phone": "",
109
- "status": "CANCELLED",
110
- "memoContent": "XU/RUOHUI Suite - 522937061\n[요청사항]\nP:\n[추가정보]\nGuest Names: XU RUOHUI; XU CHENZHISHAN\n[인원정보]\n성인 2명\n",
111
- "paymentInfo": {
112
- "amount": 478889,
113
- "commissionAmount": 0,
114
- "reservationType": "lodge",
115
- "segments": [
116
- {
117
- "amount": 144427,
118
- "servedAt": "2025-08-28",
119
- "referenceType": "RESERVATION",
120
- "referenceSubType": "lodge"
121
- },
122
- {
123
- "amount": 167231,
124
- "servedAt": "2025-08-29",
125
- "referenceType": "RESERVATION",
126
- "referenceSubType": "lodge"
127
- },
128
- {
129
- "amount": 167231,
130
- "servedAt": "2025-08-30",
131
- "referenceType": "RESERVATION",
132
- "referenceSubType": "lodge"
133
- }
134
- ],
135
- "externalRoomTypeCode": 4,
136
- "externalRoomTypeName": "Suite - 522937061",
137
- "type": "platform",
138
- "useStartAt": "2025-08-28"
139
- }
140
- }
141
- ],
142
- "rawData": "{\"?xml\":\"\",\"AllotmentBookingReport\":{\"TransactionType\":{\"DataFrom\":\"FromTravelAgency\",\"DataClassification\":\"CancellationReport\",\"DataID\":\"1101423326-2\",\"SystemDate\":\"2025-06-17\"},\"AccommodationInformation\":{\"AccommodationName\":\"Brooklyn Blues Hotel\",\"AccommodationCode\":127915158},\"SalesOfficeInformation\":{\"SalesOfficeCompanyName\":\"Trip.com Group(new)\",\"SalesOfficeName\":\"Trip.com Group(new)\",\"SalesOfficeCode\":\"2Z\",\"SalesOfficeEmail\":\"hotelsupport@trip.com\",\"SalesOfficePhoneNumber\":8651365066224},\"BasicInformation\":{\"TravelAgencyBookingNumber\":1128140013795314,\"TravelAgencyBookingDate\":\"2025-06-17\",\"TravelAgencyBookingTime\":\"12:12:41\",\"TravelAgencyReportNumber\":1780,\"GuestOrGroupNameSingleByte\":\"XU RUOHUI\",\"GuestOrGroupNameKanjiName\":\"XU RUOHUI\",\"CheckInDate\":\"2025-08-28\",\"CheckOutDate\":\"2025-08-31\",\"Nights\":3,\"TotalRoomCount\":1,\"GrandTotalPaxCount\":2,\"TotalPaxMaleCount\":2,\"PackagePlanName\":\"Room only - 1478531354\",\"PackagePlanCode\":1478531354,\"MealCondition\":\"WithoutMeal\",\"SpecificMealCondition\":\"None Specified\",\"OtherServiceInformation\":\"Method of settlement: Travel company settlement\\nP:\\nGuest Names: XU RUOHUI; XU CHENZHISHAN\"},\"BasicRateInformation\":{\"RoomRateOrPersonalRate\":\"RoomRate\",\"TaxServiceFee\":\"IncludingServiceAndTax\",\"TotalAccommodationCharge\":478889},\"RoomAndGuestInformation\":{\"RoomAndGuestList\":[{\"RoomInformation\":{\"RoomTypeCode\":522937061,\"RoomTypeName\":\"Suite - 522937061\",\"PerRoomPaxCount\":2,\"RoomPaxMaleCount\":2},\"RoomRateInformation\":{\"RoomDate\":\"2025-08-28\",\"TotalPerRoomRate\":144427}},{\"RoomInformation\":{\"RoomTypeCode\":522937061,\"RoomTypeName\":\"Suite - 522937061\",\"PerRoomPaxCount\":2,\"RoomPaxMaleCount\":2},\"RoomRateInformation\":{\"RoomDate\":\"2025-08-29\",\"TotalPerRoomRate\":167231}},{\"RoomInformation\":{\"RoomTypeCode\":522937061,\"RoomTypeName\":\"Suite - 522937061\",\"PerRoomPaxCount\":2,\"RoomPaxMaleCount\":2},\"RoomRateInformation\":{\"RoomDate\":\"2025-08-30\",\"TotalPerRoomRate\":167231}}]},\"RisaplsInformation\":{\"RisaplsCommonInformation\":{\"Basic\":{\"SalesOfficeCompanyCode\":\"2Z\",\"TelegramDiv\":\"\",\"RisaplsDataID\":\"\",\"RisaplsTelegramNumber\":\"\",\"TelegramData\":\"Cancellation Trip.com Group(new) SNT-NET 06-17 12:12 (2Z)\\nBooking No.: 1128140013795314 NO.00001780 Brooklyn Blues Hotel(127915158)\\nGuest:\\n XU RUOHUI TEL:\\n XU RUOHUI\\n\\nMember:\\n XU/RUOHUI\\n XU/RUOHUI\\n\\nRate Name:Room only - 1478531354(1478531354)\\nCheck-In:2025.08.28 3night No Meals incl. service charge and taxes\\nTransportaion: Check-in time:\\nNo. of Guests: 2Person Details:(Adults)2Person\\nNo. of Rooms : 1Room\\n08.28 522937061 (Suite - 522937061) 144,427KRW Guest:XU RUOHUI\\n Adults 2Person\\n08.29 522937061 (Suite - 522937061) 167,231KRW Guest:XU CHENZHISHAN\\n Adults 2Person\\n08.30 522937061 (Suite - 522937061) 167,231KRW Guest:XU RUOHUI\\n Adults 2Person\\n Accommodation cost : 478,889KRW\\n\\n Total Cost : 478,889KRW\\n [ Amounts claimed ] : 0KRW\\n ----------------------------------------------------------------\\n Method of settlement: Travel company settlement\\nRemarks:\\nP:\\nGuest Names: XU RUOHUI; XU CHENZHISHAN\\n\\nSales channels:\\nTrip.com Group(new)(2Z) TEL 008651365066224\\nMail hotelsupport@trip.com\\n\\nRoom cost will be covered by Trip.com Group according to the contract.\\n---\",\"TotalPaxManCount\":2,\"Version\":2,\"AccommodationId\":\"R74294\"},\"Allotment\":{\"AssignDiv\":1,\"GenderDiv\":0,\"HandleDiv\":1,\"RsvUserDiv\":1,\"UseDiv\":1},\"RoomAndRoomRateInformation\":[{\"RoomInformation\":{\"RoomTypeCode\":522937061,\"RoomTypeName\":\"Suite - 522937061\",\"PerRoomPaxCount\":2,\"RoomPaxMaleCount\":2,\"RoomTypeAgent\":\"2Z\",\"RoomFrame\":\"--\",\"NetRmTypeGroupCode\":4,\"PlanGroupCode\":4,\"RepresentativePersonName\":\"XU RUOHUI\"},\"RoomRateInformation\":{\"RoomDate\":\"2025-08-28\",\"TotalPerRoomRate\":144427,\"RoomRatePaxMaleCount\":2}},{\"RoomInformation\":{\"RoomTypeCode\":522937061,\"RoomTypeName\":\"Suite - 522937061\",\"PerRoomPaxCount\":2,\"RoomPaxMaleCount\":2,\"RoomTypeAgent\":\"2Z\",\"RoomFrame\":\"--\",\"NetRmTypeGroupCode\":4,\"PlanGroupCode\":4,\"RepresentativePersonName\":\"XU CHENZHISHAN\"},\"RoomRateInformation\":{\"RoomDate\":\"2025-08-29\",\"TotalPerRoomRate\":167231,\"RoomRatePaxMaleCount\":2}},{\"RoomInformation\":{\"RoomTypeCode\":522937061,\"RoomTypeName\":\"Suite - 522937061\",\"PerRoomPaxCount\":2,\"RoomPaxMaleCount\":2,\"RoomTypeAgent\":\"2Z\",\"RoomFrame\":\"--\",\"NetRmTypeGroupCode\":4,\"PlanGroupCode\":4,\"RepresentativePersonName\":\"XU RUOHUI\"},\"RoomRateInformation\":{\"RoomDate\":\"2025-08-30\",\"TotalPerRoomRate\":167231,\"RoomRatePaxMaleCount\":2}}],\"Member\":{\"UserName\":\"XU/RUOHUI\",\"UserKana\":\"XU/RUOHUI\"},\"OtherInfo\":{\"GuestRequest\":\"P:\",\"AdditionalInformation\":\"Guest Names: XU RUOHUI; XU CHENZHISHAN\"}},\"AgentNativeInformation\":{\"Extend\":{\"AmountClaimed\":0},\"Extendmytrip\":{\"SettlementDiv\":6}}}}}"
143
- },
144
- {
145
- "type": "CREATED",
146
- "externalId": "1102710729",
147
- "externalRevision": "1",
148
- "guestOrGroupInfo": {
149
- "isGroupReservation": false,
150
- "name": "KASUMI MURAKI",
151
- "reservedBy": "Agoda",
152
- "memo": "KASUMI MURAKI Room Only\n[요청사항]\nNo Meals\n[추가정보]\n[Benefits]Free WiFi\n[ExtraBed]0 [Nationality]Japan [Promotion]Limited Time Offer. Price includes 20% discount! [PromotionId]205069018 [CancelCode]3D100P_100P\n성인 1명\n[결제정보]\n지불수단: Bank transfer\n\n수수료율: 정보 없음\n수수료 총액: 정보 없음\n[할인정보]\n",
153
- "status": "reserved",
154
- "phone": "8109078819047",
155
- "useExpireAt": "2025-06-26",
156
- "useStartAt": "2025-06-24",
157
- "platform": "AGODA",
158
- "externalPlatformCode": 2540,
159
- "externalPlatformName": "Agoda"
160
- },
161
- "reservations": [
162
- {
163
- "useStartAt": "2025-06-24",
164
- "useExpireAt": "2025-06-26",
165
- "sleeps": 1,
166
- "guestName": "KASUMI MURAKI",
167
- "externalPlatformCode": 2540,
168
- "externalPlatformName": "Agoda",
169
- "cmsOtaNumber": "1621519914",
170
- "cmsProductName": "Standard Double",
171
- "platform": "AGODA",
172
- "otaNumber": "AGODA|1621519914",
173
- "externalRoomTypeCode": 1,
174
- "externalRoomTypeName": "Standard Double",
175
- "type": "lodge",
176
- "phone": "8109078819047",
177
- "status": "RESERVED",
178
- "memoContent": "KASUMI MURAKI Standard Double\n[요청사항]\nNo Meals\n[추가정보]\n[Benefits]Free WiFi\n[ExtraBed]0 [Nationality]Japan [Promotion]Limited Time Offer. Price includes 20% discount! [PromotionId]205069018 [CancelCode]3D100P_100P\n[인원정보]\n성인 1명\n",
179
- "paymentInfo": {
180
- "amount": 93500,
181
- "commissionAmount": 0,
182
- "reservationType": "lodge",
183
- "segments": [
184
- {
185
- "amount": 46750,
186
- "servedAt": "2025-06-24",
187
- "referenceType": "RESERVATION",
188
- "referenceSubType": "lodge"
189
- },
190
- {
191
- "amount": 46750,
192
- "servedAt": "2025-06-25",
193
- "referenceType": "RESERVATION",
194
- "referenceSubType": "lodge"
195
- }
196
- ],
197
- "externalRoomTypeCode": 1,
198
- "externalRoomTypeName": "Standard Double",
199
- "type": "platform",
200
- "useStartAt": "2025-06-24"
201
- }
202
- }
203
- ],
204
- "rawData": "{\"?xml\":\"\",\"AllotmentBookingReport\":{\"TransactionType\":{\"DataFrom\":\"FromTravelAgency\",\"DataClassification\":\"NewBookReport\",\"DataID\":\"1102710729-1\",\"SystemDate\":\"2025-06-17\"},\"AccommodationInformation\":{\"AccommodationName\":\"Cotice The Bridge\",\"AccommodationCode\":59296741},\"SalesOfficeInformation\":{\"SalesOfficeCompanyName\":\"Agoda\",\"SalesOfficeName\":\"Package + International Rate + Beds Network - Maxi\",\"SalesOfficeCode\":2540},\"BasicInformation\":{\"TravelAgencyBookingNumber\":1621519914,\"TravelAgencyBookingDate\":\"2025-06-17\",\"TravelAgencyBookingTime\":\"12:08:34\",\"TravelAgencyReportNumber\":3234,\"GuestOrGroupNameSingleByte\":\"KASUMI MURAKI\",\"GuestOrGroupNameKanjiName\":\"KASUMI MURAKI\",\"CheckInDate\":\"2025-06-24\",\"CheckOutDate\":\"2025-06-26\",\"Nights\":2,\"TotalRoomCount\":1,\"GrandTotalPaxCount\":1,\"TotalPaxMaleCount\":1,\"TotalChildA70Count\":0,\"PackagePlanName\":\"Room Only\",\"PackagePlanCode\":18548907,\"MealCondition\":\"WithoutMeal\",\"SpecificMealCondition\":\"None Specified\",\"OtherServiceInformation\":\"Method of settlement: Travel company settlement\\nPayment:Bank transfer\\nNo Meals\\n[Benefits]Free WiFi\\n[ExtraBed]0 [Nationality]Japan [Promotion]Limited Time Offer. Price includes 20% discount! [PromotionId]205069018 [CancelCode]3D100P_100P\"},\"BasicRateInformation\":{\"RoomRateOrPersonalRate\":\"RoomRate\",\"TaxServiceFee\":\"IncludingServiceAndTax\",\"Payment\":\"Bank transfer\",\"TotalAccommodationCharge\":93500},\"RoomAndGuestInformation\":{\"RoomAndGuestList\":[{\"RoomInformation\":{\"RoomTypeCode\":894199466,\"RoomTypeName\":\"Standard Double\",\"PerRoomPaxCount\":1,\"RoomPaxMaleCount\":1},\"RoomRateInformation\":{\"RoomDate\":\"2025-06-24\",\"TotalPerRoomRate\":46750},\"GuestInformation\":{\"GuestInformationList\":{\"GuestNameSingleByte\":\"KASUMI MURAKI\",\"GuestKanjiName\":\"KASUMI MURAKI\",\"GuestCountry\":\"Japan\"}}},{\"RoomInformation\":{\"RoomTypeCode\":894199466,\"RoomTypeName\":\"Standard Double\",\"PerRoomPaxCount\":1,\"RoomPaxMaleCount\":1},\"RoomRateInformation\":{\"RoomDate\":\"2025-06-25\",\"TotalPerRoomRate\":46750}}]},\"RisaplsInformation\":{\"RisaplsCommonInformation\":{\"Basic\":{\"SalesOfficeCompanyCode\":46,\"TelegramDiv\":\"\",\"RisaplsDataID\":\"\",\"RisaplsTelegramNumber\":\"\",\"TelegramData\":\"NewBook Agoda SNT-NET 06-17 12:08 (46)\\nBooking No.: 1621519914 NO.00003234 Cotice The Bridge(59296741)\\nGuest:\\n KASUMI MURAKI TEL:81 09078819047\\n KASUMI MURAKI\\n Mail:1az5kvxt0hefgccxxf0j5v4r55ng@agoda-messaging.com\\n\\nRate Name:Room Only(18548907)\\nCheck-In:2025.06.24 2night No Meals incl. service charge and taxes\\nTransportaion: Check-in time:\\nNo. of Guests: 1Person Details:(Adults)1Person\\nNo. of Rooms : 1Room\\n06.24 894199466- 1Room (Standard Double) 46,750KRW\\n Adults 1Person\\n06.25 894199466- 1Room (Standard Double) 46,750KRW\\n Adults 1Person\\n Accommodation cost : 93,500KRW\\n\\n Total Cost : 93,500KRW\\n [ Amounts claimed ] : 0KRW\\n ----------------------------------------------------------------\\n Method of settlement: Travel company settlement\\nPayment :Bank transfer\\n\\nRemarks:\\nNo Meals\\n[Benefits]Free WiFi\\n[ExtraBed]0 [Nationality]Japan [Promotion]Limited Time Offer. Price includes 20% discount! [PromotionId]205069018 [CancelCode]3D100P_100P\\n\\nSales channels:\\nPackage + International Rate + Beds Network - Maxi(2540) TEL\\n\\nGuest Information:\\n1Room KASUMI MURAKI\\n---\",\"PhoneNumber\":\"81 09078819047\",\"Email\":\"1az5kvxt0hefgccxxf0j5v4r55ng@agoda-messaging.com\",\"TotalPaxManCount\":1,\"Version\":2,\"AccommodationId\":\"M43028\"},\"Allotment\":{\"AssignDiv\":0,\"GenderDiv\":0,\"HandleDiv\":1,\"RsvUserDiv\":0,\"UseDiv\":1},\"RoomAndRoomRateInformation\":[{\"RoomInformation\":{\"RoomTypeCode\":894199466,\"RoomTypeName\":\"Standard Double\",\"PerRoomPaxCount\":1,\"RoomPaxMaleCount\":1,\"RoomTypeAgent\":46,\"RoomFrame\":\"--\",\"NetRmTypeGroupCode\":1,\"PlanGroupCode\":2},\"RoomRateInformation\":{\"RoomDate\":\"2025-06-24\",\"TotalPerRoomRate\":46750,\"RoomRatePaxMaleCount\":1},\"GuestInformation\":{\"GuestInformationList\":{\"GuestNameSingleByte\":\"KASUMI MURAKI\",\"GuestKanjiName\":\"KASUMI MURAKI\",\"GuestCountry\":\"Japan\"}}},{\"RoomInformation\":{\"RoomTypeCode\":894199466,\"RoomTypeName\":\"Standard Double\",\"PerRoomPaxCount\":1,\"RoomPaxMaleCount\":1,\"RoomTypeAgent\":46,\"RoomFrame\":\"--\",\"NetRmTypeGroupCode\":1,\"PlanGroupCode\":2},\"RoomRateInformation\":{\"RoomDate\":\"2025-06-25\",\"TotalPerRoomRate\":46750,\"RoomRatePaxMaleCount\":1}}],\"OtherInfo\":{\"GuestRequest\":\"No Meals\",\"AdditionalInformation\":\"[Benefits]Free WiFi\\n[ExtraBed]0 [Nationality]Japan [Promotion]Limited Time Offer. Price includes 20% discount! [PromotionId]205069018 [CancelCode]3D100P_100P\"}},\"AgentNativeInformation\":{\"Extend\":{\"AmountClaimed\":0},\"Extendmytrip\":{\"SettlementDiv\":6}}}}}"
205
- },
206
- {
207
- "type": "CREATED",
208
- "externalId": "1102710727",
209
- "externalRevision": "1",
210
- "guestOrGroupInfo": {
211
- "isGroupReservation": false,
212
- "name": "KASUMI MURAKI",
213
- "reservedBy": "Agoda",
214
- "memo": "KASUMI MURAKI Room Only\n[요청사항]\nNo Meals\n[추가정보]\n[Benefits]Free WiFi\n[ExtraBed]0 [Nationality]Japan [Promotion]Limited Time Offer. Price includes 20% discount! [PromotionId]205069018 [CancelCode]3D100P_100P\n성인 1명\n[결제정보]\n지불수단: Bank transfer\n\n수수료율: 정보 없음\n수수료 총액: 정보 없음\n[할인정보]\n",
215
- "status": "reserved",
216
- "phone": "8109078819047",
217
- "useExpireAt": "2025-06-26",
218
- "useStartAt": "2025-06-24",
219
- "platform": "AGODA",
220
- "externalPlatformCode": 2540,
221
- "externalPlatformName": "Agoda"
222
- },
223
- "reservations": [
224
- {
225
- "useStartAt": "2025-06-24",
226
- "useExpireAt": "2025-06-26",
227
- "sleeps": 1,
228
- "guestName": "KASUMI MURAKI",
229
- "externalPlatformCode": 2540,
230
- "externalPlatformName": "Agoda",
231
- "cmsOtaNumber": "1621519663",
232
- "cmsProductName": "Standard Double",
233
- "platform": "AGODA",
234
- "otaNumber": "AGODA|1621519663",
235
- "externalRoomTypeCode": 1,
236
- "externalRoomTypeName": "Standard Double",
237
- "type": "lodge",
238
- "phone": "8109078819047",
239
- "status": "RESERVED",
240
- "memoContent": "KASUMI MURAKI Standard Double\n[요청사항]\nNo Meals\n[추가정보]\n[Benefits]Free WiFi\n[ExtraBed]0 [Nationality]Japan [Promotion]Limited Time Offer. Price includes 20% discount! [PromotionId]205069018 [CancelCode]3D100P_100P\n[인원정보]\n성인 1명\n",
241
- "paymentInfo": {
242
- "amount": 93500,
243
- "commissionAmount": 0,
244
- "reservationType": "lodge",
245
- "segments": [
246
- {
247
- "amount": 46750,
248
- "servedAt": "2025-06-24",
249
- "referenceType": "RESERVATION",
250
- "referenceSubType": "lodge"
251
- },
252
- {
253
- "amount": 46750,
254
- "servedAt": "2025-06-25",
255
- "referenceType": "RESERVATION",
256
- "referenceSubType": "lodge"
257
- }
258
- ],
259
- "externalRoomTypeCode": 1,
260
- "externalRoomTypeName": "Standard Double",
261
- "type": "platform",
262
- "useStartAt": "2025-06-24"
263
- }
264
- }
265
- ],
266
- "rawData": "{\"?xml\":\"\",\"AllotmentBookingReport\":{\"TransactionType\":{\"DataFrom\":\"FromTravelAgency\",\"DataClassification\":\"NewBookReport\",\"DataID\":\"1102710727-1\",\"SystemDate\":\"2025-06-17\"},\"AccommodationInformation\":{\"AccommodationName\":\"Cotice The Bridge\",\"AccommodationCode\":59296741},\"SalesOfficeInformation\":{\"SalesOfficeCompanyName\":\"Agoda\",\"SalesOfficeName\":\"Package + International Rate + Beds Network - Maxi\",\"SalesOfficeCode\":2540},\"BasicInformation\":{\"TravelAgencyBookingNumber\":1621519663,\"TravelAgencyBookingDate\":\"2025-06-17\",\"TravelAgencyBookingTime\":\"12:08:33\",\"TravelAgencyReportNumber\":3233,\"GuestOrGroupNameSingleByte\":\"KASUMI MURAKI\",\"GuestOrGroupNameKanjiName\":\"KASUMI MURAKI\",\"CheckInDate\":\"2025-06-24\",\"CheckOutDate\":\"2025-06-26\",\"Nights\":2,\"TotalRoomCount\":1,\"GrandTotalPaxCount\":1,\"TotalPaxMaleCount\":1,\"TotalChildA70Count\":0,\"PackagePlanName\":\"Room Only\",\"PackagePlanCode\":18548907,\"MealCondition\":\"WithoutMeal\",\"SpecificMealCondition\":\"None Specified\",\"OtherServiceInformation\":\"Method of settlement: Travel company settlement\\nPayment:Bank transfer\\nNo Meals\\n[Benefits]Free WiFi\\n[ExtraBed]0 [Nationality]Japan [Promotion]Limited Time Offer. Price includes 20% discount! [PromotionId]205069018 [CancelCode]3D100P_100P\"},\"BasicRateInformation\":{\"RoomRateOrPersonalRate\":\"RoomRate\",\"TaxServiceFee\":\"IncludingServiceAndTax\",\"Payment\":\"Bank transfer\",\"TotalAccommodationCharge\":93500},\"RoomAndGuestInformation\":{\"RoomAndGuestList\":[{\"RoomInformation\":{\"RoomTypeCode\":894199466,\"RoomTypeName\":\"Standard Double\",\"PerRoomPaxCount\":1,\"RoomPaxMaleCount\":1},\"RoomRateInformation\":{\"RoomDate\":\"2025-06-24\",\"TotalPerRoomRate\":46750},\"GuestInformation\":{\"GuestInformationList\":{\"GuestNameSingleByte\":\"KASUMI MURAKI\",\"GuestKanjiName\":\"KASUMI MURAKI\",\"GuestCountry\":\"Japan\"}}},{\"RoomInformation\":{\"RoomTypeCode\":894199466,\"RoomTypeName\":\"Standard Double\",\"PerRoomPaxCount\":1,\"RoomPaxMaleCount\":1},\"RoomRateInformation\":{\"RoomDate\":\"2025-06-25\",\"TotalPerRoomRate\":46750}}]},\"RisaplsInformation\":{\"RisaplsCommonInformation\":{\"Basic\":{\"SalesOfficeCompanyCode\":46,\"TelegramDiv\":\"\",\"RisaplsDataID\":\"\",\"RisaplsTelegramNumber\":\"\",\"TelegramData\":\"NewBook Agoda SNT-NET 06-17 12:08 (46)\\nBooking No.: 1621519663 NO.00003233 Cotice The Bridge(59296741)\\nGuest:\\n KASUMI MURAKI TEL:81 09078819047\\n KASUMI MURAKI\\n Mail:1az5k4hsgh6jgcd5cf1mh1zf94q0@agoda-messaging.com\\n\\nRate Name:Room Only(18548907)\\nCheck-In:2025.06.24 2night No Meals incl. service charge and taxes\\nTransportaion: Check-in time:\\nNo. of Guests: 1Person Details:(Adults)1Person\\nNo. of Rooms : 1Room\\n06.24 894199466- 1Room (Standard Double) 46,750KRW\\n Adults 1Person\\n06.25 894199466- 1Room (Standard Double) 46,750KRW\\n Adults 1Person\\n Accommodation cost : 93,500KRW\\n\\n Total Cost : 93,500KRW\\n [ Amounts claimed ] : 0KRW\\n ----------------------------------------------------------------\\n Method of settlement: Travel company settlement\\nPayment :Bank transfer\\n\\nRemarks:\\nNo Meals\\n[Benefits]Free WiFi\\n[ExtraBed]0 [Nationality]Japan [Promotion]Limited Time Offer. Price includes 20% discount! [PromotionId]205069018 [CancelCode]3D100P_100P\\n\\nSales channels:\\nPackage + International Rate + Beds Network - Maxi(2540) TEL\\n\\nGuest Information:\\n1Room KASUMI MURAKI\\n---\",\"PhoneNumber\":\"81 09078819047\",\"Email\":\"1az5k4hsgh6jgcd5cf1mh1zf94q0@agoda-messaging.com\",\"TotalPaxManCount\":1,\"Version\":2,\"AccommodationId\":\"M43028\"},\"Allotment\":{\"AssignDiv\":0,\"GenderDiv\":0,\"HandleDiv\":1,\"RsvUserDiv\":0,\"UseDiv\":1},\"RoomAndRoomRateInformation\":[{\"RoomInformation\":{\"RoomTypeCode\":894199466,\"RoomTypeName\":\"Standard Double\",\"PerRoomPaxCount\":1,\"RoomPaxMaleCount\":1,\"RoomTypeAgent\":46,\"RoomFrame\":\"--\",\"NetRmTypeGroupCode\":1,\"PlanGroupCode\":2},\"RoomRateInformation\":{\"RoomDate\":\"2025-06-24\",\"TotalPerRoomRate\":46750,\"RoomRatePaxMaleCount\":1},\"GuestInformation\":{\"GuestInformationList\":{\"GuestNameSingleByte\":\"KASUMI MURAKI\",\"GuestKanjiName\":\"KASUMI MURAKI\",\"GuestCountry\":\"Japan\"}}},{\"RoomInformation\":{\"RoomTypeCode\":894199466,\"RoomTypeName\":\"Standard Double\",\"PerRoomPaxCount\":1,\"RoomPaxMaleCount\":1,\"RoomTypeAgent\":46,\"RoomFrame\":\"--\",\"NetRmTypeGroupCode\":1,\"PlanGroupCode\":2},\"RoomRateInformation\":{\"RoomDate\":\"2025-06-25\",\"TotalPerRoomRate\":46750,\"RoomRatePaxMaleCount\":1}}],\"OtherInfo\":{\"GuestRequest\":\"No Meals\",\"AdditionalInformation\":\"[Benefits]Free WiFi\\n[ExtraBed]0 [Nationality]Japan [Promotion]Limited Time Offer. Price includes 20% discount! [PromotionId]205069018 [CancelCode]3D100P_100P\"}},\"AgentNativeInformation\":{\"Extend\":{\"AmountClaimed\":0},\"Extendmytrip\":{\"SettlementDiv\":6}}}}}"
267
- },
268
- {
269
- "type": "CREATED",
270
- "externalId": "1102708135",
271
- "externalRevision": "1",
272
- "guestOrGroupInfo": {
273
- "isGroupReservation": false,
274
- "name": "ZHENG JIAYIN",
275
- "reservedBy": "Trip.com Group(new)",
276
- "memo": "ZHENG/JIAYIN 스탠다드 - 1478366335\n[요청사항]\nBasic Deal;For contacting the guest please dial: +82269178710(verification code:685997)or +827079157125(verification code:685997);Please contact guest by system generated mail (rs.79e.b45iakpkj2.1.0226@guest.trip.com), preferred language: (Chinese);Customer phone number:13989659001;Contact guest by Chinese; Contact Trip.com via hotelSupport@trip.com\n[추가정보]\nGuest Names: ZHENG JIAYIN\n성인 2명\n[결제정보]\n지불수단: 정보 없음\n\n수수료율: 정보 없음\n수수료 총액: 정보 없음\n[할인정보]\n",
277
- "status": "reserved",
278
- "phone": "",
279
- "useExpireAt": "2025-09-06",
280
- "useStartAt": "2025-09-03 15:00:00",
281
- "platform": "TRIPDOTCOM",
282
- "externalPlatformCode": "2Z",
283
- "externalPlatformName": "Trip.com Group(new)"
284
- },
285
- "reservations": [
286
- {
287
- "useStartAt": "2025-09-03 15:00:00",
288
- "useExpireAt": "2025-09-06",
289
- "sleeps": 2,
290
- "guestName": "ZHENG JIAYIN",
291
- "externalPlatformCode": "2Z",
292
- "externalPlatformName": "Trip.com Group(new)",
293
- "cmsOtaNumber": "1128140159199278",
294
- "cmsProductName": "Standard Room - 515064659",
295
- "platform": "TRIPDOTCOM",
296
- "otaNumber": "TRIPDOTCOM|1128140159199278",
297
- "externalRoomTypeCode": 1,
298
- "externalRoomTypeName": "Standard Room - 515064659",
32
+ "externalRoomTypeName": "Suite - 515064650",
299
33
  "type": "lodge",
300
34
  "phone": "",
301
35
  "status": "RESERVED",
302
- "memoContent": "ZHENG/JIAYIN Standard Room - 515064659\n[요청사항]\nBasic Deal;For contacting the guest please dial: +82269178710(verification code:685997)or +827079157125(verification code:685997);Please contact guest by system generated mail (rs.79e.b45iakpkj2.1.0226@guest.trip.com), preferred language: (Chinese);Customer phone number:13989659001;Contact guest by Chinese; Contact Trip.com via hotelSupport@trip.com\n[추가정보]\nGuest Names: ZHENG JIAYIN\n[인원정보]\n성인 2명\n",
303
- "paymentInfo": {
304
- "amount": 174250,
305
- "commissionAmount": 0,
306
- "reservationType": "lodge",
307
- "segments": [
308
- {
309
- "amount": 55250,
310
- "servedAt": "2025-09-03",
311
- "referenceType": "RESERVATION",
312
- "referenceSubType": "lodge"
313
- },
314
- {
315
- "amount": 55250,
316
- "servedAt": "2025-09-04",
317
- "referenceType": "RESERVATION",
318
- "referenceSubType": "lodge"
319
- },
320
- {
321
- "amount": 63750,
322
- "servedAt": "2025-09-05",
323
- "referenceType": "RESERVATION",
324
- "referenceSubType": "lodge"
325
- }
326
- ],
327
- "externalRoomTypeCode": 1,
328
- "externalRoomTypeName": "Standard Room - 515064659",
329
- "type": "platform",
330
- "useStartAt": "2025-09-03 15:00:00"
331
- }
332
- }
333
- ],
334
- "rawData": "{\"?xml\":\"\",\"AllotmentBookingReport\":{\"TransactionType\":{\"DataFrom\":\"FromTravelAgency\",\"DataClassification\":\"NewBookReport\",\"DataID\":\"1102708135-1\",\"SystemDate\":\"2025-06-17\"},\"AccommodationInformation\":{\"AccommodationName\":\"Jeju Centerpoint N\",\"AccommodationCode\":109485531},\"SalesOfficeInformation\":{\"SalesOfficeCompanyName\":\"Trip.com Group(new)\",\"SalesOfficeName\":\"Trip.com Group(new)\",\"SalesOfficeCode\":\"2Z\",\"SalesOfficeEmail\":\"hotelSupport@trip.com\",\"SalesOfficePhoneNumber\":8216883666},\"BasicInformation\":{\"TravelAgencyBookingNumber\":1128140159199278,\"TravelAgencyBookingDate\":\"2025-06-17\",\"TravelAgencyBookingTime\":\"12:00:13\",\"TravelAgencyReportNumber\":2779,\"GuestOrGroupNameSingleByte\":\"ZHENG JIAYIN\",\"GuestOrGroupNameKanjiName\":\"ZHENG JIAYIN\",\"CheckInDate\":\"2025-09-03\",\"CheckInTime\":\"15:00:00\",\"CheckOutDate\":\"2025-09-06\",\"Nights\":3,\"TotalRoomCount\":1,\"GrandTotalPaxCount\":2,\"TotalPaxMaleCount\":2,\"PackagePlanName\":\"스탠다드 - 1478366335\",\"PackagePlanCode\":1478366335,\"MealCondition\":\"WithoutMeal\",\"SpecificMealCondition\":\"None Specified\",\"OtherServiceInformation\":\"Method of settlement: Travel company settlement\\nBasic Deal;For contacting the guest please dial: +82269178710(verification code:685997)or +827079157125(verification code:685997);Please contact guest by system generated mail (rs.79e.b45iakpkj2.1.0226@guest.trip.com), preferred language: (Chinese);Customer phone number:13989659001;Contact guest by Chinese; Contact Trip.com via hotelSupport@trip.com\\nGuest Names: ZHENG JIAYIN\"},\"BasicRateInformation\":{\"RoomRateOrPersonalRate\":\"RoomRate\",\"TaxServiceFee\":\"IncludingServiceAndTax\",\"TotalAccommodationCharge\":174250},\"RoomAndGuestInformation\":{\"RoomAndGuestList\":[{\"RoomInformation\":{\"RoomTypeCode\":515064659,\"RoomTypeName\":\"Standard Room - 515064659\",\"PerRoomPaxCount\":2,\"RoomPaxMaleCount\":2},\"RoomRateInformation\":{\"RoomDate\":\"2025-09-03\",\"TotalPerRoomRate\":55250}},{\"RoomInformation\":{\"RoomTypeCode\":515064659,\"RoomTypeName\":\"Standard Room - 515064659\",\"PerRoomPaxCount\":2,\"RoomPaxMaleCount\":2},\"RoomRateInformation\":{\"RoomDate\":\"2025-09-04\",\"TotalPerRoomRate\":55250}},{\"RoomInformation\":{\"RoomTypeCode\":515064659,\"RoomTypeName\":\"Standard Room - 515064659\",\"PerRoomPaxCount\":2,\"RoomPaxMaleCount\":2},\"RoomRateInformation\":{\"RoomDate\":\"2025-09-05\",\"TotalPerRoomRate\":63750}}]},\"RisaplsInformation\":{\"RisaplsCommonInformation\":{\"Basic\":{\"SalesOfficeCompanyCode\":\"2Z\",\"TelegramDiv\":\"\",\"RisaplsDataID\":\"\",\"RisaplsTelegramNumber\":\"\",\"TelegramData\":\"NewBook Trip.com Group(new) SNT-NET 06-17 12:00 (2Z)\\nBooking No.: 1128140159199278 NO.00002779 Jeju Centerpoint N(109485531)\\nGuest:\\n ZHENG JIAYIN TEL:\\n ZHENG JIAYIN\\n Mail:rs.79e.b45iakpkj2.1.0226@guest.trip.com\\n\\nMember:\\n ZHENG/JIAYIN\\n ZHENG/JIAYIN\\n\\nRate Name:스탠다드 - 1478366335(1478366335)\\nCheck-In:2025.09.03 3night No Meals incl. service charge and taxes\\nTransportaion: Check-in time:15:00\\nNo. of Guests: 2Person Details:(Adults)2Person\\nNo. of Rooms : 1Room\\n09.03 515064659 (Standard Room - 515064659) 55,250KRW Guest:ZHENG JIAYIN\\n Adults 2Person\\n09.04 515064659 (Standard Room - 515064659) 55,250KRW Guest:ZHENG JIAYIN\\n Adults 2Person\\n09.05 515064659 (Standard Room - 515064659) 63,750KRW Guest:ZHENG JIAYIN\\n Adults 2Person\\n Accommodation cost : 174,250KRW\\n\\n Total Cost : 174,250KRW\\n [ Amounts claimed ] : 0KRW\\n ----------------------------------------------------------------\\n Method of settlement: Travel company settlement\\nRemarks:\\nBasic Deal;For contacting the guest please dial: +82269178710(verification code:685997)or +827079157125(verification code:685997);Please contact guest by system generated mail (rs.79e.b45iakpkj2.1.0226@guest.trip.com), preferred language: (Chinese);Customer phone number:13989659001;Contact guest by Chinese; Contact Trip.com via hotelSupport@trip.com\\nGuest Names: ZHENG JIAYIN\\n\\nSales channels:\\nTrip.com Group(new)(2Z) TEL 008216883666\\nMail hotelSupport@trip.com\\n\\nRoom cost will be covered by Trip.com Group according to the contract.\\n---\",\"Email\":\"rs.79e.b45iakpkj2.1.0226@guest.trip.com\",\"TotalPaxManCount\":2,\"Version\":2,\"AccommodationId\":\"I58252\"},\"Allotment\":{\"AssignDiv\":1,\"GenderDiv\":0,\"HandleDiv\":1,\"RsvUserDiv\":1,\"UseDiv\":1},\"RoomAndRoomRateInformation\":[{\"RoomInformation\":{\"RoomTypeCode\":515064659,\"RoomTypeName\":\"Standard Room - 515064659\",\"PerRoomPaxCount\":2,\"RoomPaxMaleCount\":2,\"RoomTypeAgent\":\"2Z\",\"RoomFrame\":\"--\",\"NetRmTypeGroupCode\":1,\"PlanGroupCode\":1,\"RepresentativePersonName\":\"ZHENG JIAYIN\"},\"RoomRateInformation\":{\"RoomDate\":\"2025-09-03\",\"TotalPerRoomRate\":55250,\"RoomRatePaxMaleCount\":2}},{\"RoomInformation\":{\"RoomTypeCode\":515064659,\"RoomTypeName\":\"Standard Room - 515064659\",\"PerRoomPaxCount\":2,\"RoomPaxMaleCount\":2,\"RoomTypeAgent\":\"2Z\",\"RoomFrame\":\"--\",\"NetRmTypeGroupCode\":1,\"PlanGroupCode\":1,\"RepresentativePersonName\":\"ZHENG JIAYIN\"},\"RoomRateInformation\":{\"RoomDate\":\"2025-09-04\",\"TotalPerRoomRate\":55250,\"RoomRatePaxMaleCount\":2}},{\"RoomInformation\":{\"RoomTypeCode\":515064659,\"RoomTypeName\":\"Standard Room - 515064659\",\"PerRoomPaxCount\":2,\"RoomPaxMaleCount\":2,\"RoomTypeAgent\":\"2Z\",\"RoomFrame\":\"--\",\"NetRmTypeGroupCode\":1,\"PlanGroupCode\":1,\"RepresentativePersonName\":\"ZHENG JIAYIN\"},\"RoomRateInformation\":{\"RoomDate\":\"2025-09-05\",\"TotalPerRoomRate\":63750,\"RoomRatePaxMaleCount\":2}}],\"Member\":{\"UserName\":\"ZHENG/JIAYIN\",\"UserKana\":\"ZHENG/JIAYIN\"},\"OtherInfo\":{\"GuestRequest\":\"Basic Deal;For contacting the guest please dial: +82269178710(verification code:685997)or +827079157125(verification code:685997);Please contact guest by system generated mail (rs.79e.b45iakpkj2.1.0226@guest.trip.com), preferred language: (Chinese);Customer phone number:13989659001;Contact guest by Chinese; Contact Trip.com via hotelSupport@trip.com\",\"AdditionalInformation\":\"Guest Names: ZHENG JIAYIN\"}},\"AgentNativeInformation\":{\"Extend\":{\"AmountClaimed\":0},\"Extendmytrip\":{\"SettlementDiv\":6}}}}}"
335
- },
336
- {
337
- "type": "CREATED",
338
- "externalId": "1102706920",
339
- "externalRevision": "1",
340
- "guestOrGroupInfo": {
341
- "isGroupReservation": false,
342
- "name": "JIAXING CHEN",
343
- "reservedBy": "Agoda",
344
- "memo": "JIAXING CHEN Room Only\n[요청사항]\nNo Meals\n[Requests]AdditionalNotes:Room on the 6th floor\n[추가정보]\n[Benefits]Coffee & tea, Free WiFi, Drinking water\n[ExtraBed]0 [Nationality]China [Promotion]Long Stay Deal. Price includes 10% discount! [PromotionId]192757668 [CancelCode]7D1N_100P\n성인 2명\n[결제정보]\n지불수단: Bank transfer\n\n수수료율: 정보 없음\n수수료 총액: 정보 없음\n[할인정보]\n",
345
- "status": "reserved",
346
- "phone": "862160420924",
347
- "useExpireAt": "2025-08-08",
348
- "useStartAt": "2025-08-05",
349
- "platform": "AGODA",
350
- "externalPlatformCode": 7,
351
- "externalPlatformName": "Agoda"
352
- },
353
- "reservations": [
354
- {
355
- "useStartAt": "2025-08-05",
356
- "useExpireAt": "2025-08-08",
357
- "sleeps": 2,
358
- "guestName": "JIAXING CHEN",
359
- "externalPlatformCode": 7,
360
- "externalPlatformName": "Agoda",
361
- "cmsOtaNumber": "1621515831",
362
- "cmsProductName": "Standard Twin Room B",
363
- "platform": "AGODA",
364
- "otaNumber": "AGODA|1621515831",
365
- "externalRoomTypeCode": 3,
366
- "externalRoomTypeName": "Standard Twin Room B",
367
- "type": "lodge",
368
- "phone": "862160420924",
369
- "status": "RESERVED",
370
- "memoContent": "JIAXING CHEN Standard Twin Room B\n[요청사항]\nNo Meals\n[Requests]AdditionalNotes:Room on the 6th floor\n[추가정보]\n[Benefits]Coffee & tea, Free WiFi, Drinking water\n[ExtraBed]0 [Nationality]China [Promotion]Long Stay Deal. Price includes 10% discount! [PromotionId]192757668 [CancelCode]7D1N_100P\n[인원정보]\n성인 2명\n",
36
+ "memoContent": "JUNG/ARIN Suite - 515064650\n[요청사항]\nQuiet room preferred;Good view;Away from elevator;Basic Deal;For contacting the guest please dial: +82269178710(verification code:797800)or +827079157125(verification code:797800);Please contact guest by system generated mail (jejucenterpoint.337smd7gml930rt@guest.trip.com), preferred language: (Korean);This booking was made through Trip.com, a Ctrip Group brand.;Customer phone number:82-1062719614;Contact guest by Korean; Contact Trip.com via hotelSupport@trip.com\n[추가정보]\nGuest Names: JUNG ARIN; JUNG HOEGYEONG; JUNG WOOHYEOK; LEE JAESUN\n[인원정보]\n성인 2명, 아동 2명\n",
371
37
  "paymentInfo": {
372
- "amount": 265600,
38
+ "amount": 110500,
373
39
  "commissionAmount": 0,
374
40
  "reservationType": "lodge",
375
41
  "segments": [
376
42
  {
377
- "amount": 79680,
378
- "servedAt": "2025-08-05",
379
- "referenceType": "RESERVATION",
380
- "referenceSubType": "lodge"
381
- },
382
- {
383
- "amount": 79680,
43
+ "amount": 110500,
384
44
  "servedAt": "2025-08-06",
385
45
  "referenceType": "RESERVATION",
386
46
  "referenceSubType": "lodge"
387
- },
388
- {
389
- "amount": 106240,
390
- "servedAt": "2025-08-07",
391
- "referenceType": "RESERVATION",
392
- "referenceSubType": "lodge"
393
- }
394
- ],
395
- "externalRoomTypeCode": 3,
396
- "externalRoomTypeName": "Standard Twin Room B",
397
- "type": "platform",
398
- "useStartAt": "2025-08-05"
399
- }
400
- }
401
- ],
402
- "rawData": "{\"?xml\":\"\",\"AllotmentBookingReport\":{\"TransactionType\":{\"DataFrom\":\"FromTravelAgency\",\"DataClassification\":\"NewBookReport\",\"DataID\":\"1102706920-1\",\"SystemDate\":\"2025-06-17\"},\"AccommodationInformation\":{\"AccommodationName\":\"U STAY MyeongDong\",\"AccommodationCode\":47287581},\"SalesOfficeInformation\":{\"SalesOfficeCompanyName\":\"Agoda\",\"SalesOfficeName\":\"Mobile\",\"SalesOfficeCode\":7},\"BasicInformation\":{\"TravelAgencyBookingNumber\":1621515831,\"TravelAgencyBookingDate\":\"2025-06-17\",\"TravelAgencyBookingTime\":\"11:56:24\",\"TravelAgencyReportNumber\":6787,\"GuestOrGroupNameSingleByte\":\"JIAXING CHEN\",\"GuestOrGroupNameKanjiName\":\"JIAXING CHEN\",\"CheckInDate\":\"2025-08-05\",\"CheckOutDate\":\"2025-08-08\",\"Nights\":3,\"TotalRoomCount\":1,\"GrandTotalPaxCount\":2,\"TotalPaxMaleCount\":2,\"TotalChildA70Count\":0,\"PackagePlanName\":\"Room Only\",\"PackagePlanCode\":16417599,\"MealCondition\":\"WithoutMeal\",\"SpecificMealCondition\":\"None Specified\",\"OtherServiceInformation\":\"Method of settlement: Travel company settlement\\nPayment:Bank transfer\\nNo Meals\\n[Requests]AdditionalNotes:Room on the 6th floor\\n[Benefits]Coffee & tea, Free WiFi, Drinking water\\n[ExtraBed]0 [Nationality]China [Promotion]Long Stay Deal. Price includes 10% discount! [PromotionId]192757668 [CancelCode]7D1N_100P\"},\"BasicRateInformation\":{\"RoomRateOrPersonalRate\":\"RoomRate\",\"TaxServiceFee\":\"IncludingServiceAndTax\",\"Payment\":\"Bank transfer\",\"TotalAccommodationCharge\":265600},\"RoomAndGuestInformation\":{\"RoomAndGuestList\":[{\"RoomInformation\":{\"RoomTypeCode\":757467979,\"RoomTypeName\":\"Standard Twin Room B\",\"PerRoomPaxCount\":2,\"RoomPaxMaleCount\":2},\"RoomRateInformation\":{\"RoomDate\":\"2025-08-05\",\"TotalPerRoomRate\":79680},\"GuestInformation\":{\"GuestInformationList\":{\"GuestNameSingleByte\":\"JIAXING CHEN\",\"GuestKanjiName\":\"JIAXING CHEN\",\"GuestCountry\":\"China\"}}},{\"RoomInformation\":{\"RoomTypeCode\":757467979,\"RoomTypeName\":\"Standard Twin Room B\",\"PerRoomPaxCount\":2,\"RoomPaxMaleCount\":2},\"RoomRateInformation\":{\"RoomDate\":\"2025-08-06\",\"TotalPerRoomRate\":79680}},{\"RoomInformation\":{\"RoomTypeCode\":757467979,\"RoomTypeName\":\"Standard Twin Room B\",\"PerRoomPaxCount\":2,\"RoomPaxMaleCount\":2},\"RoomRateInformation\":{\"RoomDate\":\"2025-08-07\",\"TotalPerRoomRate\":106240}}]},\"RisaplsInformation\":{\"RisaplsCommonInformation\":{\"Basic\":{\"SalesOfficeCompanyCode\":46,\"TelegramDiv\":\"\",\"RisaplsDataID\":\"\",\"RisaplsTelegramNumber\":\"\",\"TelegramData\":\"NewBook Agoda SNT-NET 06-17 11:56 (46)\\nBooking No.: 1621515831 NO.00006787 U STAY MyeongDong(47287581)\\nGuest:\\n JIAXING CHEN TEL:862160420924\\n JIAXING CHEN\\n\\nRate Name:Room Only(16417599)\\nCheck-In:2025.08.05 3night No Meals incl. service charge and taxes\\nTransportaion: Check-in time:\\nNo. of Guests: 2Person Details:(Adults)2Person\\nNo. of Rooms : 1Room\\n08.05 757467979- 1Room (Standard Twin Room B) 79,680KRW\\n Adults 2Person\\n08.06 757467979- 1Room (Standard Twin Room B) 79,680KRW\\n Adults 2Person\\n08.07 757467979- 1Room (Standard Twin Room B) 106,240KRW\\n Adults 2Person\\n Accommodation cost : 265,600KRW\\n\\n Total Cost : 265,600KRW\\n [ Amounts claimed ] : 0KRW\\n ----------------------------------------------------------------\\n Method of settlement: Travel company settlement\\nPayment :Bank transfer\\n\\nRemarks:\\nNo Meals\\n[Requests]AdditionalNotes:Room on the 6th floor\\n[Benefits]Coffee & tea, Free WiFi, Drinking water\\n[ExtraBed]0 [Nationality]China [Promotion]Long Stay Deal. Price includes 10% discount! [PromotionId]192757668 [CancelCode]7D1N_100P\\n\\nSales channels:\\nMobile(7) TEL\\n\\nGuest Information:\\n1Room JIAXING CHEN\\n---\",\"PhoneNumber\":862160420924,\"TotalPaxManCount\":2,\"Version\":2,\"AccommodationId\":\"D59405\"},\"Allotment\":{\"AssignDiv\":0,\"GenderDiv\":0,\"HandleDiv\":1,\"RsvUserDiv\":0,\"UseDiv\":1},\"RoomAndRoomRateInformation\":[{\"RoomInformation\":{\"RoomTypeCode\":757467979,\"RoomTypeName\":\"Standard Twin Room B\",\"PerRoomPaxCount\":2,\"RoomPaxMaleCount\":2,\"RoomTypeAgent\":46,\"RoomFrame\":\"--\",\"NetRmTypeGroupCode\":3,\"PlanGroupCode\":3},\"RoomRateInformation\":{\"RoomDate\":\"2025-08-05\",\"TotalPerRoomRate\":79680,\"RoomRatePaxMaleCount\":2},\"GuestInformation\":{\"GuestInformationList\":{\"GuestNameSingleByte\":\"JIAXING CHEN\",\"GuestKanjiName\":\"JIAXING CHEN\",\"GuestCountry\":\"China\"}}},{\"RoomInformation\":{\"RoomTypeCode\":757467979,\"RoomTypeName\":\"Standard Twin Room B\",\"PerRoomPaxCount\":2,\"RoomPaxMaleCount\":2,\"RoomTypeAgent\":46,\"RoomFrame\":\"--\",\"NetRmTypeGroupCode\":3,\"PlanGroupCode\":3},\"RoomRateInformation\":{\"RoomDate\":\"2025-08-06\",\"TotalPerRoomRate\":79680,\"RoomRatePaxMaleCount\":2}},{\"RoomInformation\":{\"RoomTypeCode\":757467979,\"RoomTypeName\":\"Standard Twin Room B\",\"PerRoomPaxCount\":2,\"RoomPaxMaleCount\":2,\"RoomTypeAgent\":46,\"RoomFrame\":\"--\",\"NetRmTypeGroupCode\":3,\"PlanGroupCode\":3},\"RoomRateInformation\":{\"RoomDate\":\"2025-08-07\",\"TotalPerRoomRate\":106240,\"RoomRatePaxMaleCount\":2}}],\"OtherInfo\":{\"GuestRequest\":\"No Meals\\n[Requests]AdditionalNotes:Room on the 6th floor\",\"AdditionalInformation\":\"[Benefits]Coffee & tea, Free WiFi, Drinking water\\n[ExtraBed]0 [Nationality]China [Promotion]Long Stay Deal. Price includes 10% discount! [PromotionId]192757668 [CancelCode]7D1N_100P\"}},\"AgentNativeInformation\":{\"Extend\":{\"AmountClaimed\":0},\"Extendmytrip\":{\"SettlementDiv\":6}}}}}"
403
- },
404
- {
405
- "type": "CREATED",
406
- "externalId": "1102704953",
407
- "externalRevision": "1",
408
- "guestOrGroupInfo": {
409
- "isGroupReservation": false,
410
- "name": "xiaohong Wang",
411
- "reservedBy": "Allmytour",
412
- "memo": "xiaohong Wang ★(H) Room Only\n\n\n성인 2명\n[결제정보]\n지불수단: CreditCard\n카드사명: undefined\n카드번호: undefined\n유효기간: undefined\n소지자명: undefined\n이전 취소금액: undefined\n\n수수료율: 정보 없음\n수수료 총액: 정보 없음\n[할인정보]\n",
413
- "status": "reserved",
414
- "phone": "",
415
- "useExpireAt": "2025-07-09",
416
- "useStartAt": "2025-07-05",
417
- "platform": "ALLMYTOUR",
418
- "externalPlatformCode": "2N",
419
- "externalPlatformName": "Allmytour"
420
- },
421
- "reservations": [
422
- {
423
- "useStartAt": "2025-07-05",
424
- "useExpireAt": "2025-07-09",
425
- "sleeps": 2,
426
- "guestName": "xiaohong Wang",
427
- "externalPlatformCode": "2N",
428
- "externalPlatformName": "Allmytour",
429
- "cmsOtaNumber": "377052",
430
- "cmsProductName": "● Standard Twin",
431
- "platform": "ALLMYTOUR",
432
- "otaNumber": "ALLMYTOUR|377052",
433
- "externalRoomTypeCode": "---",
434
- "externalRoomTypeName": "● Standard Twin",
435
- "type": "lodge",
436
- "phone": "",
437
- "status": "RESERVED",
438
- "memoContent": "xiaohong Wang ● Standard Twin\n\n\n[인원정보]\n성인 2명\n",
439
- "paymentInfo": {
440
- "amount": 300000,
441
- "commissionAmount": 0,
442
- "reservationType": "lodge",
443
- "segments": [
444
- {
445
- "amount": 90000,
446
- "servedAt": "2025-07-05",
447
- "referenceType": "RESERVATION",
448
- "referenceSubType": "lodge"
449
- },
450
- {
451
- "amount": 70000,
452
- "servedAt": "2025-07-06",
453
- "referenceType": "RESERVATION",
454
- "referenceSubType": "lodge"
455
- },
456
- {
457
- "amount": 70000,
458
- "servedAt": "2025-07-07",
459
- "referenceType": "RESERVATION",
460
- "referenceSubType": "lodge"
461
- },
462
- {
463
- "amount": 70000,
464
- "servedAt": "2025-07-08",
465
- "referenceType": "RESERVATION",
466
- "referenceSubType": "lodge"
467
- }
468
- ],
469
- "externalRoomTypeCode": "---",
470
- "externalRoomTypeName": "● Standard Twin",
471
- "type": "platform",
472
- "useStartAt": "2025-07-05"
473
- }
474
- }
475
- ],
476
- "rawData": "{\"?xml\":\"\",\"AllotmentBookingReport\":{\"TransactionType\":{\"DataFrom\":\"FromTravelAgency\",\"DataClassification\":\"NewBookReport\",\"DataID\":\"1102704953-1\",\"SystemDate\":\"2025-06-17\"},\"AccommodationInformation\":{\"AccommodationArea\":\"SEOUL\",\"AccommodationName\":\"Hotel Cozy Myeongdong\",\"AccommodationCode\":2041404},\"SalesOfficeInformation\":{\"SalesOfficeCompanyName\":\"Allmytour\",\"SalesOfficeName\":\"allmytour\",\"SalesOfficeCode\":\"2N\"},\"BasicInformation\":{\"TravelAgencyBookingNumber\":377052,\"TravelAgencyBookingDate\":\"2025-06-17\",\"TravelAgencyBookingTime\":\"11:50:12\",\"TravelAgencyReportNumber\":2306,\"GuestOrGroupNameSingleByte\":\"xiaohong Wang\",\"GuestOrGroupNameKanjiName\":\"xiaohong Wang\",\"CheckInDate\":\"2025-07-05\",\"CheckOutDate\":\"2025-07-09\",\"Nights\":4,\"TotalRoomCount\":1,\"GrandTotalPaxCount\":2,\"TotalPaxMaleCount\":2,\"PackageType\":\"Package\",\"PackagePlanName\":\"★(H) Room Only\",\"PackagePlanCode\":27948,\"MealCondition\":\"WithoutMeal\",\"SpecificMealCondition\":\"None Specified\",\"OtherServiceInformation\":\"Method of settlement: Credit Card\\nPayment:CreditCard\"},\"BasicRateInformation\":{\"RoomRateOrPersonalRate\":\"RoomRate\",\"TaxServiceFee\":\"IncludingServiceAndTax\",\"Payment\":\"CreditCard\",\"TotalAccommodationCharge\":300000},\"RoomAndGuestInformation\":{\"RoomAndGuestList\":[{\"RoomInformation\":{\"RoomTypeCode\":10867,\"RoomTypeName\":\"● Standard Twin\",\"PerRoomPaxCount\":2,\"RoomPaxMaleCount\":2},\"RoomRateInformation\":{\"RoomDate\":\"2025-07-05\",\"TotalPerRoomRate\":90000}},{\"RoomInformation\":{\"RoomTypeCode\":10867,\"RoomTypeName\":\"● Standard Twin\",\"PerRoomPaxCount\":2,\"RoomPaxMaleCount\":2},\"RoomRateInformation\":{\"RoomDate\":\"2025-07-06\",\"TotalPerRoomRate\":70000}},{\"RoomInformation\":{\"RoomTypeCode\":10867,\"RoomTypeName\":\"● Standard Twin\",\"PerRoomPaxCount\":2,\"RoomPaxMaleCount\":2},\"RoomRateInformation\":{\"RoomDate\":\"2025-07-07\",\"TotalPerRoomRate\":70000}},{\"RoomInformation\":{\"RoomTypeCode\":10867,\"RoomTypeName\":\"● Standard Twin\",\"PerRoomPaxCount\":2,\"RoomPaxMaleCount\":2},\"RoomRateInformation\":{\"RoomDate\":\"2025-07-08\",\"TotalPerRoomRate\":70000}}]},\"RisaplsInformation\":{\"RisaplsCommonInformation\":{\"Basic\":{\"SalesOfficeCompanyCode\":\"2N\",\"TelegramDiv\":\"\",\"RisaplsDataID\":\"\",\"RisaplsTelegramNumber\":\"\",\"TelegramData\":\"NewBook Allmytour SNT-NET 06-17 11:50 (2N)\\nBooking No.: 377052 NO.00002306 Hotel Cozy Myeongdong(2041404)\\nGuest:\\n xiaohong Wang TEL:\\n xiaohong Wang\\n Gender :Unknown Generation: Age:\\n\\nRate Name:★(H) Room Only(27948)\\nCheck-In:2025.07.05 4night No Meals incl. service charge and taxes\\nTransportaion: Check-in time:\\nNo. of Guests: 2Person Details:(Adults)2Person\\nNo. of Rooms : 1Room\\n07.05 10867- 1Room (● Standard Twin) 90,000KRW\\n Adults 2Person\\n07.06 10867- 1Room (● Standard Twin) 70,000KRW\\n Adults 2Person\\n07.07 10867- 1Room (● Standard Twin) 70,000KRW\\n Adults 2Person\\n07.08 10867- 1Room (● Standard Twin) 70,000KRW\\n Adults 2Person\\n Accommodation cost : 300,000KRW\\n\\n Total Cost : 300,000KRW\\n ----------------------------------------------------------------\\n Method of settlement: Credit Card\\nPayment :CreditCard\\n\\nRemarks:\\n\\nSales channels:\\nallmytour(2N) TEL\\n---\",\"TotalPaxManCount\":2,\"Version\":2,\"RepresentativeGendar\":2,\"AccommodationId\":\"P34569\"},\"Allotment\":{\"AssignDiv\":0,\"GenderDiv\":0,\"HandleDiv\":1,\"RsvUserDiv\":0,\"UseDiv\":1},\"RoomAndRoomRateInformation\":[{\"RoomInformation\":{\"RoomTypeCode\":10867,\"RoomTypeName\":\"● Standard Twin\",\"PerRoomPaxCount\":2,\"RoomPaxMaleCount\":2,\"RoomTypeAgent\":\"2N\",\"RoomFrame\":\"--\",\"NetRmTypeGroupCode\":\"---\",\"PlanGroupCode\":\"---\"},\"RoomRateInformation\":{\"RoomDate\":\"2025-07-05\",\"TotalPerRoomRate\":90000,\"RoomRatePaxMaleCount\":2}},{\"RoomInformation\":{\"RoomTypeCode\":10867,\"RoomTypeName\":\"● Standard Twin\",\"PerRoomPaxCount\":2,\"RoomPaxMaleCount\":2,\"RoomTypeAgent\":\"2N\",\"RoomFrame\":\"--\",\"NetRmTypeGroupCode\":\"---\",\"PlanGroupCode\":\"---\"},\"RoomRateInformation\":{\"RoomDate\":\"2025-07-06\",\"TotalPerRoomRate\":70000,\"RoomRatePaxMaleCount\":2}},{\"RoomInformation\":{\"RoomTypeCode\":10867,\"RoomTypeName\":\"● Standard Twin\",\"PerRoomPaxCount\":2,\"RoomPaxMaleCount\":2,\"RoomTypeAgent\":\"2N\",\"RoomFrame\":\"--\",\"NetRmTypeGroupCode\":\"---\",\"PlanGroupCode\":\"---\"},\"RoomRateInformation\":{\"RoomDate\":\"2025-07-07\",\"TotalPerRoomRate\":70000,\"RoomRatePaxMaleCount\":2}},{\"RoomInformation\":{\"RoomTypeCode\":10867,\"RoomTypeName\":\"● Standard Twin\",\"PerRoomPaxCount\":2,\"RoomPaxMaleCount\":2,\"RoomTypeAgent\":\"2N\",\"RoomFrame\":\"--\",\"NetRmTypeGroupCode\":\"---\",\"PlanGroupCode\":\"---\"},\"RoomRateInformation\":{\"RoomDate\":\"2025-07-08\",\"TotalPerRoomRate\":70000,\"RoomRatePaxMaleCount\":2}}]},\"AgentNativeInformation\":{\"Extendmytrip\":{\"SettlementDiv\":2}}}}}"
477
- },
478
- {
479
- "type": "CREATED",
480
- "externalId": "1102704050",
481
- "externalRevision": "1",
482
- "guestOrGroupInfo": {
483
- "isGroupReservation": false,
484
- "name": "KIM HEEKWON",
485
- "reservedBy": "Agoda",
486
- "memo": "KIM HEEKWON Room Only\n[요청사항]\nNo Meals\n[Requests]QuietRoom\n[추가정보]\n[Benefits]Drinking water, Free WiFi, Coffee & tea\n[ExtraBed]0 [Nationality]South Korea [CancelCode]5D100P_100P\n성인 2명\n[결제정보]\n지불수단: Bank transfer\n\n수수료율: 정보 없음\n수수료 총액: 정보 없음\n[할인정보]\n",
487
- "status": "reserved",
488
- "phone": "",
489
- "useExpireAt": "2025-06-19",
490
- "useStartAt": "2025-06-17",
491
- "platform": "AGODA",
492
- "externalPlatformCode": 1051,
493
- "externalPlatformName": "Agoda"
494
- },
495
- "reservations": [
496
- {
497
- "useStartAt": "2025-06-17",
498
- "useExpireAt": "2025-06-19",
499
- "sleeps": 2,
500
- "guestName": "KIM HEEKWON",
501
- "externalPlatformCode": 1051,
502
- "externalPlatformName": "Agoda",
503
- "cmsOtaNumber": "1621513978",
504
- "cmsProductName": "Standard Room",
505
- "platform": "AGODA",
506
- "otaNumber": "AGODA|1621513978",
507
- "externalRoomTypeCode": 3,
508
- "externalRoomTypeName": "Standard Room",
509
- "type": "lodge",
510
- "phone": "",
511
- "status": "RESERVED",
512
- "memoContent": "KIM HEEKWON Standard Room\n[요청사항]\nNo Meals\n[Requests]QuietRoom\n[추가정보]\n[Benefits]Drinking water, Free WiFi, Coffee & tea\n[ExtraBed]0 [Nationality]South Korea [CancelCode]5D100P_100P\n[인원정보]\n성인 2명\n",
513
- "paymentInfo": {
514
- "amount": 94905,
515
- "commissionAmount": 0,
516
- "reservationType": "lodge",
517
- "segments": [
518
- {
519
- "amount": 43521,
520
- "servedAt": "2025-06-17",
521
- "referenceType": "RESERVATION",
522
- "referenceSubType": "lodge"
523
- },
524
- {
525
- "amount": 51384,
526
- "servedAt": "2025-06-18",
527
- "referenceType": "RESERVATION",
528
- "referenceSubType": "lodge"
529
- }
530
- ],
531
- "externalRoomTypeCode": 3,
532
- "externalRoomTypeName": "Standard Room",
533
- "type": "platform",
534
- "useStartAt": "2025-06-17"
535
- }
536
- }
537
- ],
538
- "rawData": "{\"?xml\":\"\",\"AllotmentBookingReport\":{\"TransactionType\":{\"DataFrom\":\"FromTravelAgency\",\"DataClassification\":\"NewBookReport\",\"DataID\":\"1102704050-1\",\"SystemDate\":\"2025-06-17\"},\"AccommodationInformation\":{\"AccommodationName\":\"The Stay Songdo\",\"AccommodationCode\":41580140},\"SalesOfficeInformation\":{\"SalesOfficeCompanyName\":\"Agoda\",\"SalesOfficeName\":\"Agoda Intelligence\",\"SalesOfficeCode\":1051},\"BasicInformation\":{\"TravelAgencyBookingNumber\":1621513978,\"TravelAgencyBookingDate\":\"2025-06-17\",\"TravelAgencyBookingTime\":\"11:47:31\",\"TravelAgencyReportNumber\":4138,\"GuestOrGroupNameSingleByte\":\"KIM HEEKWON\",\"GuestOrGroupNameKanjiName\":\"KIM HEEKWON\",\"CheckInDate\":\"2025-06-17\",\"CheckOutDate\":\"2025-06-19\",\"Nights\":2,\"TotalRoomCount\":1,\"GrandTotalPaxCount\":2,\"TotalPaxMaleCount\":2,\"TotalChildA70Count\":0,\"PackagePlanName\":\"Room Only\",\"PackagePlanCode\":15412801,\"MealCondition\":\"WithoutMeal\",\"SpecificMealCondition\":\"None Specified\",\"OtherServiceInformation\":\"Method of settlement: Travel company settlement\\nPayment:Bank transfer\\nNo Meals\\n[Requests]QuietRoom\\n[Benefits]Drinking water, Free WiFi, Coffee & tea\\n[ExtraBed]0 [Nationality]South Korea [CancelCode]5D100P_100P\"},\"BasicRateInformation\":{\"RoomRateOrPersonalRate\":\"RoomRate\",\"TaxServiceFee\":\"IncludingServiceAndTax\",\"Payment\":\"Bank transfer\",\"TotalAccommodationCharge\":94905},\"RoomAndGuestInformation\":{\"RoomAndGuestList\":[{\"RoomInformation\":{\"RoomTypeCode\":682803703,\"RoomTypeName\":\"Standard Room\",\"PerRoomPaxCount\":2,\"RoomPaxMaleCount\":2},\"RoomRateInformation\":{\"RoomDate\":\"2025-06-17\",\"TotalPerRoomRate\":43521},\"GuestInformation\":{\"GuestInformationList\":{\"GuestNameSingleByte\":\"KIM HEEKWON\",\"GuestKanjiName\":\"KIM HEEKWON\",\"GuestCountry\":\"South\"}}},{\"RoomInformation\":{\"RoomTypeCode\":682803703,\"RoomTypeName\":\"Standard Room\",\"PerRoomPaxCount\":2,\"RoomPaxMaleCount\":2},\"RoomRateInformation\":{\"RoomDate\":\"2025-06-18\",\"TotalPerRoomRate\":51384}}]},\"RisaplsInformation\":{\"RisaplsCommonInformation\":{\"Basic\":{\"SalesOfficeCompanyCode\":46,\"TelegramDiv\":\"\",\"RisaplsDataID\":\"\",\"RisaplsTelegramNumber\":\"\",\"TelegramData\":\"NewBook Agoda SNT-NET 06-17 11:47 (46)\\nBooking No.: 1621513978 NO.00004138 The Stay Songdo(41580140)\\nGuest:\\n KIM HEEKWON TEL:\\n KIM HEEKWON\\n\\nRate Name:Room Only(15412801)\\nCheck-In:2025.06.17 2night No Meals incl. service charge and taxes\\nTransportaion: Check-in time:\\nNo. of Guests: 2Person Details:(Adults)2Person\\nNo. of Rooms : 1Room\\n06.17 682803703- 1Room (Standard Room) 43,521KRW\\n Adults 2Person\\n06.18 682803703- 1Room (Standard Room) 51,384KRW\\n Adults 2Person\\n Accommodation cost : 94,905KRW\\n\\n Total Cost : 94,905KRW\\n [ Amounts claimed ] : 0KRW\\n ----------------------------------------------------------------\\n Method of settlement: Travel company settlement\\nPayment :Bank transfer\\n\\nRemarks:\\nNo Meals\\n[Requests]QuietRoom\\n[Benefits]Drinking water, Free WiFi, Coffee & tea\\n[ExtraBed]0 [Nationality]South Korea [CancelCode]5D100P_100P\\n\\nSales channels:\\nAgoda Intelligence(1051) TEL\\n\\nGuest Information:\\n1Room KIM HEEKWON\\n---\",\"TotalPaxManCount\":2,\"Version\":2,\"AccommodationId\":\"S09027\"},\"Allotment\":{\"AssignDiv\":0,\"GenderDiv\":0,\"HandleDiv\":1,\"RsvUserDiv\":0,\"UseDiv\":1},\"RoomAndRoomRateInformation\":[{\"RoomInformation\":{\"RoomTypeCode\":682803703,\"RoomTypeName\":\"Standard Room\",\"PerRoomPaxCount\":2,\"RoomPaxMaleCount\":2,\"RoomTypeAgent\":46,\"RoomFrame\":\"--\",\"NetRmTypeGroupCode\":3,\"PlanGroupCode\":9},\"RoomRateInformation\":{\"RoomDate\":\"2025-06-17\",\"TotalPerRoomRate\":43521,\"RoomRatePaxMaleCount\":2},\"GuestInformation\":{\"GuestInformationList\":{\"GuestNameSingleByte\":\"KIM HEEKWON\",\"GuestKanjiName\":\"KIM HEEKWON\",\"GuestCountry\":\"South\"}}},{\"RoomInformation\":{\"RoomTypeCode\":682803703,\"RoomTypeName\":\"Standard Room\",\"PerRoomPaxCount\":2,\"RoomPaxMaleCount\":2,\"RoomTypeAgent\":46,\"RoomFrame\":\"--\",\"NetRmTypeGroupCode\":3,\"PlanGroupCode\":9},\"RoomRateInformation\":{\"RoomDate\":\"2025-06-18\",\"TotalPerRoomRate\":51384,\"RoomRatePaxMaleCount\":2}}],\"OtherInfo\":{\"GuestRequest\":\"No Meals\\n[Requests]QuietRoom\",\"AdditionalInformation\":\"[Benefits]Drinking water, Free WiFi, Coffee & tea\\n[ExtraBed]0 [Nationality]South Korea [CancelCode]5D100P_100P\"}},\"AgentNativeInformation\":{\"Extend\":{\"AmountClaimed\":0},\"Extendmytrip\":{\"SettlementDiv\":6}}}}}"
539
- },
540
- {
541
- "type": "CREATED",
542
- "externalId": "1102704097",
543
- "externalRevision": "1",
544
- "guestOrGroupInfo": {
545
- "isGroupReservation": false,
546
- "name": "JIHO PARK",
547
- "reservedBy": "Agoda",
548
- "memo": "JIHO PARK Room Only\n[요청사항]\nNo Meals\n[추가정보]\n[Benefits]Free WiFi, Drinking water\n[ExtraBed]0 [Nationality]China [Promotion] Super Saver [PromotionId]9999999 [CancelCode]3D100P_100P\n성인 2명\n[결제정보]\n지불수단: Bank transfer\n\n수수료율: 정보 없음\n수수료 총액: 정보 없음\n[할인정보]\n",
549
- "status": "reserved",
550
- "phone": "862160420924",
551
- "useExpireAt": "2025-08-17",
552
- "useStartAt": "2025-08-16",
553
- "platform": "AGODA",
554
- "externalPlatformCode": 1,
555
- "externalPlatformName": "Agoda"
556
- },
557
- "reservations": [
558
- {
559
- "useStartAt": "2025-08-16",
560
- "useExpireAt": "2025-08-17",
561
- "sleeps": 2,
562
- "guestName": "JIHO PARK",
563
- "externalPlatformCode": 1,
564
- "externalPlatformName": "Agoda",
565
- "cmsOtaNumber": "1621513532",
566
- "cmsProductName": "Standard Twin",
567
- "platform": "AGODA",
568
- "otaNumber": "AGODA|1621513532",
569
- "externalRoomTypeCode": 5,
570
- "externalRoomTypeName": "Standard Twin",
571
- "type": "lodge",
572
- "phone": "862160420924",
573
- "status": "RESERVED",
574
- "memoContent": "JIHO PARK Standard Twin\n[요청사항]\nNo Meals\n[추가정보]\n[Benefits]Free WiFi, Drinking water\n[ExtraBed]0 [Nationality]China [Promotion] Super Saver [PromotionId]9999999 [CancelCode]3D100P_100P\n[인원정보]\n성인 2명\n",
575
- "paymentInfo": {
576
- "amount": 75377,
577
- "commissionAmount": 0,
578
- "reservationType": "lodge",
579
- "segments": [
580
- {
581
- "amount": 75377,
582
- "servedAt": "2025-08-16",
583
- "referenceType": "RESERVATION",
584
- "referenceSubType": "lodge"
585
- }
586
- ],
587
- "externalRoomTypeCode": 5,
588
- "externalRoomTypeName": "Standard Twin",
589
- "type": "platform",
590
- "useStartAt": "2025-08-16"
591
- }
592
- }
593
- ],
594
- "rawData": "{\"?xml\":\"\",\"AllotmentBookingReport\":{\"TransactionType\":{\"DataFrom\":\"FromTravelAgency\",\"DataClassification\":\"NewBookReport\",\"DataID\":\"1102704097-1\",\"SystemDate\":\"2025-06-17\"},\"AccommodationInformation\":{\"AccommodationName\":\"ABOUTSTAY DONGDAEMUN\",\"AccommodationCode\":62532638},\"SalesOfficeInformation\":{\"SalesOfficeCompanyName\":\"Agoda\",\"SalesOfficeName\":\"Retail\",\"SalesOfficeCode\":1},\"BasicInformation\":{\"TravelAgencyBookingNumber\":1621513532,\"TravelAgencyBookingDate\":\"2025-06-17\",\"TravelAgencyBookingTime\":\"11:47:35\",\"TravelAgencyReportNumber\":2980,\"GuestOrGroupNameSingleByte\":\"JIHO PARK\",\"GuestOrGroupNameKanjiName\":\"JIHO PARK\",\"CheckInDate\":\"2025-08-16\",\"CheckOutDate\":\"2025-08-17\",\"Nights\":1,\"TotalRoomCount\":1,\"GrandTotalPaxCount\":2,\"TotalPaxMaleCount\":2,\"TotalChildA70Count\":0,\"PackagePlanName\":\"Room Only\",\"PackagePlanCode\":19097586,\"MealCondition\":\"WithoutMeal\",\"SpecificMealCondition\":\"None Specified\",\"OtherServiceInformation\":\"Method of settlement: Travel company settlement\\nPayment:Bank transfer\\nNo Meals\\n[Benefits]Free WiFi, Drinking water\\n[ExtraBed]0 [Nationality]China [Promotion] Super Saver [PromotionId]9999999 [CancelCode]3D100P_100P\"},\"BasicRateInformation\":{\"RoomRateOrPersonalRate\":\"RoomRate\",\"TaxServiceFee\":\"IncludingServiceAndTax\",\"Payment\":\"Bank transfer\",\"TotalAccommodationCharge\":75377},\"RoomAndGuestInformation\":{\"RoomAndGuestList\":{\"RoomInformation\":{\"RoomTypeCode\":996894990,\"RoomTypeName\":\"Standard Twin\",\"PerRoomPaxCount\":2,\"RoomPaxMaleCount\":2},\"RoomRateInformation\":{\"RoomDate\":\"2025-08-16\",\"TotalPerRoomRate\":75377},\"GuestInformation\":{\"GuestInformationList\":{\"GuestNameSingleByte\":\"JIHO PARK\",\"GuestKanjiName\":\"JIHO PARK\",\"GuestCountry\":\"China\"}}}},\"RisaplsInformation\":{\"RisaplsCommonInformation\":{\"Basic\":{\"SalesOfficeCompanyCode\":46,\"TelegramDiv\":\"\",\"RisaplsDataID\":\"\",\"RisaplsTelegramNumber\":\"\",\"TelegramData\":\"NewBook Agoda SNT-NET 06-17 11:47 (46)\\nBooking No.: 1621513532 NO.00002980 ABOUTSTAY DONGDAEMUN(62532638)\\nGuest:\\n JIHO PARK TEL:862160420924\\n JIHO PARK\\n Mail:1az4z527ghefgcb5fnkm4q4szcfg@agoda-messaging.com\\n\\nRate Name:Room Only(19097586)\\nCheck-In:2025.08.16 1night No Meals incl. service charge and taxes\\nTransportaion: Check-in time:\\nNo. of Guests: 2Person Details:(Adults)2Person\\nNo. of Rooms : 1Room\\n08.16 996894990- 1Room (Standard Twin) 75,377KRW\\n Adults 2Person\\n Accommodation cost : 75,377KRW\\n\\n Total Cost : 75,377KRW\\n [ Amounts claimed ] : 0KRW\\n ----------------------------------------------------------------\\n Method of settlement: Travel company settlement\\nPayment :Bank transfer\\n\\nRemarks:\\nNo Meals\\n[Benefits]Free WiFi, Drinking water\\n[ExtraBed]0 [Nationality]China [Promotion] Super Saver [PromotionId]9999999 [CancelCode]3D100P_100P\\n\\nSales channels:\\nRetail(1) TEL\\n\\nGuest Information:\\n1Room JIHO PARK\\n---\",\"PhoneNumber\":862160420924,\"Email\":\"1az4z527ghefgcb5fnkm4q4szcfg@agoda-messaging.com\",\"TotalPaxManCount\":2,\"Version\":2,\"AccommodationId\":\"N07437\"},\"Allotment\":{\"AssignDiv\":0,\"GenderDiv\":0,\"HandleDiv\":1,\"RsvUserDiv\":0,\"UseDiv\":1},\"RoomAndRoomRateInformation\":{\"RoomInformation\":{\"RoomTypeCode\":996894990,\"RoomTypeName\":\"Standard Twin\",\"PerRoomPaxCount\":2,\"RoomPaxMaleCount\":2,\"RoomTypeAgent\":46,\"RoomFrame\":\"--\",\"NetRmTypeGroupCode\":5,\"PlanGroupCode\":5},\"RoomRateInformation\":{\"RoomDate\":\"2025-08-16\",\"TotalPerRoomRate\":75377,\"RoomRatePaxMaleCount\":2},\"GuestInformation\":{\"GuestInformationList\":{\"GuestNameSingleByte\":\"JIHO PARK\",\"GuestKanjiName\":\"JIHO PARK\",\"GuestCountry\":\"China\"}}},\"OtherInfo\":{\"GuestRequest\":\"No Meals\",\"AdditionalInformation\":\"[Benefits]Free WiFi, Drinking water\\n[ExtraBed]0 [Nationality]China [Promotion] Super Saver [PromotionId]9999999 [CancelCode]3D100P_100P\"}},\"AgentNativeInformation\":{\"Extend\":{\"AmountClaimed\":0},\"Extendmytrip\":{\"SettlementDiv\":6}}}}}"
595
- },
596
- {
597
- "type": "CREATED",
598
- "externalId": "1102704760",
599
- "externalRevision": "1",
600
- "guestOrGroupInfo": {
601
- "isGroupReservation": false,
602
- "name": "LEI PENG LAM",
603
- "reservedBy": "Trip.com Group(new)",
604
- "memo": "LEI/PENG LAM [B2B] Room only - Net rate mode - 1477635731\n[요청사항]\nHighFloor;2024 Taiwan Seasonal Campaign;This booking was made through Trip.com, a Ctrip Group brand.\n[추가정보]\nGuest Names: LEI PENG LAM\n성인 3명\n[결제정보]\n지불수단: 정보 없음\n\n수수료율: 정보 없음\n수수료 총액: 정보 없음\n[할인정보]\n",
605
- "status": "reserved",
606
- "phone": "",
607
- "useExpireAt": "2025-08-29",
608
- "useStartAt": "2025-08-26 15:00:00",
609
- "platform": "TRIPDOTCOM",
610
- "externalPlatformCode": "2Z",
611
- "externalPlatformName": "Trip.com Group(new)"
612
- },
613
- "reservations": [
614
- {
615
- "useStartAt": "2025-08-26 15:00:00",
616
- "useExpireAt": "2025-08-29",
617
- "sleeps": 3,
618
- "guestName": "LEI PENG LAM",
619
- "externalPlatformCode": "2Z",
620
- "externalPlatformName": "Trip.com Group(new)",
621
- "cmsOtaNumber": "1128140158951644",
622
- "cmsProductName": "Deluxe Family Room - 494193999",
623
- "platform": "TRIPDOTCOM",
624
- "otaNumber": "TRIPDOTCOM|1128140158951644",
625
- "externalRoomTypeCode": 6,
626
- "externalRoomTypeName": "Deluxe Family Room - 494193999",
627
- "type": "lodge",
628
- "phone": "",
629
- "status": "RESERVED",
630
- "memoContent": "LEI/PENG LAM Deluxe Family Room - 494193999\n[요청사항]\nHighFloor;2024 Taiwan Seasonal Campaign;This booking was made through Trip.com, a Ctrip Group brand.\n[추가정보]\nGuest Names: LEI PENG LAM\n[인원정보]\n성인 3명\n",
631
- "paymentInfo": {
632
- "amount": 254361,
633
- "commissionAmount": 0,
634
- "reservationType": "lodge",
635
- "segments": [
636
- {
637
- "amount": 84787,
638
- "servedAt": "2025-08-26",
639
- "referenceType": "RESERVATION",
640
- "referenceSubType": "lodge"
641
- },
642
- {
643
- "amount": 84787,
644
- "servedAt": "2025-08-27",
645
- "referenceType": "RESERVATION",
646
- "referenceSubType": "lodge"
647
- },
648
- {
649
- "amount": 84787,
650
- "servedAt": "2025-08-28",
651
- "referenceType": "RESERVATION",
652
- "referenceSubType": "lodge"
653
47
  }
654
48
  ],
655
- "externalRoomTypeCode": 6,
656
- "externalRoomTypeName": "Deluxe Family Room - 494193999",
49
+ "externalRoomTypeCode": 4,
50
+ "externalRoomTypeName": "Suite - 515064650",
657
51
  "type": "platform",
658
- "useStartAt": "2025-08-26 15:00:00"
52
+ "useStartAt": "2025-08-06 15:00:00"
659
53
  }
660
54
  }
661
55
  ],
662
- "rawData": "{\"?xml\":\"\",\"AllotmentBookingReport\":{\"TransactionType\":{\"DataFrom\":\"FromTravelAgency\",\"DataClassification\":\"NewBookReport\",\"DataID\":\"1102704760-1\",\"SystemDate\":\"2025-06-17\"},\"AccommodationInformation\":{\"AccommodationName\":\"Busan Cotice the Bridge\",\"AccommodationCode\":121182086},\"SalesOfficeInformation\":{\"SalesOfficeCompanyName\":\"Trip.com Group(new)\",\"SalesOfficeName\":\"Trip.com Group(new)\",\"SalesOfficeCode\":\"2Z\",\"SalesOfficeEmail\":\"hotelSupport@trip.com\",\"SalesOfficePhoneNumber\":8216883666},\"BasicInformation\":{\"TravelAgencyBookingNumber\":1128140158951644,\"TravelAgencyBookingDate\":\"2025-06-17\",\"TravelAgencyBookingTime\":\"11:49:43\",\"TravelAgencyReportNumber\":4595,\"GuestOrGroupNameSingleByte\":\"LEI PENG LAM\",\"GuestOrGroupNameKanjiName\":\"LEI PENG LAM\",\"CheckInDate\":\"2025-08-26\",\"CheckInTime\":\"15:00:00\",\"CheckOutDate\":\"2025-08-29\",\"Nights\":3,\"TotalRoomCount\":1,\"GrandTotalPaxCount\":3,\"TotalPaxMaleCount\":3,\"PackagePlanName\":\"[B2B] Room only - Net rate mode - 1477635731\",\"PackagePlanCode\":1477635731,\"MealCondition\":\"WithoutMeal\",\"SpecificMealCondition\":\"None Specified\",\"OtherServiceInformation\":\"Method of settlement: Travel company settlement\\nHighFloor;2024 Taiwan Seasonal Campaign;This booking was made through Trip.com, a Ctrip Group brand.\\nGuest Names: LEI PENG LAM\"},\"BasicRateInformation\":{\"RoomRateOrPersonalRate\":\"RoomRate\",\"TaxServiceFee\":\"IncludingServiceAndTax\",\"TotalAccommodationCharge\":254361},\"RoomAndGuestInformation\":{\"RoomAndGuestList\":[{\"RoomInformation\":{\"RoomTypeCode\":494193999,\"RoomTypeName\":\"Deluxe Family Room - 494193999\",\"PerRoomPaxCount\":3,\"RoomPaxMaleCount\":3},\"RoomRateInformation\":{\"RoomDate\":\"2025-08-26\",\"TotalPerRoomRate\":84787}},{\"RoomInformation\":{\"RoomTypeCode\":494193999,\"RoomTypeName\":\"Deluxe Family Room - 494193999\",\"PerRoomPaxCount\":3,\"RoomPaxMaleCount\":3},\"RoomRateInformation\":{\"RoomDate\":\"2025-08-27\",\"TotalPerRoomRate\":84787}},{\"RoomInformation\":{\"RoomTypeCode\":494193999,\"RoomTypeName\":\"Deluxe Family Room - 494193999\",\"PerRoomPaxCount\":3,\"RoomPaxMaleCount\":3},\"RoomRateInformation\":{\"RoomDate\":\"2025-08-28\",\"TotalPerRoomRate\":84787}}]},\"RisaplsInformation\":{\"RisaplsCommonInformation\":{\"Basic\":{\"SalesOfficeCompanyCode\":\"2Z\",\"TelegramDiv\":\"\",\"RisaplsDataID\":\"\",\"RisaplsTelegramNumber\":\"\",\"TelegramData\":\"NewBook Trip.com Group(new) SNT-NET 06-17 11:49 (2Z)\\nBooking No.: 1128140158951644 NO.00004595 Busan Cotice the Bridge(121182086)\\nGuest:\\n LEI PENG LAM TEL:\\n LEI PENG LAM\\n Mail:hotelSupport@trip.com\\n\\nMember:\\n LEI/PENG LAM\\n LEI/PENG LAM\\n\\nRate Name:[B2B] Room only - Net rate mode - 1477635731(1477635731)\\nCheck-In:2025.08.26 3night No Meals incl. service charge and taxes\\nTransportaion: Check-in time:15:00\\nNo. of Guests: 3Person Details:(Adults)3Person\\nNo. of Rooms : 1Room\\n08.26 494193999 (Deluxe Family Room - 494193999) 84,787KRW Guest:LEI PENG LAM\\n Adults 3Person\\n08.27 494193999 (Deluxe Family Room - 494193999) 84,787KRW Guest:LEI PENG LAM\\n Adults 3Person\\n08.28 494193999 (Deluxe Family Room - 494193999) 84,787KRW Guest:LEI PENG LAM\\n Adults 3Person\\n Accommodation cost : 254,361KRW\\n\\n Total Cost : 254,361KRW\\n [ Amounts claimed ] : 0KRW\\n ----------------------------------------------------------------\\n Method of settlement: Travel company settlement\\nRemarks:\\nHighFloor;2024 Taiwan Seasonal Campaign;This booking was made through Trip.com, a Ctrip Group brand.\\nGuest Names: LEI PENG LAM\\n\\nSales channels:\\nTrip.com Group(new)(2Z) TEL 008216883666\\nMail hotelSupport@trip.com\\n\\nRoom cost will be covered by Trip.com Group according to the contract.\\n---\",\"Email\":\"hotelSupport@trip.com\",\"TotalPaxManCount\":3,\"Version\":2,\"AccommodationId\":\"M43028\"},\"Allotment\":{\"AssignDiv\":1,\"GenderDiv\":0,\"HandleDiv\":1,\"RsvUserDiv\":1,\"UseDiv\":1},\"RoomAndRoomRateInformation\":[{\"RoomInformation\":{\"RoomTypeCode\":494193999,\"RoomTypeName\":\"Deluxe Family Room - 494193999\",\"PerRoomPaxCount\":3,\"RoomPaxMaleCount\":3,\"RoomTypeAgent\":\"2Z\",\"RoomFrame\":\"--\",\"NetRmTypeGroupCode\":6,\"PlanGroupCode\":7,\"RepresentativePersonName\":\"LEI PENG LAM\"},\"RoomRateInformation\":{\"RoomDate\":\"2025-08-26\",\"TotalPerRoomRate\":84787,\"RoomRatePaxMaleCount\":3}},{\"RoomInformation\":{\"RoomTypeCode\":494193999,\"RoomTypeName\":\"Deluxe Family Room - 494193999\",\"PerRoomPaxCount\":3,\"RoomPaxMaleCount\":3,\"RoomTypeAgent\":\"2Z\",\"RoomFrame\":\"--\",\"NetRmTypeGroupCode\":6,\"PlanGroupCode\":7,\"RepresentativePersonName\":\"LEI PENG LAM\"},\"RoomRateInformation\":{\"RoomDate\":\"2025-08-27\",\"TotalPerRoomRate\":84787,\"RoomRatePaxMaleCount\":3}},{\"RoomInformation\":{\"RoomTypeCode\":494193999,\"RoomTypeName\":\"Deluxe Family Room - 494193999\",\"PerRoomPaxCount\":3,\"RoomPaxMaleCount\":3,\"RoomTypeAgent\":\"2Z\",\"RoomFrame\":\"--\",\"NetRmTypeGroupCode\":6,\"PlanGroupCode\":7,\"RepresentativePersonName\":\"LEI PENG LAM\"},\"RoomRateInformation\":{\"RoomDate\":\"2025-08-28\",\"TotalPerRoomRate\":84787,\"RoomRatePaxMaleCount\":3}}],\"Member\":{\"UserName\":\"LEI/PENG LAM\",\"UserKana\":\"LEI/PENG LAM\"},\"OtherInfo\":{\"GuestRequest\":\"HighFloor;2024 Taiwan Seasonal Campaign;This booking was made through Trip.com, a Ctrip Group brand.\",\"AdditionalInformation\":\"Guest Names: LEI PENG LAM\"}},\"AgentNativeInformation\":{\"Extend\":{\"AmountClaimed\":0},\"Extendmytrip\":{\"SettlementDiv\":6}}}}}"
56
+ "rawData": "{\"?xml\":\"\",\"AllotmentBookingReport\":{\"TransactionType\":{\"DataFrom\":\"FromTravelAgency\",\"DataClassification\":\"NewBookReport\",\"DataID\":\"1116603917-1\",\"SystemDate\":\"2025-07-22\"},\"AccommodationInformation\":{\"AccommodationName\":\"Jeju Centerpoint N\",\"AccommodationCode\":109485531},\"SalesOfficeInformation\":{\"SalesOfficeCompanyName\":\"Trip.com Group(new)\",\"SalesOfficeName\":\"Trip.com Group(new)\",\"SalesOfficeCode\":\"2Z\",\"SalesOfficeEmail\":\"hotelSupport@trip.com\",\"SalesOfficePhoneNumber\":8216883666},\"BasicInformation\":{\"TravelAgencyBookingNumber\":1400819165251503,\"TravelAgencyBookingDate\":\"2025-07-22\",\"TravelAgencyBookingTime\":\"07:50:53\",\"TravelAgencyReportNumber\":4972,\"GuestOrGroupNameSingleByte\":\"JUNG ARIN\",\"GuestOrGroupNameKanjiName\":\"JUNG ARIN\",\"CheckInDate\":\"2025-08-06\",\"CheckInTime\":\"15:00:00\",\"CheckOutDate\":\"2025-08-07\",\"Nights\":1,\"TotalRoomCount\":1,\"GrandTotalPaxCount\":4,\"TotalPaxMaleCount\":2,\"TotalChildB50Count\":2,\"PackagePlanName\":\"스위트 - 1478366334\",\"PackagePlanCode\":1478366334,\"MealCondition\":\"WithoutMeal\",\"SpecificMealCondition\":\"None Specified\",\"OtherServiceInformation\":\"Method of settlement: Travel company settlement\\nQuiet room preferred;Good view;Away from elevator;Basic Deal;For contacting the guest please dial: +82269178710(verification code:797800)or +827079157125(verification code:797800);Please contact guest by system generated mail (jejucenterpoint.337smd7gml930rt@guest.trip.com), preferred language: (Korean);This booking was made through Trip.com, a Ctrip Group brand.;Customer phone number:82-1062719614;Contact guest by Korean; Contact Trip.com via hotelSupport@trip.com\\nGuest Names: JUNG ARIN; JUNG HOEGYEONG; JUNG WOOHYEOK; LEE JAESUN\"},\"BasicRateInformation\":{\"RoomRateOrPersonalRate\":\"RoomRate\",\"TaxServiceFee\":\"IncludingServiceAndTax\",\"TotalAccommodationCharge\":110500},\"RoomAndGuestInformation\":{\"RoomAndGuestList\":{\"RoomInformation\":{\"RoomTypeCode\":515064650,\"RoomTypeName\":\"Suite - 515064650\",\"PerRoomPaxCount\":4,\"RoomPaxMaleCount\":2,\"RoomChildB50Count\":2},\"RoomRateInformation\":[{\"RoomDate\":\"2025-08-06\",\"TotalPerRoomRate\":110500},{\"RoomDate\":\"2025-08-06\"}]}},\"RisaplsInformation\":{\"RisaplsCommonInformation\":{\"Basic\":{\"SalesOfficeCompanyCode\":\"2Z\",\"TelegramDiv\":\"\",\"RisaplsDataID\":\"\",\"RisaplsTelegramNumber\":\"\",\"TelegramData\":\"NewBook Trip.com Group(new) SNT-NET 07-22 07:50 (2Z)\\nBooking No.: 1400819165251503 NO.00004972 Jeju Centerpoint N(109485531)\\nGuest:\\n JUNG ARIN TEL:\\n JUNG ARIN\\n Mail:jejucenterpoint.337smd7gml930rt@guest.trip.com\\n\\nMember:\\n JUNG/ARIN\\n JUNG/ARIN\\n\\nRate Name:스위트 - 1478366334(1478366334)\\nCheck-In:2025.08.06 1night No Meals incl. service charge and taxes\\nTransportaion: Check-in time:15:00\\nNo. of Guests: 4Person Details:(Adults)2Person+(KidsB)2Person\\nNo. of Rooms : 1Room\\n08.06 515064650 (Suite - 515064650) 110,500KRW Guest:JUNG ARIN\\n Adults 2Person\\n KidsB 1Person 添寝有・食事無(11歳)\\n KidsB 1Person 添寝有・食事無(12歳)\\n Accommodation cost : 110,500KRW\\n\\n Total Cost : 110,500KRW\\n [ Amounts claimed ] : 0KRW\\n ----------------------------------------------------------------\\n Method of settlement: Travel company settlement\\nRemarks:\\nQuiet room preferred;Good view;Away from elevator;Basic Deal;For contacting the guest please dial: +82269178710(verification code:797800)or +827079157125(verification code:797800);Please contact guest by system generated mail (jejucenterpoint.337smd7gml930rt@guest.trip.com), preferred language: (Korean);This booking was made through Trip.com, a Ctrip Group brand.;Customer phone number:82-1062719614;Contact guest by Korean; Contact Trip.com via hotelSupport@trip.com\\nGuest Names: JUNG ARIN; JUNG HOEGYEONG; JUNG WOOHYEOK; LEE JAESUN\\n\\nSales channels:\\nTrip.com Group(new)(2Z) TEL 008216883666\\nMail hotelSupport@trip.com\\n\\nRoom cost will be covered by Trip.com Group according to the contract.\\n---\",\"Email\":\"jejucenterpoint.337smd7gml930rt@guest.trip.com\",\"TotalPaxManCount\":2,\"Version\":2,\"AccommodationId\":\"I58252\"},\"Allotment\":{\"AssignDiv\":1,\"GenderDiv\":0,\"HandleDiv\":1,\"RsvUserDiv\":1,\"UseDiv\":1},\"RoomAndRoomRateInformation\":{\"RoomInformation\":{\"RoomTypeCode\":515064650,\"RoomTypeName\":\"Suite - 515064650\",\"PerRoomPaxCount\":4,\"RoomPaxMaleCount\":2,\"RoomChildB50Count\":2,\"RoomChildB50Request\":\"添寝有・食事無(11歳)\\n添寝有・食事無(12歳)\",\"RoomTypeAgent\":\"2Z\",\"RoomFrame\":\"--\",\"NetRmTypeGroupCode\":4,\"PlanGroupCode\":4,\"RepresentativePersonName\":\"JUNG ARIN\"},\"RoomRateInformation\":[{\"RoomDate\":\"2025-08-06\",\"TotalPerRoomRate\":110500,\"RoomRatePaxMaleCount\":2,\"RoomRateChildB50Count\":1,\"RoomRateChildB50Request\":\"添寝有・食事無(11歳)\"},{\"RoomDate\":\"2025-08-06\",\"RoomRateChildB50Count\":1,\"RoomRateChildB50Request\":\"添寝有・食事無(12歳)\"}]},\"Member\":{\"UserName\":\"JUNG/ARIN\",\"UserKana\":\"JUNG/ARIN\"},\"OtherInfo\":{\"GuestRequest\":\"Quiet room preferred;Good view;Away from elevator;Basic Deal;For contacting the guest please dial: +82269178710(verification code:797800)or +827079157125(verification code:797800);Please contact guest by system generated mail (jejucenterpoint.337smd7gml930rt@guest.trip.com), preferred language: (Korean);This booking was made through Trip.com, a Ctrip Group brand.;Customer phone number:82-1062719614;Contact guest by Korean; Contact Trip.com via hotelSupport@trip.com\",\"AdditionalInformation\":\"Guest Names: JUNG ARIN; JUNG HOEGYEONG; JUNG WOOHYEOK; LEE JAESUN\"}},\"AgentNativeInformation\":{\"Extend\":{\"AmountClaimed\":0},\"Extendmytrip\":{\"SettlementDiv\":6}}}}}"
663
57
  }
664
58
  ]