Simplify salary revision letter footer

This commit is contained in:
metatroncubeswdev 2026-08-30 01:44:41 -04:00
parent 94b03662fa
commit 8f07483fd6

View File

@ -15,8 +15,17 @@
<template id="report_salary_revision_letter">
<t t-call="web.html_container">
<t t-foreach="docs" t-as="o">
<t t-call="web.external_layout">
<div class="page">
<t t-call="web.basic_layout">
<div class="page" style="font-size: 13px;">
<div style="border-bottom: 1px solid #222; padding-bottom: 8px; margin-bottom: 24px;">
<h3 style="margin: 0;">
<span t-field="o.company_id.name"/>
</h3>
<div>
<span t-field="o.company_id.email"/>
</div>
</div>
<h2>Salary Revision Letter</h2>
<p>
<strong>Date:</strong>
@ -72,6 +81,14 @@
</td>
</tr>
</table>
<div style="border-top: 1px solid #999; margin-top: 40px; padding-top: 8px; font-size: 11px; color: #555;">
<span t-field="o.company_id.name"/>
<t t-if="o.company_id.email">
<span> | </span>
<span t-field="o.company_id.email"/>
</t>
</div>
</div>
</t>
</t>