Merge pull request #195 from DeimosPr4/agregar-campos-area-nombre
add nuevas columnas
This commit is contained in:
commit
36d2f9817a
|
@ -506,6 +506,8 @@ export class AppController {
|
||||||
@Body('date_entry') date_entry: Date,
|
@Body('date_entry') date_entry: Date,
|
||||||
@Body('user_id') user_id: string,
|
@Body('user_id') user_id: string,
|
||||||
@Body('common_area_id') common_area_id: string,
|
@Body('common_area_id') common_area_id: string,
|
||||||
|
@Body('common_area_name') common_area_name: string,
|
||||||
|
@Body('communty_id') communty_id: string,
|
||||||
) {
|
) {
|
||||||
return this.appService.createReservation(
|
return this.appService.createReservation(
|
||||||
start_time,
|
start_time,
|
||||||
|
@ -514,6 +516,8 @@ export class AppController {
|
||||||
date_entry,
|
date_entry,
|
||||||
user_id,
|
user_id,
|
||||||
common_area_id,
|
common_area_id,
|
||||||
|
common_area_name,
|
||||||
|
communty_id,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -605,11 +605,13 @@ export class AppService {
|
||||||
|
|
||||||
//POST parameter from API
|
//POST parameter from API
|
||||||
createReservation(start_time: string, finish_time: string, status: string,
|
createReservation(start_time: string, finish_time: string, status: string,
|
||||||
date_entry: Date, user_id: string, common_area_id: string) {
|
date_entry: Date, user_id: string, common_area_id: string,
|
||||||
|
common_area_name: string, communty_id: string) {
|
||||||
const pattern = { cmd: 'createReservation' };
|
const pattern = { cmd: 'createReservation' };
|
||||||
const payload = {
|
const payload = {
|
||||||
start_time: start_time, finish_time: finish_time, status: status,
|
start_time: start_time, finish_time: finish_time, status: status,
|
||||||
date_entry: date_entry, user_id: user_id, common_area_id: common_area_id
|
date_entry: date_entry, user_id: user_id, common_area_id: common_area_id,
|
||||||
|
common_area_name: common_area_name, communty_id: communty_id
|
||||||
};
|
};
|
||||||
return this.clientReservationApp
|
return this.clientReservationApp
|
||||||
.send<string>(pattern, payload)
|
.send<string>(pattern, payload)
|
||||||
|
|
|
@ -20,6 +20,13 @@ export class Reservation {
|
||||||
@Prop()
|
@Prop()
|
||||||
common_area_id: string;
|
common_area_id: string;
|
||||||
|
|
||||||
|
@Prop()
|
||||||
|
common_area_name: string;
|
||||||
|
|
||||||
|
|
||||||
|
@Prop()
|
||||||
|
community_id: string;
|
||||||
|
|
||||||
@Prop()
|
@Prop()
|
||||||
user_id: string;
|
user_id: string;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue