fixes in salary register report

This commit is contained in:
Nabin Hait 2013-02-01 18:13:54 +05:30
parent 9159786d35
commit 2bbb385acf

View File

@ -73,5 +73,5 @@ for r in res:
gt_row = ['' for i in range(len(colnames))] gt_row = ['' for i in range(len(colnames))]
gt_row[col_idx['Employee Name']] = '<b>Grand Totals</b>' gt_row[col_idx['Employee Name']] = '<b>Grand Totals</b>'
gt_row[col_idx['Net Pay']-1] = fmt_money(grand_tot) gt_row[col_idx['Net Pay']-1] = grand_tot
res.append(gt_row) res.append(gt_row)