-
-
Notifications
You must be signed in to change notification settings - Fork 552
[18.0][MIG] account_banking_mandate_sale: Migration to 18.0 #1456
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
base: 18.0
Are you sure you want to change the base?
[18.0][MIG] account_banking_mandate_sale: Migration to 18.0 #1456
Conversation
… code by removing unnecessary lines.
Currently translated at 100.0% (5 of 5 strings) Translation: bank-payment-17.0/bank-payment-17.0-account_banking_mandate_sale Translate-URL: https://translation.odoo-community.org/projects/bank-payment-17-0/bank-payment-17-0-account_banking_mandate_sale/it/
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
hello, thanks for the works!
but could you check this WARNING? It happens when I am assigning value to mandate_id
field on Sale Order form
025-05-15 11:46:10,419 958395 WARNING v18e_account_banking_mandate_sale odoo.models: Cannot search on display_name, no _rec_name or _rec_names_search defined on account.banking.mandate
Hello @xaviedoanhduy , thanks for your review. I've reviewed the warning. Apparently, in the account.banking.mandate model of the account_banking_mandate module, two fields are missing: _rec_name and _rec_names_search. These fields allow searching for records in Many2one fields. To fix this correctly, the best approach is to add both attributes directly to the base module with a small correction, rather than doing it through a migration from another module. I have fixed this warning in the following PR: #1472 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for your efforts and it looks good to me
ace8dec
to
6ada35d
Compare
Migration account_banking_mandate_sale 17.0 to 18.0
Superseed #1411