Skip to content

Instantly share code, notes, and snippets.

@lopinho
Created July 13, 2017 13:05
Show Gist options
  • Save lopinho/c257bc2650cf42c193223591dc749c6c to your computer and use it in GitHub Desktop.
Save lopinho/c257bc2650cf42c193223591dc749c6c to your computer and use it in GitHub Desktop.
from novo_financeiro.models import *
leilao = 'DIVSC05-17'
for nota in Nota.objects.filter(cache_dicionario__contains=leilao):
dicionario = nota.dicionario_do_cache()
dicionario['taxas'] = 0
nota.cache_dicionario = json.dumps(dicionario, cls=DjangoJSONEncoder)
nota.save()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment