Compare commits

..

No commits in common. "d678b1f5255f8e8fcfa72525e46e748eadf9a3f2" and "832c95198d6bd452bc72ad9bf50e537a97fae008" have entirely different histories.

3 changed files with 32 additions and 57 deletions

View File

@ -62,7 +62,7 @@ Run `poetry run worblehat --help` for more info
- [ ] Ability to borrow and deliver multiple items at a time - [ ] Ability to borrow and deliver multiple items at a time
- [X] Ability to enter the queue for borrowing an item - [X] Ability to enter the queue for borrowing an item
- [ ] Ability to extend a borrowing, only if no one is behind you in the queue - [ ] Ability to extend a borrowing, only if no one is behind you in the queue
- [X] Ability to list borrowed items which are overdue - [ ] Ability to list borrowed items which are overdue
- [~] Ability to search for items - [~] Ability to search for items
- [ ] Ability to print PVV-specific labels for items missing a label, or which for any other reason needs a custom one - [ ] Ability to print PVV-specific labels for items missing a label, or which for any other reason needs a custom one
- [X] Ascii art of monkey with fingers in eyes - [X] Ascii art of monkey with fingers in eyes

View File

@ -171,27 +171,6 @@ class WorblehatCli(NumberedCmd):
).cmdloop() ).cmdloop()
def do_show_slabbedasker(self, _: str):
slubberter = self.sql_session.scalars(
select(BookcaseItemBorrowing)
.join(BookcaseItem)
.where(
BookcaseItemBorrowing.end_time < datetime.now(),
BookcaseItemBorrowing.delivered.is_(None),
)
.order_by(
BookcaseItemBorrowing.end_time,
),
).all()
if len(slubberter) == 0:
print('No slubberts found. Yay!')
return
for slubbert in slubberter:
print(f'{slubbert.username} - {slubbert.item.name} - {slubbert.end_time.strftime("%Y-%m-%d")}')
def do_advanced(self, _: str): def do_advanced(self, _: str):
AdvancedOptionsCli(self.sql_session).cmdloop() AdvancedOptionsCli(self.sql_session).cmdloop()
@ -237,18 +216,14 @@ class WorblehatCli(NumberedCmd):
'doc': 'Show a bookcase, and its items', 'doc': 'Show a bookcase, and its items',
}, },
4: { 4: {
'f': do_show_slabbedasker,
'doc': 'Show a slabbedasker, and their wicked ways',
},
5: {
'f': do_save, 'f': do_save,
'doc': 'Save changes', 'doc': 'Save changes',
}, },
6: { 5: {
'f': do_abort, 'f': do_abort,
'doc': 'Abort changes', 'doc': 'Abort changes',
}, },
7: { 6: {
'f': do_advanced, 'f': do_advanced,
'doc': 'Advanced options', 'doc': 'Advanced options',
}, },