Changeset 3109 for pykota/trunk/bin/pkrefund
- Timestamp:
- 12/02/06 23:53:48 (18 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
pykota/trunk/bin/pkrefund
r3108 r3109 376 376 else : 377 377 print _("Date : %s") % str(job.JobDate)[:19] 378 print _("Printer : %s") % job.PrinterName 379 print _("User : %s") % job.UserName 378 380 print _("JobId : %s") % job.JobId 379 print _(" User : %s") % job.UserName380 print _("Printer : %s") % job.PrinterName381 print _("Billing code : %s") % job.JobBillingCode381 print _("Title : %s") % job.JobTitle 382 if job.JobBillingCode : 383 print _("Billing code : %s") % job.JobBillingCode 382 384 print _("Pages : %i") % job.JobSize 383 385 print _("Credits : %.3f") % job.JobPrice 384 print _("Title : %s") % job.JobTitle385 386 386 387 while True :