Rename "rappel" report in overdue

bzr revid: ced-28551e0697c7e7e195a1073c9ef6a6fd999412bb
This commit is contained in:
ced 2007-08-29 14:19:01 +00:00
parent b5a656ea6b
commit 0ab3544198
4 changed files with 11 additions and 11 deletions

View File

@ -54,12 +54,12 @@
name="account.journal.period.print"
rml="account/report/account_journal.rml"
auto="False"/>
<report id="account_overdue"
string="Overdue payments"
model="res.partner"
name="account.rappel"
rml="account/report/rappel.rml"
sxw="account/report/rappel.sxw"
<report id="account_overdue"
string="Overdue payments"
model="res.partner"
name="account.overdue"
rml="account/report/overdue.rml"
sxw="account/report/overdue.sxw"
auto="False" />
<report id="account_invoices"
string="Invoices"

View File

@ -34,6 +34,6 @@ import partner_balance
import general_ledger
import third_party_ledger
import invoice
import rappel
import overdue
import aged_trial_balance
import tax_report

View File

@ -34,9 +34,9 @@ from osv import osv
from report import report_sxw
import pooler
class report_rappel(report_sxw.rml_parse):
class Overdue(report_sxw.rml_parse):
def __init__(self, cr, uid, name, context):
super(report_rappel, self).__init__(cr, uid, name, context)
super(Overdue, self).__init__(cr, uid, name, context)
self.localcontext.update( {
'time' : time,
'adr_get' : self._adr_get,
@ -59,6 +59,6 @@ class report_rappel(report_sxw.rml_parse):
movelines = moveline_obj.read(self.cr, self.uid, movelines)
return movelines
report_sxw.report_sxw('report.account.rappel', 'res.partner',
'addons/account/report/rappel.rml', parser=report_rappel)
report_sxw.report_sxw('report.account.overdue', 'res.partner',
'addons/account/report/overdue.rml', parser=Overdue)