fix conflict
This commit is contained in:
commit
669a28bed3
|
@ -654,4 +654,10 @@ export class AppController {
|
|||
html(@Body('email') email: string, @Body('name') name: string) {
|
||||
return this.appService.html(email, name);
|
||||
}
|
||||
|
||||
@Get('reservation/findReservationUser/:id')
|
||||
findReservationUser(@Param('id') paramComment: string) {
|
||||
return this.appService.findReservationUser(paramComment);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -823,8 +823,6 @@ export class AppService {
|
|||
.pipe(map((message: string) => ({ message })));
|
||||
}
|
||||
|
||||
|
||||
|
||||
/* Function to generate combination of password */
|
||||
generatePassword() {
|
||||
var pass = '';
|
||||
|
@ -841,8 +839,6 @@ export class AppService {
|
|||
return pass;
|
||||
}
|
||||
|
||||
|
||||
|
||||
async saveTenantNumHouse(community_id: string, number_house: string, tenant_id: string) {
|
||||
|
||||
const pattern = { cmd: 'saveTenantNumHouse' }
|
||||
|
@ -855,4 +851,13 @@ export class AppService {
|
|||
)
|
||||
}
|
||||
|
||||
|
||||
findReservationUser(paramGuestId: string) {
|
||||
const pattern = { cmd: 'findReservationUser' };
|
||||
const payload = { id: paramGuestId };
|
||||
return this.clientReservationApp
|
||||
.send<string>(pattern, payload)
|
||||
.pipe(map((message: string) => ({ message })));
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -72,7 +72,7 @@ export default function App() {
|
|||
<UserContextProvider>
|
||||
<NavigationContainer>
|
||||
<Stack.Navigator initialRouteName="LogIn">
|
||||
<Stack.Screen name="Inicio" component={LogIn} options={{
|
||||
<Stack.Screen name="Inicio" component={Reservas} options={{
|
||||
headerStyle: {
|
||||
backgroundColor: "#D7A86E"
|
||||
}
|
||||
|
|
|
@ -18,6 +18,8 @@ export default function Reservas({navigation}) {
|
|||
const { user } = useContext(UserContext)
|
||||
const [isRequesting, setIsRequesting] = useState(false);
|
||||
const [reservas, setReservas] = useState([]);
|
||||
const id = user._id;
|
||||
//const id = "6301df20dac7dcf76dcecade";
|
||||
|
||||
|
||||
useEffect(() => {
|
||||
|
@ -26,7 +28,7 @@ export default function Reservas({navigation}) {
|
|||
setIsRequesting(true);
|
||||
|
||||
try {
|
||||
const jsonResponse = await fetch(`${API.BASE_URL}/reservation/allReservations`, {
|
||||
const jsonResponse = await fetch(`${API.BASE_URL}/reservation/findReservationUser/`+`${id}`, {
|
||||
method: "GET",
|
||||
headers: {
|
||||
'Content-Type': 'application/json'
|
||||
|
|
|
@ -5,7 +5,6 @@
|
|||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "servicio-reservaciones",
|
||||
"version": "0.0.1",
|
||||
"license": "UNLICENSED",
|
||||
"dependencies": {
|
||||
|
|
|
@ -50,4 +50,11 @@ export class ReservationsController {
|
|||
let community_id = reservation['community_id'];
|
||||
return this.reservationsService.removeIdCommunity(community_id);
|
||||
}
|
||||
|
||||
@MessagePattern({ cmd: 'findReservationUser' })
|
||||
findReservationUser(@Payload() id: string) {
|
||||
let _id = id['id'];
|
||||
return this.reservationsService.findReservationUser(_id);
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
@ -52,4 +52,9 @@ export class ReservationsService {
|
|||
async findReservationsByCommunity(community_id: string){
|
||||
return this.reservationModel.find({ community_id: community_id }).exec();
|
||||
}
|
||||
|
||||
async findReservationUser(id: string): Promise<Reservation[]> {
|
||||
return this.reservationModel.find({user_id:id}).setOptions({ sanitizeFilter: true }).exec();
|
||||
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue