This commit is contained in:
gsinghpal
2026-04-17 17:31:12 -04:00
parent e07002d550
commit b09538b4e2
26 changed files with 1996 additions and 173 deletions

View File

@@ -12,12 +12,16 @@
<t t-call="web.external_layout">
<t t-set="doc" t-value="doc.with_context(lang=doc.partner_id.lang)"/>
<t t-set="is_adp" t-value="doc.x_fc_is_adp_sale"/>
<!-- Brand colours from the company's document-layout config. -->
<t t-set="_co" t-value="doc.company_id or env.company"/>
<t t-set="primary" t-value="_co.primary_color or '#0066a1'"/>
<t t-set="secondary" t-value="_co.secondary_color or '#90be6d'"/>
<style>
.fc-pod { font-family: Arial, sans-serif; font-size: 10pt; }
.fc-pod table { width: 100%; border-collapse: collapse; margin-bottom: 10px; }
.fc-pod table.bordered, .fc-pod table.bordered th, .fc-pod table.bordered td { border: 1px solid #000; }
.fc-pod th { background-color: #0066a1; color: white; padding: 6px 8px; font-weight: bold; font-size: 9pt; }
.fc-pod th { background-color: <t t-out="primary"/>; color: white; padding: 6px 8px; font-weight: bold; font-size: 9pt; }
.fc-pod td { padding: 5px 6px; vertical-align: top; font-size: 9pt; }
.fc-pod .text-center { text-align: center; }
.fc-pod .text-end { text-align: right; }
@@ -25,7 +29,7 @@
.fc-pod .adp-bg { background-color: #e3f2fd; }
.fc-pod .section-row { background-color: #f0f0f0; font-weight: bold; }
.fc-pod .note-row { font-style: italic; }
.fc-pod h2 { color: #0066a1; margin: 8px 0; font-size: 16pt; }
.fc-pod h2 { color: <t t-out="primary"/>; margin: 8px 0; font-size: 16pt; }
.fc-pod .info-table td { padding: 6px 10px; font-size: 10pt; }
.fc-pod .info-table th { background-color: #f5f5f5; color: #333; font-size: 9pt; padding: 5px 10px; }
.fc-pod .signature-section { margin-top: 20px; border: 1px solid #000; padding: 15px; }