You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

151 lines
7.9 KiB

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<template id="report_agedpartnerbalance">
<t t-call="web.html_container">
<t t-set="data_report_margin_top" t-value="12"/>
<t t-set="data_report_header_spacing" t-value="9"/>
<t t-set="data_report_dpi" t-value="110"/>
<t t-call="web.internal_layout">
<div class="page">
<h2>Aged Partner Balance</h2>
<div class="row mt32">
<div class="col-3">
<strong>Start Date:</strong>
<p t-esc="data['date_from']"/>
</div>
<div class="col-3">
<strong>Period Length (days)</strong>
<p t-esc="data['period_length']"/>
</div>
</div>
<div class="row mb32">
<div class="col-3">
<strong>Partner's:</strong>
<p>
<span t-if="data['result_selection'] ==
'customer'">
Receivable Accounts
</span>
<span t-if="data['result_selection'] ==
'supplier'">
Payable Accounts
</span>
<span t-if="data['result_selection'] ==
'customer_supplier'">
Receivable and Payable Accounts
</span>
</p>
</div>
<div class="col-3">
<strong>Target Moves:</strong>
<p>
<span t-if="data['target_move'] == 'all'">All
Entries
</span>
<span t-if="data['target_move'] == 'posted'">All
Posted Entries
</span>
</p>
</div>
</div>
<table class="table table-sm table-reports">
<thead>
<tr class="text-left">
<th>Partners</th>
<th>
<span>Not due</span>
</th>
<th>
<span t-esc="data['4']['name']"/>
</th>
<th>
<span t-esc="data['3']['name']"/>
</th>
<th>
<span t-esc="data['2']['name']"/>
</th>
<th>
<span t-esc="data['1']['name']"/>
</th>
<th>
<span t-esc="data['0']['name']"/>
</th>
<th>Total</th>
</tr>
<tr t-if="get_partner_lines" class="text-centre">
<th>Account Total</th>
<th>
<span t-esc="get_direction[6]"
t-options="{'widget':
'monetary', 'display_currency':
env.company.currency_id}"/>
</th>
<th>
<span t-esc="get_direction[4]"
t-options="{'widget': 'monetary',
'display_currency': env.company.currency_id}"/>
</th>
<th>
<span t-esc="get_direction[3]"
t-options="{'widget': 'monetary',
'display_currency': env.company.currency_id}"/>
</th>
<th>
<span t-esc="get_direction[2]"
t-options="{'widget': 'monetary', 'display_currency': env.company.currency_id}"/>
</th>
<th>
<span t-esc="get_direction[1]"
t-options="{'widget': 'monetary', 'display_currency': env.company.currency_id}"/>
</th>
<th>
<span t-esc="get_direction[0]"
t-options="{'widget': 'monetary', 'display_currency': env.company.currency_id}"/>
</th>
<th>
<span t-esc="get_direction[5]"
t-options="{'widget': 'monetary', 'display_currency': env.company.currency_id}"/>
</th>
</tr>
</thead>
<tbody>
<tr t-foreach="get_partner_lines" t-as="partner">
<td>
<span t-esc="partner['name']"/>
</td>
<td class="text-right">
<span t-esc="partner['direction']"
t-options="{'widget': 'monetary', 'display_currency': env.company.currency_id}"/>
</td>
<td class="text-right">
<span t-esc="partner['4']"
t-options="{'widget': 'monetary', 'display_currency': env.company.currency_id}"/>
</td>
<td class="text-right">
<span t-esc="partner['3']"
t-options="{'widget': 'monetary', 'display_currency': env.company.currency_id}"/>
</td>
<td class="text-right">
<span t-esc="partner['2']"
t-options="{'widget': 'monetary', 'display_currency': env.company.currency_id}"/>
</td>
<td class="text-right">
<span t-esc="partner['1']"
t-options="{'widget': 'monetary', 'display_currency': env.company.currency_id}"/>
</td>
<td class="text-right">
<span t-esc="partner['0']"
t-options="{'widget': 'monetary', 'display_currency': env.company.currency_id}"/>
</td>
<td class="text-right">
<span t-esc="partner['total']"
t-options="{'widget': 'monetary', 'display_currency': env.company.currency_id}"/>
</td>
</tr>
</tbody>
</table>
</div>
</t>
</t>
</template>
</odoo>