Skip to content
Snippets Groups Projects
Commit 5a963eb2 authored by Pierre-antoine Comby's avatar Pierre-antoine Comby
Browse files

add support for last_negative field

parent 44b27e3a
No related branches found
No related tags found
Loading
......@@ -10,6 +10,8 @@ from django.db import transaction
import collections
from django.core.exceptions import ValidationError
from django.utils.timezone import make_aware
from django.db import IntegrityError
from django.contrib.auth.models import User
from note.models import Note, NoteSpecial, NoteUser, NoteClub
......@@ -101,6 +103,9 @@ def import_comptes(cur,map_idbde):
}
profile = Profile.objects.create(**obj_dict)
note = user.note
date = row.get("last_negatif",None)
if date != None:
note.last_negative = make_aware(date)
note.balance = row["solde"]
obj_list =[user, profile, note]
else: # club
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment