scripts: updated check double, to analyse previous execution.

This commit is contained in:
Mikaël Ates 2013-01-29 09:56:55 +01:00
parent c24ad82d62
commit 72b7972f23
1 changed files with 34 additions and 4 deletions

View File

@ -1,7 +1,9 @@
# -*- coding: utf-8 -*-
import sys
import calebasse.settings
import django.core.management
from datetime import datetime
import csv
django.core.management.setup_environ(calebasse.settings)
@ -13,6 +15,10 @@ from django.db import transaction
@transaction.commit_manually
def main():
print datetime.now()
f = open('./scripts/actes_to_modify.csv', 'wb')
writer = csv.writer(f, delimiter=';', quotechar='|', quoting=csv.QUOTE_MINIMAL)
writer.writerow(['id_act_keep', 'locked', 'billed', 'lost', 'switch', 'pause', 'comment'])
same_acts_set = []
seen = []
i = 0
@ -32,6 +38,11 @@ def main():
out = '\r %20s [%s%s] %3d %%' % ("Recherche des doublons : ", '=' * percent, ' ' * (100 - percent), percent)
sys.stdout.write(out)
sys.stdout.flush()
if patient.last_name == 'Mazoyer' and patient.first_name == 'Manon':
for a in same_acts_set[len(same_acts_set)-1]:
print a
print a.get_state()
print a.is_billed
total = len(same_acts_set)
i = 0
for same_acts in same_acts_set:
@ -40,25 +51,42 @@ def main():
parent_event_id = None
for a in same_acts:
if a.parent_event:
if parent_event_id and parent_event_id != a.parent_event.id:
print "Il y a plusieurs evenement parent, bizarre"
# if parent_event_id and parent_event_id != a.parent_event.id:
# print "Il y a plusieurs evenement parent, bizarre"
parent_event_id = a.parent_event.id
keep = None
should = None
for a in same_acts:
state = a.get_state()
if state and state.state_name == 'VALIDE' and a.validation_locked == True:
should = a
break
for a in same_acts:
state = a.get_state()
if state and state.state_name != 'NON_VALIDE' and a.validation_locked == True:
keep = a
break
if should and keep and should != keep:
writer.writerow([str(keep.id), str(should.validation_locked), str(should.is_billed), str(should.is_lost), str(should.switch_billable), str(should.pause), str(should.comment)])
print "%s aurait du etre valide, facture: %s" % (keep, str(keep.is_billed))
if not keep:
lockeds = same_acts.filter(validation_locked=True)
if lockeds.count() >= 1:
keep = lockeds[0]
else:
for a in same_acts:
state = a.get_state()
if state and state.state_name == 'VALIDE':
should = a
break
for a in same_acts:
state = a.get_state()
if state and state.state_name != 'NON_VALIDE':
keep = a
break
if should and keep and should != keep:
writer.writerow([str(keep.id), str(should.validation_locked), str(should.is_billed), str(should.is_lost), str(should.switch_billable), str(should.pause), str(should.comment)])
print "Non verr, %s aurait du etre valide, facture: %s" % (keep, str(keep.is_billed))
if not keep:
keep = same_acts[0]
if parent_event_id and not keep.parent_event:
@ -68,16 +96,18 @@ def main():
for act in acts_to_remove:
if act.parent_event:
if act.parent_event.recurrence_periodicity:
print "attention, le parent de %d est un event periodique." % act.id
pass#print "attention, le parent de %d est un event periodique." % act.id
elif act.parent_event != keep.parent_event:
act.parent_event.delete()
if act.is_billed:
print "Suppresion de l'acte facture %s" % act
act.delete()
if not i % 100:
percent = int(round((float(i) / float(total)) * 100))
out = '\r %20s [%s%s] %3d %%' % ("Traitement des doublons : ", '=' * percent, ' ' * (100 - percent), percent)
sys.stdout.write(out)
sys.stdout.flush()
transaction.commit()
transaction.rollback()#commit()
print "Nb de doublons traites: %d" % total
print datetime.now()