Skip to content

Instantly share code, notes, and snippets.

@lopinho
Created June 1, 2017 20:10
Show Gist options
  • Save lopinho/787c24e4d70b114f7259ba5a8fb8b454 to your computer and use it in GitHub Desktop.
Save lopinho/787c24e4d70b114f7259ba5a8fb8b454 to your computer and use it in GitHub Desktop.
from leilao.models import LanceProgramado
leilao = 'SEOP15-17'
lote = 2795
username = 'shirlene'
LanceProgramado.objects.filter(
lote__numero_do_lote_no_leilao=lote,
lote__leilao__nome=leilao,
user__username=username).values_list('ativo', flat=True)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment