Skip to content

Instantly share code, notes, and snippets.

@batok
Created September 20, 2010 13:53
Show Gist options
  • Save batok/587937 to your computer and use it in GitHub Desktop.
Save batok/587937 to your computer and use it in GitHub Desktop.
@classmethod
def factura_mas_reciente(cls):
"""arroja el folio de la factura mas reciente ( folio mayor )"""
try:
return session.query(cls).order_by(cls.folio.desc()).first().folio
except:
return 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment