## -*- coding: utf-8 -*- <% template1 = helper.get_mako_template('account_financial_report_webkit','report', 'templates', 'open_invoices_inclusion.mako.html') %> <% context.lookup.put_template('open_invoices_inclusion.mako.html', template1) %> <% template2 = helper.get_mako_template('account_financial_report_webkit','report', 'templates', 'grouped_by_curr_open_invoices_inclusion.mako.html') %> <% context.lookup.put_template('grouped_by_curr_open_invoices_inclusion.mako.html', template2) %> <%setLang(user.lang)%>
${_('Chart of Account')}
${_('Fiscal Year')}
%if filter_form(data) == 'filter_date': ${_('Dates Filter')} %else: ${_('Periods Filter')} %endif
${_('Clearance Date')}
${_('Accounts Filter')}
${_('Target Moves')}
${ chart_account.name }
${ fiscalyear.name if fiscalyear else '-' }
${_('From:')} %if filter_form(data) == 'filter_date': ${formatLang(start_date, date=True) if start_date else u'' } %else: ${start_period.name if start_period else u''} %endif ${_('To:')} %if filter_form(data) == 'filter_date': ${ formatLang(stop_date, date=True) if stop_date else u'' } %else: ${stop_period.name if stop_period else u'' } %endif
${ formatLang(date_until, date=True) }
%if partner_ids: ${_('Custom Filter')} %else: ${ display_partner_account(data) } %endif
${ display_target_move(data) }
%for acc in objects: %if 'grouped_ledger_lines' in acc: <% fl = formatLang %> <%include file="grouped_by_curr_open_invoices_inclusion.mako.html" args="account=acc,formatLang=fl"/> %else: <% fl = formatLang %> <%include file="open_invoices_inclusion.mako.html" args="account=acc,formatLang=fl"/> %endif %endfor