Overview
Summary
Contact
Donate
Imprint
Prompt for the
CurrencyView
Please create a React-JS view called "CurrencyView" for the fields of the Currency entity. The CurrencyView must contain the following fields: - name: Code type: STRING - name: IsActive type: BOOL - name: Name type: STRING - name: Symbol type: STRING An existing Currency entity should be loaded from the relative URL: "/CurrencyService/currency/{id}" (HTTP-GET) If a new Currency entity has been created, the new entity should be posted to the relative URL: "/CurrencyService/currency" (HTTP-POST) If an existing Currency entity has been updated, the modified entity should be sent to the relative URL: "/CurrencyService/currency/{id}" (HTTP-PUT) If an existing Currency entity has to be deleted, the following relative URL should be called: "/CurrencyService/currency/{id}" (HTTP-DELETE) Add a HTML table to the view with the following StayBookingPriceBreakdown columns: - column: StayBooking - column: Amount - column: Description - column: Currency - column: Date - column: LineType The table should have the title "StayBookingPriceBreakdowns" und the data must be loaded from the server with the following relative URL: "/CurrencyService/staybookingpricebreakdown/currency/{id}" Add a HTML table to the view with the following StayBooking columns: - column: Booking - column: CheckOutDate - column: RoomType - column: Adults - column: Children - column: SpecialRequests - column: NumberOfRooms - column: RoomRatePlan - column: CheckInDate - column: BaseAmount - column: Currency - column: CancellationPolicySnapshot - column: TaxesAmount - column: Property - column: FeesAmount The table should have the title "StayBookings" und the data must be loaded from the server with the following relative URL: "/StayBookingService/staybooking/currency/{id}" Add a HTML table to the view with the following RoomRatePlanPrice columns: - column: DateFrom - column: Currency - column: TaxesIncluded - column: FeesIncluded - column: PricePerNight - column: RoomRatePlan - column: DateTo The table should have the title "RoomRatePlanPrices" und the data must be loaded from the server with the following relative URL: "/CurrencyService/roomrateplanprice/currency/{id}" Add a HTML table to the view with the following CarRentalBooking columns: - column: TotalAmount - column: CarRentalProduct - column: DropoffLocation - column: DropoffDateTime - column: Booking - column: PickupLocation - column: Currency - column: PickupDateTime The table should have the title "CarRentalBookings" und the data must be loaded from the server with the following relative URL: "/CarRentalLocationService/carrentalbooking/currency/{id}" Add a HTML table to the view with the following FlightBooking columns: - column: Booking - column: Currency - column: TotalAmount - column: CabinClass - column: PnrCode The table should have the title "FlightBookings" und the data must be loaded from the server with the following relative URL: "/CurrencyService/flightbooking/currency/{id}" Add a HTML table to the view with the following Payment columns: - column: Currency - column: Booking - column: Status - column: ProviderReference - column: Amount - column: ProcessedAt - column: CreatedAt - column: PaymentMethod The table should have the title "Payments" und the data must be loaded from the server with the following relative URL: "/CurrencyService/payment/currency/{id}" Add a HTML table to the view with the following AirportTransferBooking columns: - column: PickupAddress - column: Booking - column: PickupDateTime - column: Passengers - column: DropoffAddress - column: AirportTransferProduct - column: TotalAmount - column: Currency The table should have the title "AirportTransferBookings" und the data must be loaded from the server with the following relative URL: "/BookingService/airporttransferbooking/currency/{id}" Add a HTML table to the view with the following AttractionBooking columns: - column: TotalAmount - column: Children - column: Currency - column: AttractionSchedule - column: Booking - column: Adults The table should have the title "AttractionBookings" und the data must be loaded from the server with the following relative URL: "/AttractionBookingService/attractionbooking/currency/{id}" Add a HTML table to the view with the following TravelCreditTransaction columns: - column: UserAccount - column: Amount - column: CreatedAt - column: Booking - column: Description - column: Currency - column: Type The table should have the title "TravelCreditTransactions" und the data must be loaded from the server with the following relative URL: "/UserAccountService/travelcredittransaction/currency/{id}" Add a HTML table to the view with the following Booking columns: - column: Channel - column: UserAccount - column: Currency - column: UpdatedAt - column: Status - column: TotalAmount - column: DisplayAmount - column: CreatedAt The table should have the title "Bookings" und the data must be loaded from the server with the following relative URL: "/BookingService/booking/currency/{id}" Add a HTML table to the view with the following UserAccount columns: - column: DefaultCurrency - column: Email - column: CreatedAt - column: PhoneNumber - column: DefaultLanguage - column: PasswordHash - column: IsActive - column: FullName The table should have the title "UserAccounts" und the data must be loaded from the server with the following relative URL: "/UserAccountService/useraccount/defaultcurrency/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint