Changeset 5146


Ignore:
Timestamp:
13 Apr 2010, 08:23:38 (15 years ago)
Author:
Henrik Bettermann
Message:

clear pic if no score

File:
1 edited

Legend:

Unmodified
Added
Removed
  • WAeUP_SRP/trunk/WAeUPTables.py

    r5143 r5146  
    17771777            try:
    17781778                if not float(brain.ca1) + float(brain.ca2) + float(brain.exam) > 0:
     1779                    data = {}
     1780                    data[self.key] = brain.key
     1781                    data['pic'] = ''
     1782                    self.modifyRecord(**data)                   
    17791783                    continue
    17801784                res = self.courses_catalog.evalAdvancedQuery(Eq('code',brain.code))
     
    17911795                self.modifyRecord(**data)
    17921796            except:
     1797                data = {}
     1798                data[self.key] = brain.key
     1799                data['pic'] = ''
     1800                self.modifyRecord(**data)
    17931801                continue       
    17941802        logger.info('recalculation finished')             
Note: See TracChangeset for help on using the changeset viewer.