When the application is very populated, there will likely be a lot of residents and rooms (> 100 in the use case of an RC).
Currently deallocating a room requires the Resident's index, however, there may be cases (more than likely due to issues with the room) that require deallocation or searching of the resident staying in a specific room. However, there seems to be no current way to search for the resident staying in a room as the current rfind feature does not include room numbers.
For example, if there was an issue with room 12-123 and I wanted to deallocate the resident from it, I would have to manually look through the list of residents, find the corresponding resident, and then deallocate the room using that resident's index.
When the application is very populated, there will likely be a lot of residents and rooms (> 100 in the use case of an RC).
Currently deallocating a room requires the Resident's index, however, there may be cases (more than likely due to issues with the room) that require deallocation or searching of the resident staying in a specific room. However, there seems to be no current way to search for the resident staying in a room as the current
rfind
feature does not include room numbers.For example, if there was an issue with room 12-123 and I wanted to deallocate the resident from it, I would have to manually look through the list of residents, find the corresponding resident, and then deallocate the room using that resident's index.