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] Bugfix in TreeView of account.payment.line (invisible vs column_invisible) #1385

Open
wants to merge 1 commit into
base: 17.0
Choose a base branch
from
Open
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
10 changes: 5 additions & 5 deletions account_payment_order/views/account_payment_line.xml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
<tree>
<field
name="order_id"
invisible="not context.get('account_payment_line_main_view')"
column_invisible="not context.get('account_payment_line_main_view')"
/>
<field name="partner_id" />
<field name="communication" />
Expand All @@ -86,15 +86,15 @@
<field name="ml_maturity_date" optional="show" />
<field name="date" />
<field name="amount_currency" string="Amount" />
<field name="currency_id" invisible="1" />
<field name="currency_id" column_invisible="1" />
<field name="name" optional="show" />
<field name="company_currency_id" invisible="1" />
<field name="company_currency_id" column_invisible="1" />
<field
name="amount_company_currency"
sum="Total in Company Currency"
invisible="1"
column_invisible="1"
/>
<field name="payment_type" invisible="1" />
<field name="payment_type" column_invisible="1" />
<button
name="action_open_business_doc"
type="object"
Expand Down
Loading