Merge branch 'agregar-campos-area-nombre' into US-32-ListarReservas
This commit is contained in:
		
						commit
						0e9c92f744
					
				| 
						 | 
				
			
			@ -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,
 | 
			
		||||
    );
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -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<string>(pattern, payload)
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -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;
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -7164,3 +7164,7 @@
 | 
			
		|||
    flex-direction: column;
 | 
			
		||||
    align-items: center;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.layout-config-button{
 | 
			
		||||
    display: none!important;
 | 
			
		||||
}
 | 
			
		||||
		Loading…
	
		Reference in New Issue