Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[17.0][FIX] account_payment_order: add missing company currency field on payment line #1378

Merged
merged 1 commit into from
Nov 22, 2024
Merged
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
1 change: 1 addition & 0 deletions account_payment_order/views/account_payment_line.xml
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@
<field name="amount_currency" string="Amount" />
<field name="currency_id" invisible="1" />
<field name="name" optional="show" />
<field name="company_currency_id" invisible="1" />

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think that in the tree view, it should use the column_invisible attribute instead of invisible.
image

Copy link
Member

@pedrobaeza pedrobaeza Nov 22, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Agh, true. @micheledic can you please do a PR fixing it?

<field
name="amount_company_currency"
sum="Total in Company Currency"
Expand Down
Loading