Skip to content

Commit

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

{
"name": "Account Invoice Start End Dates",
"version": "17.0.1.1.0",
"version": "18.0.1.0.0",
"category": "Accounting & Finance",
"license": "AGPL-3",
"summary": "Adds start/end dates on invoice/move lines",
Expand Down
4 changes: 2 additions & 2 deletions account_invoice_start_end_dates/views/account_move.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
<field name="inherit_id" ref="account.view_move_form" />
<field name="arch" type="xml">
<xpath
expr="//field[@name='invoice_line_ids']/tree/field[@name='quantity']"
expr="//field[@name='invoice_line_ids']/list/field[@name='quantity']"
position="before"
>
<field name="must_have_dates" invisible="1" />
Expand All @@ -51,7 +51,7 @@
<field name="end_date" required="must_have_dates == True" />
</xpath>
<xpath
expr="//field[@name='line_ids']/tree/field[@name='credit']"
expr="//field[@name='line_ids']/list/field[@name='credit']"
position="after"
>
<field name="start_date" optional="hide" />
Expand Down

0 comments on commit bdb4da0

Please sign in to comment.