143
143
account_analytic_line_report_xls('report.account.analytic.line_xls','account.analytic.line','addons/account_mcdb/report/report_account_analytic_line_xls.mako')
145
class account_analytic_line_free_report_xls(SpreadsheetReport):
146
def __init__(self, name, table, rml=False, parser=report_sxw.rml_parse, header='external', store=False):
147
super(account_analytic_line_free_report_xls, self).__init__(name, table, rml=rml, parser=parser, header=header, store=store)
149
def create(self, cr, uid, ids, data, context=None):
150
ids = getIds(self, cr, uid, ids, context)
151
a = super(account_analytic_line_free_report_xls, self).create(cr, uid, ids, data, context)
154
account_analytic_line_free_report_xls('report.account.analytic.line.free_xls','account.analytic.line','addons/account_mcdb/report/report_account_analytic_line_free_xls.mako')
145
156
class account_bank_statement_line_report(report_sxw.report_sxw):
146
157
def __init__(self, name, table, rml=False, parser=report_sxw.rml_parse, header='external', store=False):
147
158
report_sxw.report_sxw.__init__(self, name, table, rml=rml, parser=parser, header=header, store=store)