finalizar eliminar inquilino
This commit is contained in:
		
							parent
							
								
									456d9ce4d0
								
							
						
					
					
						commit
						a9c02244a8
					
				| 
						 | 
				
			
			@ -224,9 +224,13 @@ export class AppController {
 | 
			
		|||
    return this.appService.deleteAdminCommunity(id);
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  @Delete('user/deleteTenant/:id')
 | 
			
		||||
  deleteTenant(@Param('id') id: string) {
 | 
			
		||||
    return this.appService.deleteTenant(id);
 | 
			
		||||
  @Put('user/deleteTenant/:id')
 | 
			
		||||
  deleteTenant(
 | 
			
		||||
    @Param('id') id: string,
 | 
			
		||||
    @Body('community_id') community_id: string,
 | 
			
		||||
    @Body('number_house') number_house: string
 | 
			
		||||
  ) {
 | 
			
		||||
    return this.appService.deleteTenant(id, community_id, number_house);
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  @Post('user/changeStatus')
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -271,9 +271,9 @@ export class AppService {
 | 
			
		|||
      .pipe(map((message: string) => ({ message })));
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  deleteTenant(id: string) {
 | 
			
		||||
  deleteTenant(id: string, community_id: string, number_house: string) {
 | 
			
		||||
    const pattern = { cmd: 'deleteTenant' };
 | 
			
		||||
    const payload = { id: id };
 | 
			
		||||
    const payload = { _id: id, community_id: community_id, number_house: number_house };
 | 
			
		||||
    return this.clientUserApp
 | 
			
		||||
      .send<string>(pattern, payload)
 | 
			
		||||
      .pipe(map((message: string) => ({ message })));
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -66,7 +66,6 @@ export class CommunitiesController {
 | 
			
		|||
 | 
			
		||||
  @MessagePattern({ cmd: 'deleteTenant' })
 | 
			
		||||
  deleteTenant(@Payload() body: string) {
 | 
			
		||||
 | 
			
		||||
   let id = body['_id'];
 | 
			
		||||
   let tenant_id = body['tenant_id'];
 | 
			
		||||
   let number_house = body['number_house'];
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -105,12 +105,10 @@ export class CommunitiesService {
 | 
			
		|||
 | 
			
		||||
 | 
			
		||||
  async deleteTenant(id: string, number_house: string, tenant_id: string) {
 | 
			
		||||
 | 
			
		||||
    let community = await this.findOne(id);
 | 
			
		||||
 | 
			
		||||
    await community.houses.map(house => {
 | 
			
		||||
      if (house.number_house == number_house &&
 | 
			
		||||
        house.tenants.tenant_id == tenant_id) {
 | 
			
		||||
      if (house.number_house === number_house) {
 | 
			
		||||
        house.tenants.tenant_id = "";
 | 
			
		||||
        house.state = "desocupada"
 | 
			
		||||
      }
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -133,7 +133,10 @@ export class UsersController {
 | 
			
		|||
 | 
			
		||||
  @MessagePattern({ cmd: 'deleteTenant' })
 | 
			
		||||
  deleteTenant(@Payload() user: any) {
 | 
			
		||||
    return this.userService.deleteTenant(user['_id']);
 | 
			
		||||
    let tenant_id =  user['_id'];
 | 
			
		||||
    return this.userService.deleteTenant(tenant_id, 
 | 
			
		||||
    user['community_id'], 
 | 
			
		||||
    user['number_house']);
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  @MessagePattern({ cmd: 'changeStatus' })
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -195,7 +195,7 @@ export class UsersService {
 | 
			
		|||
  }
 | 
			
		||||
 | 
			
		||||
  async deleteAdminSystem(id: string) {
 | 
			
		||||
    return this.userModel.findOneAndUpdate({ _id: id }, { status: '-1' }, {
 | 
			
		||||
    return this.userModel.findOneAndUpdate({ _id: id }, { status: '-1', number_house:'' }, {
 | 
			
		||||
      new: true,
 | 
			
		||||
    });
 | 
			
		||||
  }
 | 
			
		||||
| 
						 | 
				
			
			@ -206,10 +206,18 @@ export class UsersService {
 | 
			
		|||
    });
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  async deleteTenant(id: string) {
 | 
			
		||||
    return this.userModel.findOneAndUpdate({ _id: id }, { status: '-1' }, {
 | 
			
		||||
  async deleteTenant(tenant_id: string, community_id: string, number_house: string) {
 | 
			
		||||
 | 
			
		||||
    try{
 | 
			
		||||
      this.userModel.findOneAndUpdate({ _id: tenant_id }, { status: '-1' }, {
 | 
			
		||||
        new: true,
 | 
			
		||||
      });
 | 
			
		||||
  
 | 
			
		||||
      return await this.deleteTenantNumHouse(community_id, number_house, tenant_id);
 | 
			
		||||
    } catch(error){
 | 
			
		||||
      console.log(error)
 | 
			
		||||
      return error;
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  async validateEmail(email: string) {
 | 
			
		||||
| 
						 | 
				
			
			@ -272,7 +280,6 @@ export class UsersService {
 | 
			
		|||
  async deleteTenantNumHouse(community_id: string, number_house: string, tenant_id: string) {
 | 
			
		||||
    const pattern = { cmd: 'deleteTenant' }
 | 
			
		||||
    const payload = { _id: community_id, number_house: number_house, tenant_id: tenant_id }
 | 
			
		||||
 | 
			
		||||
    return await this.clientCommunityApp
 | 
			
		||||
      .send<string>(pattern, payload)
 | 
			
		||||
      .pipe(
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -184,6 +184,31 @@ const Inquilinos = () => {
 | 
			
		|||
  }
 | 
			
		||||
 | 
			
		||||
  const deleteTenant = () => {
 | 
			
		||||
    
 | 
			
		||||
    let _tenant = {
 | 
			
		||||
      community_id: tenant.community_id,
 | 
			
		||||
      number_house: tenant.number_house
 | 
			
		||||
    };
 | 
			
		||||
 | 
			
		||||
    fetch('http://localhost:4000/user/deleteTenant/' + tenant._id, {
 | 
			
		||||
      cache: 'no-cache',
 | 
			
		||||
      method: 'PUT',
 | 
			
		||||
      body: JSON.stringify(_tenant),
 | 
			
		||||
      headers: {
 | 
			
		||||
          'Content-Type': 'application/json'
 | 
			
		||||
      }
 | 
			
		||||
  })
 | 
			
		||||
      .then(
 | 
			
		||||
          function (response) {
 | 
			
		||||
              if (response.status != 201)
 | 
			
		||||
                  console.log('Ocurrió un error con el servicio: ' + response.status);
 | 
			
		||||
              else
 | 
			
		||||
                  return response.json();
 | 
			
		||||
          }
 | 
			
		||||
      )
 | 
			
		||||
      .then(
 | 
			
		||||
          function (response) {
 | 
			
		||||
 | 
			
		||||
              let _tenants = tenants.filter((val) => val._id !== tenant._id)
 | 
			
		||||
              setTenants(_tenants)
 | 
			
		||||
              setDeleteTenantDialog(false)
 | 
			
		||||
| 
						 | 
				
			
			@ -192,7 +217,16 @@ const Inquilinos = () => {
 | 
			
		|||
                severity: 'success',
 | 
			
		||||
                summary: 'Inquilino Eliminado',
 | 
			
		||||
                life: 3000,
 | 
			
		||||
    })
 | 
			
		||||
              })          }
 | 
			
		||||
      )
 | 
			
		||||
      .catch(
 | 
			
		||||
          err => {
 | 
			
		||||
              console.log('Ocurrió un error con el fetch', err)
 | 
			
		||||
              toast.current.show({ severity: 'danger', summary: 'Error', detail: 'Inquilino no se pudo eliminar', life: 3000 });
 | 
			
		||||
          }
 | 
			
		||||
      );
 | 
			
		||||
    
 | 
			
		||||
   
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  const deleteSelectedTenants = () => {
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in New Issue