Overview

Summary

ContactDonateImprint


6. CURRENCY MODULE (UI prompt)



Module Entities (16)

EntityAliasModuleGlobal Schema
(1) AirportTransferBookingAirportTransferBookingBookingModuleBookingCom
(2) AttractionBookingAttractionBookingAttractionBookingModuleBookingCom
(3) BookingBookingBookingModuleBookingCom
(4) CarRentalBookingCarRentalBookingCarRentalLocationModuleBookingCom
(5) CurrencyCurrencyCurrencyModuleBookingCom
(6) FlightBookingFlightBookingCurrencyModuleBookingCom
(7) FlightBookingSegmentFlightBookingSegmentAirportModuleBookingCom
(8) FlightPassengerFlightPassengerLocationCityModuleBookingCom
(9) PaymentPaymentCurrencyModuleBookingCom
(10) PaymentMethodPaymentMethodUserAccountModuleBookingCom
(11) RoomRatePlanRoomRatePlanStayBookingModuleBookingCom
(12) RoomRatePlanPriceRoomRatePlanPriceCurrencyModuleBookingCom
(13) StayBookingStayBookingStayBookingModuleBookingCom
(14) StayBookingPriceBreakdownStayBookingPriceBreakdownCurrencyModuleBookingCom
(15) TravelCreditTransactionTravelCreditTransactionUserAccountModuleBookingCom
(16) UserAccountUserAccountUserAccountModuleBookingCom

Module Interfaces (34)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /staybookingpricebreakdown/staybooking/{id}findAllStayBookingPriceBreakdownOfStayBooking(id)CurrencyModuleGETStayBooking StayBookingPriceBreakdown
(2) /currency/{id}deleteCurrencyById(id)CurrencyModuleDELETECurrency
(3) /roomrateplanpricefindAllRoomRatePlanPrice()CurrencyModuleGETRoomRatePlanPrice
(4) /payment/booking/{id}findAllPaymentOfBooking(id)CurrencyModuleGETBooking Payment
(5) /roomrateplanprice/{id}deleteRoomRatePlanPriceById(id)CurrencyModuleDELETERoomRatePlanPrice
(6) /roomrateplanpriceinsertRoomRatePlanPrice(roomrateplanprice)CurrencyModulePOSTRoomRatePlanPrice
(7) /staybookingpricebreakdowninsertStayBookingPriceBreakdown(staybookingpricebreakdown)CurrencyModulePOSTStayBookingPriceBreakdown
(8) /paymentfindAllPayment()CurrencyModuleGETPayment
(9) /roomrateplanprice/{id}findRoomRatePlanPriceById(id)CurrencyModuleGETRoomRatePlanPrice
(10) /currency/{id}findCurrencyById(id)CurrencyModuleGETCurrency
(11) /flightbooking/{id}deleteFlightBookingById(id)CurrencyModuleDELETEFlightBooking
(12) /staybookingpricebreakdownfindAllStayBookingPriceBreakdown()CurrencyModuleGETStayBookingPriceBreakdown
(13) /flightbookinginsertFlightBooking(flightbooking)CurrencyModulePOSTFlightBooking
(14) /paymentinsertPayment(payment)CurrencyModulePOSTPayment
(15) /staybookingpricebreakdown/currency/{id}findAllStayBookingPriceBreakdownOfCurrency(id)CurrencyModuleGETCurrency StayBookingPriceBreakdown
(16) /payment/{id}findPaymentById(id)CurrencyModuleGETPayment
(17) /staybookingpricebreakdown/{id}updateStayBookingPriceBreakdownById(staybookingpricebreakdown)CurrencyModulePUTStayBookingPriceBreakdown
(18) /roomrateplanprice/roomrateplan/{id}findAllRoomRatePlanPriceOfRoomRatePlan(id)CurrencyModuleGETRoomRatePlan RoomRatePlanPrice
(19) /payment/{id}updatePaymentById(payment)CurrencyModulePUTPayment
(20) /currencyinsertCurrency(currency)CurrencyModulePOSTCurrency
(21) /currency/{id}updateCurrencyById(currency)CurrencyModulePUTCurrency
(22) /payment/paymentmethod/{id}findAllPaymentOfPaymentMethod(id)CurrencyModuleGETPaymentMethod Payment
(23) /currencyfindAllCurrency()CurrencyModuleGETCurrency
(24) /roomrateplanprice/currency/{id}findAllRoomRatePlanPriceOfCurrency(id)CurrencyModuleGETCurrency RoomRatePlanPrice
(25) /payment/currency/{id}findAllPaymentOfCurrency(id)CurrencyModuleGETCurrency Payment
(26) /payment/{id}deletePaymentById(id)CurrencyModuleDELETEPayment
(27) /staybookingpricebreakdown/{id}deleteStayBookingPriceBreakdownById(id)CurrencyModuleDELETEStayBookingPriceBreakdown
(28) /flightbooking/currency/{id}findAllFlightBookingOfCurrency(id)CurrencyModuleGETCurrency FlightBooking
(29) /flightbookingfindAllFlightBooking()CurrencyModuleGETFlightBooking
(30) /flightbooking/booking/{id}findAllFlightBookingOfBooking(id)CurrencyModuleGETBooking FlightBooking
(31) /flightbooking/{id}updateFlightBookingById(flightbooking)CurrencyModulePUTFlightBooking
(32) /staybookingpricebreakdown/{id}findStayBookingPriceBreakdownById(id)CurrencyModuleGETStayBookingPriceBreakdown
(33) /flightbooking/{id}findFlightBookingById(id)CurrencyModuleGETFlightBooking
(34) /roomrateplanprice/{id}updateRoomRatePlanPriceById(roomrateplanprice)CurrencyModulePUTRoomRatePlanPrice






6.1 CURRENCY


CurrencyCurrencyModuleBookingCom

Properties (4)

PropertyTypeEntityReferenceModule
(1) CodeSTRINGCurrency
(2) IsActiveBOOLCurrency
(3) NameSTRINGCurrency
(4) SymbolSTRINGCurrency





Example:

final Currency currency = (Currency) invokeModule(CURRENCY_MODULE + "/currency/" + id, Currency.class);
if (currency != null) {
}
return currency;


6.2 FLIGHT BOOKING


FlightBookingCurrencyModuleBookingCom

Properties (5)

PropertyTypeEntityReferenceModule
(1) BookingINTFlightBookingBookingBookingModule
(2) CabinClassSTRINGFlightBooking
(3) CurrencyINTFlightBookingCurrencyCurrencyModule
(4) PnrCodeSTRINGFlightBooking
(5) TotalAmountSTRINGFlightBooking





Example:

final FlightBooking flightbooking = (FlightBooking) invokeModule(CURRENCY_MODULE + "/flightbooking/" + id, FlightBooking.class);
if (flightbooking != null) {
    final Booking booking1 = (Booking) invokeModule(BOOKING_MODULE + "/booking/" + flightbooking.getBooking().getId(), Booking.class);
    if (booking1 != null) {
        final UserAccount useraccount2 = (UserAccount) invokeModule(USER_ACCOUNT_MODULE + "/useraccount/" + booking1.getUserAccount().getId(), UserAccount.class);
        if (useraccount2 != null) {
            final Currency defaultcurrency3 = (Currency) invokeModule(CURRENCY_MODULE + "/currency/" + useraccount2.getDefaultCurrency().getId(), Currency.class);
            if (defaultcurrency3 != null) {
            }
            final Language defaultlanguage4 = (Language) invokeModule(LANGUAGE_MODULE + "/language/" + useraccount2.getDefaultLanguage().getId(), Language.class);
            if (defaultlanguage4 != null) {
            }
        }
        final Currency currency5 = (Currency) invokeModule(CURRENCY_MODULE + "/currency/" + booking1.getCurrency().getId(), Currency.class);
        if (currency5 != null) {
        }
    }
    final Currency currency6 = (Currency) invokeModule(CURRENCY_MODULE + "/currency/" + flightbooking.getCurrency().getId(), Currency.class);
    if (currency6 != null) {
    }
}
return flightbooking;


6.3 PAYMENT


PaymentCurrencyModuleBookingCom

Properties (8)

PropertyTypeEntityReferenceModule
(1) AmountSTRINGPayment
(2) BookingINTPaymentBookingBookingModule
(3) CreatedAtDATEPayment
(4) CurrencyINTPaymentCurrencyCurrencyModule
(5) PaymentMethodINTPaymentPaymentMethodUserAccountModule
(6) ProcessedAtDATEPayment
(7) ProviderReferenceSTRINGPayment
(8) StatusSTRINGPayment





Example:

final Payment payment = (Payment) invokeModule(CURRENCY_MODULE + "/payment/" + id, Payment.class);
if (payment != null) {
    final Currency currency1 = (Currency) invokeModule(CURRENCY_MODULE + "/currency/" + payment.getCurrency().getId(), Currency.class);
    if (currency1 != null) {
    }
    final Booking booking2 = (Booking) invokeModule(BOOKING_MODULE + "/booking/" + payment.getBooking().getId(), Booking.class);
    if (booking2 != null) {
        final UserAccount useraccount3 = (UserAccount) invokeModule(USER_ACCOUNT_MODULE + "/useraccount/" + booking2.getUserAccount().getId(), UserAccount.class);
        if (useraccount3 != null) {
            final Currency defaultcurrency4 = (Currency) invokeModule(CURRENCY_MODULE + "/currency/" + useraccount3.getDefaultCurrency().getId(), Currency.class);
            if (defaultcurrency4 != null) {
            }
            final Language defaultlanguage5 = (Language) invokeModule(LANGUAGE_MODULE + "/language/" + useraccount3.getDefaultLanguage().getId(), Language.class);
            if (defaultlanguage5 != null) {
            }
        }
        final Currency currency6 = (Currency) invokeModule(CURRENCY_MODULE + "/currency/" + booking2.getCurrency().getId(), Currency.class);
        if (currency6 != null) {
        }
    }
    final PaymentMethod paymentmethod7 = (PaymentMethod) invokeModule(USER_ACCOUNT_MODULE + "/paymentmethod/" + payment.getPaymentMethod().getId(), PaymentMethod.class);
    if (paymentmethod7 != null) {
        final UserAccount useraccount8 = (UserAccount) invokeModule(USER_ACCOUNT_MODULE + "/useraccount/" + paymentmethod7.getUserAccount().getId(), UserAccount.class);
        if (useraccount8 != null) {
            final Currency defaultcurrency9 = (Currency) invokeModule(CURRENCY_MODULE + "/currency/" + useraccount8.getDefaultCurrency().getId(), Currency.class);
            if (defaultcurrency9 != null) {
            }
            final Language defaultlanguage10 = (Language) invokeModule(LANGUAGE_MODULE + "/language/" + useraccount8.getDefaultLanguage().getId(), Language.class);
            if (defaultlanguage10 != null) {
            }
        }
    }
}
return payment;


6.4 ROOM RATE PLAN PRICE


RoomRatePlanPriceCurrencyModuleBookingCom

Properties (7)

PropertyTypeEntityReferenceModule
(1) CurrencyINTRoomRatePlanPriceCurrencyCurrencyModule
(2) DateFromDATERoomRatePlanPrice
(3) DateToDATERoomRatePlanPrice
(4) FeesIncludedBOOLRoomRatePlanPrice
(5) PricePerNightSTRINGRoomRatePlanPrice
(6) RoomRatePlanINTRoomRatePlanPriceRoomRatePlanStayBookingModule
(7) TaxesIncludedBOOLRoomRatePlanPrice





Example:

final RoomRatePlanPrice roomrateplanprice = (RoomRatePlanPrice) invokeModule(CURRENCY_MODULE + "/roomrateplanprice/" + id, RoomRatePlanPrice.class);
if (roomrateplanprice != null) {
    final Currency currency1 = (Currency) invokeModule(CURRENCY_MODULE + "/currency/" + roomrateplanprice.getCurrency().getId(), Currency.class);
    if (currency1 != null) {
    }
    final RoomRatePlan roomrateplan2 = (RoomRatePlan) invokeModule(STAY_BOOKING_MODULE + "/roomrateplan/" + roomrateplanprice.getRoomRatePlan().getId(), RoomRatePlan.class);
    if (roomrateplan2 != null) {
        final RoomType roomtype3 = (RoomType) invokeModule(ROOM_TYPE_MODULE + "/roomtype/" + roomrateplan2.getRoomType().getId(), RoomType.class);
        if (roomtype3 != null) {
            final Property property4 = (Property) invokeModule(PROPERTY_MODULE + "/property/" + roomtype3.getProperty().getId(), Property.class);
            if (property4 != null) {
                final LocationCity locationcity5 = (LocationCity) invokeModule(LOCATION_CITY_MODULE + "/locationcity/" + property4.getLocationCity().getId(), LocationCity.class);
                if (locationcity5 != null) {
                    final LocationRegion locationregion6 = (LocationRegion) invokeModule(LOCATION_CITY_MODULE + "/locationregion/" + locationcity5.getLocationRegion().getId(), LocationRegion.class);
                    if (locationregion6 != null) {
                        final LocationCountry locationcountry7 = (LocationCountry) invokeModule(LOCATION_CITY_MODULE + "/locationcountry/" + locationregion6.getLocationCountry().getId(), LocationCountry.class);
                        if (locationcountry7 != null) {
                        }
                    }
                    final LocationCountry locationcountry8 = (LocationCountry) invokeModule(LOCATION_CITY_MODULE + "/locationcountry/" + locationcity5.getLocationCountry().getId(), LocationCountry.class);
                    if (locationcountry8 != null) {
                    }
                }
                final PropertyType propertytype9 = (PropertyType) invokeModule(PROPERTY_MODULE + "/propertytype/" + property4.getPropertyType().getId(), PropertyType.class);
                if (propertytype9 != null) {
                }
                final LocationDistrict locationdistrict10 = (LocationDistrict) invokeModule(PROPERTY_MODULE + "/locationdistrict/" + property4.getLocationDistrict().getId(), LocationDistrict.class);
                if (locationdistrict10 != null) {
                    final LocationCity locationcity11 = (LocationCity) invokeModule(LOCATION_CITY_MODULE + "/locationcity/" + locationdistrict10.getLocationCity().getId(), LocationCity.class);
                    if (locationcity11 != null) {
                        final LocationRegion locationregion12 = (LocationRegion) invokeModule(LOCATION_CITY_MODULE + "/locationregion/" + locationcity11.getLocationRegion().getId(), LocationRegion.class);
                        if (locationregion12 != null) {
                            final LocationCountry locationcountry13 = (LocationCountry) invokeModule(LOCATION_CITY_MODULE + "/locationcountry/" + locationregion12.getLocationCountry().getId(), LocationCountry.class);
                            if (locationcountry13 != null) {
                            }
                        }
                        final LocationCountry locationcountry14 = (LocationCountry) invokeModule(LOCATION_CITY_MODULE + "/locationcountry/" + locationcity11.getLocationCountry().getId(), LocationCountry.class);
                        if (locationcountry14 != null) {
                        }
                    }
                }
                final LocationCountry locationcountry15 = (LocationCountry) invokeModule(LOCATION_CITY_MODULE + "/locationcountry/" + property4.getLocationCountry().getId(), LocationCountry.class);
                if (locationcountry15 != null) {
                }
                final PartnerAccount partneraccount16 = (PartnerAccount) invokeModule(PARTNER_ACCOUNT_MODULE + "/partneraccount/" + property4.getPartnerAccount().getId(), PartnerAccount.class);
                if (partneraccount16 != null) {
                }
            }
            final RoomTypeCategory roomtypecategory17 = (RoomTypeCategory) invokeModule(CAR_RENTAL_LOCATION_MODULE + "/roomtypecategory/" + roomtype3.getRoomTypeCategory().getId(), RoomTypeCategory.class);
            if (roomtypecategory17 != null) {
            }
        }
    }
}
return roomrateplanprice;


6.5 STAY BOOKING PRICE BREAKDOWN


StayBookingPriceBreakdownCurrencyModuleBookingCom

Properties (6)

PropertyTypeEntityReferenceModule
(1) AmountSTRINGStayBookingPriceBreakdown
(2) CurrencyINTStayBookingPriceBreakdownCurrencyCurrencyModule
(3) DateDATEStayBookingPriceBreakdown
(4) DescriptionSTRINGStayBookingPriceBreakdown
(5) LineTypeSTRINGStayBookingPriceBreakdown
(6) StayBookingINTStayBookingPriceBreakdownStayBookingStayBookingModule





Example:

final StayBookingPriceBreakdown staybookingpricebreakdown = (StayBookingPriceBreakdown) invokeModule(CURRENCY_MODULE + "/staybookingpricebreakdown/" + id, StayBookingPriceBreakdown.class);
if (staybookingpricebreakdown != null) {
    final StayBooking staybooking1 = (StayBooking) invokeModule(STAY_BOOKING_MODULE + "/staybooking/" + staybookingpricebreakdown.getStayBooking().getId(), StayBooking.class);
    if (staybooking1 != null) {
        final Booking booking2 = (Booking) invokeModule(BOOKING_MODULE + "/booking/" + staybooking1.getBooking().getId(), Booking.class);
        if (booking2 != null) {
            final UserAccount useraccount3 = (UserAccount) invokeModule(USER_ACCOUNT_MODULE + "/useraccount/" + booking2.getUserAccount().getId(), UserAccount.class);
            if (useraccount3 != null) {
                final Currency defaultcurrency4 = (Currency) invokeModule(CURRENCY_MODULE + "/currency/" + useraccount3.getDefaultCurrency().getId(), Currency.class);
                if (defaultcurrency4 != null) {
                }
                final Language defaultlanguage5 = (Language) invokeModule(LANGUAGE_MODULE + "/language/" + useraccount3.getDefaultLanguage().getId(), Language.class);
                if (defaultlanguage5 != null) {
                }
            }
            final Currency currency6 = (Currency) invokeModule(CURRENCY_MODULE + "/currency/" + booking2.getCurrency().getId(), Currency.class);
            if (currency6 != null) {
            }
        }
        final RoomType roomtype7 = (RoomType) invokeModule(ROOM_TYPE_MODULE + "/roomtype/" + staybooking1.getRoomType().getId(), RoomType.class);
        if (roomtype7 != null) {
            final Property property8 = (Property) invokeModule(PROPERTY_MODULE + "/property/" + roomtype7.getProperty().getId(), Property.class);
            if (property8 != null) {
                final LocationCity locationcity9 = (LocationCity) invokeModule(LOCATION_CITY_MODULE + "/locationcity/" + property8.getLocationCity().getId(), LocationCity.class);
                if (locationcity9 != null) {
                    final LocationRegion locationregion10 = (LocationRegion) invokeModule(LOCATION_CITY_MODULE + "/locationregion/" + locationcity9.getLocationRegion().getId(), LocationRegion.class);
                    if (locationregion10 != null) {
                        final LocationCountry locationcountry11 = (LocationCountry) invokeModule(LOCATION_CITY_MODULE + "/locationcountry/" + locationregion10.getLocationCountry().getId(), LocationCountry.class);
                        if (locationcountry11 != null) {
                        }
                    }
                    final LocationCountry locationcountry12 = (LocationCountry) invokeModule(LOCATION_CITY_MODULE + "/locationcountry/" + locationcity9.getLocationCountry().getId(), LocationCountry.class);
                    if (locationcountry12 != null) {
                    }
                }
                final PropertyType propertytype13 = (PropertyType) invokeModule(PROPERTY_MODULE + "/propertytype/" + property8.getPropertyType().getId(), PropertyType.class);
                if (propertytype13 != null) {
                }
                final LocationDistrict locationdistrict14 = (LocationDistrict) invokeModule(PROPERTY_MODULE + "/locationdistrict/" + property8.getLocationDistrict().getId(), LocationDistrict.class);
                if (locationdistrict14 != null) {
                    final LocationCity locationcity15 = (LocationCity) invokeModule(LOCATION_CITY_MODULE + "/locationcity/" + locationdistrict14.getLocationCity().getId(), LocationCity.class);
                    if (locationcity15 != null) {
                        final LocationRegion locationregion16 = (LocationRegion) invokeModule(LOCATION_CITY_MODULE + "/locationregion/" + locationcity15.getLocationRegion().getId(), LocationRegion.class);
                        if (locationregion16 != null) {
                            final LocationCountry locationcountry17 = (LocationCountry) invokeModule(LOCATION_CITY_MODULE + "/locationcountry/" + locationregion16.getLocationCountry().getId(), LocationCountry.class);
                            if (locationcountry17 != null) {
                            }
                        }
                        final LocationCountry locationcountry18 = (LocationCountry) invokeModule(LOCATION_CITY_MODULE + "/locationcountry/" + locationcity15.getLocationCountry().getId(), LocationCountry.class);
                        if (locationcountry18 != null) {
                        }
                    }
                }
                final LocationCountry locationcountry19 = (LocationCountry) invokeModule(LOCATION_CITY_MODULE + "/locationcountry/" + property8.getLocationCountry().getId(), LocationCountry.class);
                if (locationcountry19 != null) {
                }
                final PartnerAccount partneraccount20 = (PartnerAccount) invokeModule(PARTNER_ACCOUNT_MODULE + "/partneraccount/" + property8.getPartnerAccount().getId(), PartnerAccount.class);
                if (partneraccount20 != null) {
                }
            }
            final RoomTypeCategory roomtypecategory21 = (RoomTypeCategory) invokeModule(CAR_RENTAL_LOCATION_MODULE + "/roomtypecategory/" + roomtype7.getRoomTypeCategory().getId(), RoomTypeCategory.class);
            if (roomtypecategory21 != null) {
            }
        }
        final RoomRatePlan roomrateplan22 = (RoomRatePlan) invokeModule(STAY_BOOKING_MODULE + "/roomrateplan/" + staybooking1.getRoomRatePlan().getId(), RoomRatePlan.class);
        if (roomrateplan22 != null) {
            final RoomType roomtype23 = (RoomType) invokeModule(ROOM_TYPE_MODULE + "/roomtype/" + roomrateplan22.getRoomType().getId(), RoomType.class);
            if (roomtype23 != null) {
                final Property property24 = (Property) invokeModule(PROPERTY_MODULE + "/property/" + roomtype23.getProperty().getId(), Property.class);
                if (property24 != null) {
                    final LocationCity locationcity25 = (LocationCity) invokeModule(LOCATION_CITY_MODULE + "/locationcity/" + property24.getLocationCity().getId(), LocationCity.class);
                    if (locationcity25 != null) {
                        final LocationRegion locationregion26 = (LocationRegion) invokeModule(LOCATION_CITY_MODULE + "/locationregion/" + locationcity25.getLocationRegion().getId(), LocationRegion.class);
                        if (locationregion26 != null) {
                            final LocationCountry locationcountry27 = (LocationCountry) invokeModule(LOCATION_CITY_MODULE + "/locationcountry/" + locationregion26.getLocationCountry().getId(), LocationCountry.class);
                            if (locationcountry27 != null) {
                            }
                        }
                        final LocationCountry locationcountry28 = (LocationCountry) invokeModule(LOCATION_CITY_MODULE + "/locationcountry/" + locationcity25.getLocationCountry().getId(), LocationCountry.class);
                        if (locationcountry28 != null) {
                        }
                    }
                    final PropertyType propertytype29 = (PropertyType) invokeModule(PROPERTY_MODULE + "/propertytype/" + property24.getPropertyType().getId(), PropertyType.class);
                    if (propertytype29 != null) {
                    }
                    final LocationDistrict locationdistrict30 = (LocationDistrict) invokeModule(PROPERTY_MODULE + "/locationdistrict/" + property24.getLocationDistrict().getId(), LocationDistrict.class);
                    if (locationdistrict30 != null) {
                        final LocationCity locationcity31 = (LocationCity) invokeModule(LOCATION_CITY_MODULE + "/locationcity/" + locationdistrict30.getLocationCity().getId(), LocationCity.class);
                        if (locationcity31 != null) {
                            final LocationRegion locationregion32 = (LocationRegion) invokeModule(LOCATION_CITY_MODULE + "/locationregion/" + locationcity31.getLocationRegion().getId(), LocationRegion.class);
                            if (locationregion32 != null) {
                                final LocationCountry locationcountry33 = (LocationCountry) invokeModule(LOCATION_CITY_MODULE + "/locationcountry/" + locationregion32.getLocationCountry().getId(), LocationCountry.class);
                                if (locationcountry33 != null) {
                                }
                            }
                            final LocationCountry locationcountry34 = (LocationCountry) invokeModule(LOCATION_CITY_MODULE + "/locationcountry/" + locationcity31.getLocationCountry().getId(), LocationCountry.class);
                            if (locationcountry34 != null) {
                            }
                        }
                    }
                    final LocationCountry locationcountry35 = (LocationCountry) invokeModule(LOCATION_CITY_MODULE + "/locationcountry/" + property24.getLocationCountry().getId(), LocationCountry.class);
                    if (locationcountry35 != null) {
                    }
                    final PartnerAccount partneraccount36 = (PartnerAccount) invokeModule(PARTNER_ACCOUNT_MODULE + "/partneraccount/" + property24.getPartnerAccount().getId(), PartnerAccount.class);
                    if (partneraccount36 != null) {
                    }
                }
                final RoomTypeCategory roomtypecategory37 = (RoomTypeCategory) invokeModule(CAR_RENTAL_LOCATION_MODULE + "/roomtypecategory/" + roomtype23.getRoomTypeCategory().getId(), RoomTypeCategory.class);
                if (roomtypecategory37 != null) {
                }
            }
        }
        final Currency currency38 = (Currency) invokeModule(CURRENCY_MODULE + "/currency/" + staybooking1.getCurrency().getId(), Currency.class);
        if (currency38 != null) {
        }
        final Property property39 = (Property) invokeModule(PROPERTY_MODULE + "/property/" + staybooking1.getProperty().getId(), Property.class);
        if (property39 != null) {
            final LocationCity locationcity40 = (LocationCity) invokeModule(LOCATION_CITY_MODULE + "/locationcity/" + property39.getLocationCity().getId(), LocationCity.class);
            if (locationcity40 != null) {
                final LocationRegion locationregion41 = (LocationRegion) invokeModule(LOCATION_CITY_MODULE + "/locationregion/" + locationcity40.getLocationRegion().getId(), LocationRegion.class);
                if (locationregion41 != null) {
                    final LocationCountry locationcountry42 = (LocationCountry) invokeModule(LOCATION_CITY_MODULE + "/locationcountry/" + locationregion41.getLocationCountry().getId(), LocationCountry.class);
                    if (locationcountry42 != null) {
                    }
                }
                final LocationCountry locationcountry43 = (LocationCountry) invokeModule(LOCATION_CITY_MODULE + "/locationcountry/" + locationcity40.getLocationCountry().getId(), LocationCountry.class);
                if (locationcountry43 != null) {
                }
            }
            final PropertyType propertytype44 = (PropertyType) invokeModule(PROPERTY_MODULE + "/propertytype/" + property39.getPropertyType().getId(), PropertyType.class);
            if (propertytype44 != null) {
            }
            final LocationDistrict locationdistrict45 = (LocationDistrict) invokeModule(PROPERTY_MODULE + "/locationdistrict/" + property39.getLocationDistrict().getId(), LocationDistrict.class);
            if (locationdistrict45 != null) {
                final LocationCity locationcity46 = (LocationCity) invokeModule(LOCATION_CITY_MODULE + "/locationcity/" + locationdistrict45.getLocationCity().getId(), LocationCity.class);
                if (locationcity46 != null) {
                    final LocationRegion locationregion47 = (LocationRegion) invokeModule(LOCATION_CITY_MODULE + "/locationregion/" + locationcity46.getLocationRegion().getId(), LocationRegion.class);
                    if (locationregion47 != null) {
                        final LocationCountry locationcountry48 = (LocationCountry) invokeModule(LOCATION_CITY_MODULE + "/locationcountry/" + locationregion47.getLocationCountry().getId(), LocationCountry.class);
                        if (locationcountry48 != null) {
                        }
                    }
                    final LocationCountry locationcountry49 = (LocationCountry) invokeModule(LOCATION_CITY_MODULE + "/locationcountry/" + locationcity46.getLocationCountry().getId(), LocationCountry.class);
                    if (locationcountry49 != null) {
                    }
                }
            }
            final LocationCountry locationcountry50 = (LocationCountry) invokeModule(LOCATION_CITY_MODULE + "/locationcountry/" + property39.getLocationCountry().getId(), LocationCountry.class);
            if (locationcountry50 != null) {
            }
            final PartnerAccount partneraccount51 = (PartnerAccount) invokeModule(PARTNER_ACCOUNT_MODULE + "/partneraccount/" + property39.getPartnerAccount().getId(), PartnerAccount.class);
            if (partneraccount51 != null) {
            }
        }
    }
    final Currency currency52 = (Currency) invokeModule(CURRENCY_MODULE + "/currency/" + staybookingpricebreakdown.getCurrency().getId(), Currency.class);
    if (currency52 != null) {
    }
}
return staybookingpricebreakdown;


Overview

Summary

ContactDonateImprint