Changeset 6933 for main/waeup.sirp


Ignore:
Timestamp:
24 Oct 2011, 05:38:24 (13 years ago)
Author:
Henrik Bettermann
Message:

Be more verbose.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.sirp/trunk/src/waeup/sirp/accesscodes/accesscode.py

    r6932 r6933  
    388388        site['accesscodes'] = basecontainer
    389389        logger.info('Installed container for access code batches.')
     390        # Create empty school fee, clearance and hostel application AC
     391        # batches during initialization of university instance.
    390392        cost = 0.0
    391393        creator = 'system'
     
    393395        creation_date = datetime.now()
    394396        basecontainer.createBatch(creation_date, creator,
    395             'SFE', cost,entry_num)
     397            'SFE', cost, entry_num)
    396398        basecontainer.createBatch(creation_date, creator,
    397             'CLR', cost,entry_num)
     399            'CLR', cost, entry_num)
    398400        basecontainer.createBatch(creation_date, creator,
    399             'HOS', cost,entry_num)
     401            'HOS', cost, entry_num)
     402        logger.info('Installed empty SFE, CLR and HOS access code batches.')
    400403        return
    401404
Note: See TracChangeset for help on using the changeset viewer.