Browse Source

[REF] auto-fix conventions

pull/29/head
moylop260 10 years ago
committed by Guewen Baconnier
parent
commit
1e6e881eb0
  1. 2
      account_financial_report_horizontal/report/account_balance_sheet.py
  2. 2
      account_financial_report_horizontal/report/account_profit_loss.py
  3. 1
      account_financial_report_horizontal/wizard/account_report_balance_sheet.py
  4. 1
      account_financial_report_horizontal/wizard/account_report_profit_loss.py
  5. 4
      account_financial_report_webkit/report/print_journal.py

2
account_financial_report_horizontal/report/account_balance_sheet.py

@ -28,7 +28,7 @@ from openerp.report import report_sxw
from openerp.addons.account_financial_report_horizontal.report import ( from openerp.addons.account_financial_report_horizontal.report import (
account_profit_loss account_profit_loss
) )
from common_report_header import common_report_header
from .common_report_header import common_report_header
from openerp.tools.translate import _ from openerp.tools.translate import _

2
account_financial_report_horizontal/report/account_profit_loss.py

@ -23,7 +23,7 @@
import time import time
from openerp.report import report_sxw from openerp.report import report_sxw
from common_report_header import common_report_header
from .common_report_header import common_report_header
from openerp.tools.translate import _ from openerp.tools.translate import _

1
account_financial_report_horizontal/wizard/account_report_balance_sheet.py

@ -29,6 +29,7 @@ class account_bs_report(orm.TransientModel):
This wizard will provide the account balance sheet report by periods, This wizard will provide the account balance sheet report by periods,
between any two dates. between any two dates.
""" """
_name = 'account.bs.report' _name = 'account.bs.report'
_inherit = "account_financial_report_horizontal.common.account.report" _inherit = "account_financial_report_horizontal.common.account.report"
_description = 'Account Balance Sheet Report' _description = 'Account Balance Sheet Report'

1
account_financial_report_horizontal/wizard/account_report_profit_loss.py

@ -29,6 +29,7 @@ class account_pl_report(orm.TransientModel):
This wizard will provide the account profit and loss report by periods, This wizard will provide the account profit and loss report by periods,
between any two dates. between any two dates.
""" """
_inherit = "account_financial_report_horizontal.common.account.report" _inherit = "account_financial_report_horizontal.common.account.report"
_name = "account.pl.report" _name = "account.pl.report"
_description = "Account Profit And Loss Report" _description = "Account Profit And Loss Report"

4
account_financial_report_webkit/report/print_journal.py

@ -28,8 +28,8 @@ from openerp.tools.translate import _
from openerp import pooler from openerp import pooler
from datetime import datetime from datetime import datetime
from common_reports import CommonReportHeaderWebkit
from webkit_parser_header_fix import HeaderFooterTextWebKitParser
from .common_reports import CommonReportHeaderWebkit
from .webkit_parser_header_fix import HeaderFooterTextWebKitParser
class PrintJournalWebkit(report_sxw.rml_parse, CommonReportHeaderWebkit): class PrintJournalWebkit(report_sxw.rml_parse, CommonReportHeaderWebkit):

Loading…
Cancel
Save