Changeset 1085
- Timestamp:
- 07/14/03 19:20:15 (21 years ago)
- Location:
- pykota/trunk
- Files:
-
- 3 modified
Legend:
- Unmodified
- Added
- Removed
-
pykota/trunk/NEWS
r1082 r1085 22 22 PyKota NEWS : 23 23 24 - 1.14alpha5 : 25 26 - Big bug fixed when changing the prices for a printer 27 24 28 - 1.14alpha4 : 25 29 -
pykota/trunk/pykota/storages/pgstorage.py
r1084 r1085 21 21 # 22 22 # $Log$ 23 # Revision 1.9 2003/07/14 17:20:15 jalet 24 # Bug in postgresql storage when modifying the prices for a printer 25 # 23 26 # Revision 1.8 2003/07/14 14:18:17 jalet 24 27 # Wrong documentation strings … … 360 363 def writePrinterPrices(self, printer) : 361 364 """Write the printer's prices back into the storage.""" 362 self.doModify("UPDATE printers SET priceperpage=%s, priceperjob=%s WHERE printerid=%s" % (self.doQuote(printer.PricePerPage), self.doQuote(printer.PricePerJob), self.doQuote(printer.ident)))365 self.doModify("UPDATE printers SET priceperpage=%s, priceperjob=%s WHERE id=%s" % (self.doQuote(printer.PricePerPage), self.doQuote(printer.PricePerJob), self.doQuote(printer.ident))) 363 366 364 367 def writeUserLimitBy(self, user, limitby) : -
pykota/trunk/pykota/version.py
r1082 r1085 21 21 # 22 22 23 __version__ = "1.14alpha 4_unofficial"23 __version__ = "1.14alpha5_unofficial" 24 24 25 25 __doc__ = """PyKota : a complete Printing Quota Solution for CUPS and LPRng."""