示例#1
0
 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)
示例#2
0
 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)