Changeset 7938 for main/waeup.kofa
- Timestamp:
- 21 Mar 2012, 18:09:06 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/utils/batching.py
r7937 r7938 189 189 190 190 def checkConstraints(self, obj, row, site): 191 """Checks constraints the object must fulfill 192 before being updated. 193 """ 194 return False 191 """Checks constraints the object must fulfill when being updated. 192 193 This method is not used in case of deleting or adding objects. 194 195 Returns error messages as strings in case of constraint 196 problems. 197 """ 198 return None 195 199 196 200 def updateEntry(self, obj, row, site): … … 334 338 continue 335 339 update_errors = self.checkConstraints(obj, row, site) 336 if update_errors is not False:340 if update_errors is not None: 337 341 num_warns += 1 338 342 self.writeFailedRow(
Note: See TracChangeset for help on using the changeset viewer.