scripts/copy_description.py: synchronize event description to act comment

This script logged the old comments

Closes #4006
This commit is contained in:
Jérôme Schneider 2013-12-04 11:27:45 +01:00
parent 72f229a961
commit 812a863516
1 changed files with 16 additions and 6 deletions

View File

@ -1,14 +1,24 @@
# -*- coding: utf-8 -*-
#!/usr/bin/env python
import calebasse.settings
import django.core.management
import os
django.core.management.setup_environ(calebasse.settings)
log = open('descriptions.log', 'a+')
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "calebasse.settings")
from calebasse.agenda.models import EventWithAct
for event in EventWithAct.objects.all():
if not event.act.comment and event.description:
event.act.comment = event.description
event.act.save()
if event.act:
if not event.act.comment and event.description:
event.act.comment = event.description
event.act.save()
if event.act.comment and event.description \
and (event.act.comment != event.description):
log.write("acte : %s\n" % event.act.comment.encode('utf-8'))
log.write("evenement (%d) : %s\n\n" % (event.id, event.description.encode('utf-8')))
event.act.comment = event.description
event.act.save()
log.close()