def devolverLibro(id_prestamo): prestamo = PrestamoDB.getById(id_prestamo) fecha_devolucion = dt.date.today().strftime('%Y%m%d') PrestamoDB.setDevuelto(fecha_devolucion, prestamo.id_prestamo) LibroDB().setDisponible(prestamo.id_libro)
def prestarLibro(id_lector, id_libro): fecha_prestamo = dt.date.today().strftime('%Y%m%d') PrestamoDB().insertPrestamo( Prestamo(None, id_lector, id_libro, fecha_prestamo, None)) LibroDB().setNoDisponible(id_libro)