diff --git a/api-gateway/src/app.controller.ts b/api-gateway/src/app.controller.ts index 79a1cb3c..d762f5ce 100644 --- a/api-gateway/src/app.controller.ts +++ b/api-gateway/src/app.controller.ts @@ -481,7 +481,8 @@ export class AppController { @Body('date_entry') date_entry: Date, @Body('user_id') user_id: string, @Body('common_area_id') common_area_id: string, - @Body('community_id') community_id: string, + @Body('common_area_name') common_area_name: string, + @Body('communty_id') communty_id: string, ) { return this.appService.createReservation( start_time, @@ -490,7 +491,8 @@ export class AppController { date_entry, user_id, common_area_id, - community_id + common_area_name, + communty_id, ); } diff --git a/api-gateway/src/app.service.ts b/api-gateway/src/app.service.ts index 949b12f6..5660276a 100644 --- a/api-gateway/src/app.service.ts +++ b/api-gateway/src/app.service.ts @@ -598,12 +598,13 @@ export class AppService { //POST parameter from API createReservation(start_time: string, finish_time: string, status: string, - date_entry: Date, user_id: string, common_area_id: string, community_id: string) { + date_entry: Date, user_id: string, common_area_id: string, + common_area_name: string, communty_id: string) { const pattern = { cmd: 'createReservation' }; const payload = { start_time: start_time, finish_time: finish_time, status: status, date_entry: date_entry, user_id: user_id, common_area_id: common_area_id, - community_id: community_id + common_area_name: common_area_name, communty_id: communty_id }; return this.clientReservationApp .send(pattern, payload) diff --git a/servicio-reservaciones/src/schemas/reservation.schema.ts b/servicio-reservaciones/src/schemas/reservation.schema.ts index 34536ff6..a9ebd5b1 100644 --- a/servicio-reservaciones/src/schemas/reservation.schema.ts +++ b/servicio-reservaciones/src/schemas/reservation.schema.ts @@ -20,6 +20,13 @@ export class Reservation { @Prop() common_area_id: string; + @Prop() + common_area_name: string; + + + @Prop() + community_id: string; + @Prop() user_id: string; diff --git a/web-ui/web-react/public/assets/themes/khaki/theme.css b/web-ui/web-react/public/assets/themes/khaki/theme.css index cbdfe8aa..7ffdbdf3 100644 --- a/web-ui/web-react/public/assets/themes/khaki/theme.css +++ b/web-ui/web-react/public/assets/themes/khaki/theme.css @@ -7163,4 +7163,8 @@ display: flex; flex-direction: column; align-items: center; +} + +.layout-config-button{ + display: none!important; } \ No newline at end of file