~openerp-dev/openobject-addons/acct_prj_hr_logs

« back to all changes in this revision

Viewing changes to auction/report/lots_list.py

  • Committer: pap(openerp)
  • Date: 2010-06-21 05:19:03 UTC
  • mfrom: (3638.1.26 trunk-dev-addons3)
  • Revision ID: pap@tinyerp.co.in-20100621051903-lm0gpjuehqakpntg
merge

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
            'bid_line' : self.bid_line
32
32
        })
33
33
    def bid_line(self, lot_id):
34
 
        res = self.pool.get('auction.bid.lines').read(self.cr,self.uid,[lot_id])
 
34
        res = self.pool.get('auction.bid.lines').read(self.cr, self.uid, [lot_id])
35
35
        return True
36
36
report_sxw.report_sxw('report.lots.list', 'auction.lots', 'addons/auction/report/lots_list.rml', parser=lots_list)
37
37