Changeset 6933 for main/waeup.sirp/trunk/src/waeup/sirp
- Timestamp:
- 24 Oct 2011, 05:38:24 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.sirp/trunk/src/waeup/sirp/accesscodes/accesscode.py
r6932 r6933 388 388 site['accesscodes'] = basecontainer 389 389 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. 390 392 cost = 0.0 391 393 creator = 'system' … … 393 395 creation_date = datetime.now() 394 396 basecontainer.createBatch(creation_date, creator, 395 'SFE', cost, entry_num)397 'SFE', cost, entry_num) 396 398 basecontainer.createBatch(creation_date, creator, 397 'CLR', cost, entry_num)399 'CLR', cost, entry_num) 398 400 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.') 400 403 return 401 404
Note: See TracChangeset for help on using the changeset viewer.