[10.0][FIX] account_credit_control report (#545)

* [FIX] Fixed policy level custom text alignment and added space between blocks
This commit is contained in:
Benjamin Willig (ACSONE)
2017-09-30 11:51:37 +02:00
committed by Pedro M. Baeza
parent 6c684f53ea
commit 67c92e38cc
3 changed files with 13 additions and 7 deletions

View File

@@ -3,7 +3,7 @@
# Copyright 2017 Okia SPRL (https://okia.be)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
{'name': 'Account Credit Control',
'version': '10.0.1.2.0',
'version': '10.0.1.2.1',
'author': "Camptocamp,Odoo Community Association (OCA),Okia",
'maintainer': 'Camptocamp',
'category': 'Finance',

View File

@@ -1175,7 +1175,7 @@ msgstr "État"
#. module: account_credit_control
#: model:ir.ui.view,arch_db:account_credit_control.report_credit_control_summary_document
msgid "Summary"
msgstr "Listes des factures en attente de règlement"
msgstr "Liste des factures en attente de règlement"
#. module: account_credit_control
#: model:ir.model.fields,help:account_credit_control.field_account_invoice_credit_policy_id

View File

@@ -7,8 +7,8 @@
<div class="col-xs-5 col-xs-offset-7">
<address t-field="doc.contact_address"
t-field-options='{"widget": "contact",
"fields": ["address", "name"],
"no_marker": true}'/>
"fields": ["address", "name"],
"no_marker": true}'/>
</div>
<div class="col-xs-5 col-xs-offset-7">
<span t-field="doc.report_date"/>
@@ -19,8 +19,10 @@
<span t-field="doc.current_policy_level.name"/>
</h2>
<div class="col-xs-12">
<span t-field="doc.current_policy_level.custom_text" />
<div class="row mt32 mb32">
<div class="col-xs-12">
<span t-field="doc.current_policy_level.custom_text"/>
</div>
</div>
<h3>Summary</h3>
@@ -91,7 +93,11 @@
</div>
<t t-if="doc.current_policy_level.custom_text_after_details">
<p class="mt32 mb32" t-field="doc.current_policy_level.custom_text_after_details"/>
<div class="row mt32 mb32">
<div class="col-xs-12">
<p t-field="doc.current_policy_level.custom_text_after_details"/>
</div>
</div>
</t>
</div>