Created
July 13, 2017 13:05
-
-
Save lopinho/c257bc2650cf42c193223591dc749c6c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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