Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion account_invoice_en16931/views/account_move.xml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
name="%(account_invoice_en16931_action)s"
string="Generate eInvoice"
type="action"
invisible="move_type not in ('out_invoice', 'out_refund') or state == 'cancel'"
attrs="{'invisible': ['|', ('move_type', 'not in', ('out_invoice', 'out_refund')), ('state', '=', 'cancel')]}"
/>
</field>
-->
Expand Down
2 changes: 1 addition & 1 deletion l10n_fr_einvoicing/views/res_partner.xml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@
</xpath>
<!--
<div name="button_box" position="inside">
<button name="%(l10n_fr_einvoicing.fr_directory_line_action)d" context="{'search_default_partner_id': id, 'search_default_active': True}" class="oe_stat_button" type="action" icon="fa-newspaper-o" invisible="not fr_directory_line_show">
<button name="%(l10n_fr_einvoicing.fr_directory_line_action)d" context="{'search_default_partner_id': id, 'search_default_active': True}" class="oe_stat_button" type="action" icon="fa-newspaper-o" attrs="{'invisible': [('fr_directory_line_show', '=', False)]}">
<field string="Active Directory Lines" name="fr_directory_line_active_count" widget="statinfo" />
</button>
</div> -->
Expand Down
2 changes: 1 addition & 1 deletion l10n_fr_einvoicing_directory_import/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
{
"name": "France eInvoicing Directory Import/Export (CSV)",
"version": "18.0.1.0.0",
"version": "16.0.1.0.0",
"category": "Accounting/Localizations/EDI",
"summary": "Maintain fr.directory.line manually via CSV export/import "
"when the AFNOR directory API is not available",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,10 +69,10 @@
name="result_summary"
readonly="1"
nolabel="1"
invisible="not result_summary"
attrs="{'invisible': [('result_summary', '=', False)]}"
/>
<field name="result_partner_ids" invisible="1" />
<div class="mt-2" invisible="not result_partner_ids">
<div class="mt-2" attrs="{'invisible': [('result_partner_ids', '=', [])]}">
<button
name="action_view_partners"
type="object"
Expand Down