Changeset 3109

Show
Ignore:
Timestamp:
12/02/06 23:53:48 (17 years ago)
Author:
jerome
Message:

Reordered fields when asking if the job has to be refunded or not.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • pykota/trunk/bin/pkrefund

    r3108 r3109  
    376376                else :     
    377377                    print _("Date : %s") % str(job.JobDate)[:19] 
     378                    print _("Printer : %s") % job.PrinterName 
     379                    print _("User : %s") % job.UserName 
    378380                    print _("JobId : %s") % job.JobId 
    379                     print _("User : %s") % job.UserName 
    380                     print _("Printer : %s") % job.PrinterName 
    381                     print _("Billing code : %s") % job.JobBillingCode 
     381                    print _("Title : %s") % job.JobTitle 
     382                    if job.JobBillingCode : 
     383                        print _("Billing code : %s") % job.JobBillingCode 
    382384                    print _("Pages : %i") % job.JobSize 
    383385                    print _("Credits : %.3f") % job.JobPrice 
    384                     print _("Title : %s") % job.JobTitle 
    385386                     
    386387                    while True :