-
Notifications
You must be signed in to change notification settings - Fork 10
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
T0280 Muskathlon Company Donation form #21
Conversation
ffe8e8d
to
88f3e2b
Compare
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.
To no create a potential case of redundant field, the "Company" field you implemented shouldn't be shown if the form is in b2b mode, see reference here: templates.xm in odoo website_sale module
The translations of the new implemented field are missing, please add the french and german translations |
There exists a template in Odoo to show the company and VAT named The status of the view can also be found by running the following SQL query: select w.name, iuv.key, iuv.active, iuv.customize_show , * from ir_ui_view iuv
left join website w on w.id = iuv.website_id
where iuv."key" = 'website_sale.address_b2b' and w.name like 'Muskathlon'; Should we enable this view instead of adding it manually? |
Yes it would be better. However we don't wan't the |
Quality Gate passedIssues Measures |
Adds a new
Company
field for the form. The value is saved inres_partner.company_name
.Task
Can we adapte the donation form for companies?
Can we have a drop down menu to chose name or company?
We have quite a few companies donating, so it would be nice to give the opinion to chose whether it is a company or person who donates.