From 0a1fdb6d7fffa96258e15204bb45d99700c16070 Mon Sep 17 00:00:00 2001 From: "sbh (Open ERP)" Date: Mon, 2 Aug 2010 17:57:00 +0530 Subject: [PATCH] [IMP] rename the third_party_ledger report bzr revid: sbh@tinyerp.com-20100802122700-ba8p8es8twfko3ex --- addons/account/account_report.xml | 4 ++-- addons/account/report/__init__.py | 2 +- .../{third_party_ledger.py => account_partner_ledger.py} | 4 ++-- .../{third_party_ledger.rml => account_partner_ledger.rml} | 0 ...arty_ledger_other.rml => account_partner_ledger_other.rml} | 0 5 files changed, 5 insertions(+), 5 deletions(-) rename addons/account/report/{third_party_ledger.py => account_partner_ledger.py} (98%) rename addons/account/report/{third_party_ledger.rml => account_partner_ledger.rml} (100%) rename addons/account/report/{third_party_ledger_other.rml => account_partner_ledger_other.rml} (100%) diff --git a/addons/account/account_report.xml b/addons/account/account_report.xml index 5653d315623..eaf1f88ff0d 100644 --- a/addons/account/account_report.xml +++ b/addons/account/account_report.xml @@ -2,8 +2,8 @@ - - + + diff --git a/addons/account/report/__init__.py b/addons/account/report/__init__.py index 5bf620f1084..758174524e2 100644 --- a/addons/account/report/__init__.py +++ b/addons/account/report/__init__.py @@ -25,7 +25,7 @@ import account_journal import account_balance import partner_balance import account_general_ledger -import third_party_ledger +import account_partner_ledger import invoice import overdue import aged_trial_balance diff --git a/addons/account/report/third_party_ledger.py b/addons/account/report/account_partner_ledger.py similarity index 98% rename from addons/account/report/third_party_ledger.py rename to addons/account/report/account_partner_ledger.py index b921b9314d0..dc6e7dc14e2 100644 --- a/addons/account/report/third_party_ledger.py +++ b/addons/account/report/account_partner_ledger.py @@ -319,11 +319,11 @@ class third_party_ledger(rml_parse.rml_parse, common_report_header): return False report_sxw.report_sxw('report.account.third_party_ledger', 'res.partner', - 'addons/account/report/third_party_ledger.rml',parser=third_party_ledger, + 'addons/account/report/account_partner_ledger.rml',parser=third_party_ledger, header='internal') report_sxw.report_sxw('report.account.third_party_ledger_other', 'res.partner', - 'addons/account/report/third_party_ledger_other.rml',parser=third_party_ledger, + 'addons/account/report/account_partner_ledger_other.rml',parser=third_party_ledger, header='internal') # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: \ No newline at end of file diff --git a/addons/account/report/third_party_ledger.rml b/addons/account/report/account_partner_ledger.rml similarity index 100% rename from addons/account/report/third_party_ledger.rml rename to addons/account/report/account_partner_ledger.rml diff --git a/addons/account/report/third_party_ledger_other.rml b/addons/account/report/account_partner_ledger_other.rml similarity index 100% rename from addons/account/report/third_party_ledger_other.rml rename to addons/account/report/account_partner_ledger_other.rml