Skip to content

Commit

Permalink
[MIG] account_due_list: Migration to 18.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ramiadavid committed Oct 10, 2024
1 parent c11319c commit cbb9891
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion account_due_list/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

{
"name": "Payments Due list",
"version": "17.0.1.0.0",
"version": "18.0.1.0.0",
"category": "Generic Modules/Payment",
"development_status": "Production/Stable",
"author": "Odoo Community Association (OCA)",
Expand Down
8 changes: 4 additions & 4 deletions account_due_list/views/payment_view.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<field name="model">account.move.line</field>
<field name="priority" eval="20" />
<field name="arch" type="xml">
<tree
<list
decoration-success="full_reconcile_id!=False"
decoration-muted="reconciled!=False and full_reconcile_id==False"
decoration-warning="parent_state!='posted'"
Expand Down Expand Up @@ -65,7 +65,7 @@
<field name="reconciled" readonly="1" optional="hide" />
<field name="full_reconcile_id" readonly="1" optional="hide" />
<field name="parent_state" invisible="1" />
</tree>
</list>
</field>
</record>
<record id="view_payments_filter" model="ir.ui.view">
Expand Down Expand Up @@ -225,14 +225,14 @@
<record model="ir.actions.act_window" id="action_invoice_payments">
<field name="name">Payments and due list</field>
<field name="res_model">account.move.line</field>
<field name="view_mode">tree,form,pivot,graph</field>
<field name="view_mode">list,form,pivot,graph</field>
<field
name="context"
>{'search_default_posted_moves': 1, 'search_default_from_invoices': 1, 'search_default_not_full_reconciled': 1}</field>
<field
name="view_ids"
eval="[(5, 0, 0),
(0, 0, {'view_mode': 'tree', 'view_id': ref('view_payments_tree')}),
(0, 0, {'view_mode': 'list', 'view_id': ref('view_payments_tree')}),
(0, 0, {'view_mode': 'pivot', 'view_id': ref('view_payments_pivot')}),
(0, 0, {'view_mode': 'graph', 'view_id': ref('view_payments_graph')})]"
/>
Expand Down

0 comments on commit cbb9891

Please sign in to comment.