Archives
- By thread 1472
-
By date
- August 2019 59
- September 2019 118
- October 2019 165
- November 2019 97
- December 2019 35
- January 2020 58
- February 2020 204
- March 2020 121
- April 2020 172
- May 2020 50
- June 2020 158
- July 2020 85
- August 2020 94
- September 2020 193
- October 2020 277
- November 2020 100
- December 2020 159
- January 2021 38
- February 2021 87
- March 2021 146
- April 2021 73
- May 2021 90
- June 2021 86
- July 2021 123
- August 2021 50
- September 2021 68
- October 2021 66
- November 2021 74
- December 2021 75
- January 2022 98
- February 2022 77
- March 2022 68
- April 2022 31
- May 2022 59
- June 2022 87
- July 2022 141
- August 2022 38
- September 2022 73
- October 2022 152
- November 2022 39
- December 2022 50
- January 2023 93
- February 2023 49
- March 2023 106
- April 2023 47
- May 2023 69
- June 2023 92
- July 2023 64
- August 2023 103
- September 2023 91
- October 2023 101
- November 2023 94
- December 2023 46
- January 2024 75
- February 2024 79
- March 2024 104
- April 2024 63
- May 2024 40
- June 2024 160
- July 2024 80
- August 2024 70
- September 2024 62
- October 2024 121
- November 2024 117
- December 2024 89
- January 2025 59
- February 2025 104
- March 2025 96
- April 2025 107
- May 2025 52
- June 2025 72
- July 2025 60
- August 2025 81
- September 2025 124
- October 2025 63
- November 2025 57
- December 2025 33
- January 2026 63
- February 2026 48
Contributors
contributors@odoo-community.org
-
Global Online Candidates OCA Delegates - Dating Show
Hello OCA members and OCA Delegates,
Today, Virginie and Tom hosted what I called the Candidates OCA Delegates Dating Show. They made sure everyone was given enough time to shine and share their views and opinions.
The online meeting reminded me of Steve Jobs hosting the Macintosh Software Dating Game with Bill Gates in 1983. It’s really fun to watch, especially with the '80s tunes and Steve Jobs' head-shaking enthusiasm.Click the link below to watch the video:
https://youtu.be/j7WVrkJYXeIAll jokes aside, it was great to be part of the global online OCA meeting, from Japan to Argentina, and to witness the enthusiasm of all the candidates.I don’t mind if the recording is shared with all OCA members and not just the OCA Delegates. Everyone can see how this process is executed, which certainly helps in attracting candidates for next year.One last thing:
The OCA Board can make an exception this year and select all 18 candidates to help the OCA move forward faster. As Steve Jobs said in the video, I can’t choose one of you; I need all of you!I had fun and really enjoyed the meeting, and I encourage other candidates, delegates, and hosts, to share their experiences of the “Dating Show.”Warm regards,Michel Stroom
Helping promote the OCA to get more members and sponsors
Remark / Note / P.S.:I apologize in advance for sending this email to the contributors list. I really don’t know where else to send it, and I haven’t found an email address for only OCA members and delegates.Idea:Maybe we can implement the Odoo Forum app to set up different channels, like they already did at the local Spanish OCA.==> If you’re not an OCA Member, You are welcome to Join us<==Click the link below:
by Michel Stroom - 05:31 - 23 Oct 2024 -
Big number changed automatically on float fields
Hello, when trying to input very large numbers (with no decimals, 19 digits in my specific case) in credit or debit fields from journal items these numbers are changed on saving automatically with no explanation. The issue is easily reproducible in runbot Odoo 16 CE. I think a similar issue has been reported on github (https://github.com/odoo/odoo/issues/82597).
Steps to reproduce (from a user with full accounting features enabled), demo db from runbot.com 16.0 CE:
- Go to Invoicing/Accounting/Journal Entries
- Create a new one
- In Journal Items add a new line like this:
- When saved we get:
A value with the last Nth digits changed.
I was able to debug in a local environment and my observations are:
- Is not a problem from UI: emulating the creation of journal items from code gets the same results.
- Is not a problem of visualization: wrong values are persisted into database.
- At ORM level the large numbers are represented in python scientific notation, in this case 1.51337248356932e+18
- From there python float "features" begin to work and the float part of the scientific notation gets transformed due to the way python stores float numbers.
- If
my tests are not wrong every single float field in Odoo is hit
by this.
I think is rare nobody has notice this before. Maybe I'm ignoring some very basic fact about currency settings in Odoo that's why I'm reaching U for help or any creative idea.
by Ing. Rolando Pérez Rebollo - 03:30 - 23 Oct 2024-
Re: Big number changed automatically on float fields
I reviewed this before. I think is the "why is happening?" I also make a research of github issues and even stackoverflow but it's not the same context. Almost every issue related comes from the misleading float_round in float_utils helpers but I'm not even working with a float directly I just have inserted a large number and it's just python dealing with it like a float **18, not Odoo ORM. I'll read again the documentation in search of some hint. Thanks.
On 10/23/24 10:37, Holger Brunn wrote:
https://docs.python.org/3/tutorial/floatingpoint.html -- Your partner for the hard Odoo problems https://hunki-enterprises.com
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Ing. Rolando Pérez Rebollo - 05:02 - 23 Oct 2024 -
RE: Big number changed automatically on float fields
Dear,
In Python, you have a Decimal class. Here your numbers are stored in full. So maybe this is a solution.
With kind regards,
Van Hirtum Johan
Van: Rolando Pérez Rebollo [mailto:notifications@odoo-community.org]
Verzonden: woensdag 23 oktober 2024 16:43
Aan: Contributors
Onderwerp: Re: Big number changed automatically on float fields> I'm interested in the business context of this problem. What kind of accounting are you doing where numbers have 19 digits?
It's a country with a very high inflation but the company operations really runs in USD so when converting from USD to local currency there are these kind of large numbers.
> A value with the last Nth digits changed.
For 1513372483569320000 is always the last five digits, the number stays the same till 15133724835693. My guess is due to the use of float for scientific notation the rest of the number gets messed up for some sort of global digit precision setting.
The columns in postgres that stores the values for credit and debit fields are of type numeric but without precision and scale settings. For me the responsible for the issue is python.
On 10/23/24 10:12, Janik von Rotz wrote:
Hi Rolando
I'm interested in the business context of this problem. What kind of accounting are you doing where numbers have 19 digits?
Your questions reminds me of the first Odoo Partner Days. Somebody asked something similar in the context of fuel prices. Fabien opened an interactive python shell and did something like:
>>> import math
>>> math.pow(2, 64)
1.8446744073709552e+19The question was dismissed and we went on to the next question.
> A value with the last Nth digits changed.
What exactly changes? Can you compare the number entered and retrieved?
Cheers, Janik
On 10/23/24 15:32, Rolando Pérez Rebollo wrote:
Hello, when trying to input very large numbers (with no decimals, 19 digits in my specific case) in credit or debit fields from journal items these numbers are changed on saving automatically with no explanation. The issue is easily reproducible in runbot Odoo 16 CE. I think a similar issue has been reported on github (https://github.com/odoo/odoo/issues/82597).
Steps to reproduce (from a user with full accounting features enabled), demo db from runbot.com 16.0 CE:
- Go to Invoicing/Accounting/Journal Entries
- Create a new one
- In Journal Items add a new line like this:
- When saved we get:
A value with the last Nth digits changed.
I was able to debug in a local environment and my observations are:
- Is not a problem from UI: emulating the creation of journal items from code gets the same results.
- Is not a problem of visualization: wrong values are persisted into database.
- At ORM level the large numbers are represented in python scientific notation, in this case 1.51337248356932e+18
- From there python float "features" begin to work and the float part of the scientific notation gets transformed due to the way python stores float numbers.
- If my tests are not wrong every single float field in Odoo is hit by this.
I think is rare nobody has notice this before. Maybe I'm ignoring some very basic fact about currency settings in Odoo that's why I'm reaching U for help or any creative idea.
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe--
We are hiring: https://www.mint-system.ch/jobs
Send application to: jobs@mint-system.ch
CTO Mint System GmbH
Tel: +41 44 244 7222
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by johan - 04:51 - 23 Oct 2024 -
Re: Big number changed automatically on float fields
> I'm interested in the business context of this problem. What kind of accounting are you doing where numbers have 19 digits?
It's a country with a very high inflation but the company operations really runs in USD so when converting from USD to local currency there are these kind of large numbers.
> A value with the last Nth digits changed.
For 1513372483569320000 is always the last five digits, the number stays the same till 15133724835693. My guess is due to the use of float for scientific notation the rest of the number gets messed up for some sort of global digit precision setting.
The columns in postgres that stores the values for credit and debit fields are of type numeric but without precision and scale settings. For me the responsible for the issue is python.
On 10/23/24 10:12, Janik von Rotz wrote:
Hi Rolando
I'm interested in the business context of this problem. What kind of accounting are you doing where numbers have 19 digits?
Your questions reminds me of the first Odoo Partner Days. Somebody asked something similar in the context of fuel prices. Fabien opened an interactive python shell and did something like:
>>> import math
>>> math.pow(2, 64)
1.8446744073709552e+19
The question was dismissed and we went on to the next question.
> A value with the last Nth digits changed.
What exactly changes? Can you compare the number entered and retrieved?
Cheers, Janik
On 10/23/24 15:32, Rolando Pérez Rebollo wrote:
Hello, when trying to input very large numbers (with no decimals, 19 digits in my specific case) in credit or debit fields from journal items these numbers are changed on saving automatically with no explanation. The issue is easily reproducible in runbot Odoo 16 CE. I think a similar issue has been reported on github (https://github.com/odoo/odoo/issues/82597).
Steps to reproduce (from a user with full accounting features enabled), demo db from runbot.com 16.0 CE:
- Go to Invoicing/Accounting/Journal Entries
- Create a new one
- In Journal Items add a new line like this:
- When saved we get:
A value with the last Nth digits changed.
I was able to debug in a local environment and my observations are:
- Is not a problem from UI: emulating the creation of journal items from code gets the same results.
- Is not a problem of visualization: wrong values are persisted into database.
- At ORM level the large numbers are represented in python scientific notation, in this case 1.51337248356932e+18
- From there python float "features" begin to work and the float part of the scientific notation gets transformed due to the way python stores float numbers.
- If
my tests are not wrong every single float field in
Odoo is hit by this.
I think is rare nobody has notice this before. Maybe I'm ignoring some very basic fact about currency settings in Odoo that's why I'm reaching U for help or any creative idea.
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
-- We are hiring: https://www.mint-system.ch/jobs Send application to: jobs@mint-system.ch CTO Mint System GmbH Tel: +41 44 244 7222
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Ing. Rolando Pérez Rebollo - 04:41 - 23 Oct 2024 -
Re: Big number changed automatically on float fields
https://docs.python.org/3/tutorial/floatingpoint.html -- Your partner for the hard Odoo problems https://hunki-enterprises.com
by Holger Brunn - 04:35 - 23 Oct 2024 -
Re: Big number changed automatically on float fields
That is the right question - what problem are you trying to solve that requires 19 digit numbers.
On the actual problem, this is how floating point numbers are designed to work at a low level, on Python and computers in general.
Floating point numbers don't store all the number's digits.
For efficiency they only store a limited number of "precision" digits (the ones you can see on the scientific representation) and then the power of 10 scale - where the ("floating") decimal point is.
So for very large number, you lose precision on the rightmost digits of your number.
/Daniel
On 23/10/2024 15:12, Janik von Rotz wrote:
Hi Rolando
I'm interested in the business context of this problem. What kind of accounting are you doing where numbers have 19 digits?
Your questions reminds me of the first Odoo Partner Days. Somebody asked something similar in the context of fuel prices. Fabien opened an interactive python shell and did something like:
>>> import math
>>> math.pow(2, 64)
1.8446744073709552e+19
The question was dismissed and we went on to the next question.
> A value with the last Nth digits changed.
What exactly changes? Can you compare the number entered and retrieved?
Cheers, Janik
On 10/23/24 15:32, Rolando Pérez Rebollo wrote:
Hello, when trying to input very large numbers (with no decimals, 19 digits in my specific case) in credit or debit fields from journal items these numbers are changed on saving automatically with no explanation. The issue is easily reproducible in runbot Odoo 16 CE. I think a similar issue has been reported on github (https://github.com/odoo/odoo/issues/82597).
Steps to reproduce (from a user with full accounting features enabled), demo db from runbot.com 16.0 CE:
- Go to Invoicing/Accounting/Journal Entries
- Create a new one
- In Journal Items add a new line like this:
- When saved we get:
A value with the last Nth digits changed.
I was able to debug in a local environment and my observations are:
- Is not a problem from UI: emulating the creation of journal items from code gets the same results.
- Is not a problem of visualization: wrong values are persisted into database.
- At ORM level the large numbers are represented in python scientific notation, in this case 1.51337248356932e+18
- From there python float "features" begin to work and the float part of the scientific notation gets transformed due to the way python stores float numbers.
- If
my tests are not wrong every single float field in
Odoo is hit by this.
I think is rare nobody has notice this before. Maybe I'm ignoring some very basic fact about currency settings in Odoo that's why I'm reaching U for help or any creative idea.
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
-- We are hiring: https://www.mint-system.ch/jobs Send application to: jobs@mint-system.ch CTO Mint System GmbH Tel: +41 44 244 7222
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
--
DANIEL REIS
MANAGING PARTNER>> Schedule time on my calendar.
M: +351 919 991 307
E: dreis@OpenSourceIntegrators.com
A: Avenida da República 3000, Estoril Office Center, 2649-517 Cascais
by Daniel Reis - 04:26 - 23 Oct 2024
-
Submmit an Odoo website form as an Iframe
Hi all,
I'm trying to embed an Odoo website form as an iframe and encountering a 400 error.
The original Odoo website form works well when not used in Iframe.Tried to change csrf=False with no success, do you have other ideas?--
by Hed Shefer - 01:41 - 23 Oct 2024-
Re: Submmit an Odoo website form as an Iframe
Where is the iframe located?
1. On the same website where also the Odoo Form is located.2. On another website that is also created with Odoo Website Builder.3. On another website that is NOT created with Odoo Website Builder4. none of the above, something completely differentIf it is another website that is not created with Odoo, can you share the website environment tools and settings?A link where the iframe is going to be published can certainly help.On 23 Oct 2024, at 17:23, Hed Shefer <notifications@odoo-community.org> wrote:V17On Wed, 23 Oct 2024 at 17:58, Michel Stroom <notifications@odoo-community.org> wrote:What is the Odoo version you are using?
On 23 Oct 2024, at 13:43, Hed Shefer <notifications@odoo-community.org> wrote:Hi all,
I'm trying to embed an Odoo website form as an iframe and encountering a 400 error.
The original Odoo website form works well when not used in Iframe.Tried to change csrf=False with no success, do you have other ideas?--_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
--_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Michel Stroom - 10:16 - 28 Oct 2024 -
Re: Submmit an Odoo website form as an Iframe
V17On Wed, 23 Oct 2024 at 17:58, Michel Stroom <notifications@odoo-community.org> wrote:What is the Odoo version you are using?
On 23 Oct 2024, at 13:43, Hed Shefer <notifications@odoo-community.org> wrote:Hi all,
I'm trying to embed an Odoo website form as an iframe and encountering a 400 error.
The original Odoo website form works well when not used in Iframe.Tried to change csrf=False with no success, do you have other ideas?--_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
--
by Hed Shefer - 05:21 - 23 Oct 2024 -
Re: Submmit an Odoo website form as an Iframe
What is the Odoo version you are using?
On 23 Oct 2024, at 13:43, Hed Shefer <notifications@odoo-community.org> wrote:Hi all,
I'm trying to embed an Odoo website form as an iframe and encountering a 400 error.
The original Odoo website form works well when not used in Iframe.Tried to change csrf=False with no success, do you have other ideas?--_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Michel Stroom - 04:56 - 23 Oct 2024 -
Re: Submmit an Odoo website form as an Iframe
OK, I changed the csrf=False in another controller and then it works.On Wed, 23 Oct 2024 at 14:36, Hed Shefer <hed@laylinetech.com> wrote:Hi all,
I'm trying to embed an Odoo website form as an iframe and encountering a 400 error.
The original Odoo website form works well when not used in Iframe.Tried to change csrf=False with no success, do you have other ideas?----
by Hed Shefer - 01:56 - 23 Oct 2024
-
-
My Application for OCA Delegate
Dear Delegates,Unfortunately, I won't be able to attend tomorrow's live session. The reason is quite simple: three kids to manage at that time! :-) Wednesday is the day I dedicate to my children.
However, this does not diminish my motivation to become an OCA delegate. In fact, I have already served as a delegate in the past, until 2018, when I took a few years to focus on other professional activities.
For me, the OCA is the central and essential player in the Odoo community. We play a crucial role in enhancing and enriching Odoo's open-source ecosystem by offering a vast collection of open-source addons across many functional areas. Addons provided by the OCA offer solutions that go beyond the standard capabilities of Odoo, enabling us to meet specific client needs and further optimize their business processes. Additionally, we benefit from synergies with other stakeholders facing similar challenges or requirements.
It is for these reasons that I wish to continue promoting our work by becoming an OCA delegate once again, because together, we can take Odoo to the next level.
See you soon,
Adrien--Adrien PeifferManager | Project & Technical LeadAtrium Building, Drève Richelle 167 | B-1410 Waterloo | BelgiumVal Benoit, Quai Banning 6 | B-4000 Liège | BelgiumZone industrielle 22 | L-8287 Kehlen | LuxembourgAbsent on Wednesdays
by Adrien Peiffer - 08:31 - 22 Oct 2024 -
Scanner HW for stock_barcodes (OCA/stock-logistics-barcode)
Hi I have been playing with this great stock_barcodes module on runboat:
https://github.com/OCA/stock-logistics-barcode/tree/15.0/stock_barcodesBeen testing barcode input with xdotool on Linux; works fine for simple tests.
(More info about it in the "bar code scanner simulator" discussion from March 2020 in this mailing list.)My question to people using this module - do you have specific scanner hardware you would recommend?
I notice the module has a dependency on barcodes from Odoo Community, which implements scanning interface here.
Odoo itself recommends hardware here and here, but I'm not sure if that applies to Odoo Community or Enterprise only.Our OCA module also seems to implement such a scanning interface here, and without importing elements from that barcodes module (from what I can see on a cursory glance)?
Hence my question - should I follow Odoo's scanner HW recommendation, or is our interface slightly different?Thanks for your input
-- Houzéfa Abbasbhay XCG Consulting / Ọrbeet
by Houzéfa Abbasbhay - 04:56 - 22 Oct 2024-
Re: Scanner HW for stock_barcodes (OCA/stock-logistics-barcode)
Thank you very much for the info! Time to order one and start tweaking it! :) -- Houzéfa Abbasbhay XCG Consulting / Ọrbeet
by Houzéfa Abbasbhay - 05:11 - 22 Oct 2024 -
Re: Scanner HW for stock_barcodes (OCA/stock-logistics-barcode)
It's basically the same, as the JS recognizing that a keyboard input is a barcode reading is the same (and it's based on the times, assuming that you are not able to type on that speed).Any HW reader you buy, you will have to check for some config about the speed rate, barcode termination (avoiding extra line feeds and so on), and other tweaks, but mostly every device out there may serve.Regards.
by Pedro M. Baeza - 05:02 - 22 Oct 2024
-
-
Help promoting the OCA
Hi OCA members and fellow Odooers,I wasn’t able to attend the recent OCA Days in Liège, so I began watching the videos online. One of them highlighted the need for more OCA members.
Since then, I’ve made it a daily routine to watch one OCA video each morning and share my thoughts on LinkedIn, encouraging readers to consider applying for membership.
This morning, I posted Gonzalo Ruzafa talk, "How to Sell an Odoo Project." In my opinion, it’s a must-see for anyone involved in selling Odoo.Read my latest post on LinkedIn and click the link below:https://tinyurl.com/ytndcmst
I hope this inspires more people to write about the OCA.Feel free to reach out if you need help creating content.Best regards,Michel StroomLinkedIn: https://linkedin.com/in/stroom
by Michel Stroom - 11:50 - 22 Oct 2024-
Re: Help promoting the OCA
Jordan & everyone else:
that's purely my opinion which is probably coming from me being used to this mailing list as rather technical one. I am not in a position to rule over this and if everybody else is OK with it I do not mind.
Sorry, if I overstepped. Best regards
Radovan
On utorok 22. októbra 2024 14:07:09 CEST Jordan Kinsella wrote:
> Hi Radovan,
>
>
> Thanks for your email. Noted.
>
>
> Habit, but fault. While, I disagree with your point entirely, for ease of
> argument, I will refrain in the future.
>
>
> Thanks, have a good week.
>
>
> Kind regards,
>
>
>
>
>
> None [1]
>
>
>
> *Jordan Kinsella*
> Head of Marketing | Gravitai
>
> jordan@gravitai.com | [2] +44 (0) 1233 801
> 330
> 314 Regents Park Road, Finchley,
> London N3 2LT [3]
> www.gravitai.com [4]
>
> Support |
> [5] hello@gravitai.com [6]
>
>
>
>
>
> ----
>
>
>
>
>
> CONFIDENTIAL: Within this email, any files transmitted with it are
> confidential and intended solely for the use of the individual or entity to
> whom they are addressed. If you have received this email in error, please
> notify the sender. This message contains confidential information and is
> intended only for the individual(s) named. If you are not the named
> addressee, you should not disclose, distribute or copy this email. Please
> notify the sender immediately by email if you have received this email by
> mistake and delete this email from your system. If you are not the intended
> recipient, you are notified that disclosing, copying, distributing or
> taking any action in reliance on the contents of this information is
> strictly prohibited. For more information on how we operate and deal with
> your data, please visit our website to have a look at our Privacy Policy
> [7] and
> Terms & Conditions [8] pages.
>
> WARNING: Whilst we run antivirus software on all internet emails, we are not
> liable for any loss or damage. The recipient is advised to run their own
> antivirus software while operating and viewing emails directed at them from
> Gravitai.
>
>
>
>
>
>
> *From:* Radovan Skolnik <notifications@odoo-community.org>
> *Sent:* 22 October 2024 12:47
> *To:* Contributors <contributors@odoo-community.org>
> *Subject:* Re: Help promoting the OCA
>
>
>
>
> Caution: This is an external email. Please take care when clicking links or
> opening attachments. When in doubt, contact your Department Manager
>
>
>
>
>
> Jordan,
>
> while I like your enthusiasm I would ask you (if there's not a opposite
> opinion) not to add reactions to mailing lists - this is not Facebook or
> LinkedIn. It pollutes the mailing list with emails that really do not bring
> any additional value. This is a sample of the last one that was sent to all
> subscribers:
>
>
> Hope you understand. Thank you.
>
> Best regards
>
> Radovan Skolnik
>
> On utorok 22. októbra 2024 12:13:08 CEST Jordan Kinsella wrote:
> > Jordan Kinsella
> > reacted to your message:
> >
> >
> >
> >
> >
> >
> > *From:* Michel Stroom <notifications@odoo-community.org>
> > *Sent:* Tuesday, October 22, 2024 9:52:38 AM
> > *To:* Contributors <contributors@odoo-community.org>
> > *Subject:* Help promoting the OCA
> >
> >
> >
> >
> > Caution: This is an external email. Please take care when clicking links
> > or
> > opening attachments. When in doubt, contact your Department Manager
> >
> >
> >
> >
> >
> > Hi OCA members and fellow Odooers,
> >
> > I wasn’t able to attend the recent OCA Days in Liège, so I began watching
> > the videos online. One of them highlighted the need for more OCA members.
> >
> > Since then, I’ve made it a daily routine to watch one OCA video each
> > morning and share my thoughts on LinkedIn, encouraging readers to
> > consider applying for membership.
> >
> > This morning, I posted Gonzalo Ruzafa talk, "How to Sell an Odoo Project."
> > In my opinion, it’s a must-see for anyone involved in selling Odoo.
> >
> >
> > Read my latest post on LinkedIn and click the link below:
> > https://tinyurl.com/ytndcmst
> >
> > I hope this inspires more people to write about the OCA.
> > Feel free to reach out if you need help creating content.
> >
> > Best regards,
> >
> >
> >
> > Michel Stroom
> > LinkedIn: https://linkedin.com/in/stroom
> >
> >
> >
> >
> > _______________________________________________
> > Mailing-List:
> > https://odoo-community.org/groups/contributors-15 [1]
> > Post to: mailto:contributors@odoo-community.org
> > Unsubscribe:
> > https://odoo-community.org/groups?unsubscribe [2]
> >
> >
> >
> >
> > _______________________________________________
> > Mailing-List: https://odoo-community.org/groups/contributors-15 [3]
> > Post to: mailto:contributors@odoo-community.org
> > Unsubscribe: https://odoo-community.org/groups?unsubscribe [4]
> >
> >
> >
> > [1] https://odoo-community.org/groups/contributors-15
> > [2] https://odoo-community.org/groups?unsubscribe
> > [3] https://odoo-community.org/groups/contributors-15
> > [4] https://odoo-community.org/groups?unsubscribe
>
> _______________________________________________
> Mailing-List:
> https://odoo-community.org/groups/contributors-15 [9]
> Post to: mailto:contributors@odoo-community.org
> Unsubscribe:
> https://odoo-community.org/groups?unsubscribe [10]
>
>
>
>
> _______________________________________________
> Mailing-List: https://odoo-community.org/groups/contributors-15 [11]
> Post to: mailto:contributors@odoo-community.org
> Unsubscribe: https://odoo-community.org/groups?unsubscribe [12]
>
>
>
> [1] https://www.gravitai.com/r/i5p
> [2] mailto:jordan@gravitai.com
> [3] https://www.gravitai.com/contact-us
> [4] https://www.gravitai.com
> [5] https://www.gravitai.com/contact-us
> [6] mailto:hello@gravitai.com
> [7] https://www.gravitai.com/privacy-policy
> [8] https://www.gravitai.com/terms-and-conditions
> [9] https://odoo-community.org/groups/contributors-15
> [10] https://odoo-community.org/groups?unsubscribe
> [11] https://odoo-community.org/groups/contributors-15
> [12] https://odoo-community.org/groups?unsubscribe
by Radovan Skolnik - 03:46 - 22 Oct 2024 -
Re: Help promoting the OCA
Hi Radovan,
Thanks for your email. Noted.
Habit, but fault. While, I disagree with your point entirely, for ease of argument, I will refrain in the future.
Thanks, have a good week.
Kind regards,
Jordan Kinsella
Head of Marketing | Gravitai
jordan@gravitai.com | +44 (0) 1233 801 330
314 Regents Park Road, Finchley, London N3 2LT
www.gravitai.com
Support | hello@gravitai.com
----
CONFIDENTIAL: Within this email, any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error, please notify the sender. This message contains confidential information and is intended only for the individual(s) named. If you are not the named addressee, you should not disclose, distribute or copy this email. Please notify the sender immediately by email if you have received this email by mistake and delete this email from your system. If you are not the intended recipient, you are notified that disclosing, copying, distributing or taking any action in reliance on the contents of this information is strictly prohibited. For more information on how we operate and deal with your data, please visit our website to have a look at our Privacy Policy and Terms & Conditions pages.
WARNING: Whilst we run antivirus software on all internet emails, we are not liable for any loss or damage. The recipient is advised to run their own antivirus software while operating and viewing emails directed at them from Gravitai.
From: Radovan Skolnik <notifications@odoo-community.org>
Sent: 22 October 2024 12:47
To: Contributors <contributors@odoo-community.org>
Subject: Re: Help promoting the OCACaution: This is an external email. Please take care when clicking links or opening attachments. When in doubt, contact your Department Manager
Jordan,
while I like your enthusiasm I would ask you (if there's not a opposite opinion) not to add reactions to mailing lists - this is not Facebook or LinkedIn. It pollutes the mailing list with emails that really do not bring any additional value. This is a sample of the last one that was sent to all subscribers:
Hope you understand. Thank you.
Best regards
Radovan Skolnik
On utorok 22. októbra 2024 12:13:08 CEST Jordan Kinsella wrote:
> Jordan Kinsella
> reacted to your message:
>
>
>
>
>
>
> *From:* Michel Stroom <notifications@odoo-community.org>
> *Sent:* Tuesday, October 22, 2024 9:52:38 AM
> *To:* Contributors <contributors@odoo-community.org>
> *Subject:* Help promoting the OCA
>
>
>
>
> Caution: This is an external email. Please take care when clicking links or
> opening attachments. When in doubt, contact your Department Manager
>
>
>
>
>
> Hi OCA members and fellow Odooers,
>
> I wasn’t able to attend the recent OCA Days in Liège, so I began watching
> the videos online. One of them highlighted the need for more OCA members.
>
> Since then, I’ve made it a daily routine to watch one OCA video each morning
> and share my thoughts on LinkedIn, encouraging readers to consider applying
> for membership.
>
> This morning, I posted Gonzalo Ruzafa talk, "How to Sell an Odoo Project."
> In my opinion, it’s a must-see for anyone involved in selling Odoo.
>
>
> Read my latest post on LinkedIn and click the link below:
> https://tinyurl.com/ytndcmst
>
> I hope this inspires more people to write about the OCA.
> Feel free to reach out if you need help creating content.
>
> Best regards,
>
>
>
> Michel Stroom
> LinkedIn: https://linkedin.com/in/stroom
>
>
>
>
> _______________________________________________
> Mailing-List:
> https://odoo-community.org/groups/contributors-15 [1]
> Post to: mailto:contributors@odoo-community.org
> Unsubscribe:
> https://odoo-community.org/groups?unsubscribe [2]
>
>
>
>
> _______________________________________________
> Mailing-List: https://odoo-community.org/groups/contributors-15 [3]
> Post to: mailto:contributors@odoo-community.org
> Unsubscribe: https://odoo-community.org/groups?unsubscribe [4]
>
>
>
> [1] https://odoo-community.org/groups/contributors-15
> [2] https://odoo-community.org/groups?unsubscribe
> [3] https://odoo-community.org/groups/contributors-15
> [4] https://odoo-community.org/groups?unsubscribe
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Jordan Kinsella - 02:06 - 22 Oct 2024 -
Re: Help promoting the OCA
Jordan,
while I like your enthusiasm I would ask you (if there's not a opposite opinion) not to add reactions to mailing lists - this is not Facebook or LinkedIn. It pollutes the mailing list with emails that really do not bring any additional value. This is a sample of the last one that was sent to all subscribers:
Hope you understand. Thank you.
Best regards
Radovan Skolnik
On utorok 22. októbra 2024 12:13:08 CEST Jordan Kinsella wrote:
> Jordan Kinsella
> reacted to your message:
>
>
>
>
>
>
> *From:* Michel Stroom <notifications@odoo-community.org>
> *Sent:* Tuesday, October 22, 2024 9:52:38 AM
> *To:* Contributors <contributors@odoo-community.org>
> *Subject:* Help promoting the OCA
>
>
>
>
> Caution: This is an external email. Please take care when clicking links or
> opening attachments. When in doubt, contact your Department Manager
>
>
>
>
>
> Hi OCA members and fellow Odooers,
>
> I wasn’t able to attend the recent OCA Days in Liège, so I began watching
> the videos online. One of them highlighted the need for more OCA members.
>
> Since then, I’ve made it a daily routine to watch one OCA video each morning
> and share my thoughts on LinkedIn, encouraging readers to consider applying
> for membership.
>
> This morning, I posted Gonzalo Ruzafa talk, "How to Sell an Odoo Project."
> In my opinion, it’s a must-see for anyone involved in selling Odoo.
>
>
> Read my latest post on LinkedIn and click the link below:
> https://tinyurl.com/ytndcmst
>
> I hope this inspires more people to write about the OCA.
> Feel free to reach out if you need help creating content.
>
> Best regards,
>
>
>
> Michel Stroom
> LinkedIn: https://linkedin.com/in/stroom
>
>
>
>
> _______________________________________________
> Mailing-List:
> https://odoo-community.org/groups/contributors-15 [1]
> Post to: mailto:contributors@odoo-community.org
> Unsubscribe:
> https://odoo-community.org/groups?unsubscribe [2]
>
>
>
>
> _______________________________________________
> Mailing-List: https://odoo-community.org/groups/contributors-15 [3]
> Post to: mailto:contributors@odoo-community.org
> Unsubscribe: https://odoo-community.org/groups?unsubscribe [4]
>
>
>
> [1] https://odoo-community.org/groups/contributors-15
> [2] https://odoo-community.org/groups?unsubscribe
> [3] https://odoo-community.org/groups/contributors-15
> [4] https://odoo-community.org/groups?unsubscribe
by Radovan Skolnik - 01:45 - 22 Oct 2024 -
Re: Help promoting the OCA
Hello Michel,Thanks a lot for your help here, it is very appreciated!There is currently no "marketing" working group in the community but as you suggested, we will create one to coordinate those kind of initiatives. In parallel, we will need to improve the "new member journey" as well (and the contributor's journey afterwards).For those reading this message, if you want to join as well, let me know by emailing me directly (do not reply to the whole mailing list):Best regards,Le mar. 22 oct. 2024 à 11:52, Michel Stroom <notifications@odoo-community.org> a écrit :Hi OCA members and fellow Odooers,I wasn’t able to attend the recent OCA Days in Liège, so I began watching the videos online. One of them highlighted the need for more OCA members.
Since then, I’ve made it a daily routine to watch one OCA video each morning and share my thoughts on LinkedIn, encouraging readers to consider applying for membership.
This morning, I posted Gonzalo Ruzafa talk, "How to Sell an Odoo Project." In my opinion, it’s a must-see for anyone involved in selling Odoo.Read my latest post on LinkedIn and click the link below:
I hope this inspires more people to write about the OCA.Feel free to reach out if you need help creating content.Best regards,_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Virginie Dewulf (OCA) - 01:45 - 22 Oct 2024 -
RE: Help promoting the OCA
Jordan Kinsella reacted to your message:
From: Michel Stroom <notifications@odoo-community.org>
Sent: Tuesday, October 22, 2024 9:52:38 AM
To: Contributors <contributors@odoo-community.org>
Subject: Help promoting the OCACaution: This is an external email. Please take care when clicking links or opening attachments. When in doubt, contact your Department Manager
Hi OCA members and fellow Odooers,
I wasn’t able to attend the recent OCA Days in Liège, so I began watching the videos online. One of them highlighted the need for more OCA members.
Since then, I’ve made it a daily routine to watch one OCA video each morning and share my thoughts on LinkedIn, encouraging readers to consider applying for membership.
This morning, I posted Gonzalo Ruzafa talk, "How to Sell an Odoo Project." In my opinion, it’s a must-see for anyone involved in selling Odoo.
Read my latest post on LinkedIn and click the link below:https://tinyurl.com/ytndcmst
I hope this inspires more people to write about the OCA.Feel free to reach out if you need help creating content.
Best regards,
Michel StroomLinkedIn: https://linkedin.com/in/stroom
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Jordan Kinsella - 12:11 - 22 Oct 2024
-
-
Invoicing addresses
Dear Community,
i do have a use case, where the following scenario should be covered.
Company A (using odoo) is a subcontractor of Company B. Company B is handing over work to Company A to perform some service (lets say Product “Service on behalf of Company B”) for Customer X.
Company A is performing the service @Customer X and also sells some items to Customer X.
When Company A is creating an invoice, the invoice for “Service on behalf of Company B” should be addressed to company A, while the sold items should be invoiced to Customer X.
Is any body aware of a solution, that covers this scenario and automating this logic? Separating this manually can be pretty time consuming.
All the best
Nils
by Nils Coenen - 02:46 - 20 Oct 2024-
Re: Invoicing addresses
I experimented with it some time ago, but I’m sure someone from my team has worked on a similar scenario more recently. I’ll check with the team at the office tomorrow.On 10/20/2024 3:52 PM Aymerick G. <notifications@odoo-community.org> wrote:
Have you tried the standard setting « service subcontractor » ? I know it was the in V15. It’d like an MTO but for services.
Aymerick Glowacki
Le dim. 20 oct. 2024 à 10:42, Jorge Elena Poblet <notifications@odoo-community.org> a écrit :
There are several OCA modules that may help automate part of the invoicing logic you're seeking, although a completely packaged solution for splitting invoices in the exact scenario you described might not be available. One useful module is from the OCA’s account-invoice-reporting repository, which offers addons to enhance invoice reporting. These modules can help manage and automate aspects of invoice handling, like grouping invoice lines by picking, managing sales line positions, and showing specific data points like due dates or serial numbers in invoices.
To address your specific case you might need to look into customizing Odoo with logic to split invoicing based on the type of service or product provided.
Good luck!On 10/20/2024 1:47 PM Nils Coenen | NICO SOLUTIONS - ENGINEERING & IT <notifications@odoo-community.org> wrote:
Dear Community,
i do have a use case, where the following scenario should be covered.
Company A (using odoo) is a subcontractor of Company B. Company B is handing over work to Company A to perform some service (lets say Product “Service on behalf of Company B”) for Customer X.
Company A is performing the service @Customer X and also sells some items to Customer X.
When Company A is creating an invoice, the invoice for “Service on behalf of Company B” should be addressed to company A, while the sold items should be invoiced to Customer X.
Is any body aware of a solution, that covers this scenario and automating this logic? Separating this manually can be pretty time consuming.
All the best
Nils
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Jorge Elena Poblet - 05:11 - 20 Oct 2024 -
Re: Invoicing addresses
Have you tried the standard setting « service subcontractor » ? I know it was the in V15. It’d like an MTO but for services.Aymerick GlowackiLe dim. 20 oct. 2024 à 10:42, Jorge Elena Poblet <notifications@odoo-community.org> a écrit :There are several OCA modules that may help automate part of the invoicing logic you're seeking, although a completely packaged solution for splitting invoices in the exact scenario you described might not be available. One useful module is from the OCA’s account-invoice-reporting repository, which offers addons to enhance invoice reporting. These modules can help manage and automate aspects of invoice handling, like grouping invoice lines by picking, managing sales line positions, and showing specific data points like due dates or serial numbers in invoices.
To address your specific case you might need to look into customizing Odoo with logic to split invoicing based on the type of service or product provided.
Good luck!On 10/20/2024 1:47 PM Nils Coenen | NICO SOLUTIONS - ENGINEERING & IT <notifications@odoo-community.org> wrote:
Dear Community,
i do have a use case, where the following scenario should be covered.
Company A (using odoo) is a subcontractor of Company B. Company B is handing over work to Company A to perform some service (lets say Product “Service on behalf of Company B”) for Customer X.
Company A is performing the service @Customer X and also sells some items to Customer X.
When Company A is creating an invoice, the invoice for “Service on behalf of Company B” should be addressed to company A, while the sold items should be invoiced to Customer X.
Is any body aware of a solution, that covers this scenario and automating this logic? Separating this manually can be pretty time consuming.
All the best
Nils
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Aymerick Glowacki - 04:51 - 20 Oct 2024 -
Re: Invoicing addresses
There are several OCA modules that may help automate part of the invoicing logic you're seeking, although a completely packaged solution for splitting invoices in the exact scenario you described might not be available. One useful module is from the OCA’s account-invoice-reporting repository, which offers addons to enhance invoice reporting. These modules can help manage and automate aspects of invoice handling, like grouping invoice lines by picking, managing sales line positions, and showing specific data points like due dates or serial numbers in invoices.
To address your specific case you might need to look into customizing Odoo with logic to split invoicing based on the type of service or product provided.
Good luck!On 10/20/2024 1:47 PM Nils Coenen | NICO SOLUTIONS - ENGINEERING & IT <notifications@odoo-community.org> wrote:
Dear Community,
i do have a use case, where the following scenario should be covered.
Company A (using odoo) is a subcontractor of Company B. Company B is handing over work to Company A to perform some service (lets say Product “Service on behalf of Company B”) for Customer X.
Company A is performing the service @Customer X and also sells some items to Customer X.
When Company A is creating an invoice, the invoice for “Service on behalf of Company B” should be addressed to company A, while the sold items should be invoiced to Customer X.
Is any body aware of a solution, that covers this scenario and automating this logic? Separating this manually can be pretty time consuming.
All the best
Nils
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Jorge Elena Poblet - 04:40 - 20 Oct 2024
-
-
[14.0] Change warehouse and location on picking
Hi,We have a customer who needs to change the warehouse and destination location for some incoming pickings.Can this be done manually? I'm watching for this module which has an opened PR for odoo14 https://github.com/OCA/stock-logistics-workflow/pull/1668but I don't understand some of modules restrictions, maybe I've misunderstood the purpose of this module.The part I don't understand is the domain of `new_location_dest_id` field : is there any important reason for the New Location Destination to be restricted as child of "location_dest_id" ?Do you suggest other modules to achieve this goal?Thank you as always for your help--Francesco Ballerini
by Francesco Ballerini - 07:21 - 18 Oct 2024-
Re: [14.0] Change warehouse and location on picking
Sorry for bottom posting but actually another thing I don't understand is:when I choose a different "Destination Location" and apply with "SELECT ALL" I don't see any Destination change on stock move lines, but the value is correctly retrieved if I open the wizard. How is it possible?Il giorno ven 18 ott 2024 alle ore 19:17 Francesco Ballerini <francescobl.lavoro@gmail.com> ha scritto:Hi,We have a customer who needs to change the warehouse and destination location for some incoming pickings.Can this be done manually? I'm watching for this module which has an opened PR for odoo14 https://github.com/OCA/stock-logistics-workflow/pull/1668but I don't understand some of modules restrictions, maybe I've misunderstood the purpose of this module.The part I don't understand is the domain of `new_location_dest_id` field : is there any important reason for the New Location Destination to be restricted as child of "location_dest_id" ?Do you suggest other modules to achieve this goal?Thank you as always for your help--Francesco Ballerini
by Francesco Ballerini - 08:31 - 18 Oct 2024
-
-
GS1 integration with Odoo
Hello odoo community.I was asked to make products in odoo to be compatible with GS1 system.I got this answer from ChatGPT:Check for available modules in the OCA (Odoo Community Association) repositories that could help with barcode management, GTIN validation, or GS1 integration. The OCA often has tools to extend Odoo for industry standards and compliance.So, I need a module to fetch products and update them frequently from GS1 database.Thanks All...
by Mohamed Alkobrosly - 05:21 - 16 Oct 2024-
Re: GS1 integration with Odoo
Thanks all for support 🙏
On Wed, Oct 16, 2024, 19:43 Cyril VINH-TUNG <notifications@odoo-community.org> wrote:Better link--------------------------------
Cyril VINH-TUNG
INVITU
Computer & Network Engineering
BP 32 - 98713 Papeete - French Polynesia
Tél: +689 40 46 11 99
contact@invitu.com
www.invitu.comLe mer. 16 oct. 2024, 05:22, mohamed alkobrosly <notifications@odoo-community.org> a écrit :Hello odoo community.I was asked to make products in odoo to be compatible with GS1 system.I got this answer from ChatGPT:Check for available modules in the OCA (Odoo Community Association) repositories that could help with barcode management, GTIN validation, or GS1 integration. The OCA often has tools to extend Odoo for industry standards and compliance.So, I need a module to fetch products and update them frequently from GS1 database.Thanks All..._______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Mohamed Alkobrosly - 08:31 - 16 Oct 2024 -
Re: GS1 integration with Odoo
Better link--------------------------------
Cyril VINH-TUNG
INVITU
Computer & Network Engineering
BP 32 - 98713 Papeete - French Polynesia
Tél: +689 40 46 11 99
contact@invitu.com
www.invitu.comLe mer. 16 oct. 2024, 05:22, mohamed alkobrosly <notifications@odoo-community.org> a écrit :Hello odoo community.I was asked to make products in odoo to be compatible with GS1 system.I got this answer from ChatGPT:Check for available modules in the OCA (Odoo Community Association) repositories that could help with barcode management, GTIN validation, or GS1 integration. The OCA often has tools to extend Odoo for industry standards and compliance.So, I need a module to fetch products and update them frequently from GS1 database.Thanks All..._______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Cyril VINH-TUNG - 06:42 - 16 Oct 2024 -
Re: GS1 integration with Odoo
HelloGS1 is standard in Odoo since v17Best regards--------------------------------
Cyril VINH-TUNG
INVITU
Computer & Network Engineering
BP 32 - 98713 Papeete - French Polynesia
Tél: +689 40 46 11 99
contact@invitu.com
www.invitu.comLe mer. 16 oct. 2024, 05:22, mohamed alkobrosly <notifications@odoo-community.org> a écrit :Hello odoo community.I was asked to make products in odoo to be compatible with GS1 system.I got this answer from ChatGPT:Check for available modules in the OCA (Odoo Community Association) repositories that could help with barcode management, GTIN validation, or GS1 integration. The OCA often has tools to extend Odoo for industry standards and compliance.So, I need a module to fetch products and update them frequently from GS1 database.Thanks All..._______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Cyril VINH-TUNG - 06:36 - 16 Oct 2024 -
Re: GS1 integration with Odoo
Here's the link to the repo containing barcode and GS1-128 features: https://github.com/OCA/stock-logistics-barcode/tree/14.0Keep in mind some of them are still in v14 so migration could be needed.Good luckOn 10/16/2024 4:32 PM Tom Blauwendraat <notifications@odoo-community.org> wrote:
There are some modules in OCA for reading GS1 barcodes, search in OCA app store for GS1. Few months ago I didnt find one to generate codes and put them on printed label, so we made a module for that but did not release in OCA yet
16 okt. 2024 17:23:03 mohamed alkobrosly <notifications@odoo-community.org>:
Hello odoo community.
I was asked to make products in odoo to be compatible with GS1 system.
I got this answer from ChatGPT:
Check for available modules in the OCA (Odoo Community Association) repositories that could help with barcode management, GTIN validation, or GS1 integration. The OCA often has tools to extend Odoo for industry standards and compliance.
So, I need a module to fetch products and update them frequently from GS1 database.
Thanks All..._______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe

Jorge Elena Poblet
CEO & Founder
Binhex
j.elena@binhex.cloud
Miami Office: +1 305-686-8151Offices:
Miami | 8325 NE 2nd Ave, Miami, FL 33138, United States
Texas | 27027 Westheimer Pkwy Katy, TX 77494, United States
Tenerife | Street Subida al Mayorazgo, 13, Office 15-2
Las Palmas | Edificio Polivalente IV Campus de Tafira Parque Tecnológico de Gran Canaria
Start for free: Try Odoo Community in the cloud This email is confidential and intended only for the recipient. If you are not the intended recipient, please notify the sender and delete it immediately.
Privacy Policy
by Jorge Elena Poblet - 05:41 - 16 Oct 2024 -
Re: GS1 integration with Odoo
There are some modules in OCA for reading GS1 barcodes, search in OCA app store for GS1. Few months ago I didnt find one to generate codes and put them on printed label, so we made a module for that but did not release in OCA yet
16 okt. 2024 17:23:03 mohamed alkobrosly <notifications@odoo-community.org>:
Hello odoo community.
I was asked to make products in odoo to be compatible with GS1 system.
I got this answer from ChatGPT:
Check for available modules in the OCA (Odoo Community Association) repositories that could help with barcode management, GTIN validation, or GS1 integration. The OCA often has tools to extend Odoo for industry standards and compliance.
So, I need a module to fetch products and update them frequently from GS1 database.
Thanks All..._______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Tom Blauwendraat - 05:31 - 16 Oct 2024
-
-
OCA - AGA 2024 Delegates Campaign - CLOSES - 18th October
Hello OCA Contributors,Just a reminder the 2024 OCA Delegates Campaign closes in a couple of days on the 18th Of October. We currently have 12 applicants.You can apply to be an OCA Delegate if you are a current paid Member.
If you are already a Delegate, you don't need to apply again. This is for 10 new Delegates.
Why?
The Delegate Assembly is the Association’s supreme authority. Each Delegate member is entitled to one vote at the Delegate Assembly. Decisions of the Delegate Assembly are taken by a majority vote of the Delegate members present and voting. For further details, please read the Bylaws.
How?
To apply as a candidate, you have to:- sign the CLA (if not already done)
- have a valid membership. Make sure to purchase your membership or renew it (you should have received a quotation for your renewal earlier this year).
- fill in this survey
The campaign will be closed on October 18th, 2024.
Then what?
The vote will be open from October 21st - November 1st, 2024. Current OCA Delegates will have to vote for 10 new Delegates among the candidates.There will be a Live Meeting to meet the new candidates who will have a chance to present themselves in real time - Wednesday 23rd October, 12am UTC/ 2pm CEST. The meeting link will be sent to Delegates and the Candidates.
The results of the election will be announced on November 4th, 2024.
The 10 new Delegates will then take part with the existing Delegates in :- the 2024 OCA Board Member Campaign from November 4th - 15th, 2024
- the 2024 OCA Financial Auditor Campaign from November 4th - 15th, 2024
- the 2024 General Assembly from November 18th to November 29th 2024.
- 2025 Board announced - week beginning December 2nd, 2024
Warmest regards,
Rebecca--Rebecca GellatlyGeneral SecretaryOdoo Community Association
by Rebecca Gellatly (OCA) - 08:16 - 16 Oct 2024 -
Manage Product Recall
Hello!I was wondering if there is a way (in standard Odoo or with OCA modules) to manage products recall.The use case is the following :I produce and sell food products tracked by lot.I notice that a lot has a problem and we need to contact all customers that have this product for a recall.So I need to be able to :- Identify the customers who have bought this lot of this product.- Identify the quantity sold to the customerI know that I can access some information such as the SO linked to a lot but in this case, I cannot access easily the quantity sold so I would need to go over each Sales Orde to find the information.I can see the quantity in the Product Moves smart button in the product form but if I want to have the customer information, I would need to export the info.Note that in this case, we use Odoo community V14.Thank you in advance for your help!
Julie LeBrunFormatrice & Analyste en applications de gestion intégrée+1 514-317-7944
Nouveau
Le nouveau site des Numigiens est WAW 🤩Découvrir
by Julie LeBrun - 03:46 - 15 Oct 2024-
Re: Manage Product Recall
Le jeudi 17 octobre 2024, 11:32:24 CEST Holger Brunn a écrit : > > price and other fields. With this module, it is not necessary, right ? > > exactly, it's very versatile. All kudos to https://github.com/legalsylvain > for coming up with this in the first place Anyway, thanks for the tip! Have a good day
by "Xavier Brochard" <zaz@chezlesenfants.fr> - 11:45 - 17 Oct 2024 -
Re: Manage Product Recall
> price and other fields. With this module, it is not necessary, right ? exactly, it's very versatile. All kudos to https://github.com/legalsylvain for coming up with this in the first place
by "Holger Brunn" <holger@brunn.email> - 11:31 - 17 Oct 2024 -
Re: Manage Product Recall
Le mardi 15 octobre 2024, 16:37:19 CEST Holger Brunn a écrit : > https://github.com/OCA/server-backend/tree/14.0/server_action_navigate > (very underappreciated module imho) > on top of it that allows you to switch from a selection of SOLs to the > partners of the orders in question, and from there you can do all the Odoo > partner goodness re messaging/tagging/etc Nice module ! Quick question : I was thinking to add a kanban view of products in PO so that users could easily browse products to check cost, price and other fields. With this module, it is not necessary, right ? Regards Xavier
by "Xavier Brochard" <zaz@chezlesenfants.fr> - 11:11 - 17 Oct 2024 -
Re: Manage Product Recall
Thank you @David Vidal. I know this is a possibility but I was looking for modules that are made to address this kind of use case.
Julie LeBrunFormatrice & Analyste en applications de gestion intégrée+1 514-317-7944
Nouveau
Le nouveau site des Numigiens est WAW 🤩Découvrir Le mar. 15 oct. 2024 à 11:57, David Vidal <notifications@odoo-community.org> a écrit :Hi, Julie.As a quick solution, you can export those product moves to Excel and in the exportation configuration follow the relation until obtaining the sales data. The relation goes like this:stock.move.line (this is where the lot is registered and where the real delivered quantities for each one will be) => stock.move => sale.order.line => sale.order => res.partnerI think you'll be able to use the same approach with Holger's module proposal...David VidalEl mar, 15 oct 2024 a las 15:47, Julie LeBrun (<notifications@odoo-community.org>) escribió:Hello!I was wondering if there is a way (in standard Odoo or with OCA modules) to manage products recall.The use case is the following :I produce and sell food products tracked by lot.I notice that a lot has a problem and we need to contact all customers that have this product for a recall.So I need to be able to :- Identify the customers who have bought this lot of this product.- Identify the quantity sold to the customerI know that I can access some information such as the SO linked to a lot but in this case, I cannot access easily the quantity sold so I would need to go over each Sales Orde to find the information.I can see the quantity in the Product Moves smart button in the product form but if I want to have the customer information, I would need to export the info.Note that in this case, we use Odoo community V14.Thank you in advance for your help!
Julie LeBrunFormatrice & Analyste en applications de gestion intégrée+1 514-317-7944
Nouveau
Le nouveau site des Numigiens est WAW 🤩Découvrir _______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Julie LeBrun - 07:10 - 15 Oct 2024 -
Re: Manage Product Recall
Hi, Julie.As a quick solution, you can export those product moves to Excel and in the exportation configuration follow the relation until obtaining the sales data. The relation goes like this:stock.move.line (this is where the lot is registered and where the real delivered quantities for each one will be) => stock.move => sale.order.line => sale.order => res.partnerI think you'll be able to use the same approach with Holger's module proposal...David VidalEl mar, 15 oct 2024 a las 15:47, Julie LeBrun (<notifications@odoo-community.org>) escribió:Hello!I was wondering if there is a way (in standard Odoo or with OCA modules) to manage products recall.The use case is the following :I produce and sell food products tracked by lot.I notice that a lot has a problem and we need to contact all customers that have this product for a recall.So I need to be able to :- Identify the customers who have bought this lot of this product.- Identify the quantity sold to the customerI know that I can access some information such as the SO linked to a lot but in this case, I cannot access easily the quantity sold so I would need to go over each Sales Orde to find the information.I can see the quantity in the Product Moves smart button in the product form but if I want to have the customer information, I would need to export the info.Note that in this case, we use Odoo community V14.Thank you in advance for your help!
Julie LeBrunFormatrice & Analyste en applications de gestion intégrée+1 514-317-7944
Nouveau
Le nouveau site des Numigiens est WAW 🤩Découvrir _______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by David Vidal - 05:56 - 15 Oct 2024
-
-
Handling promotions of "buy 2 get 1 free" kind in purchase
Hello,
is there any existing module for handling promotions like "buy 2 get 1 free" in purchase? For stock purposes we obviously need to have qty=3 in the order. Should we create 2 lines, 1 with qty=2 and normal price and 1 with qty=1 and zero price? Or some different approach?
Best regards
Radovan Skolnik
by Radovan Skolnik - 01:01 - 14 Oct 2024-
RE: Handling promotions of "buy 2 get 1 free" kind in purchase
Jordan Kinsella reacted to your message:
From: Radovan Skolnik <notifications@odoo-community.org>
Sent: Monday, October 14, 2024 1:47:51 PM
To: Contributors <contributors@odoo-community.org>
Subject: Re: Handling promotions of "buy 2 get 1 free" kind in purchaseCaution: This is an external email. Please take care when clicking links or opening attachments. When in doubt, contact your Department Manager
That could be an option but does nt feel exactly right. Some logic should be implemented then to cover this more generally (3+1, 5+1, ...) Also let's say the promotion is 5+1 and I order 13. I should receive 2 for free only because I ordered two fives (and additional 3).
Before starting implementing something like this I am looking for any previous work. In Sales this is pretty much covered with Promotions. But not in Purchase.
Best regards
Radovan
On pondelok 14. októbra 2024 15:33:21 CEST Tom Blauwendraat wrote:
> Why not 3 with a 33.333% discount
>
>
> 14 okt. 2024 13:02:53 Radovan Skolnik <notifications@odoo-community.org>:
>
>
> Hello,
>
> is there any existing module for handling promotions like "buy 2 get 1 free"
> in purchase? For stock purposes we obviously need to have qty=3 in the
> order. Should we create 2 lines, 1 with qty=2 and normal price and 1 with
> qty=1 and zero price? Or some different approach?
>
> Best regards
>
> Radovan Skolnik
>
> _______________________________________________
> Mailing-List: https://odoo-community.org/groups/contributors-15 [1]
> Post to: mailto:contributors@odoo-community.org
> Unsubscribe: https://odoo-community.org/groups?unsubscribe [2]
>
>
>
> _______________________________________________
> Mailing-List: https://odoo-community.org/groups/contributors-15 [3]
> Post to: mailto:contributors@odoo-community.org
> Unsubscribe: https://odoo-community.org/groups?unsubscribe [4]
>
>
>
> [1] https://odoo-community.org/groups/contributors-15
> [2] https://odoo-community.org/groups?unsubscribe
> [3] https://odoo-community.org/groups/contributors-15
> [4] https://odoo-community.org/groups?unsubscribe
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Jordan Kinsella - 12:06 - 15 Oct 2024 -
Re: Handling promotions of "buy 2 get 1 free" kind in purchase
That could be an option but does nt feel exactly right. Some logic should be implemented then to cover this more generally (3+1, 5+1, ...) Also let's say the promotion is 5+1 and I order 13. I should receive 2 for free only because I ordered two fives (and additional 3).
Before starting implementing something like this I am looking for any previous work. In Sales this is pretty much covered with Promotions. But not in Purchase.
Best regards
Radovan
On pondelok 14. októbra 2024 15:33:21 CEST Tom Blauwendraat wrote:
> Why not 3 with a 33.333% discount
>
>
> 14 okt. 2024 13:02:53 Radovan Skolnik <notifications@odoo-community.org>:
>
>
> Hello,
>
> is there any existing module for handling promotions like "buy 2 get 1 free"
> in purchase? For stock purposes we obviously need to have qty=3 in the
> order. Should we create 2 lines, 1 with qty=2 and normal price and 1 with
> qty=1 and zero price? Or some different approach?
>
> Best regards
>
> Radovan Skolnik
>
> _______________________________________________
> Mailing-List: https://odoo-community.org/groups/contributors-15 [1]
> Post to: mailto:contributors@odoo-community.org
> Unsubscribe: https://odoo-community.org/groups?unsubscribe [2]
>
>
>
> _______________________________________________
> Mailing-List: https://odoo-community.org/groups/contributors-15 [3]
> Post to: mailto:contributors@odoo-community.org
> Unsubscribe: https://odoo-community.org/groups?unsubscribe [4]
>
>
>
> [1] https://odoo-community.org/groups/contributors-15
> [2] https://odoo-community.org/groups?unsubscribe
> [3] https://odoo-community.org/groups/contributors-15
> [4] https://odoo-community.org/groups?unsubscribe
by Radovan Skolnik - 03:46 - 14 Oct 2024 -
Re: Handling promotions of "buy 2 get 1 free" kind in purchase
Why not 3 with a 33.333% discount
14 okt. 2024 13:02:53 Radovan Skolnik <notifications@odoo-community.org>:
Hello,
is there any existing module for handling promotions like "buy 2 get 1 free" in purchase? For stock purposes we obviously need to have qty=3 in the order. Should we create 2 lines, 1 with qty=2 and normal price and 1 with qty=1 and zero price? Or some different approach?
Best regards
Radovan Skolnik
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Tom Blauwendraat - 03:31 - 14 Oct 2024
-
-
Lively discussion on LinkedIN - including OCA App Store
Hi Odooers, Since a couple of days there is a lively discussion on LinkedIn. It started by confusion about the Odoo Accounting, Enterprise and Community apps. It didn't stop at these apps. I read all the replies and thought, after reading several fights, and the discussions which one is better, the Enterprise accounting app vs the Community Accounting apps, Enterprise vs Community Edition, Odoo Apps Store vs OCA Apps store. I thought, this needs to stop and proposed to start an Odoo App Naming Convention asap to minimize the confusion. Anyhow, if you like to participate and join the conversation, or like to read a good written and live discussion, click the link below. https://www.linkedin.com/posts/fredericktubiermont_open-source-is-amazing-but-it-can-also-activity-7250131553098371072-hJXv Have a great weekend. Michel Stroom
by Michel Stroom - 09:39 - 12 Oct 2024-
RE: Lively discussion on LinkedIN - including OCA App Store
Jordan Kinsella reacted to your message:
From: Tom Blauwendraat <notifications@odoo-community.org>
Sent: Monday, October 14, 2024 9:03:38 AM
To: Contributors <contributors@odoo-community.org>
Subject: Re: Lively discussion on LinkedIN - including OCA App StoreCaution: This is an external email. Please take care when clicking links or opening attachments. When in doubt, contact your Department Manager
I think it's a non discussion really - the fact that some indian companies bring out apps called "community accounting" (which by the way are not open source, but thats another topic entirely) is already against the rules of Odoo App Store, since it says that no app may compete with the Enterprise offering, so probably not even OCA.
Unless Odoo really starts focusing on improving the app store, enforcing branding and naming rules, building in a review system etc this is just how life is - an informed consultant will know to pick the OCA version, but newcomers will be confused and have to find out the hard way.
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Jordan Kinsella - 11:16 - 14 Oct 2024 -
Re: Lively discussion on LinkedIN - including OCA App Store
I think it's a non discussion really - the fact that some indian companies bring out apps called "community accounting" (which by the way are not open source, but thats another topic entirely) is already against the rules of Odoo App Store, since it says that no app may compete with the Enterprise offering, so probably not even OCA.
Unless Odoo really starts focusing on improving the app store, enforcing branding and naming rules, building in a review system etc this is just how life is - an informed consultant will know to pick the OCA version, but newcomers will be confused and have to find out the hard way.
by Tom Blauwendraat - 11:01 - 14 Oct 2024 -
Re:Lively discussion on LinkedIN - including OCA App Store
Hi,
on "an Odoo app naming convention" for me the easiest way would be to name any app as "OCA nice app name" and if possible the module as "oca_app_tech_name".Extending it to actual apps can be a bit tricky, especially for the module name, but in the long run it will be clear to everyone, especially non-experts, where the apps come from.StefanoDa "Michel Stroom" notifications@odoo-community.orgA "Contributors" contributors@odoo-community.orgCcData Sat, 12 Oct 2024 19:41:55 -0000Oggetto Lively discussion on LinkedIN - including OCA App Store
Hi Odooers, Since a couple of days there is a lively discussion on LinkedIn. It started by confusion about the Odoo Accounting, Enterprise and Community apps. It didn't stop at these apps. I read all the replies and thought, after reading several fights, and the discussions which one is better, the Enterprise accounting app vs the Community Accounting apps, Enterprise vs Community Edition, Odoo Apps Store vs OCA Apps store. I thought, this needs to stop and proposed to start an Odoo App Naming Convention asap to minimize the confusion. Anyhow, if you like to participate and join the conversation, or like to read a good written and live discussion, click the link below. https://www.linkedin.com/posts/fredericktubiermont_open-source-is-amazing-but-it-can-also-activity-7250131553098371072-hJXv Have a great weekend. Michel Stroom
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
Stefano Consolarowww.mymage.it
by Stefano Consolaro - 12:06 - 14 Oct 2024
-
-
Scammer Alert !!
The scammer started a new criminal activity not by emailing our community mailing list but directly, see email below.For the record:Just reported Holy Shaun, if that is a real name, to GoDaddy.com for selling OCA contacts.The domain, eleadsdigi-hub.live is currently parked at GoDaddy.The ip address, 3.33.130.190, is already registered as bad.Is there anything else we can do to hunt him/her down?For sure he or she is reading this message and will stop this criminal activity.Best regards,MichelBegin forwarded message:From: Holy Shaun <holy@eleadsdigi-hub.live>Subject: Odoo Community AssociationDate: 9 October 2024 at 11:36:26 GMT+2To: Mstroom <mstroom@office-everywhere.com>Hi Mstroom,I'm checking in to be see sure you want to get the Registrants/Member List.· Odoo Community Association (Europ,UK, 2024 )· 1,000+ ContactsI'm waiting for your response so I can let you know the cost & more details.Have a great day 🙂Regards,Holy– Business Executive
by Michel Stroom - 09:30 - 12 Oct 2024-
Re: Scammer Alert !!
Hi Michel,
I hope you are keeping well and having a good week.
Unfortunately, I see this all too often. I know Odoo recently had trouble with this format of selling when it came to Odoo Experience 2024, and people selling attendee data/information. It seems the community is becoming susceptible to a few of these tactics. I also saw additionally two weeks ago that an organisation/individual had replicated the entire Odoo App Store and was selling apps/code on the cheap.
I will have my fingers crossed that the culprit can be found.
Have a great weekend.
Kind regards,
Jordan Kinsella
Head of Marketing | Gravitai
jordan@gravitai.com | +44 (0) 1233 801 330
314 Regents Park Road, Finchley, London N3 2LT
www.gravitai.com
Support | hello@gravitai.com
----
CONFIDENTIAL: Within this email, any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error, please notify the sender. This message contains confidential information and is intended only for the individual(s) named. If you are not the named addressee, you should not disclose, distribute or copy this email. Please notify the sender immediately by email if you have received this email by mistake and delete this email from your system. If you are not the intended recipient, you are notified that disclosing, copying, distributing or taking any action in reliance on the contents of this information is strictly prohibited. For more information on how we operate and deal with your data, please visit our website to have a look at our Privacy Policy and Terms & Conditions pages.
WARNING: Whilst we run antivirus software on all internet emails, we are not liable for any loss or damage. The recipient is advised to run their own antivirus software while operating and viewing emails directed at them from Gravitai.
From: Michel Stroom <notifications@odoo-community.org>
Sent: 12 October 2024 08:32
To: Contributors <contributors@odoo-community.org>
Subject: Scammer Alert !!Caution: This is an external email. Please take care when clicking links or opening attachments. When in doubt, contact your Department Manager
The scammer started a new criminal activity not by emailing our community mailing list but directly, see email below.
For the record:Just reported Holy Shaun, if that is a real name, to GoDaddy.com for selling OCA contacts.The domain, eleadsdigi-hub.live is currently parked at GoDaddy.
The ip address, 3.33.130.190, is already registered as bad.
Is there anything else we can do to hunt him/her down?
For sure he or she is reading this message and will stop this criminal activity.
Best regards,
Michel
Begin forwarded message:
From: Holy Shaun <holy@eleadsdigi-hub.live>
Subject: Odoo Community Association
Date: 9 October 2024 at 11:36:26 GMT+2
To: Mstroom <mstroom@office-everywhere.com>
Hi Mstroom,I'm checking in to be see sure you want to get the Registrants/Member List.· Odoo Community Association (Europ,UK, 2024 )· 1,000+ ContactsI'm waiting for your response so I can let you know the cost & more details.Have a great day 🙂Regards,Holy– Business Executive
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Jordan Kinsella - 04:55 - 13 Oct 2024
-
-
Help needed with modifying a module
Hello everyone,I'm writing this message because I'm trying to modify a module named "Product Dimension" from this link (it's from OCA):What my modification is about is replacing a field with one I made called "x_product_thickness", and while it seems it works fine (it even apears on where I want it to appear while replacing the field I wanted to replace), there's one thing in which it doesn't work: there's another field which is the result of multiplying the field I made with two other fields from the module. It would be like this: "x_product_thickness * field 1 * field 2"I tried everything I knew, but I wasn't able to fix this, so I would appreciate it if someone was able to help me with this.Thanks in advance for the help.Have a great day!
by Alejandro Párraga Alcázar - 10:46 - 10 Oct 2024-
Re: Help needed with modifying a module
What could be the case is that one of the computed fields is stored and the other is not, and then they are computed at different moments in time, leading to issues with computation?
On 10/10/24 10:47, Redes Sociales JLBBERP wrote:
Hello everyone,I'm writing this message because I'm trying to modify a module named "Product Dimension" from this link (it's from OCA):What my modification is about is replacing a field with one I made called "x_product_thickness", and while it seems it works fine (it even apears on where I want it to appear while replacing the field I wanted to replace), there's one thing in which it doesn't work: there's another field which is the result of multiplying the field I made with two other fields from the module. It would be like this: "x_product_thickness * field 1 * field 2"I tried everything I knew, but I wasn't able to fix this, so I would appreciate it if someone was able to help me with this.Thanks in advance for the help.Have a great day!_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Tom Blauwendraat - 11:31 - 10 Oct 2024
-
-
[Odoo EE 17.0] send syslog to remote address
Hi Everyone,
I'm trying to send --syslog from my Odoo.sh instance to a remote server securely.
I found the --syslog parameter in the Odoo server settings. Does anyone have a working setup?Have a great day,Hed
by Hed Shefer - 10:15 - 9 Oct 2024-
Re: [Odoo EE 17.0] send syslog to remote address
Hi Hed,
Did you register a helpdesk ticket at Odoo?Odoo.sh is a service and product managed by Odoo SA, not the OCA, Odoo Community Association..You can register a helpdesk ticket and ask the Odoo SA, click the link below.Good luck!!Best regards,MichelOn 9 Oct 2024, at 10:17, Hed Shefer <notifications@odoo-community.org> wrote:Hi Everyone,
I'm trying to send --syslog from my Odoo.sh instance to a remote server securely.
I found the --syslog parameter in the Odoo server settings. Does anyone have a working setup?Have a great day,Hed_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Michel Stroom - 10:51 - 12 Oct 2024 -
Re: [Odoo EE 17.0] send syslog to remote address
Ah sorry i missed the odoo.sh part of your question, no we use it on premise.On Wed, 9 Oct 2024 at 11:02, Hed Shefer <notifications@odoo-community.org> wrote:Thanks Andreas,
Does it work for you also for Odoo.SH?On Wed, 9 Oct 2024 at 11:27, Andreas Perhab <notifications@odoo-community.org> wrote:Hi Hed,we are using a variant of our PR https://github.com/odoo/odoo/pull/26965 on our servers to send the logs via RFC5424 to graylogregards,AndreasOn Wed, 9 Oct 2024 at 10:17, Hed Shefer <notifications@odoo-community.org> wrote:Hi Everyone,
I'm trying to send --syslog from my Odoo.sh instance to a remote server securely.
I found the --syslog parameter in the Odoo server settings. Does anyone have a working setup?Have a great day,Hed_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
--_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by "Andreas Perhab" <a.perhab@wt-io-it.at> - 11:06 - 9 Oct 2024 -
Re: [Odoo EE 17.0] send syslog to remote address
Thanks Andreas,
Does it work for you also for Odoo.SH?On Wed, 9 Oct 2024 at 11:27, Andreas Perhab <notifications@odoo-community.org> wrote:Hi Hed,we are using a variant of our PR https://github.com/odoo/odoo/pull/26965 on our servers to send the logs via RFC5424 to graylogregards,AndreasOn Wed, 9 Oct 2024 at 10:17, Hed Shefer <notifications@odoo-community.org> wrote:Hi Everyone,
I'm trying to send --syslog from my Odoo.sh instance to a remote server securely.
I found the --syslog parameter in the Odoo server settings. Does anyone have a working setup?Have a great day,Hed_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
--
by Hed Shefer - 11:01 - 9 Oct 2024 -
Re: [Odoo EE 17.0] send syslog to remote address
Hi Hed,we are using a variant of our PR https://github.com/odoo/odoo/pull/26965 on our servers to send the logs via RFC5424 to graylogregards,AndreasOn Wed, 9 Oct 2024 at 10:17, Hed Shefer <notifications@odoo-community.org> wrote:Hi Everyone,
I'm trying to send --syslog from my Odoo.sh instance to a remote server securely.
I found the --syslog parameter in the Odoo server settings. Does anyone have a working setup?Have a great day,Hed_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by "Andreas Perhab" <a.perhab@wt-io-it.at> - 10:26 - 9 Oct 2024
-
-
access products images
I am asking if there is a module that can give public access to products images urls in odoothanks
by Mohamed Alkobrosly - 03:36 - 5 Oct 2024-
Re: access products images
thanks a lot 🙏
On Mon, Oct 7, 2024, 12:03 Yann Papouin <notifications@odoo-community.org> wrote:You can take a look on this basic implementation:It overrides `binary_content` used in `Binary(http.Controller).content_common` from built-in web moduleYou can then use the built-in route `/web/content/<string:model>/<int:id>/<string:field>`--
Yann PAPOUIN, Ingénieur R&D | DECLe sam. 5 oct. 2024 à 03:37, mohamed alkobrosly <notifications@odoo-community.org> a écrit :I am asking if there is a module that can give public access to products images urls in odoothanks_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Mohamed Alkobrosly - 11:16 - 7 Oct 2024 -
Re: access products images
You can take a look on this basic implementation:It overrides `binary_content` used in `Binary(http.Controller).content_common` from built-in web moduleYou can then use the built-in route `/web/content/<string:model>/<int:id>/<string:field>`--
Yann PAPOUIN, Ingénieur R&D | DECLe sam. 5 oct. 2024 à 03:37, mohamed alkobrosly <notifications@odoo-community.org> a écrit :I am asking if there is a module that can give public access to products images urls in odoothanks_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Yann Papouin - 11:01 - 7 Oct 2024
-
-
Project planning / Odoo 12
Hi all
I'm looking for a module to implement the planning support of the base project module. I mean, i would like to associate to each projet tasks some calendar employee ressource (forecast date and time) as the odoo enterprise planning module do. Does any of you implement this feature?Thank for your helpCedric
by Cedric DEBARD - 02:20 - 4 Oct 2024-
Re: Project planning / Odoo 12
Hi Cédric,Depending on how you want task planning to be done when tasks are created (by employees themselves or managers), this module can help you with that.
https://github.com/OCA/calendar/tree/12.0/calendar_event_link_project_task
We improved it to inherit directly from the project and associated task on the calendar side.
Bruno JoliveauArchitecte solutions - Président+1 514-317-7944
Nouveau
Le nouveau site des Numigiens est WAW 🤩Découvrir Le ven. 4 oct. 2024 à 08:22, DEBARD Cédric <notifications@odoo-community.org> a écrit :Hi all
I'm looking for a module to implement the planning support of the base project module. I mean, i would like to associate to each projet tasks some calendar employee ressource (forecast date and time) as the odoo enterprise planning module do. Does any of you implement this feature?Thank for your helpCedric_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Bruno Joliveau - 04:06 - 5 Oct 2024 -
Re: Project planning / Odoo 12
Hello all,Here's a pr about project planning we are working on.
It needs some tweeks and tunning, please review it and send us comments.
BestOn 10/04/2024 2:17 PM Cyril VINH-TUNG <notifications@odoo-community.org> wrote:
Hello ADo you plan to push your branch to OCA ? IMHO, it's a very lacking functionality
--------------------------------
Cyril VINH-TUNG
INVITU
Computer & Network Engineering
BP 32 - 98713 Papeete - French Polynesia
Tél: +689 40 46 11 99
contact@invitu.com
www.invitu.com
Le ven. 4 oct. 2024, 14:27, A <notifications@odoo-community.org> a écrit :
Hello Cedric
We have a planning module tied to project and employees.
https://github.com/vertelab/odoo-planning
4 okt. 2024 14:22:09 DEBARD Cédric <notifications@odoo-community.org>:
Hi all
I'm looking for a module to implement the planning support of the base project module. I mean, i would like to associate to each projet tasks some calendar employee ressource (forecast date and time) as the odoo enterprise planning module do. Does any of you implement this feature?
Thank for your help
Cedric
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Jorge Elena Poblet - 05:31 - 4 Oct 2024 -
Re: Project planning / Odoo 12
Hello ADo you plan to push your branch to OCA ? IMHO, it's a very lacking functionality--------------------------------
Cyril VINH-TUNG
INVITU
Computer & Network Engineering
BP 32 - 98713 Papeete - French Polynesia
Tél: +689 40 46 11 99
contact@invitu.com
www.invitu.comLe ven. 4 oct. 2024, 14:27, A <notifications@odoo-community.org> a écrit :Hello Cedric
We have a planning module tied to project and employees.
https://github.com/vertelab/odoo-planning
4 okt. 2024 14:22:09 DEBARD Cédric <notifications@odoo-community.org>:
Hi all
I'm looking for a module to implement the planning support of the base project module. I mean, i would like to associate to each projet tasks some calendar employee ressource (forecast date and time) as the odoo enterprise planning module do. Does any of you implement this feature?
Thank for your help
Cedric
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Cyril VINH-TUNG - 03:16 - 4 Oct 2024 -
Re: Project planning / Odoo 12
Hi CedricMaybe you can downgrade calendar_link stuffBest regards--------------------------------
Cyril VINH-TUNG
INVITU
Computer & Network Engineering
BP 32 - 98713 Papeete - French Polynesia
Tél: +689 40 46 11 99
contact@invitu.com
www.invitu.comLe ven. 4 oct. 2024, 14:22, DEBARD Cédric <notifications@odoo-community.org> a écrit :Hi all
I'm looking for a module to implement the planning support of the base project module. I mean, i would like to associate to each projet tasks some calendar employee ressource (forecast date and time) as the odoo enterprise planning module do. Does any of you implement this feature?Thank for your helpCedric_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Cyril VINH-TUNG - 03:16 - 4 Oct 2024 -
Sv: Project planning / Odoo 12
Hello Cedric
We have a planning module tied to project and employees.
https://github.com/vertelab/odoo-planning
4 okt. 2024 14:22:09 DEBARD Cédric <notifications@odoo-community.org>:
Hi all
I'm looking for a module to implement the planning support of the base project module. I mean, i would like to associate to each projet tasks some calendar employee ressource (forecast date and time) as the odoo enterprise planning module do. Does any of you implement this feature?
Thank for your help
Cedric
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Anders Wallenquist - 02:26 - 4 Oct 2024
-
-
multi add invoice lines module
Dear contributors,is there any module for Odoo14 that implements something likeorbut for invoices ? I'm specifically looking for odoo 14 but other feedbacks are welcome.Regards--Francesco Ballerini
by Francesco Ballerini - 12:56 - 4 Oct 2024 -
oca_monetize
Hi all, during Tom's talk [1], I proposed a module that nags users to get an OCA subscription. I'd like to invite you to continue this discussion, on https://github.com/OCA/oca-custom/pull/57 you find an implementation of the idea and you can play with it on runboat. Best, Holger [1] https://odoo-community.org/event/-149/track/-308 -- Your partner for the hard Odoo problems https://hunki-enterprises.com
by Holger Brunn - 08:51 - 3 Oct 2024-
Re: oca_monetize
Nice that you went ahead and coded something already, this is a very OCA way of discussing:) - on a PR
Note that Rebecca also sent out an email with a link to an Etherpad, with the suggestion to collect there all of the ideas that were raised throughout the OCA days. So maybe it can also be added there.
3 okt. 2024 20:52:21 Holger Brunn <notifications@odoo-community.org>:
Hi all, during Tom's talk [1], I proposed a module that nags users to get an OCA subscription. I'd like to invite you to continue this discussion, on https://github.com/OCA/oca-custom/pull/57 you find an implementation of the idea and you can play with it on runboat. Best, Holger [1] https://odoo-community.org/event/-149/track/-308 -- Your partner for the hard Odoo problems https://hunki-enterprises.com_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Tom Blauwendraat - 10:35 - 3 Oct 2024
-