-
-
Notifications
You must be signed in to change notification settings - Fork 165
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][MIG] account_brand #193
base: 17.0
Are you sure you want to change the base?
Conversation
1. Go to Accounting \> Customers \> Invoices | ||
2. Select or create an invoice | ||
3. Enter the information and select the brand | ||
4. Print the PDF report. It includes the information of the brand. |
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.
I don't see point 4 implemented. Is it?
Perhaps any of you can help me with that? 😄 @sbejaoui @RLeeOSI @osi-scampbell @max3903 @cubells @AmmarOfficewalaSerpentCS
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.
@GuillemCForgeFlow
I think that point 4 is https://github.com/OCA/brand/pull/205/files
To use this module, you need to:
- Go to Settings > Users & Companies > Brands
- Add a new brand or select an existing one
- Enter brand information and select the a layout
- Go to any branded object abd print the PDF report. It includes the
information of the brand.
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.
Can you rebase for merge it?
There hasn't been any activity on this pull request in the past 4 months, so it has been marked as stale and it will be closed automatically if no further activity occurs in the next 30 days. |
was on OCA/partner-contact, switch to OCA/brand
[ADD] - add sbejaoui as maintainer [IMP] - move brand config section outside multi_company section [FIX] - add brand_use_level to fields_view_get fields
…er can't fill up analytic account on invoice lines
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. Translation: brand-16.0/brand-16.0-account_brand Translate-URL: https://translation.odoo-community.org/projects/brand-16-0/brand-16-0-account_brand/
Currently translated at 86.3% (19 of 22 strings) Translation: brand-16.0/brand-16.0-account_brand Translate-URL: https://translation.odoo-community.org/projects/brand-16-0/brand-16-0-account_brand/de/
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. Translation: brand-16.0/brand-16.0-account_brand Translate-URL: https://translation.odoo-community.org/projects/brand-16-0/brand-16-0-account_brand/
Currently translated at 72.7% (16 of 22 strings) Translation: brand-16.0/brand-16.0-account_brand Translate-URL: https://translation.odoo-community.org/projects/brand-16-0/brand-16-0-account_brand/hr/
Currently translated at 100.0% (22 of 22 strings) Translation: brand-16.0/brand-16.0-account_brand Translate-URL: https://translation.odoo-community.org/projects/brand-16-0/brand-16-0-account_brand/hr/
Currently translated at 100.0% (22 of 22 strings) Translation: brand-16.0/brand-16.0-account_brand Translate-URL: https://translation.odoo-community.org/projects/brand-16-0/brand-16-0-account_brand/es/
Currently translated at 100.0% (22 of 22 strings) Translation: brand-16.0/brand-16.0-account_brand Translate-URL: https://translation.odoo-community.org/projects/brand-16-0/brand-16-0-account_brand/es_AR/
b90df1a
to
dd02e02
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.
LGTM
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.
@bosd guessing that's what you were mentioning, right? |
Indeed, the brand field was not visible in the view. 😉 |
dd02e02
to
01d7361
Compare
Hi @bosd and @GuillemCForgeFlow. Thank you very much for the help 😄 |
("internal_type", "=", "receivable"), | ||
("deprecated", "=", False), | ||
] | ||
return {"domain": {"account_id": domain}} |
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.
This does not work in v17 anymore. Instead, you could create a computed field for which you'd assign a domain to be then used in the view
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.
Good catch 🤾
<field name="model">account.move</field> | ||
<field name="inherit_id" ref="account.view_move_form" /> | ||
<field name="arch" type="xml"> | ||
<field name="partner_shipping_id" position="before"> |
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.
still can't see the field in the runboat 🤔 perhaps we'll need to analyze in more detail how to add it to the view.
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.
Disregard this comment, I needed to activate the brand_use_level
. we could perhaps make it more explicit in the documentation?
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.
I needed to activate the
brand_use_level
. we could perhaps make it more explicit in the documentation?
Fell into the same trap. 😿 That would be a good improvement.
You owe me a 🍺 at the next oca days / oxp 😆 The field is there now 😉 |
01d7361
to
df24c1b
Compare
df24c1b
to
00ea096
Compare
Migration to 17.0
@ForgeFlow