Merge PR #1170 into 16.0

Signed-off-by pedrobaeza
pull/1177/head
OCA-git-bot 2024-05-21 07:49:40 +00:00
commit fb7312a7ec
8 changed files with 23 additions and 6 deletions

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8" ?>
<odoo>
<template id="aged_partner_balance">
<t t-call="web.html_container">
<t t-call="account_financial_report.html_container">
<t t-foreach="docs" t-as="o">
<t t-call="account_financial_report.internal_layout">
<t

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8" ?>
<odoo>
<template id="general_ledger">
<t t-call="web.html_container">
<t t-call="account_financial_report.html_container">
<t t-foreach="docs" t-as="o">
<t t-call="account_financial_report.internal_layout">
<t t-call="account_financial_report.report_general_ledger_base" />

View File

@ -3,7 +3,7 @@
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). -->
<odoo>
<template id="journal_ledger">
<t t-call="web.html_container">
<t t-call="account_financial_report.html_container">
<t t-foreach="docs" t-as="o">
<t t-call="account_financial_report.internal_layout">
<t t-call="account_financial_report.report_journal_ledger_base" />

View File

@ -1,5 +1,15 @@
<?xml version="1.0" encoding="utf-8" ?>
<odoo>
<template id="account_financial_report.html_container">
<link
href="/account_financial_report/static/src/css/report_html.css"
rel="stylesheet"
/>
<t t-set="body_classname" t-value="'container'" />
<t t-call="web.report_layout">
<t t-out="0" />
</t>
</template>
<template id="account_financial_report.internal_layout">
<div class="article o_account_financial_reports_page">
<link

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8" ?>
<odoo>
<template id="open_items">
<t t-call="web.html_container">
<t t-call="account_financial_report.html_container">
<t t-foreach="docs" t-as="o">
<t t-call="account_financial_report.internal_layout">
<t t-call="account_financial_report.report_open_items_base" />

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8" ?>
<odoo>
<template id="trial_balance">
<t t-call="web.html_container">
<t t-call="account_financial_report.html_container">
<t t-foreach="docs" t-as="o">
<t t-call="account_financial_report.internal_layout">
<t t-call="account_financial_report.report_trial_balance_base" />

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8" ?>
<odoo>
<template id="vat_report">
<t t-call="web.html_container">
<t t-call="account_financial_report.html_container">
<t t-foreach="docs" t-as="o">
<t t-call="account_financial_report.internal_layout">
<t t-call="account_financial_report.report_vat_report_base" />

View File

@ -0,0 +1,7 @@
/* Styles of html report */
.account_title span {
font-size: 1rem !important;
}
.act_as_cell {
font-size: 0.9rem !important;
}