- Timestamp:
- 02/25/04 20:09:24 (21 years ago)
- Location:
- pykota/trunk
- Files:
-
- 2 modified
Legend:
- Unmodified
- Added
- Removed
-
pykota/trunk/NEWS
r1362 r1363 24 24 - 1.18alpha9 : 25 25 26 - Fix for LDAP problem when job price was 0. 27 26 28 - Fix for empty user groups with LDAP. 27 29 -
pykota/trunk/pykota/storage.py
r1359 r1363 22 22 # 23 23 # $Log$ 24 # Revision 1.44 2004/02/25 19:09:24 jalet 25 # Fix for LDAP problem when job price was 0. 26 # 24 27 # Revision 1.43 2004/02/25 12:36:34 jalet 25 28 # Avoids a database query even if caching was disabled. … … 363 366 self.parent.beginTransaction() 364 367 try : 365 self.User.consumeAccountBalance(jobprice) 368 if jobprice : 369 self.User.consumeAccountBalance(jobprice) 366 370 for upq in [ self ] + self.ParentPrintersUserPQuota : 367 371 self.parent.increaseUserPQuotaPagesCounters(upq, jobsize)