Browse Source

[IMP] add a summary table of the different transaction made by the

cooperator
pull/1/head
houssine 6 years ago
parent
commit
df36cf6e8e
  1. 85
      easy_my_coop_taxshelter_report/reports/tax_shelter_shares_report.xml

85
easy_my_coop_taxshelter_report/reports/tax_shelter_shares_report.xml

@ -69,7 +69,54 @@
Cette lettre confirme qu’en date du <span t-field="o.declaration_id.date_to"/>, vous êtes toujours en possession de parts de <span t-field="o.company_id.name"/>
pour un montant total de <span t-field="o.partner_id.total_value" t-field-options='{"widget": "monetary", "display_currency": "res_company.currency_id"}'/> euros et que la condition prévue à l’article 145(26), $3, alinéa 2, CIR92 est remplie.
</div>
<div style="position:relative;top:45px;">
<div style="position:relative;top:65px;">
<table class="table border-easymy-coop" style="width:90%;align:center;">
<thead class="invoice_tbody easymy-coop-normal">
<tr>
<th>Type</th>
<th>Capital before subscription</th>
<th>Capital after subscription</th>
<th>Tax shelter eligible</th>
<th>Date</th>
<th>Amount</th>
</tr>
</thead>
<tbody class="invoice_tbody easymy-coop-normal">
<tr t-foreach="o.previously_subscribed_lines" t-as="l">
<td><span t-field="l.type"/></td>
<td><span t-field="l.capital_before_sub"/></td>
<td><span t-field="l.capital_after_sub"/></td>
<td><span t-field="l.tax_shelter"/></td>
<td><span t-field="l.transaction_date"/></td>
<td><span t-field="l.amount_subscribed"/></td>
</tr>
<tr t-foreach="o.subscribed_lines" t-as="l">
<td><span t-field="l.type"/></td>
<td><span t-field="l.capital_before_sub"/></td>
<td><span t-field="l.capital_after_sub"/></td>
<td><span t-field="l.tax_shelter"/></td>
<td><span t-field="l.transaction_date"/></td>
<td><span t-field="l.amount_subscribed"/></td>
</tr>
<tr t-foreach="o.resold_lines" t-as="l">
<td><span t-field="l.type"/></td>
<td></td>
<td></td>
<td></td>
<td><span t-field="l.transaction_date"/></td>
<td><span t-field="l.amount_resold"/></td>
</tr>
<tr t-foreach="o.transfered_lines" t-as="l">
<td><span t-field="l.type"/></td>
<td></td>
<td></td>
<td></td>
<td><span t-field="l.transaction_date"/></td>
<td><span t-field="l.amount_transfered"/></td>
</tr>
</tbody>
</table>
<div style="position:relative;top:45px;">
L' Article 145/26, CIR 92 sur les revenus <span t-field="o.declaration_id.fiscal_year"/>, connu aussi comme normative Tax Shelter, donnent droit à une réduction d’impôt à hauteur de 45% du montant de la valeur des parts souscrites depuis <span t-field="o.declaration_id.month_from"/> (et avant <span t-field="o.declaration_id.month_to"/> pour la déclaration des revenus <span t-field="o.declaration_id.fiscal_year"/>).<br/>
<br/>
Cette lettre vaut donc comme certificat que <span t-field="o.company_id.name"/> remplit en effet tous les critères permettant un tel avantage fiscal. Dans les grandes lignes : <br/>
@ -90,25 +137,23 @@
]]>
<br/>
Cordialement,
</div>
</div>
</div>
<div class="row">
<div class="col-xs-6 pull-left" style="position:relative;top:100px;font-size:16;color:black;font-family:Roboto-Regular;">
<div style="position:relative;top:10px;">
Pour le Conseil d'administration de <span t-field="o.company_id.name"/>.
</div>
<div style="position:relative;top:20px;">
<strong><span t-field="o.company_id.board_representative"/></strong>
</div>
<div style="position:relative;top:25px;">
<img t-if="o.company_id.signature_scan" t-att-src="'data:image/png;base64,%s' % o.company_id.signature_scan" style="width:240px;height:200px;padding-bottom:5px;"/>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-xs-6 pull-left" style="position:relative;top:100px;font-size:16;color:black;font-family:Roboto-Regular;">
<div style="position:relative;top:10px;">
Pour le Conseil d'administration de <span t-field="o.company_id.name"/>.
</div>
<div style="position:relative;top:20px;">
<strong><span t-field="o.company_id.board_representative"/></strong>
</div>
<div style="position:relative;top:25px;">
<img t-if="o.company_id.signature_scan" t-att-src="'data:image/png;base64,%s' % o.company_id.signature_scan" style="width:240px;height:200px;padding-bottom:5px;"/>
</div>
</div>
</div>
</div>
</div>
</div>
</t>
</template>

Loading…
Cancel
Save