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
-
Stock Intercompany Delivery-Reception
Hi all,regarding Stock Intercompany Delivery-Reception addonI tried to run it but it is not working properly. Please guide me in detail to the correct steps to run it properly.--Best RegardsSamir Mahmoud00201062648111
by Samir Mahmoud Hassan - 09:36 - 3 Oct 2024 -
[Odoo CE 17.0] Discuss channel's chat does not update in SSL connection
Hello everyone,I'm experiencing a problem in where if I connect to an Odoo CE website through their IP (HTTP connection), the discuss channel's chat live-update when someone is writing and when someone sends a message.But if I enter through a domain with a SSL certificate (HTTPS connection), the live-update function doesn't work anymore, and neither I'm able to see who is writing on the chat.The only temporal fix I was able to find was refreshing the website, that way the new messages appear on the chat.Thanks in advance for the help.Have a great day.
by Alejandro Párraga Alcázar - 10:25 - 2 Oct 2024-
RE: [Odoo CE 17.0] Discuss channel's chat does not update in SSL connection
Dear Alejandro,
Odoo and Windows server is not really a good mix, we have history (Odoo 8, 11) using windows server. Odoo python libraries have differences and any faced issue in Odoo would be a pain to troubleshoot because of the ecosystem. Also nginx with IIS is another layer of configuration to proxy from IIS to nginx, unless your domain is needed to use nginx directly instead of IIS.
Most softwares are optimized for linux, so running on windows is really a pain.
I would suggest something we did for some internal services in our company. Install ubuntu (or any linux distro of your comfort) to be installed in Windows server virtual machine with (nginx, certbot, odoo, postgres) all in that virtual machine. If your domain is set in IIS then it need to be proxy’ed to the virtual machine where nginx would handle the rest.
This way you have performance and ecosystem of linux while still having windows server doing its other services.
Sincerely,
Hussain Al-Hammad | Engineering Manager
M +966 55 438 2968 | hussain.hammad@dexberts.com
From: Redes Sociales JLBBERP <notifications@odoo-community.org>
Sent: Monday, October 7, 2024 9:53 AM
To: Contributors <contributors@odoo-community.org>
Subject: Re: [Odoo CE 17.0] Discuss channel's chat does not update in SSL connectionHello everyone,
After trying to apply the fix suggested by Fernando, I forgot to mention that the problem I'm having is in a Windows Operative System, Windows Server 2022, and from my experience, I know how to use NGINX on Debian, but not on Windows. Also, I have my domain configured with IIS.
I need someone who could be able to help me with NGINX on Windows. I already downloaded it, but I don't know how to configure NGINX on Windows for my domain.
Thanks for the help.
El 03/10/2024 8:13 CEST Redes Sociales JLBBERP <redes_sociales@jlbberp.com> escribió:
Hello Fernando,
I have read your message, and I would like to thank you for answering. I will try your fix right now.
El 02/10/2024 12:42 CEST Fernando Infinity Draw <notifications@odoo-community.org> escribió:
Hi Alejandro
I have had that problem in the past, in my personal configuration. The problem was in the configuration of NGINX and how it routes the chat packets. I am not an expert on the subject and it may be something else, but I can tell you that after a lot of searching and consulting on the internet, what I discovered is that the main thing for the chat and chat notifications to work correctly via SSL, NGINX has to be configured correctly.
Taking into account that the version of NGINX that you have installed also influences to apply this configuration, I can't tell you, this one works, and this one doesn't. Since it is not the same for NGINX version 1.18 than for NGINX 1.26, but for 1.26 which is the one I currently have running, the settings that work are this bit. Logically you will have to adapt the "proxy_pass" for your specific configuration.
Trozo de "ENGINX"
# Redirect websocket requests to the odoo gevent port for part of the chat notifications to work.
location /websocket {
proxy_pass http://your_odoo_domain_running_chat_here;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade;
proxy_cache_bypass $http_upgrade;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
I am assuming that the odoo configuration settings in your "*.conf" file are correctly set.
I hope this helped you.El 02/10/2024 a las 10:27, Redes Sociales JLBBERP escribió:
Hello everyone,
I'm experiencing a problem in where if I connect to an Odoo CE website through their IP (HTTP connection), the discuss channel's chat live-update when someone is writing and when someone sends a message.
But if I enter through a domain with a SSL certificate (HTTPS connection), the live-update function doesn't work anymore, and neither I'm able to see who is writing on the chat.
The only temporal fix I was able to find was refreshing the website, that way the new messages appear on the chat.
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_______________________________________________
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 Hussain Hammad - 11:26 - 8 Oct 2024 -
Re: [Odoo CE 17.0] Discuss channel's chat does not update in SSL connection
Hello everyone,After trying to apply the fix suggested by Fernando, I forgot to mention that the problem I'm having is in a Windows Operative System, Windows Server 2022, and from my experience, I know how to use NGINX on Debian, but not on Windows. Also, I have my domain configured with IIS.I need someone who could be able to help me with NGINX on Windows. I already downloaded it, but I don't know how to configure NGINX on Windows for my domain.Thanks for the help.El 03/10/2024 8:13 CEST Redes Sociales JLBBERP <redes_sociales@jlbberp.com> escribió:Hello Fernando,I have read your message, and I would like to thank you for answering. I will try your fix right now.El 02/10/2024 12:42 CEST Fernando Infinity Draw <notifications@odoo-community.org> escribió:Hi Alejandro
I have had that problem in the past, in my personal configuration. The problem was in the configuration of NGINX and how it routes the chat packets. I am not an expert on the subject and it may be something else, but I can tell you that after a lot of searching and consulting on the internet, what I discovered is that the main thing for the chat and chat notifications to work correctly via SSL, NGINX has to be configured correctly.
Taking into account that the version of NGINX that you have installed also influences to apply this configuration, I can't tell you, this one works, and this one doesn't. Since it is not the same for NGINX version 1.18 than for NGINX 1.26, but for 1.26 which is the one I currently have running, the settings that work are this bit. Logically you will have to adapt the "proxy_pass" for your specific configuration.
Trozo de "ENGINX"
# Redirect websocket requests to the odoo gevent port for part of the chat notifications to work.
location /websocket {
proxy_pass http://your_odoo_domain_running_chat_here;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade;
proxy_cache_bypass $http_upgrade;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
I am assuming that the odoo configuration settings in your "*.conf" file are correctly set.
I hope this helped you.
El 02/10/2024 a las 10:27, Redes Sociales JLBBERP escribió:Hello everyone,I'm experiencing a problem in where if I connect to an Odoo CE website through their IP (HTTP connection), the discuss channel's chat live-update when someone is writing and when someone sends a message.But if I enter through a domain with a SSL certificate (HTTPS connection), the live-update function doesn't work anymore, and neither I'm able to see who is writing on the chat.The only temporal fix I was able to find was refreshing the website, that way the new messages appear on the chat.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_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Alejandro Párraga Alcázar - 08:50 - 7 Oct 2024 -
Re: [Odoo CE 17.0] Discuss channel's chat does not update in SSL connection
Hello Fernando,I have read your message, and I would like to thank you for answering. I will try your fix right now.El 02/10/2024 12:42 CEST Fernando Infinity Draw <notifications@odoo-community.org> escribió:Hi Alejandro
I have had that problem in the past, in my personal configuration. The problem was in the configuration of NGINX and how it routes the chat packets. I am not an expert on the subject and it may be something else, but I can tell you that after a lot of searching and consulting on the internet, what I discovered is that the main thing for the chat and chat notifications to work correctly via SSL, NGINX has to be configured correctly.
Taking into account that the version of NGINX that you have installed also influences to apply this configuration, I can't tell you, this one works, and this one doesn't. Since it is not the same for NGINX version 1.18 than for NGINX 1.26, but for 1.26 which is the one I currently have running, the settings that work are this bit. Logically you will have to adapt the "proxy_pass" for your specific configuration.
Trozo de "ENGINX"
# Redirect websocket requests to the odoo gevent port for part of the chat notifications to work.
location /websocket {
proxy_pass http://your_odoo_domain_running_chat_here;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade;
proxy_cache_bypass $http_upgrade;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
I am assuming that the odoo configuration settings in your "*.conf" file are correctly set.
I hope this helped you.
El 02/10/2024 a las 10:27, Redes Sociales JLBBERP escribió:Hello everyone,I'm experiencing a problem in where if I connect to an Odoo CE website through their IP (HTTP connection), the discuss channel's chat live-update when someone is writing and when someone sends a message.But if I enter through a domain with a SSL certificate (HTTPS connection), the live-update function doesn't work anymore, and neither I'm able to see who is writing on the chat.The only temporal fix I was able to find was refreshing the website, that way the new messages appear on the chat.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_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Alejandro Párraga Alcázar - 08:15 - 3 Oct 2024 -
Re: [Odoo CE 17.0] Discuss channel's chat does not update in SSL connection
Hi Alejandro
I have had that problem in the past, in my personal configuration. The problem was in the configuration of NGINX and how it routes the chat packets. I am not an expert on the subject and it may be something else, but I can tell you that after a lot of searching and consulting on the internet, what I discovered is that the main thing for the chat and chat notifications to work correctly via SSL, NGINX has to be configured correctly.
Taking into account that the version of NGINX that you have installed also influences to apply this configuration, I can't tell you, this one works, and this one doesn't. Since it is not the same for NGINX version 1.18 than for NGINX 1.26, but for 1.26 which is the one I currently have running, the settings that work are this bit. Logically you will have to adapt the "proxy_pass" for your specific configuration.
Trozo de "ENGINX"
# Redirect websocket requests to the odoo gevent port for part of the chat notifications to work.
location /websocket {
proxy_pass http://your_odoo_domain_running_chat_here;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade;
proxy_cache_bypass $http_upgrade;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
I am assuming that the odoo configuration settings in your "*.conf" file are correctly set.
I hope this helped you.
El 02/10/2024 a las 10:27, Redes Sociales JLBBERP escribió:
Hello everyone,I'm experiencing a problem in where if I connect to an Odoo CE website through their IP (HTTP connection), the discuss channel's chat live-update when someone is writing and when someone sends a message.But if I enter through a domain with a SSL certificate (HTTPS connection), the live-update function doesn't work anymore, and neither I'm able to see who is writing on the chat.The only temporal fix I was able to find was refreshing the website, that way the new messages appear on the chat.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 Fernando - 12:41 - 2 Oct 2024
-
-
Looking for an Alternative to Odoo.sh for the Community Version
Hello everyone,
Do any of you know of alternatives to Odoo.sh that are suitable for the Community version? I am looking for a PaaS (Platform as a Service) offering similar functionalities for this version.
Thank you in advance for your recommendations.
Have a great day!
Sylvain
by "Sylvain DUBUISSON" <syd@omydoo.fr> - 07:45 - 1 Oct 2024-
Re: Looking for an Alternative to Odoo.sh for the Community Version
www.opaas.cloudThis website is a CPU benchmark =) on Firefox
by Yann Papouin - 03:40 - 2 Oct 2024 -
RE: Looking for an Alternative to Odoo.sh for the Community Version
Thanks !
Maybe we can see at OXP too ?
Regards

Sylvain
CEO, Omydoo
143
Route de Pompignat, 63119 Châteaugay | 37 Av. de Gramont, 03200 Vichy
Partagez votre avis sur Google ! Votre feedback compte beaucoup pour nous !

De : Cyril VINH-TUNG <notifications@odoo-community.org>
Envoyé : mardi 1 octobre 2024 13:18
À : Contributors <contributors@odoo-community.org>
Objet : Re: Looking for an Alternative to Odoo.sh for the Community VersionHelloHere's the direct link to www.opaas.cloud Jordan pointed out... who is the Saphire Sponsor of OCA Days 2024 BTWFair enough ;-)
--------------------------------
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 mar. 1 oct. 2024, 09:58, Sylvain DUBUISSON <notifications@odoo-community.org> a écrit :
Thank you very much.
I was able to deploy on cloudpepper.io but we are very far from having similar functions to Odoo.sh in CI/CD or even a Platform.sh.
Thank you very much.

Sylvain
CEO, Omydoo
143
Route de Pompignat, 63119 Châteaugay | 37 Av. de Gramont, 03200 Vichy
Partagez votre avis sur Google ! Votre feedback compte beaucoup pour nous !

De : Sagar Shah <notifications@odoo-community.org>
Envoyé : mardi 1 octobre 2024 08:32
À : Contributors <contributors@odoo-community.org>
Objet : Re: Looking for an Alternative to Odoo.sh for the Community Versionmaybe you can check out cloudpepper.io
On Tue, Oct 1, 2024 at 11:17 AM Sylvain DUBUISSON <notifications@odoo-community.org> wrote:
Hello everyone,
Do any of you know of alternatives to Odoo.sh that are suitable for the Community version? I am looking for a PaaS (Platform as a Service) offering similar functionalities for this version.
Thank you in advance for your recommendations.
Have a great day!
Sylvain_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
--
Regards
Sagar_______________________________________________
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 "Sylvain DUBUISSON" <syd@omydoo.fr> - 02:41 - 1 Oct 2024 -
Re: Looking for an Alternative to Odoo.sh for the Community Version
HelloHere's the direct link to www.opaas.cloud Jordan pointed out... who is the Saphire Sponsor of OCA Days 2024 BTWFair enough ;-)--------------------------------
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 mar. 1 oct. 2024, 09:58, Sylvain DUBUISSON <notifications@odoo-community.org> a écrit :Thank you very much.
I was able to deploy on cloudpepper.io but we are very far from having similar functions to Odoo.sh in CI/CD or even a Platform.sh.
Thank you very much.

Sylvain
CEO, Omydoo
143
Route de Pompignat, 63119 Châteaugay | 37 Av. de Gramont, 03200 Vichy
Partagez votre avis sur Google ! Votre feedback compte beaucoup pour nous !

De : Sagar Shah <notifications@odoo-community.org>
Envoyé : mardi 1 octobre 2024 08:32
À : Contributors <contributors@odoo-community.org>
Objet : Re: Looking for an Alternative to Odoo.sh for the Community Versionmaybe you can check out cloudpepper.io
On Tue, Oct 1, 2024 at 11:17 AM Sylvain DUBUISSON <notifications@odoo-community.org> wrote:
Hello everyone,
Do any of you know of alternatives to Odoo.sh that are suitable for the Community version? I am looking for a PaaS (Platform as a Service) offering similar functionalities for this version.
Thank you in advance for your recommendations.
Have a great day!
Sylvain_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
--
Regards
Sagar_______________________________________________
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 - 01:16 - 1 Oct 2024 -
RE: Looking for an Alternative to Odoo.sh for the Community Version
Thank you, that sounds like an excellent solution. Thank you

Sylvain
CEO, Omydoo
143
Route de Pompignat, 63119 Châteaugay | 37 Av. de Gramont, 03200 Vichy
Partagez votre avis sur Google ! Votre feedback compte beaucoup pour nous !

De : Jordan Kinsella <notifications@odoo-community.org>
Envoyé : mardi 1 octobre 2024 10:52
À : Contributors <contributors@odoo-community.org>
Objet : Re: Looking for an Alternative to Odoo.sh for the Community VersionHi Sylvain,
I hope you are keeping well.
Interesting to hear that you are looking at PaaS platforms/different hosting options away from your typical solutions. Have you seen Drinking The Purple Juice before? It's an Odoo Newsletter that reports on the current Odoo news and insights. Last week, an article was written on OPaaS - as a hosting option, which could be a great solution.
https://www.linkedin.com/pulse/75-best-hosting-option-market-i-take-look-opaas-william-mcmahon-nkbie/?trackingId=IjUcjMMtRTyi3zeutFSAYw%3D%3D
Could be worth you having a look into it.
Please let me know if you have any questions.
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: Sylvain DUBUISSON <notifications@odoo-community.org>
Sent: 01 October 2024 08:59
To: Contributors <contributors@odoo-community.org>
Subject: RE: Looking for an Alternative to Odoo.sh for the Community VersionCaution: This is an external email. Please take care when clicking links or opening attachments. When in doubt, contact your Department Manager
Thank you very much.
I was able to deploy on cloudpepper.io but we are very far from having similar functions to Odoo.sh in CI/CD or even a Platform.sh.
Thank you very much.

Sylvain
CEO, Omydoo
143
Route de Pompignat, 63119 Châteaugay | 37 Av. de Gramont, 03200 Vichy
Partagez votre avis sur Google ! Votre feedback compte beaucoup pour nous !

De : Sagar Shah <notifications@odoo-community.org>
Envoyé : mardi 1 octobre 2024 08:32
À : Contributors <contributors@odoo-community.org>
Objet : Re: Looking for an Alternative to Odoo.sh for the Community Versionmaybe you can check out cloudpepper.io
On Tue, Oct 1, 2024 at 11:17 AM Sylvain DUBUISSON <notifications@odoo-community.org> wrote:Hello everyone,
Do any of you know of alternatives to Odoo.sh that are suitable for the Community version? I am looking for a PaaS (Platform as a Service) offering similar functionalities for this version.
Thank you in advance for your recommendations.
Have a great day!
Sylvain_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
--
Regards
Sagar_______________________________________________
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 "Sylvain DUBUISSON" <syd@omydoo.fr> - 12:31 - 1 Oct 2024 -
Re: Looking for an Alternative to Odoo.sh for the Community Version
Hi Sylvain,
I hope you are keeping well.
Interesting to hear that you are looking at PaaS platforms/different hosting options away from your typical solutions. Have you seen Drinking The Purple Juice before? It's an Odoo Newsletter that reports on the current Odoo news and insights. Last week, an article was written on OPaaS - as a hosting option, which could be a great solution.
https://www.linkedin.com/pulse/75-best-hosting-option-market-i-take-look-opaas-william-mcmahon-nkbie/?trackingId=IjUcjMMtRTyi3zeutFSAYw%3D%3D
Could be worth you having a look into it.
Please let me know if you have any questions.
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: Sylvain DUBUISSON <notifications@odoo-community.org>
Sent: 01 October 2024 08:59
To: Contributors <contributors@odoo-community.org>
Subject: RE: Looking for an Alternative to Odoo.sh for the Community VersionCaution: This is an external email. Please take care when clicking links or opening attachments. When in doubt, contact your Department Manager
Thank you very much.
I was able to deploy on cloudpepper.io but we are very far from having similar functions to Odoo.sh in CI/CD or even a Platform.sh.
Thank you very much.

Sylvain
CEO, Omydoo
143
Route de Pompignat, 63119 Châteaugay | 37 Av. de Gramont, 03200 Vichy
Partagez votre avis sur Google ! Votre feedback compte beaucoup pour nous !

De : Sagar Shah <notifications@odoo-community.org>
Envoyé : mardi 1 octobre 2024 08:32
À : Contributors <contributors@odoo-community.org>
Objet : Re: Looking for an Alternative to Odoo.sh for the Community Versionmaybe you can check out cloudpepper.io
On Tue, Oct 1, 2024 at 11:17 AM Sylvain DUBUISSON <notifications@odoo-community.org> wrote:Hello everyone,
Do any of you know of alternatives to Odoo.sh that are suitable for the Community version? I am looking for a PaaS (Platform as a Service) offering similar functionalities for this version.
Thank you in advance for your recommendations.
Have a great day!
Sylvain_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
--
Regards
Sagar_______________________________________________
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 Jordan Kinsella - 10:50 - 1 Oct 2024
-
-
[16.0] how to deal with locked journal items with wrong currency
Hi team, we have recently conducted and upgrade from v13 to v16. After going live Customer was checking general ledger and noticed some accounts in foreign currency were showing foreign currency amount wrongly. After some digging we have found several journal items for the foreign currency accounts recorded in company's currency. General ledger is totaling company's currency and foreign currency amount as if they were same currency. We have tracked the issue and found it was already there in v13 but general ledger from v13 does the computation "right". The majority of these broken records are in opening balances from 2021, so locked journal entries, fiscal reports handed out. This is huge. How should I proceed here? Technically I think should be possible (not easy) to "convert" journal entries to foreign currency but what about customer's fiscal reports ? Should I "customize" general ledger in order to avoid the broken journal entries as it seems v13 was doing?
by Ing. Rolando Pérez Rebollo - 04:36 - 30 Sep 2024-
Re: [16.0] how to deal with locked journal items with wrong currency
Looks interesting, thank U. I'll check it out. On 10/18/24 02:13, Pedro M. Baeza wrote: > Isn't this patch what you need? > https://github.com/OCA/account-financial-reporting/pull/1232 > > 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 Ing. Rolando Pérez Rebollo - 02:55 - 18 Oct 2024 -
Re: [16.0] how to deal with locked journal items with wrong currency
Isn't this patch what you need? https://github.com/OCA/account-financial-reporting/pull/1232Regards.
by Pedro M. Baeza - 08:11 - 18 Oct 2024
-
-
PSC - l10n-belgium
Hi all,
I would like to step down from the PSC of l10n-belgium. I rarely contribute to this repository. I would like to suggest Rémy Taymans (remytms) as a replacement. He has been active in the community since 7 years and has done a lot of work on the migrations of our databases involving belgium-localized accounting.All the best,
--
Robin Keunen
robin@coopiteasy.be
+32 488 86 57 40
by Robin Keunen - 11:36 - 30 Sep 2024-
Re: PSC - l10n-belgium
Hi Robin,You can simply open a PR onto change this fileBests,SOn Mon, Sep 30, 2024, 11:38 Robin Keunen <notifications@odoo-community.org> wrote:Hi all,
I would like to step down from the PSC of l10n-belgium. I rarely contribute to this repository. I would like to suggest Rémy Taymans (remytms) as a replacement. He has been active in the community since 7 years and has done a lot of work on the migrations of our databases involving belgium-localized accounting.All the best,
--
Robin Keunen
robin@coopiteasy.be
+32 488 86 57 40_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Simone Orsi. - 03:36 - 5 Oct 2024
-
-
Fixing a bug in search-enging repo.
Hi there, while installing and debugging Shopinvader project which depends on many OCA repos. I found a bug while I was imitating a demo app module.
The pull request is created but I am not sure if it is fine or no.
I like to contribute and share, but I find many people are busy to support while I am almost working alone like a blind.
Thanks Heaven that there is a technology called Chat GPT with which we were trying to understand the purpose behind each module.
I need support so that I get encouraged to even upgrade these modules to 17.0 otherwise I can give up and I don't like.https://github.com/OCA/search-engine/actions/runs/11096834606/job/30827135943?pr=198
Thanks community
Best Regards
by Mohamed Alkobrosly - 02:06 - 30 Sep 2024 -
OCA Annual General Assembly - starts this week
Hello OCA Contributors,I'm just letting you know that our Annual General Assembly process will begin tomorrow.
If you are a current paid member of the OCA you can apply to become a delegate.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.- 30th Sept - 18th October - Week 1,2 and 3:
- OCA current paid members of 2024 invited to apply for their candidacy to become an OCA Delegate (opens at OCA Days 2024)
- 21st October - 1 November - Week 4 & 5:
- Active OCA Delegates vote for 10 new OCA Delegates
- 4th November - 15th November - Week 6 & 7:
- Announce Delegates by email
- OCA Delegates announce their candidacy to become an OCA Board Member or Financial Auditor (for the FA the applicant does not need to be a Delegate) on the Delegate mailing list
- 18th November - 29th November - Week 8 & 9:
- OCA Delegates vote for board members, auditors, financial statements
- 2nd December - Week 10
- 2025 board announced
If you have any questions, please get in touch. If you are a current member, look out for the mail tomorrow with all the details on how to apply to become a delegate.
If you would like to become a member to apply as a delegate you can do so here.Warm regards,Rebecca--Rebecca GellatlyGeneral SecretaryOdoo Community Association
by Rebecca Gellatly (OCA) - 11:46 - 29 Sep 2024-
Re: Live Meetings for Delegates and Board election
Hello everyone,Thanks for your feedback on this email. I intended it towards the Board only but Odoo forwarded it to the Contributors mailing list (seems that forwarding an email sent to the Contributors mailing list to the Board mailing list is actually sending it to the Contributors mailing list, this is reproductible ^^).Anyway, Board Members were positive, as several of you, so we'll confirm this!In the meantime new candidates for other regions of the world answered to the survey. That's why we'll change the timing to 12am UTC on 23th October.This means:* Central Europe Time: 2pm* Argentina: 9am* Canada (Montreal): 8am* Japan: 21pm* New Zealand: 1am (that's the worst timing here)The practical information will be shared with the Candidates and the Delegates in the next days.Have a nice day,Le mer. 9 oct. 2024 à 16:22, Yoshi Tashiro <notifications@odoo-community.org> a écrit :> 23th of October, 11am CET: online session for the Delegates.Perfect timing for me. Thanks, Virginie! :)--Yoshi TashiroQuartileOn Wed, Oct 9, 2024 at 7:02 PM Virginie Dewulf <virginie@odoo-community.org> wrote:Hello,Several members discussed with me the idea to get a more lively election this year: the candidates as Delegates (and then as Board Members) could join a live meeting where they share their vision for the OCA and why they want to become Delegates/Board Members.The voting members are invited to participate and we can therefore organize the real voting process in parallel.Proposition:- 30th Sept - 18th October - Week 1,2 and 3:
- OCA current paid members of 2024 invited to apply for their candidacy to become an OCA Delegate (opens at OCA Days 2024)
- 21st October - 1 November - Week 4 & 5:
- 23th of October, 11am CET: online session for the Delegates. 1 hour together, I can facilitate the meeting and let the Candidates propose their candidacy (we already have 9 candidates).
- Active OCA Delegates vote for 10 new OCA Delegates
- 4th November - 15th November - Week 6 & 7:
- Announce Delegates by email
- OCA Delegates announce their candidacy to become an OCA Board Member or Financial Auditor (for the FA the applicant does not need to be a Delegate) on the Delegate mailing list
- 18th November - 29th November - Week 8 & 9:
- OCA Delegates vote for board members, auditors, financial statements
- 20th of November, 11am CET: online session for the Delegates. 1
hour together, I can facilitate the meeting. The Board candidates explain why they want to become Board Members. We also open the questions for the other topics to vote (financial statements).
- 2nd December - Week 10
- 2025 board announced
We can make this in the BigBlueButton instance and record it, then share with the Delegates who coudn't attend.Regarding the timing, 11am CET sounds good because the vast majority of the current Delegates are in Europe, some in NZ/Brazil/Argentina. In the new candidates they are all from Europe except Yoshi. The timing works for Japan as well.Let me know so that we can organize and inform the members accordingly.---------- Forwarded message ---------
De : Rebecca Gellatly <rebecca@odoo-community.org>
Date: dim. 29 sept. 2024 à 11:47
Subject: OCA Annual General Assembly - starts this week
To: Contributors <contributors@odoo-community.org>Hello OCA Contributors,I'm just letting you know that our Annual General Assembly process will begin tomorrow.
If you are a current paid member of the OCA you can apply to become a delegate.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.- 30th Sept - 18th October - Week 1,2 and 3:
- OCA current paid members of 2024 invited to apply for their candidacy to become an OCA Delegate (opens at OCA Days 2024)
- 21st October - 1 November - Week 4 & 5:
- Active OCA Delegates vote for 10 new OCA Delegates
- 4th November - 15th November - Week 6 & 7:
- Announce Delegates by email
- OCA Delegates announce their candidacy to become an OCA Board Member or Financial Auditor (for the FA the applicant does not need to be a Delegate) on the Delegate mailing list
- 18th November - 29th November - Week 8 & 9:
- OCA Delegates vote for board members, auditors, financial statements
- 2nd December - Week 10
- 2025 board announced
If you have any questions, please get in touch. If you are a current member, look out for the mail tomorrow with all the details on how to apply to become a delegate.
If you would like to become a member to apply as a delegate you can do so here.Warm regards,Rebecca--Rebecca GellatlyGeneral SecretaryOdoo Community Association_______________________________________________
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 Virginie Dewulf (OCA) - 01:15 - 14 Oct 2024 -
Re: Live Meetings for Delegates and Board election
> 23th of October, 11am CET: online session for the Delegates.Perfect timing for me. Thanks, Virginie! :)--Yoshi TashiroQuartileOn Wed, Oct 9, 2024 at 7:02 PM Virginie Dewulf <virginie@odoo-community.org> wrote:Hello,Several members discussed with me the idea to get a more lively election this year: the candidates as Delegates (and then as Board Members) could join a live meeting where they share their vision for the OCA and why they want to become Delegates/Board Members.The voting members are invited to participate and we can therefore organize the real voting process in parallel.Proposition:- 30th Sept - 18th October - Week 1,2 and 3:
- OCA current paid members of 2024 invited to apply for their candidacy to become an OCA Delegate (opens at OCA Days 2024)
- 21st October - 1 November - Week 4 & 5:
- 23th of October, 11am CET: online session for the Delegates. 1 hour together, I can facilitate the meeting and let the Candidates propose their candidacy (we already have 9 candidates).
- Active OCA Delegates vote for 10 new OCA Delegates
- 4th November - 15th November - Week 6 & 7:
- Announce Delegates by email
- OCA Delegates announce their candidacy to become an OCA Board Member or Financial Auditor (for the FA the applicant does not need to be a Delegate) on the Delegate mailing list
- 18th November - 29th November - Week 8 & 9:
- OCA Delegates vote for board members, auditors, financial statements
- 20th of November, 11am CET: online session for the Delegates. 1
hour together, I can facilitate the meeting. The Board candidates explain why they want to become Board Members. We also open the questions for the other topics to vote (financial statements).
- 2nd December - Week 10
- 2025 board announced
We can make this in the BigBlueButton instance and record it, then share with the Delegates who coudn't attend.Regarding the timing, 11am CET sounds good because the vast majority of the current Delegates are in Europe, some in NZ/Brazil/Argentina. In the new candidates they are all from Europe except Yoshi. The timing works for Japan as well.Let me know so that we can organize and inform the members accordingly.---------- Forwarded message ---------
De : Rebecca Gellatly <rebecca@odoo-community.org>
Date: dim. 29 sept. 2024 à 11:47
Subject: OCA Annual General Assembly - starts this week
To: Contributors <contributors@odoo-community.org>Hello OCA Contributors,I'm just letting you know that our Annual General Assembly process will begin tomorrow.
If you are a current paid member of the OCA you can apply to become a delegate.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.- 30th Sept - 18th October - Week 1,2 and 3:
- OCA current paid members of 2024 invited to apply for their candidacy to become an OCA Delegate (opens at OCA Days 2024)
- 21st October - 1 November - Week 4 & 5:
- Active OCA Delegates vote for 10 new OCA Delegates
- 4th November - 15th November - Week 6 & 7:
- Announce Delegates by email
- OCA Delegates announce their candidacy to become an OCA Board Member or Financial Auditor (for the FA the applicant does not need to be a Delegate) on the Delegate mailing list
- 18th November - 29th November - Week 8 & 9:
- OCA Delegates vote for board members, auditors, financial statements
- 2nd December - Week 10
- 2025 board announced
If you have any questions, please get in touch. If you are a current member, look out for the mail tomorrow with all the details on how to apply to become a delegate.
If you would like to become a member to apply as a delegate you can do so here.Warm regards,Rebecca--Rebecca GellatlyGeneral SecretaryOdoo Community Association_______________________________________________
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 Yoshi Tashiro - 04:21 - 9 Oct 2024 -
Re: Live Meetings for Delegates and Board election
+1
Am 09.10.24 um 14:27 schrieb Stefano Consolaro:
+1
Da "Virginie Dewulf" virginie@odoo-community.orgA "Contributors" contributors@odoo-community.orgCcData Wed, 09 Oct 2024 10:02:32 -0000Oggetto Live Meetings for Delegates and Board election
Hello,
Several members discussed with me the idea to get a more lively election this year: the candidates as Delegates (and then as Board Members) could join a live meeting where they share their vision for the OCA and why they want to become Delegates/Board Members.
The voting members are invited to participate and we can therefore organize the real voting process in parallel.
Proposition:
- 30th Sept - 18th October - Week 1,2 and 3:
- OCA current paid members of 2024 invited to apply for their candidacy to become an OCA Delegate (opens at OCA Days 2024)
- 21st October - 1 November - Week 4 & 5:
- 23th of October, 11am CET: online session
for the Delegates. 1 hour together, I can
facilitate the meeting and let the Candidates
propose their candidacy (we already have 9
candidates).
- Active OCA Delegates vote for 10 new OCA Delegates
- 4th November - 15th November - Week 6 & 7:
- Announce Delegates by email
- OCA Delegates announce their candidacy to become an OCA Board Member or Financial Auditor (for the FA the applicant does not need to be a Delegate) on the Delegate mailing list
- 18th
November - 29th November - Week 8 & 9:
- OCA Delegates vote for board members, auditors, financial statements
- 20th of November, 11am CET: online session
for the Delegates. 1 hour together, I can
facilitate the meeting. The Board candidates
explain why they want to become Board Members.
We also open the questions for the other
topics to vote (financial statements).
- 2nd December - Week 10
- 2025 board announced
We can make this in the BigBlueButton instance and record it, then share with the Delegates who coudn't attend.
Regarding the timing, 11am CET sounds good because the vast majority of the current Delegates are in Europe, some in NZ/Brazil/Argentina. In the new candidates they are all from Europe except Yoshi. The timing works for Japan as well.
Let me know so that we can organize and inform the members accordingly.
---------- Forwarded message ---------
De : Rebecca Gellatly <rebecca@odoo-community.org>
Date: dim. 29 sept. 2024 à 11:47
Subject: OCA Annual General Assembly - starts this week
To: Contributors <contributors@odoo-community.org>
Hello OCA Contributors,
I'm just letting you know that our Annual General Assembly process will begin tomorrow.
If you are a current paid member of the OCA you can apply to become a delegate.
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.
- 30th Sept - 18th October - Week 1,2 and 3:
- OCA current paid members of 2024 invited to apply for their candidacy to become an OCA Delegate (opens at OCA Days 2024)
- 21st October - 1 November - Week 4 & 5:
- Active OCA Delegates vote for 10 new OCA Delegates
- 4th November - 15th November - Week 6 & 7:
- Announce Delegates by email
- OCA Delegates announce their candidacy to become an OCA Board Member or Financial Auditor (for the FA the applicant does not need to be a Delegate) on the Delegate mailing list
- 18th
November - 29th November - Week 8 &
9:
- OCA Delegates vote for board members, auditors, financial statements
- 2nd December - Week 10
- 2025 board announced
If you have any questions, please get in touch. If you are a current member, look out for the mail tomorrow with all the details on how to apply to become a delegate.
If you would like to become a member to apply as a delegate you can do so here.
Warm regards,Rebecca--
Rebecca GellatlyGeneral SecretaryOdoo Community Association_______________________________________________
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
Stefano Consolaro
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
-- Dr.-Ing. Frederik Kramer Geschäftsführer initOS GmbH Innungsstraße 7 21244 Buchholz i.d.N. Tel: +49 (0) 4181 13503 12 Fax: +49 (0) 4181 13503 10 Mobil: +49 (0) 179 3901819 Email: frederik.kramer@initos.com Internet: www.initos.com Geschäftsführung: Dr.-Ing. Frederik Kramer & Dipl.-Ing. (FH) Torsten Francke Sitz der Gesellschaft: Buchholz i.d.N. Amtsgericht Tostedt, HRB 205226 USt-IdNr.: DE815580155 Steuer-Nr: 15/200/53247
by Frederik Kramer. - 02:36 - 9 Oct 2024 -
Re: Live Meetings for Delegates and Board election
Hi Virginie,
Nice hearing from you again.
I already scheduled meetings for October 23th, 11am CET and November 20th , 11am CET so i don't miss them.Please share the meeting links when they're available.
Looking forward to participate,
BestOn 10/09/2024 11:02 AM Virginie Dewulf <virginie@odoo-community.org> wrote:
Hello,
Several members discussed with me the idea to get a more lively election this year: the candidates as Delegates (and then as Board Members) could join a live meeting where they share their vision for the OCA and why they want to become Delegates/Board Members.
The voting members are invited to participate and we can therefore organize the real voting process in parallel.
Proposition:
- 30th Sept - 18th October - Week 1,2 and 3:
- OCA current paid members of 2024 invited to apply for their candidacy to become an OCA Delegate (opens at OCA Days 2024)
- 21st October - 1 November - Week 4 & 5:
- 23th of October, 11am CET: online session for the Delegates. 1 hour together, I can facilitate the meeting and let the Candidates propose their candidacy (we already have 9 candidates).
- Active OCA Delegates vote for 10 new OCA Delegates
- 4th November - 15th November - Week 6 & 7:
- Announce Delegates by email
- OCA Delegates announce their candidacy to become an OCA Board Member or Financial Auditor (for the FA the applicant does not need to be a Delegate) on the Delegate mailing list
- 18th November - 29th November - Week 8 & 9:
- OCA Delegates vote for board members, auditors, financial statements
- 20th of November, 11am CET: online session for the Delegates. 1 hour together, I can facilitate the meeting. The Board candidates explain why they want to become Board Members. We also open the questions for the other topics to vote (financial statements).
- 2nd December - Week 10
- 2025 board announced
We can make this in the BigBlueButton instance and record it, then share with the Delegates who coudn't attend.
Regarding the timing, 11am CET sounds good because the vast majority of the current Delegates are in Europe, some in NZ/Brazil/Argentina. In the new candidates they are all from Europe except Yoshi. The timing works for Japan as well.
Let me know so that we can organize and inform the members accordingly.
---------- Forwarded message ---------
De : Rebecca Gellatly <rebecca@odoo-community.org>
Date: dim. 29 sept. 2024 à 11:47
Subject: OCA Annual General Assembly - starts this week
To: Contributors <contributors@odoo-community.org>
Hello OCA Contributors,
I'm just letting you know that our Annual General Assembly process will begin tomorrow.
If you are a current paid member of the OCA you can apply to become a delegate.
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.
- 30th Sept - 18th October - Week 1,2 and 3:
- OCA current paid members of 2024 invited to apply for their candidacy to become an OCA Delegate (opens at OCA Days 2024)
- 21st October - 1 November - Week 4 & 5:
- Active OCA Delegates vote for 10 new OCA Delegates
- 4th November - 15th November - Week 6 & 7:
- Announce Delegates by email
- OCA Delegates announce their candidacy to become an OCA Board Member or Financial Auditor (for the FA the applicant does not need to be a Delegate) on the Delegate mailing list
- 18th November - 29th November - Week 8 & 9:
- OCA Delegates vote for board members, auditors, financial statements
- 2nd December - Week 10
- 2025 board announced
If you have any questions, please get in touch. If you are a current member, look out for the mail tomorrow with all the details on how to apply to become a delegate.
If you would like to become a member to apply as a delegate you can do so here.
Warm regards,Rebecca--
Rebecca GellatlyGeneral SecretaryOdoo Community Association_______________________________________________
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
Founder & CEO
Personal Contact:
+34 822 179 267 /
+34 622 40 08 08+1 305-686-8151 / +1 561-403-4406
Global Offices:
Spain: Tenerife, and Gran Canaria, Canary Islands
United States: Miami, Florida and Katy, Texas
Follow Us:
Legal Advice
by Jorge Elena Poblet - 02:31 - 9 Oct 2024 -
Re:Live Meetings for Delegates and Board election
+1Da "Virginie Dewulf" virginie@odoo-community.orgA "Contributors" contributors@odoo-community.orgCcData Wed, 09 Oct 2024 10:02:32 -0000Oggetto Live Meetings for Delegates and Board election
Hello,Several members discussed with me the idea to get a more lively election this year: the candidates as Delegates (and then as Board Members) could join a live meeting where they share their vision for the OCA and why they want to become Delegates/Board Members.The voting members are invited to participate and we can therefore organize the real voting process in parallel.Proposition:- 30th Sept - 18th October - Week 1,2 and 3:
- OCA current paid members of 2024 invited to apply for their candidacy to become an OCA Delegate (opens at OCA Days 2024)
- 21st October - 1 November - Week 4 & 5:
- 23th of October, 11am CET: online session for the Delegates. 1 hour together, I can facilitate the meeting and let the Candidates propose their candidacy (we already have 9 candidates).
- Active OCA Delegates vote for 10 new OCA Delegates
- 4th November - 15th November - Week 6 & 7:
- Announce Delegates by email
- OCA Delegates announce their candidacy to become an OCA Board Member or Financial Auditor (for the FA the applicant does not need to be a Delegate) on the Delegate mailing list
- 18th November - 29th November - Week 8 & 9:
- OCA Delegates vote for board members, auditors, financial statements
- 20th of November, 11am CET: online session for the Delegates. 1
hour together, I can facilitate the meeting. The Board candidates explain why they want to become Board Members. We also open the questions for the other topics to vote (financial statements).
- 2nd December - Week 10
- 2025 board announced
We can make this in the BigBlueButton instance and record it, then share with the Delegates who coudn't attend.Regarding the timing, 11am CET sounds good because the vast majority of the current Delegates are in Europe, some in NZ/Brazil/Argentina. In the new candidates they are all from Europe except Yoshi. The timing works for Japan as well.Let me know so that we can organize and inform the members accordingly.---------- Forwarded message ---------
De : Rebecca Gellatly <rebecca@odoo-community.org>
Date: dim. 29 sept. 2024 à 11:47
Subject: OCA Annual General Assembly - starts this week
To: Contributors <contributors@odoo-community.org>Hello OCA Contributors,I'm just letting you know that our Annual General Assembly process will begin tomorrow.
If you are a current paid member of the OCA you can apply to become a delegate.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.- 30th Sept - 18th October - Week 1,2 and 3:
- OCA current paid members of 2024 invited to apply for their candidacy to become an OCA Delegate (opens at OCA Days 2024)
- 21st October - 1 November - Week 4 & 5:
- Active OCA Delegates vote for 10 new OCA Delegates
- 4th November - 15th November - Week 6 & 7:
- Announce Delegates by email
- OCA Delegates announce their candidacy to become an OCA Board Member or Financial Auditor (for the FA the applicant does not need to be a Delegate) on the Delegate mailing list
- 18th November - 29th November - Week 8 & 9:
- OCA Delegates vote for board members, auditors, financial statements
- 2nd December - Week 10
- 2025 board announced
If you have any questions, please get in touch. If you are a current member, look out for the mail tomorrow with all the details on how to apply to become a delegate.
If you would like to become a member to apply as a delegate you can do so here.Warm regards,Rebecca--Rebecca GellatlyGeneral SecretaryOdoo Community Association_______________________________________________
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
Stefano Consolarowww.mymage.it
by Stefano Consolaro - 02:26 - 9 Oct 2024
-
Example of calling JavaScript from Odoo client and filling back in some field?
Hello,
I am looking for an example on how to call JavaScript from Odoo client and feeding the result back to some field(s) on the form. There is half of it (calling JavaScript) for example in purchase/static/src/toaster_button/toaster_button_widget.js but it lacks the other half.
The idea here is I need to query a PoS terminal for configuration that's residing on the local network. The configuration would be later used in PoS to communicate with the terminal.
Thank you. Best regards
Radovan Skolnik
by Radovan Skolnik - 10:16 - 27 Sep 2024-
Re: Example of calling JavaScript from Odoo client and filling back in some field?
Nice one! Thank you.R.On Sep 27, 2024 11:28, Kiril Vangelovski <notifications@odoo-community.org> wrote:I think you can also do the custom JS code execution with a client action
For inserting the value somewhere in the form plain old jquery probably can be used :)
Kind Regards,
Kiril
On 27.9.24 10:42, Radovan Skolnik wrote:
Not really - at least I cannot see it there. The example shows the reverse flow: from JS to Python.
What I need to do is:
*) have a form in Odoo (it's pos.payment.method) and my field on it (let's call it my_field)
*) put a control (button or something similar) on it
*) when I click on the button, JavaScript code is called
*) the result of the JS invocation is put into my_field
Best regards
Radovan
On piatok 27. septembra 2024 10:32:27 CEST Tom Blauwendraat wrote:
> Does this provide some kind of blueprint?
> https://github.com/OCA/pos/blob/16.0/pos_payment_terminal/static/src/js/paym
> ent_terminal.js#L106 [1]
>
> On 9/27/24 10:17, Radovan Skolnik
> wrote:
>
>
> Hello,
>
> I
> am looking for an example on how to call JavaScript from Odoo
> client and feeding the result back to some field(s) on the
> form. There is half of it (calling JavaScript) for example in
> purchase/static/src/toaster_button/toaster_button_widget.js
> but it lacks the other half.
>
> The
> idea here is I need to query a PoS terminal for configuration
> that's residing on the local network. The configuration would
> be later used in PoS to communicate with the terminal.
>
> Thank
> you. Best regards
>
>
> Radovan Skolnik
>
> _______________________________________________
> Mailing-List: https://odoo-community.org/groups/contributors-15 [2]
> Post to: mailto:contributors@odoo-community.org [3]
> Unsubscribe: https://odoo-community.org/groups?unsubscribe [4]
>
>
>
> _______________________________________________
> Mailing-List: https://odoo-community.org/groups/contributors-15 [5]
> Post to: mailto:contributors@odoo-community.org
> Unsubscribe: https://odoo-community.org/groups?unsubscribe [6]
>
>
>
> [1]
> https://github.com/OCA/pos/blob/16.0/pos_payment_terminal/static/src/js/pay
> ment_terminal.js#L106 [2] https://odoo-community.org/groups/contributors-15
> [3] mailto:contributors@odoo-community.org
> [4] https://odoo-community.org/groups?unsubscribe
> [5] https://odoo-community.org/groups/contributors-15
> [6] 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
-- Lambda IS DOOEL - free/open-source information systems implementation & development Kiril Vangelovski - consultant/developer web: https://www.lambda-is.com tel: +38971753823
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Radovan Skolnik - 11:51 - 27 Sep 2024 -
Re: Example of calling JavaScript from Odoo client and filling back in some field?
I think you can also do the custom JS code execution with a client action
For inserting the value somewhere in the form plain old jquery probably can be used :)
Kind Regards,
Kiril
On 27.9.24 10:42, Radovan Skolnik wrote:
Not really - at least I cannot see it there. The example shows the reverse flow: from JS to Python.
What I need to do is:
*) have a form in Odoo (it's pos.payment.method) and my field on it (let's call it my_field)
*) put a control (button or something similar) on it
*) when I click on the button, JavaScript code is called
*) the result of the JS invocation is put into my_field
Best regards
Radovan
On piatok 27. septembra 2024 10:32:27 CEST Tom Blauwendraat wrote:
> Does this provide some kind of blueprint?
> https://github.com/OCA/pos/blob/16.0/pos_payment_terminal/static/src/js/paym
> ent_terminal.js#L106 [1]
>
> On 9/27/24 10:17, Radovan Skolnik
> wrote:
>
>
> Hello,
>
> I
> am looking for an example on how to call JavaScript from Odoo
> client and feeding the result back to some field(s) on the
> form. There is half of it (calling JavaScript) for example in
> purchase/static/src/toaster_button/toaster_button_widget.js
> but it lacks the other half.
>
> The
> idea here is I need to query a PoS terminal for configuration
> that's residing on the local network. The configuration would
> be later used in PoS to communicate with the terminal.
>
> Thank
> you. Best regards
>
>
> Radovan Skolnik
>
> _______________________________________________
> Mailing-List: https://odoo-community.org/groups/contributors-15 [2]
> Post to: mailto:contributors@odoo-community.org [3]
> Unsubscribe: https://odoo-community.org/groups?unsubscribe [4]
>
>
>
> _______________________________________________
> Mailing-List: https://odoo-community.org/groups/contributors-15 [5]
> Post to: mailto:contributors@odoo-community.org
> Unsubscribe: https://odoo-community.org/groups?unsubscribe [6]
>
>
>
> [1]
> https://github.com/OCA/pos/blob/16.0/pos_payment_terminal/static/src/js/pay
> ment_terminal.js#L106 [2] https://odoo-community.org/groups/contributors-15
> [3] mailto:contributors@odoo-community.org
> [4] https://odoo-community.org/groups?unsubscribe
> [5] https://odoo-community.org/groups/contributors-15
> [6] 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
-- Lambda IS DOOEL - free/open-source information systems implementation & development Kiril Vangelovski - consultant/developer web: https://www.lambda-is.com tel: +38971753823
by Kiril Vangelovski - 11:26 - 27 Sep 2024 -
Re: Example of calling JavaScript from Odoo client and filling back in some field?
Ah ok, in that example it does call an external device on the local network via HTTP, a POSbox; thought you needed an example for that part. For the JS part of inserting it into the form, I don't know
On 9/27/24 10:42, Radovan Skolnik wrote:
Not really - at least I cannot see it there. The example shows the reverse flow: from JS to Python.
What I need to do is:
*) have a form in Odoo (it's pos.payment.method) and my field on it (let's call it my_field)
*) put a control (button or something similar) on it
*) when I click on the button, JavaScript code is called
*) the result of the JS invocation is put into my_field
by Tom Blauwendraat - 10:56 - 27 Sep 2024 -
Re: Example of calling JavaScript from Odoo client and filling back in some field?
Not really - at least I cannot see it there. The example shows the reverse flow: from JS to Python.
What I need to do is:
*) have a form in Odoo (it's pos.payment.method) and my field on it (let's call it my_field)
*) put a control (button or something similar) on it
*) when I click on the button, JavaScript code is called
*) the result of the JS invocation is put into my_field
Best regards
Radovan
On piatok 27. septembra 2024 10:32:27 CEST Tom Blauwendraat wrote:
> Does this provide some kind of blueprint?
> https://github.com/OCA/pos/blob/16.0/pos_payment_terminal/static/src/js/paym
> ent_terminal.js#L106 [1]
>
> On 9/27/24 10:17, Radovan Skolnik
> wrote:
>
>
> Hello,
>
> I
> am looking for an example on how to call JavaScript from Odoo
> client and feeding the result back to some field(s) on the
> form. There is half of it (calling JavaScript) for example in
> purchase/static/src/toaster_button/toaster_button_widget.js
> but it lacks the other half.
>
> The
> idea here is I need to query a PoS terminal for configuration
> that's residing on the local network. The configuration would
> be later used in PoS to communicate with the terminal.
>
> Thank
> you. Best regards
>
>
> Radovan Skolnik
>
> _______________________________________________
> Mailing-List: https://odoo-community.org/groups/contributors-15 [2]
> Post to: mailto:contributors@odoo-community.org [3]
> Unsubscribe: https://odoo-community.org/groups?unsubscribe [4]
>
>
>
> _______________________________________________
> Mailing-List: https://odoo-community.org/groups/contributors-15 [5]
> Post to: mailto:contributors@odoo-community.org
> Unsubscribe: https://odoo-community.org/groups?unsubscribe [6]
>
>
>
> [1]
> https://github.com/OCA/pos/blob/16.0/pos_payment_terminal/static/src/js/pay
> ment_terminal.js#L106 [2] https://odoo-community.org/groups/contributors-15
> [3] mailto:contributors@odoo-community.org
> [4] https://odoo-community.org/groups?unsubscribe
> [5] https://odoo-community.org/groups/contributors-15
> [6] https://odoo-community.org/groups?unsubscribe
by Radovan Skolnik - 10:41 - 27 Sep 2024 -
Re: Example of calling JavaScript from Odoo client and filling back in some field?
have you tried orm/ rpc calls from JS client to backend model? https://www.cybrosys.com/blog/how-does-rpc-and-orm-calls-works-in-odoo-16On Fri, Sep 27, 2024 at 1:47 PM Radovan Skolnik <notifications@odoo-community.org> wrote:Hello,
I am looking for an example on how to call JavaScript from Odoo client and feeding the result back to some field(s) on the form. There is half of it (calling JavaScript) for example in purchase/static/src/toaster_button/toaster_button_widget.js but it lacks the other half.
The idea here is I need to query a PoS terminal for configuration that's residing on the local network. The configuration would be later used in PoS to communicate with the terminal.
Thank you. 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
--Regards
Sagar
by sagars209 - 10:36 - 27 Sep 2024
-
-
OCA Days 2024 - last minute items
Hello Dear OCA ContributorsWe are very much looking forward to welcoming those that are attending OCA Days in person next week.
All of the last minute information you need has been emailed this week or if you are a recent registration you can also find it on our blog.If you are attending the Sunday Night social at L'Atelier Bières please make sure you let us know on the survey.
If you have any questions please get in touch.
If you can't make the event this year, we will be streaming 2 of the rooms in real time on our YouTube Channel: https://www.youtube.com/@OdooCommunityThen all the talks will be available online in coming weeks.
Have a great end to the week.Rebecca--Rebecca GellatlyGeneral SecretaryOdoo Community Association
by Rebecca Gellatly (OCA) - 01:55 - 26 Sep 2024-
Re: OCA Days 2024 - last minute items
Ok I might had my french IP blacklistedNow I'm in Belgium it's okThanks--------------------------------
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 dim. 29 sept. 2024, 09:23, Rebecca Gellatly <notifications@odoo-community.org> a écrit :I just logged on Cyril and it is working for me....On Sun, 29 Sept 2024 at 19:42, Cyril VINH-TUNG <notifications@odoo-community.org> wrote:HelloIs there any problem with www.odoo-community.org ?It's not responding since yesterdaySee you at Liege--------------------------------
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 jeu. 26 sept. 2024, 01:57, Rebecca Gellatly <rebecca@odoo-community.org> a écrit :Hello Dear OCA ContributorsWe are very much looking forward to welcoming those that are attending OCA Days in person next week.
All of the last minute information you need has been emailed this week or if you are a recent registration you can also find it on our blog.If you are attending the Sunday Night social at L'Atelier Bières please make sure you let us know on the survey.
If you have any questions please get in touch.
If you can't make the event this year, we will be streaming 2 of the rooms in real time on our YouTube Channel: https://www.youtube.com/@OdooCommunityThen all the talks will be available online in coming weeks.
Have a great end to the week.Rebecca--Rebecca GellatlyGeneral SecretaryOdoo Community Association_______________________________________________
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
--Rebecca GellatlyGeneral SecretaryOdoo Community Association_______________________________________________
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 - 11:06 - 29 Sep 2024 -
Re: OCA Days 2024 - last minute items
I just logged on Cyril and it is working for me....On Sun, 29 Sept 2024 at 19:42, Cyril VINH-TUNG <notifications@odoo-community.org> wrote:HelloIs there any problem with www.odoo-community.org ?It's not responding since yesterdaySee you at Liege--------------------------------
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 jeu. 26 sept. 2024, 01:57, Rebecca Gellatly <rebecca@odoo-community.org> a écrit :Hello Dear OCA ContributorsWe are very much looking forward to welcoming those that are attending OCA Days in person next week.
All of the last minute information you need has been emailed this week or if you are a recent registration you can also find it on our blog.If you are attending the Sunday Night social at L'Atelier Bières please make sure you let us know on the survey.
If you have any questions please get in touch.
If you can't make the event this year, we will be streaming 2 of the rooms in real time on our YouTube Channel: https://www.youtube.com/@OdooCommunityThen all the talks will be available online in coming weeks.
Have a great end to the week.Rebecca--Rebecca GellatlyGeneral SecretaryOdoo Community Association_______________________________________________
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
--Rebecca GellatlyGeneral SecretaryOdoo Community Association
by Rebecca Gellatly - 09:21 - 29 Sep 2024 -
Re: OCA Days 2024 - last minute items
For Sunday:L'Atelier Bières.
Rue des Célestines 11, 4000 Liège, Belgium
7:30pmMonday night at the Conference Venue:
Val Benoit.
6pm onwards.
Food from 7pmish...See you there.
Rebecca
On Sun, 29 Sept 2024 at 07:02, Manish Mannan <notifications@odoo-community.org> wrote:Hi Rebecca,
Could you please confirm the time the event is scheduled to start in the evening?
Please let me know so that I can plan accordingly.
Best Regards,
Manish Mannan
Director - Sales
Sales | O2B Technologies
From: Rebecca Gellatly <rebecca@odoo-community.org>
Date: Thursday, 26 September 2024 at 5:27 AM
To: Contributors <contributors@odoo-community.org>
Subject: OCA Days 2024 - last minute itemsHello Dear OCA Contributors
We are very much looking forward to welcoming those that are attending OCA Days in person next week.
All of the last minute information you need has been emailed this week or if you are a recent registration you can also find it on our blog.If you are attending the Sunday Night social at L'Atelier Bières please make sure you let us know on the survey.
If you have any questions please get in touch.
If you can't make the event this year, we will be streaming 2 of the rooms in real time on our YouTube Channel: https://www.youtube.com/@OdooCommunityThen all the talks will be available online in coming weeks.
Have a great end to the week.Rebecca
--
Rebecca Gellatly
General Secretary
Odoo Community Association
_______________________________________________
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
--Rebecca GellatlyGeneral SecretaryOdoo Community Association
by Rebecca Gellatly - 09:20 - 29 Sep 2024 -
Re: OCA Days 2024 - last minute items
HelloIs there any problem with www.odoo-community.org ?It's not responding since yesterdaySee you at Liege--------------------------------
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 jeu. 26 sept. 2024, 01:57, Rebecca Gellatly <rebecca@odoo-community.org> a écrit :Hello Dear OCA ContributorsWe are very much looking forward to welcoming those that are attending OCA Days in person next week.
All of the last minute information you need has been emailed this week or if you are a recent registration you can also find it on our blog.If you are attending the Sunday Night social at L'Atelier Bières please make sure you let us know on the survey.
If you have any questions please get in touch.
If you can't make the event this year, we will be streaming 2 of the rooms in real time on our YouTube Channel: https://www.youtube.com/@OdooCommunityThen all the talks will be available online in coming weeks.
Have a great end to the week.Rebecca--Rebecca GellatlyGeneral SecretaryOdoo Community Association_______________________________________________
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 - 08:40 - 29 Sep 2024 -
Re: OCA Days 2024 - last minute items
Hi Rebecca,
Could you please confirm the time the event is scheduled to start in the evening?
Please let me know so that I can plan accordingly.
Best Regards,
Manish Mannan
Director - Sales
Sales | O2B Technologies
From: Rebecca Gellatly <rebecca@odoo-community.org>
Date: Thursday, 26 September 2024 at 5:27 AM
To: Contributors <contributors@odoo-community.org>
Subject: OCA Days 2024 - last minute itemsHello Dear OCA Contributors
We are very much looking forward to welcoming those that are attending OCA Days in person next week.
All of the last minute information you need has been emailed this week or if you are a recent registration you can also find it on our blog.If you are attending the Sunday Night social at L'Atelier Bières please make sure you let us know on the survey.
If you have any questions please get in touch.
If you can't make the event this year, we will be streaming 2 of the rooms in real time on our YouTube Channel: https://www.youtube.com/@OdooCommunityThen all the talks will be available online in coming weeks.
Have a great end to the week.Rebecca
--
Rebecca Gellatly
General Secretary
Odoo Community Association
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Manish Mannan - 08:01 - 28 Sep 2024
-
-
Dropping support for python 3.5 and Odoo 11
Hi everyone,Our Odoo 11 support in CI is currently based on python 3.5, and builds of the OCA/oca-ci image now fail with that python version.I therefore propose to stop building these images.Repos who use it will continue to work, but won't get the latest OCB updates, if any.If you have stakes on this, please do not hesitate to chime in on the PR at https://github.com/OCA/oca-ci/pull/79.Best regards,-Stéphane
by Stéphane Bidoul - 01:15 - 25 Sep 2024-
Re: Dropping support for python 3.5 and Odoo 11
On 25/09/2024 13:16, Stéphane Bidoul wrote: > Hi everyone, > > Our Odoo 11 support in CI is currently based on python 3.5, and builds > of the OCA/oca-ci image now fail with that python version. > > I therefore propose to stop building these images. > > Repos who use it will continue to work, but won't get the latest OCB > updates, if any. > > If you have stakes on this, please do not hesitate to chime in on the PR > at https://github.com/OCA/oca-ci/pull/79 > <https://github.com/OCA/oca-ci/pull/79>. Thanks for taking care of this. In the same way we have a timetable for the supportted versions of Python, maybe we could build a similar one for the OCA support for CI on Odoo versions ? BtW, I also noticed that Odoo SA added support for Python 3.12 on Odoo >= 15 -- Alexandre Fayolle Senior Software Engineer Camptocamp France SAS 18 rue du Lac Saint André 73 370 Le Bourget-du-Lac France http://www.camptocamp.com
by Alexandre Fayolle - 09:21 - 28 Sep 2024 -
Re: Dropping support for python 3.5 and Odoo 11
I agree with you as I tried to build getting started shopinvader project that uses odoo 12 docker image and this image is using Python 3.5
The image failed to build and the entire project didn't work due to this error.
On Wed, Sep 25, 2024, 14:17 Stéphane Bidoul <notifications@odoo-community.org> wrote:Hi everyone,Our Odoo 11 support in CI is currently based on python 3.5, and builds of the OCA/oca-ci image now fail with that python version.I therefore propose to stop building these images.Repos who use it will continue to work, but won't get the latest OCB updates, if any.If you have stakes on this, please do not hesitate to chime in on the PR at https://github.com/OCA/oca-ci/pull/79.Best regards,-Stéphane_______________________________________________
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 - 01:26 - 25 Sep 2024
-
-
elasticsearch configure indexing
Dear odoo community.
While trying to install and run shopinvader project, I got an error that elasticsearch is connected successfully but there is no any document.
I tried to make index by hand outside odoo and it succeeded.
I guess the issue is related to configuration index filed which is in Se Index Config model.
The default value for that field is {} but I am sure it must be changed.
Can someone tell me how to set the value for that field please?
by Mohamed Alkobrosly - 03:42 - 25 Sep 2024-
Re: elasticsearch configure indexing
I have now all the required modules installed successfully, but I guess I have to make some configurations after installing "shopinvader_v2_app_demo" module.
I am not sure if it is related to fast api, as I see it is installed by the demo module.
So I don't know what should be filled in the "Root Path" field, I need help please as I have taken a long journey to set up the dependencies.
I still need the configurations complete without missing any of them.
ThanksOn Wed, Sep 25, 2024 at 6:37 PM Mignon, Laurent <notifications@odoo-community.org> wrote:If you are comfortable with k8s, you can use the shopinvader-infra-demo16 repository (https://github.com/shopinvader/shopinvader-infra-demo16) to quickly get a running env with all the required dependencies.On Wed, Sep 25, 2024 at 5:22 PM mohamed alkobrosly <notifications@odoo-community.org> wrote:Thanks Mignon for helping me.
In fact the channel connector repository was not pulled.
I pulled it and installed sale_channel_search_engine_product module, then the json config index was correct and pushed to elasticsearch.
I have to confirm that I linked a channel with search engine, also there is a default demo channel is connected with search engine.
Despite all of this no any products or categories are fetched to search engine.
there were many queued jobs are running successfully but none of them could fetch any products.
I think there must be a link between channel and products but I don't know really.
The main issue with OCA modules is that there is no description to guide me.
may there there are some modules need to be installed to fetch the products or may be some other configuration.
I am trying this with no templates yet, if it is necessary please tell me where to find nextjs template
I tried to download the images but it didn't succeed
thanks Mignon too
On Wed, Sep 25, 2024, 09:33 Mignon, Laurent <notifications@odoo-community.org> wrote:Hi Mohamed,If you use the shopinvader demo app and the nuxtjs template the following index configuration should work for the product:{"settings": {"analysis": {"char_filter": {"replace": {"type": "mapping", "mappings": ["&=> and "]}}, "filter": {"word_delimiter": {"type": "word_delimiter", "split_on_numerics": false, "split_on_case_change": true, "generate_word_parts": true, "generate_number_parts": true, "catenate_all": true, "preserve_original": true, "catenate_numbers": true}}, "analyzer": {"default": {"type": "custom", "char_filter": ["html_strip", "replace"], "tokenizer": "whitespace", "filter": ["lowercase", "word_delimiter"]}}, "index": {"sort.field": ["main", "id"], "sort.order": ["desc", "asc"]}}}, "mappings": {"properties": {"categories": {"type": "nested", "properties": {"id": {"type": "integer"}, "level": {"type": "integer"}, "name": {"type": "keyword"}, "url_key": {"type": "keyword"}}}, "url_key": {"type": "keyword"}, "variant_attributes": {"properties": {"color": {"type": "text", "fielddata": true}}}, "main": {"type": "boolean"}, "id": {"type": "integer"}, "redirect_url_key": {"type": "keyword"}}}}For the category, you should set:{"settings": {"index": {"sort.field": ["id"], "sort.order": ["asc"]}}, "mappings": {"properties": {"url_key": {"type": "keyword"}, "redirect_url_key": {"type": "keyword"}, "id": {"type": "integer"}}}}In the demo app we use a specific addon to define the products to be exported to elasticsearch: 'sale_channel_search_engine_product'. Therefore on a channel, you must link the channel to a search engine. Once it's done, all the products linked to this sales channel will be exported to elasticsearch.If you plan to come to the OCA days or Odoo XP I'll be happy to help you configure your env to get everything working.Regards,lmiOn Wed, Sep 25, 2024 at 3:42 AM mohamed alkobrosly <notifications@odoo-community.org> wrote:Dear odoo community.
While trying to install and run shopinvader project, I got an error that elasticsearch is connected successfully but there is no any document.
I tried to make index by hand outside odoo and it succeeded.
I guess the issue is related to configuration index filed which is in Se Index Config model.
The default value for that field is {} but I am sure it must be changed.
Can someone tell me how to set the value for that field please?_______________________________________________
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
_______________________________________________
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 - 01:26 - 29 Sep 2024 -
Re: elasticsearch configure indexing
If you are comfortable with k8s, you can use the shopinvader-infra-demo16 repository (https://github.com/shopinvader/shopinvader-infra-demo16) to quickly get a running env with all the required dependencies.On Wed, Sep 25, 2024 at 5:22 PM mohamed alkobrosly <notifications@odoo-community.org> wrote:Thanks Mignon for helping me.
In fact the channel connector repository was not pulled.
I pulled it and installed sale_channel_search_engine_product module, then the json config index was correct and pushed to elasticsearch.
I have to confirm that I linked a channel with search engine, also there is a default demo channel is connected with search engine.
Despite all of this no any products or categories are fetched to search engine.
there were many queued jobs are running successfully but none of them could fetch any products.
I think there must be a link between channel and products but I don't know really.
The main issue with OCA modules is that there is no description to guide me.
may there there are some modules need to be installed to fetch the products or may be some other configuration.
I am trying this with no templates yet, if it is necessary please tell me where to find nextjs template
I tried to download the images but it didn't succeed
thanks Mignon too
On Wed, Sep 25, 2024, 09:33 Mignon, Laurent <notifications@odoo-community.org> wrote:Hi Mohamed,If you use the shopinvader demo app and the nuxtjs template the following index configuration should work for the product:{"settings": {"analysis": {"char_filter": {"replace": {"type": "mapping", "mappings": ["&=> and "]}}, "filter": {"word_delimiter": {"type": "word_delimiter", "split_on_numerics": false, "split_on_case_change": true, "generate_word_parts": true, "generate_number_parts": true, "catenate_all": true, "preserve_original": true, "catenate_numbers": true}}, "analyzer": {"default": {"type": "custom", "char_filter": ["html_strip", "replace"], "tokenizer": "whitespace", "filter": ["lowercase", "word_delimiter"]}}, "index": {"sort.field": ["main", "id"], "sort.order": ["desc", "asc"]}}}, "mappings": {"properties": {"categories": {"type": "nested", "properties": {"id": {"type": "integer"}, "level": {"type": "integer"}, "name": {"type": "keyword"}, "url_key": {"type": "keyword"}}}, "url_key": {"type": "keyword"}, "variant_attributes": {"properties": {"color": {"type": "text", "fielddata": true}}}, "main": {"type": "boolean"}, "id": {"type": "integer"}, "redirect_url_key": {"type": "keyword"}}}}For the category, you should set:{"settings": {"index": {"sort.field": ["id"], "sort.order": ["asc"]}}, "mappings": {"properties": {"url_key": {"type": "keyword"}, "redirect_url_key": {"type": "keyword"}, "id": {"type": "integer"}}}}In the demo app we use a specific addon to define the products to be exported to elasticsearch: 'sale_channel_search_engine_product'. Therefore on a channel, you must link the channel to a search engine. Once it's done, all the products linked to this sales channel will be exported to elasticsearch.If you plan to come to the OCA days or Odoo XP I'll be happy to help you configure your env to get everything working.Regards,lmiOn Wed, Sep 25, 2024 at 3:42 AM mohamed alkobrosly <notifications@odoo-community.org> wrote:Dear odoo community.
While trying to install and run shopinvader project, I got an error that elasticsearch is connected successfully but there is no any document.
I tried to make index by hand outside odoo and it succeeded.
I guess the issue is related to configuration index filed which is in Se Index Config model.
The default value for that field is {} but I am sure it must be changed.
Can someone tell me how to set the value for that field please?_______________________________________________
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 Laurent Mignon - 05:35 - 25 Sep 2024 -
Re: elasticsearch configure indexing
Thanks Mignon for helping me.
In fact the channel connector repository was not pulled.
I pulled it and installed sale_channel_search_engine_product module, then the json config index was correct and pushed to elasticsearch.
I have to confirm that I linked a channel with search engine, also there is a default demo channel is connected with search engine.
Despite all of this no any products or categories are fetched to search engine.
there were many queued jobs are running successfully but none of them could fetch any products.
I think there must be a link between channel and products but I don't know really.
The main issue with OCA modules is that there is no description to guide me.
may there there are some modules need to be installed to fetch the products or may be some other configuration.
I am trying this with no templates yet, if it is necessary please tell me where to find nextjs template
I tried to download the images but it didn't succeed
thanks Mignon too
On Wed, Sep 25, 2024, 09:33 Mignon, Laurent <notifications@odoo-community.org> wrote:Hi Mohamed,If you use the shopinvader demo app and the nuxtjs template the following index configuration should work for the product:{"settings": {"analysis": {"char_filter": {"replace": {"type": "mapping", "mappings": ["&=> and "]}}, "filter": {"word_delimiter": {"type": "word_delimiter", "split_on_numerics": false, "split_on_case_change": true, "generate_word_parts": true, "generate_number_parts": true, "catenate_all": true, "preserve_original": true, "catenate_numbers": true}}, "analyzer": {"default": {"type": "custom", "char_filter": ["html_strip", "replace"], "tokenizer": "whitespace", "filter": ["lowercase", "word_delimiter"]}}, "index": {"sort.field": ["main", "id"], "sort.order": ["desc", "asc"]}}}, "mappings": {"properties": {"categories": {"type": "nested", "properties": {"id": {"type": "integer"}, "level": {"type": "integer"}, "name": {"type": "keyword"}, "url_key": {"type": "keyword"}}}, "url_key": {"type": "keyword"}, "variant_attributes": {"properties": {"color": {"type": "text", "fielddata": true}}}, "main": {"type": "boolean"}, "id": {"type": "integer"}, "redirect_url_key": {"type": "keyword"}}}}For the category, you should set:{"settings": {"index": {"sort.field": ["id"], "sort.order": ["asc"]}}, "mappings": {"properties": {"url_key": {"type": "keyword"}, "redirect_url_key": {"type": "keyword"}, "id": {"type": "integer"}}}}In the demo app we use a specific addon to define the products to be exported to elasticsearch: 'sale_channel_search_engine_product'. Therefore on a channel, you must link the channel to a search engine. Once it's done, all the products linked to this sales channel will be exported to elasticsearch.If you plan to come to the OCA days or Odoo XP I'll be happy to help you configure your env to get everything working.Regards,lmiOn Wed, Sep 25, 2024 at 3:42 AM mohamed alkobrosly <notifications@odoo-community.org> wrote:Dear odoo community.
While trying to install and run shopinvader project, I got an error that elasticsearch is connected successfully but there is no any document.
I tried to make index by hand outside odoo and it succeeded.
I guess the issue is related to configuration index filed which is in Se Index Config model.
The default value for that field is {} but I am sure it must be changed.
Can someone tell me how to set the value for that field please?_______________________________________________
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 - 05:21 - 25 Sep 2024 -
Re: elasticsearch configure indexing
Hi Mohamed,If you use the shopinvader demo app and the nuxtjs template the following index configuration should work for the product:{"settings": {"analysis": {"char_filter": {"replace": {"type": "mapping", "mappings": ["&=> and "]}}, "filter": {"word_delimiter": {"type": "word_delimiter", "split_on_numerics": false, "split_on_case_change": true, "generate_word_parts": true, "generate_number_parts": true, "catenate_all": true, "preserve_original": true, "catenate_numbers": true}}, "analyzer": {"default": {"type": "custom", "char_filter": ["html_strip", "replace"], "tokenizer": "whitespace", "filter": ["lowercase", "word_delimiter"]}}, "index": {"sort.field": ["main", "id"], "sort.order": ["desc", "asc"]}}}, "mappings": {"properties": {"categories": {"type": "nested", "properties": {"id": {"type": "integer"}, "level": {"type": "integer"}, "name": {"type": "keyword"}, "url_key": {"type": "keyword"}}}, "url_key": {"type": "keyword"}, "variant_attributes": {"properties": {"color": {"type": "text", "fielddata": true}}}, "main": {"type": "boolean"}, "id": {"type": "integer"}, "redirect_url_key": {"type": "keyword"}}}}For the category, you should set:{"settings": {"index": {"sort.field": ["id"], "sort.order": ["asc"]}}, "mappings": {"properties": {"url_key": {"type": "keyword"}, "redirect_url_key": {"type": "keyword"}, "id": {"type": "integer"}}}}In the demo app we use a specific addon to define the products to be exported to elasticsearch: 'sale_channel_search_engine_product'. Therefore on a channel, you must link the channel to a search engine. Once it's done, all the products linked to this sales channel will be exported to elasticsearch.If you plan to come to the OCA days or Odoo XP I'll be happy to help you configure your env to get everything working.Regards,lmiOn Wed, Sep 25, 2024 at 3:42 AM mohamed alkobrosly <notifications@odoo-community.org> wrote:Dear odoo community.
While trying to install and run shopinvader project, I got an error that elasticsearch is connected successfully but there is no any document.
I tried to make index by hand outside odoo and it succeeded.
I guess the issue is related to configuration index filed which is in Se Index Config model.
The default value for that field is {} but I am sure it must be changed.
Can someone tell me how to set the value for that field please?_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Laurent Mignon - 08:30 - 25 Sep 2024
-
-
[16.0] Reset to Draft button disappear after changed Price on Vendor Bills
Hi team, We recently upgrade a client from v13 to v16, and now they are being hit by the infamous "Reset to Draft button disappear after changed Price on Vendor Bills" (https://github.com/odoo/odoo/issues/114732). I have read a lot of code, blog posts, comments on github issues an so on. Because fiscal regulations the customer can't issue credit notes as Odoo officially suggested as workaround. So, has anyone figured out some strategy to solve this problem. I'm a developer, maybe someone could point me to functional steps to in somehow revert or reevaluate the problematic stock.valuation.layers. This customer uses multi currency, so the currency rate variations between product reception and bill confirmation date makes almost every vendor bill gets blocked with no chances to any form of modification. Has anyone come out with a bright solution?
by Ing. Rolando Pérez Rebollo - 04:20 - 24 Sep 2024-
Re: [16.0] Reset to Draft button disappear after changed Price on Vendor Bills
> What happens when this product is used in manufacturing? Is there a way to correct the cost of the manufactured product?stock_account_move_reset_to_draft is supposed to show "The inventory has already been (partially) consumed" error in such cases. You may consider adjusting the valuation of the manufactured product via landed costs as necessary.--Yoshi TashiroQuartileOn Wed, Nov 6, 2024 at 3:02 PM Levent Karakas <notifications@odoo-community.org> wrote:What happens when this product is used in manufacturing? Is there a way to correct the cost of the manufactured product?On Tue, Nov 5, 2024 at 9:42 PM Pedro M. Baeza <notifications@odoo-community.org> wrote:El mar, 5 nov 2024 a las 19:37, Rolando Pérez Rebollo (<notifications@odoo-community.org>) escribió:We finally proposed a PR [https://github.com/OCA/account-financial-tools/pull/1962]. Maybe your team can check it out.
On 9/24/24 10:52, María Florencia Frigieri Parma wrote:
El mar, 24 sept 2024 a las 11:22, Rolando Pérez Rebollo (<notifications@odoo-community.org>) escribió:
Hi team, We recently upgrade a client from v13 to v16, and now they are being hit by the infamous "Reset to Draft button disappear after changed Price on Vendor Bills" (https://github.com/odoo/odoo/issues/114732). I have read a lot of code, blog posts, comments on github issues an so on. Because fiscal regulations the customer can't issue credit notes as Odoo officially suggested as workaround. So, has anyone figured out some strategy to solve this problem. I'm a developer, maybe someone could point me to functional steps to in somehow revert or reevaluate the problematic stock.valuation.layers. This customer uses multi currency, so the currency rate variations between product reception and bill confirmation date makes almost every vendor bill gets blocked with no chances to any form of modification. Has anyone come out with a bright solution?
_______________________________________________
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
_______________________________________________
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 Yoshi Tashiro - 02:26 - 8 Nov 2024 -
Re: [16.0] Reset to Draft button disappear after changed Price on Vendor Bills
What happens when this product is used in manufacturing? Is there a way to correct the cost of the manufactured product?On Tue, Nov 5, 2024 at 9:42 PM Pedro M. Baeza <notifications@odoo-community.org> wrote:El mar, 5 nov 2024 a las 19:37, Rolando Pérez Rebollo (<notifications@odoo-community.org>) escribió:We finally proposed a PR [https://github.com/OCA/account-financial-tools/pull/1962]. Maybe your team can check it out.
On 9/24/24 10:52, María Florencia Frigieri Parma wrote:
El mar, 24 sept 2024 a las 11:22, Rolando Pérez Rebollo (<notifications@odoo-community.org>) escribió:
Hi team, We recently upgrade a client from v13 to v16, and now they are being hit by the infamous "Reset to Draft button disappear after changed Price on Vendor Bills" (https://github.com/odoo/odoo/issues/114732). I have read a lot of code, blog posts, comments on github issues an so on. Because fiscal regulations the customer can't issue credit notes as Odoo officially suggested as workaround. So, has anyone figured out some strategy to solve this problem. I'm a developer, maybe someone could point me to functional steps to in somehow revert or reevaluate the problematic stock.valuation.layers. This customer uses multi currency, so the currency rate variations between product reception and bill confirmation date makes almost every vendor bill gets blocked with no chances to any form of modification. Has anyone come out with a bright solution?
_______________________________________________
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
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by "Levent Karakas" <leventk@eska.biz> - 07:01 - 6 Nov 2024 -
Re: [16.0] Reset to Draft button disappear after changed Price on Vendor Bills
Yes in deed. Thank you for pointing it out..
On 11/5/24 13:43, Pedro M. Baeza wrote:
This seems redundant now with https://github.com/OCA/account-invoicing/pull/1813, isn't it?
Regards.
El mar, 5 nov 2024 a las 19:37, Rolando Pérez Rebollo (<notifications@odoo-community.org>) escribió:
We finally proposed a PR [https://github.com/OCA/account-financial-tools/pull/1962]. Maybe your team can check it out.
On 9/24/24 10:52, María Florencia Frigieri Parma wrote:
El mar, 24 sept 2024 a las 11:22, Rolando Pérez Rebollo (<notifications@odoo-community.org>) escribió:
Hi team, We recently upgrade a client from v13 to v16, and now they are being hit by the infamous "Reset to Draft button disappear after changed Price on Vendor Bills" (https://github.com/odoo/odoo/issues/114732). I have read a lot of code, blog posts, comments on github issues an so on. Because fiscal regulations the customer can't issue credit notes as Odoo officially suggested as workaround. So, has anyone figured out some strategy to solve this problem. I'm a developer, maybe someone could point me to functional steps to in somehow revert or reevaluate the problematic stock.valuation.layers. This customer uses multi currency, so the currency rate variations between product reception and bill confirmation date makes almost every vendor bill gets blocked with no chances to any form of modification. Has anyone come out with a bright solution?
_______________________________________________
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
_______________________________________________
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 - 08:36 - 5 Nov 2024 -
Re: [16.0] Reset to Draft button disappear after changed Price on Vendor Bills
El mar, 5 nov 2024 a las 19:37, Rolando Pérez Rebollo (<notifications@odoo-community.org>) escribió:We finally proposed a PR [https://github.com/OCA/account-financial-tools/pull/1962]. Maybe your team can check it out.
On 9/24/24 10:52, María Florencia Frigieri Parma wrote:
El mar, 24 sept 2024 a las 11:22, Rolando Pérez Rebollo (<notifications@odoo-community.org>) escribió:
Hi team, We recently upgrade a client from v13 to v16, and now they are being hit by the infamous "Reset to Draft button disappear after changed Price on Vendor Bills" (https://github.com/odoo/odoo/issues/114732). I have read a lot of code, blog posts, comments on github issues an so on. Because fiscal regulations the customer can't issue credit notes as Odoo officially suggested as workaround. So, has anyone figured out some strategy to solve this problem. I'm a developer, maybe someone could point me to functional steps to in somehow revert or reevaluate the problematic stock.valuation.layers. This customer uses multi currency, so the currency rate variations between product reception and bill confirmation date makes almost every vendor bill gets blocked with no chances to any form of modification. Has anyone come out with a bright solution?
_______________________________________________
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 Pedro M. Baeza - 07:41 - 5 Nov 2024 -
Re: [16.0] Reset to Draft button disappear after changed Price on Vendor Bills
We finally proposed a PR [https://github.com/OCA/account-financial-tools/pull/1962]. Maybe your team can check it out.
On 9/24/24 10:52, María Florencia Frigieri Parma wrote:
El mar, 24 sept 2024 a las 11:22, Rolando Pérez Rebollo (<notifications@odoo-community.org>) escribió:
Hi team, We recently upgrade a client from v13 to v16, and now they are being hit by the infamous "Reset to Draft button disappear after changed Price on Vendor Bills" (https://github.com/odoo/odoo/issues/114732). I have read a lot of code, blog posts, comments on github issues an so on. Because fiscal regulations the customer can't issue credit notes as Odoo officially suggested as workaround. So, has anyone figured out some strategy to solve this problem. I'm a developer, maybe someone could point me to functional steps to in somehow revert or reevaluate the problematic stock.valuation.layers. This customer uses multi currency, so the currency rate variations between product reception and bill confirmation date makes almost every vendor bill gets blocked with no chances to any form of modification. Has anyone come out with a bright solution?
_______________________________________________
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 Ing. Rolando Pérez Rebollo - 07:36 - 5 Nov 2024
-
-
Shopinvader E-Commerce Bugs with odoo 12 docker image
Dear community.
One of my customers needs an E-Commerce application that depends on odoo in the backend.
A friend of mine recommended the Shopinvader project to use.
I have read about it, I cloned many of it's repositories.
I tried to follow the documentation and install and run the "getting started" docker-compose app.
It failed to run due to old odoo 12 dependency.
I really need to install and try this project so that if it is useful I can upgrade to version 17 and share it in the community.
Any guidance on how to install and run it without bugs even in version 16 of odoo?
Thanks community
by Mohamed Alkobrosly - 11:36 - 23 Sep 2024-
Re: Shopinvader E-Commerce Bugs with odoo 12 docker image
thanks Mignon very much for sharing this information
I am grateful to you
On Tue, Sep 24, 2024, 19:22 Mignon, Laurent <notifications@odoo-community.org> wrote:Hi Mohammed,A demo app exists for the new shopinvader api in Odoo v16. You can take a look at https://github.com/shopinvader/odoo-shopinvader/pull/1364.Regards,lmiOn Tue, Sep 24, 2024 at 5:22 PM mohamed alkobrosly <notifications@odoo-community.org> wrote:thanks Dora, yes I am starting with odoo 17, hoping to finish the goal to upgrade to version 17
On Tue, Sep 24, 2024, 18:09 Dora Jurcevic <notifications@odoo-community.org> wrote:Hello Mohamed !Shopinvader e-commerce has a new version developed in vueJs and NuxtJs and the API on Odoo side also changed a lot (Fast API now) !We still have some costumers using the old stack, but if you are starting from scratch, it would be better to start from the newest stack (available on Odoo 14 and Odoo 16).Here is the template https://github.com/shopinvader/shopinvader-template-nuxtjsBest regards,DoraLe lun. 23 sept. 2024 à 23:38, mohamed alkobrosly <notifications@odoo-community.org> a écrit :Dear community.
One of my customers needs an E-Commerce application that depends on odoo in the backend.
A friend of mine recommended the Shopinvader project to use.
I have read about it, I cloned many of it's repositories.
I tried to follow the documentation and install and run the "getting started" docker-compose app.
It failed to run due to old odoo 12 dependency.
I really need to install and try this project so that if it is useful I can upgrade to version 17 and share it in the community.
Any guidance on how to install and run it without bugs even in version 16 of odoo?
Thanks community_______________________________________________
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
_______________________________________________
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:06 - 24 Sep 2024 -
Re: Shopinvader E-Commerce Bugs with odoo 12 docker image
Hi Mohammed,A demo app exists for the new shopinvader api in Odoo v16. You can take a look at https://github.com/shopinvader/odoo-shopinvader/pull/1364.Regards,lmiOn Tue, Sep 24, 2024 at 5:22 PM mohamed alkobrosly <notifications@odoo-community.org> wrote:thanks Dora, yes I am starting with odoo 17, hoping to finish the goal to upgrade to version 17
On Tue, Sep 24, 2024, 18:09 Dora Jurcevic <notifications@odoo-community.org> wrote:Hello Mohamed !Shopinvader e-commerce has a new version developed in vueJs and NuxtJs and the API on Odoo side also changed a lot (Fast API now) !We still have some costumers using the old stack, but if you are starting from scratch, it would be better to start from the newest stack (available on Odoo 14 and Odoo 16).Here is the template https://github.com/shopinvader/shopinvader-template-nuxtjsBest regards,DoraLe lun. 23 sept. 2024 à 23:38, mohamed alkobrosly <notifications@odoo-community.org> a écrit :Dear community.
One of my customers needs an E-Commerce application that depends on odoo in the backend.
A friend of mine recommended the Shopinvader project to use.
I have read about it, I cloned many of it's repositories.
I tried to follow the documentation and install and run the "getting started" docker-compose app.
It failed to run due to old odoo 12 dependency.
I really need to install and try this project so that if it is useful I can upgrade to version 17 and share it in the community.
Any guidance on how to install and run it without bugs even in version 16 of odoo?
Thanks community_______________________________________________
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 Laurent Mignon - 06:21 - 24 Sep 2024 -
Re: Shopinvader E-Commerce Bugs with odoo 12 docker image
thanks Dora, yes I am starting with odoo 17, hoping to finish the goal to upgrade to version 17
On Tue, Sep 24, 2024, 18:09 Dora Jurcevic <notifications@odoo-community.org> wrote:Hello Mohamed !Shopinvader e-commerce has a new version developed in vueJs and NuxtJs and the API on Odoo side also changed a lot (Fast API now) !We still have some costumers using the old stack, but if you are starting from scratch, it would be better to start from the newest stack (available on Odoo 14 and Odoo 16).Here is the template https://github.com/shopinvader/shopinvader-template-nuxtjsBest regards,DoraLe lun. 23 sept. 2024 à 23:38, mohamed alkobrosly <notifications@odoo-community.org> a écrit :Dear community.
One of my customers needs an E-Commerce application that depends on odoo in the backend.
A friend of mine recommended the Shopinvader project to use.
I have read about it, I cloned many of it's repositories.
I tried to follow the documentation and install and run the "getting started" docker-compose app.
It failed to run due to old odoo 12 dependency.
I really need to install and try this project so that if it is useful I can upgrade to version 17 and share it in the community.
Any guidance on how to install and run it without bugs even in version 16 of odoo?
Thanks community_______________________________________________
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 - 05:21 - 24 Sep 2024 -
Re: Shopinvader E-Commerce Bugs with odoo 12 docker image
Hello Mohamed !Shopinvader e-commerce has a new version developed in vueJs and NuxtJs and the API on Odoo side also changed a lot (Fast API now) !We still have some costumers using the old stack, but if you are starting from scratch, it would be better to start from the newest stack (available on Odoo 14 and Odoo 16).Here is the template https://github.com/shopinvader/shopinvader-template-nuxtjsBest regards,DoraLe lun. 23 sept. 2024 à 23:38, mohamed alkobrosly <notifications@odoo-community.org> a écrit :Dear community.
One of my customers needs an E-Commerce application that depends on odoo in the backend.
A friend of mine recommended the Shopinvader project to use.
I have read about it, I cloned many of it's repositories.
I tried to follow the documentation and install and run the "getting started" docker-compose app.
It failed to run due to old odoo 12 dependency.
I really need to install and try this project so that if it is useful I can upgrade to version 17 and share it in the community.
Any guidance on how to install and run it without bugs even in version 16 of odoo?
Thanks community_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by "Dora Jurcevic" <dora.jurcevic@akretion.com.br> - 05:06 - 24 Sep 2024
-
-
Multiple customers on Purchase Orders
Hello,
I am dealing with a scenario where 2 sister companies share parts of their operations and make purchase orders together with split ratio between them. The way they do it is 3-party agreements, where there are 2 customers and 1 supplier and for purchase orders there are instructions for suppliers on how to split the invoicing (i.e. the supplier sends 2 separate invoices - each to individual company according to the split ratio).
Anyone faced anything similar? I am thinking of using 2 companies to model it and tinkering with visibility in each according to split. Because where there is a split, they want to see the document in both. Where there is not (it belongs to single company), should ony be visible there. However how to model in a best way that there should be 2 customers (maybe more for future extensions) on each document?
Any advice is highly welcome. Thank you very much.
Best regards
Radovan Skolnik
by Radovan Skolnik - 12:06 - 23 Sep 2024-
Re: Multiple customers on Purchase Orders
Thanks Holger,
the idea of "consortium" instead of trying to put multiple customers into PO is a good one and also naturally extendable beyond more than 2 companies.
Best regards
Radovan
On pondelok 23. septembra 2024 12:37:45 CEST Holger Brunn wrote:
> > Anyone faced anything similar? I am thinking of using 2 companies to model
> > it and tinkering with visibility in each according to split. Because where
> > there is a split, they want to see the document in both. Where there is
> > not
> > (it belongs to single company), should ony be visible there. However how
> > to
> > model in a best way that there should be 2 customers (maybe more for
> > future
> > extensions) on each document?
>
> I have a customer with a similar requirement the other way around, where
> multiple suppliers invoice the same customer:
> https://github.com/tosccolors/vertical-professional-services/tree/16.0/
> ps_partner_multi_relation
> They solved this by defining a partner relation "consortium", and every time
> an invoice for a consortium partner is posted, this invoice is split by the
> weights ("distribution key") on the consortium relation and new invoices
> are created for the involved partners.
> This concept should extend quite naturally to the purchase side, where you
> split the supplier invoices and deliveries according to the distribution key
> on the partner relation.
> --
> Your partner for the hard Odoo problems
> https://hunki-enterprises.com
> _______________________________________________
> 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]
>
>
>
> [1] https://odoo-community.org/groups/contributors-15
> [2] https://odoo-community.org/groups?unsubscribe
by Radovan Skolnik - 02:46 - 23 Sep 2024 -
Re: Multiple customers on Purchase Orders
> Anyone faced anything similar? I am thinking of using 2 companies to model > it and tinkering with visibility in each according to split. Because where > there is a split, they want to see the document in both. Where there is not > (it belongs to single company), should ony be visible there. However how to > model in a best way that there should be 2 customers (maybe more for future > extensions) on each document? I have a customer with a similar requirement the other way around, where multiple suppliers invoice the same customer: https://github.com/tosccolors/vertical-professional-services/tree/16.0/ ps_partner_multi_relation They solved this by defining a partner relation "consortium", and every time an invoice for a consortium partner is posted, this invoice is split by the weights ("distribution key") on the consortium relation and new invoices are created for the involved partners. This concept should extend quite naturally to the purchase side, where you split the supplier invoices and deliveries according to the distribution key on the partner relation. -- Your partner for the hard Odoo problems https://hunki-enterprises.com
by Holger Brunn - 12:32 - 23 Sep 2024
-
-
-
Fwd: Purchase Request inconvinient
---------- Forwarded message ---------
De: Manuel Scarafia <manuelscarafia@gmail.com>
Date: vie, 20 sept 2024 a las 15:38
Subject: Purchase Request inconvinient
To: <support@odoo-community.org>¡Hi! ¿How's going?I was using your Purchase Request module (purchase_request) when I noticed that it didn't let me change the currency on a Purchase Request; I was able to change the currency (from ARS to USD) but when I clicked "Save" it took me back to ARS again. I've also noticed that when I change the currency in the currency field, it doesn't change the currency in the product lines and doesn't let me change it as well.¿Do you have a fix for this problem? ¿Or is there any configuration that I could check?
by Manuel Scarafia - 09:57 - 20 Sep 2024 -
Subject: Welcome to the VentorTech Support!
Hi there,
We're excited to welcome you to the VentorTech Support! This is your one-stop shop for getting help with our products and services.
Here's what you can do in the portal:
- Create and track support requests: Get the help you need, when you need it.
- Access our knowledge base: Find answers to common questions and troubleshoot issues.
- Stay up-to-date: Receive notifications about product updates and announcements.
To get started, simply click the link below to set up your account: sign up link
We're here to help you make the most of our products. If you have any questions, don't hesitate to reach out!
Sincerely,
The VentorTech Team
by "VentorTech Support" <support@ventor.tech> - 02:36 - 20 Sep 2024-
Re: Subject: Welcome to the VentorTech Support!
HiI’m in testing , stock RFID implements to my client , as found your ventor app is very good , but I want to ask about RFID device , can ventor app support other RFID device not Zebra ,Thanks,Chedtha
From: VentorTech Support <notifications@odoo-community.org>
Date: Friday, 20 September BE 2567 at 19:38
To: Contributors <contributors@odoo-community.org>
Subject: Subject: Welcome to the VentorTech Support!
Hi there,
We're excited to welcome you to the VentorTech Support! This is your one-stop shop for getting help with our products and services.
Here's what you can do in the portal:
- Create and track support requests: Get the help you need, when you need it.
- Access our knowledge base: Find answers to common questions and troubleshoot issues.
- Stay up-to-date: Receive notifications about product updates and announcements.
To get started, simply click the link below to set up your account: sign up link
We're here to help you make the most of our products. If you have any questions, don't hesitate to reach out!
Sincerely,
The VentorTech Team
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Chedtha Makaew - 02:45 - 25 Aug 2025
-
OCA Days India - 2024 - 28th September
Hello OCA Contributors.
I hope this email finds you all well.
I wanted to share with you that we have a one day OCA Days India 2024 event in Gandhinagar at the Serpent Consulting Offices from 10am - 5pm on Saturday the 28th September.We had so many visitors at the Odoo Community Days just a couple of weeks ago, our friends at Serpent Consulting and BizzAppDev are keen to help support the community and share the OCA with Odoo supporters in the area.
There are talks to help with contributing, how to use the Indian Localisation and a number of sprint topics. Technical and Functional profiles are warmly encouraged to attend.
You can see the agenda here.You can register here.If you are attending but haven't signed an ICLA, you can find all the details here. Please get on to this quick so I have time to action them before I start travelling from NZ to Belgium late next week for the European OCA Days 2024.If you have any questions please get in touch.Warmest regards,Rebecca--Rebecca GellatlyGeneral SecretaryOdoo Community Association
by Rebecca Gellatly (OCA) - 01:50 - 17 Sep 2024-
Re: OCA Days India - 2024 - 28th September
That's a great news!Thanks for sharing Rebecca :)Thanks Serpent and BizzAppDev :)On Tue, Sep 17, 2024 at 1:52 AM Rebecca Gellatly <rebecca@odoo-community.org> wrote:Hello OCA Contributors.
I hope this email finds you all well.
I wanted to share with you that we have a one day OCA Days India 2024 event in Gandhinagar at the Serpent Consulting Offices from 10am - 5pm on Saturday the 28th September.We had so many visitors at the Odoo Community Days just a couple of weeks ago, our friends at Serpent Consulting and BizzAppDev are keen to help support the community and share the OCA with Odoo supporters in the area.
There are talks to help with contributing, how to use the Indian Localisation and a number of sprint topics. Technical and Functional profiles are warmly encouraged to attend.
You can see the agenda here.You can register here.If you are attending but haven't signed an ICLA, you can find all the details here. Please get on to this quick so I have time to action them before I start travelling from NZ to Belgium late next week for the European OCA Days 2024.If you have any questions please get in touch.Warmest regards,Rebecca--Rebecca GellatlyGeneral SecretaryOdoo Community Association_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
--Simone OrsiFull stack Python web developer, Odoo specialist, Odoo Community Board Member, in love with open source.
by Simone Orsi. - 10:36 - 18 Sep 2024 -
RE: OCA Days India - 2024 - 28th September
Jordan Kinsella reacted to your message:
From: Rebecca Gellatly <rebecca@odoo-community.org>
Sent: Monday, September 16, 2024 11:52:52 PM
To: Contributors <contributors@odoo-community.org>
Subject: OCA Days India - 2024 - 28th SeptemberCaution: This is an external email. Please take care when clicking links or opening attachments. When in doubt, contact your Department Manager
Hello OCA Contributors.
I hope this email finds you all well.
I wanted to share with you that we have a one day OCA Days India 2024 event in Gandhinagar at the Serpent Consulting Offices from 10am - 5pm on Saturday the 28th September.
We had so many visitors at the Odoo Community Days just a couple of weeks ago, our friends at Serpent Consulting and BizzAppDev are keen to help support the community and share the OCA with Odoo supporters in the area.
There are talks to help with contributing, how to use the Indian Localisation and a number of sprint topics. Technical and Functional profiles are warmly encouraged to attend.
You can see the agenda here.You can register here.
If you are attending but haven't signed an ICLA, you can find all the details here. Please get on to this quick so I have time to action them before I start travelling from NZ to Belgium late next week for the European OCA Days 2024.
If you have any questions please get in touch.Warmest regards,Rebecca--
Rebecca GellatlyGeneral SecretaryOdoo Community Association_______________________________________________
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 - 10:21 - 18 Sep 2024
-
-
odoo kernel for web development
Hello Odoo community, I have started to make use of the best of odoo which is the magnificent ORM and OWL.
To simplify I made a special light version of odoo that runs only the base module and it's related logical associated modules.
I took this step as 4 months ago, I have created my company website:This website was built using Flask in the backend and OWL for the frontend.
It was very nice as I found OWL is quite simple and highly efficient as React and Vue.js.
Flask is great to run my website, but if I get a project that needs connection to the database then I have to use opensource ORM library and connect it with Flask, or I can directily use Django.
I am satisfied with Django and comfortable with Flask, but I like too much to make use of odoo ORM.
That is how I got the idea, and I hope I find it helpful in the future.
I also hope that you find my email useful.
Here is the repository for Odoo Kernel:
Thanks all
by Mohamed Alkobrosly - 09:01 - 15 Sep 2024 -
Preparing for Odoo 18
Hi everyone,If history repeats itself, we may have a new Odoo version 3 weeks from now.I created the tracking issue to prepare OCA tooling for Odoo 18, including suggestions for improvements: https://github.com/OCA/maintainer-tools/issues/628Contributions are most welcome, so don't hesitate to chime in if you want to help.Best regards,-Stéphane
by Stéphane Bidoul - 03:41 - 12 Sep 2024-
Re: Preparing for Odoo 18
Well @Virginie Dewulf this is the perfect time to start elaborating some easy training guide (for beginners). We already talked about it- how to install a dev environment- how to find an OCA module- how to migrate a module- how to use openupgrade...Unless all the documentations already exist, i think it would be cool to have something like a training session to help neebies becoming masters...IMHOIf you launch a workgroup on that subject, I'll be happy to contributeBTW, the complete openupgrade documentation is here https://oca.github.io/OpenUpgrade/--------------------------------
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. 18 oct. 2024, 04:56, Virginie Dewulf <virginie@odoo-community.org> a écrit :Hello,Welcome in the community!On YouTube, there is now a dedicated playlist on the topic of OpenUpgrade and migrations from the past OCA Days.Testing the scripts is a very good way to start contributing to the OpenUpgrade project, indeed. Pay attention to the fact that sometimes the scripts are good but your data cause issues.To start contributing to review and write the scripts themselves, experience shows that you need to be an Odoo expert from the technical and functional point of view, with at least several years of practice as an Odoo developer, because you need to understand well how things work in the different versions from a technical and functional perspective. So we hope to see you contributing there in a bit!Enjoy your weekend everyone!Le ven. 18 oct. 2024, 11:12, Tom Blauwendraat <notifications@odoo-community.org> a écrit :On 10/18/24 04:03, Jacob Christ wrote: > I would like to help improve OpenUpgrade but I don't know how to > get started. If nothing else, I'm happy to test 16 to 17 upgrades as > improvements are made. In one of the previous OCA days, there was a talk about how to get started with OpenUpgrade. Might be this one: https://www.youtube.com/watch?v=Vx7-PuXCIsY but there could be more. It seems everybody has their own way of doing things; I think what's "common" is to make a "build" for each version and then include OpenUpgrade in it (it could be for example a Doodba docker container, or one of the other build systems that are around - we use our own Doodba-based concoction at https://github.com/sunflowerit/waftlib) and then add OpenUpgrade into the build and run odoo -u on each version in sequence. Whichever build system you choose, like Graeme says, it's handy if gitaggregator is an integral part of it, so that you can easily include patch PR's into the build - your own, or ones from others. With every migration we have done so far there are at least a handful errors that you will run into - usually it's a case of the database in your data being slightly different than a specific OpenUpgrade script expects it to be. It can be all kinds of things, for example it might be that on Odoo 14, it was possible to set a financial ledger account to a certain type that it should not be, and you changed it, but now OpenUpgrade does not cover that specific case. What you can then do is either adjust your data on Odoo 14 manually and try the migration again from start, or to make a migration script yourself, and either run it as a custom script or actually propose it as an addition to OpenUpgrade using a PR. If you're not up to this whole process, what's also a common method for instances without a lot of data is to start over with a fresh Odoo 17 instance and use import/export to get your data across. That's of course also laborious but in some cases it can be a good option.
_______________________________________________
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 - 06:55 - 18 Oct 2024 -
Re: Preparing for Odoo 18
Hello,Welcome in the community!On YouTube, there is now a dedicated playlist on the topic of OpenUpgrade and migrations from the past OCA Days.Testing the scripts is a very good way to start contributing to the OpenUpgrade project, indeed. Pay attention to the fact that sometimes the scripts are good but your data cause issues.To start contributing to review and write the scripts themselves, experience shows that you need to be an Odoo expert from the technical and functional point of view, with at least several years of practice as an Odoo developer, because you need to understand well how things work in the different versions from a technical and functional perspective. So we hope to see you contributing there in a bit!Enjoy your weekend everyone!Le ven. 18 oct. 2024, 11:12, Tom Blauwendraat <notifications@odoo-community.org> a écrit :On 10/18/24 04:03, Jacob Christ wrote: > I would like to help improve OpenUpgrade but I don't know how to > get started. If nothing else, I'm happy to test 16 to 17 upgrades as > improvements are made. In one of the previous OCA days, there was a talk about how to get started with OpenUpgrade. Might be this one: https://www.youtube.com/watch?v=Vx7-PuXCIsY but there could be more. It seems everybody has their own way of doing things; I think what's "common" is to make a "build" for each version and then include OpenUpgrade in it (it could be for example a Doodba docker container, or one of the other build systems that are around - we use our own Doodba-based concoction at https://github.com/sunflowerit/waftlib) and then add OpenUpgrade into the build and run odoo -u on each version in sequence. Whichever build system you choose, like Graeme says, it's handy if gitaggregator is an integral part of it, so that you can easily include patch PR's into the build - your own, or ones from others. With every migration we have done so far there are at least a handful errors that you will run into - usually it's a case of the database in your data being slightly different than a specific OpenUpgrade script expects it to be. It can be all kinds of things, for example it might be that on Odoo 14, it was possible to set a financial ledger account to a certain type that it should not be, and you changed it, but now OpenUpgrade does not cover that specific case. What you can then do is either adjust your data on Odoo 14 manually and try the migration again from start, or to make a migration script yourself, and either run it as a custom script or actually propose it as an addition to OpenUpgrade using a PR. If you're not up to this whole process, what's also a common method for instances without a lot of data is to start over with a fresh Odoo 17 instance and use import/export to get your data across. That's of course also laborious but in some cases it can be a good option.
_______________________________________________
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) - 04:55 - 18 Oct 2024 -
Re: Preparing for Odoo 18
On 10/18/24 04:03, Jacob Christ wrote: > I would like to help improve OpenUpgrade but I don't know how to > get started. If nothing else, I'm happy to test 16 to 17 upgrades as > improvements are made. In one of the previous OCA days, there was a talk about how to get started with OpenUpgrade. Might be this one: https://www.youtube.com/watch?v=Vx7-PuXCIsY but there could be more. It seems everybody has their own way of doing things; I think what's "common" is to make a "build" for each version and then include OpenUpgrade in it (it could be for example a Doodba docker container, or one of the other build systems that are around - we use our own Doodba-based concoction at https://github.com/sunflowerit/waftlib) and then add OpenUpgrade into the build and run odoo -u on each version in sequence. Whichever build system you choose, like Graeme says, it's handy if gitaggregator is an integral part of it, so that you can easily include patch PR's into the build - your own, or ones from others. With every migration we have done so far there are at least a handful errors that you will run into - usually it's a case of the database in your data being slightly different than a specific OpenUpgrade script expects it to be. It can be all kinds of things, for example it might be that on Odoo 14, it was possible to set a financial ledger account to a certain type that it should not be, and you changed it, but now OpenUpgrade does not cover that specific case. What you can then do is either adjust your data on Odoo 14 manually and try the migration again from start, or to make a migration script yourself, and either run it as a custom script or actually propose it as an addition to OpenUpgrade using a PR. If you're not up to this whole process, what's also a common method for instances without a lot of data is to start over with a fresh Odoo 17 instance and use import/export to get your data across. That's of course also laborious but in some cases it can be a good option.
by Tom Blauwendraat - 11:11 - 18 Oct 2024 -
Re: Preparing for Odoo 18
Hi,Having done more upgrades/migrations than I care to remember 15-20 hours is reasonable even if getting someone to do it via enterprise for you. Big complex ones with custom code and/or lots of data involved can be months.You would normally have builds, testing, user training, scheduling to go live, then a final go live, then day 1 support (because in that testing phase no one really tested). A completely smooth upgrade process with zero issues/compromises/decisions using any upgrade method on anything but the simplest system feels like winning the lottery.https://github.com/OCA/OpenUpgrade/issues/4124 is the issue that covers off what has been done for v17, and what is an Open PR. Getting used to building with a tool called git-aggregator to pull in all those Open PR's and run and test them can be useful and makes things a lot quicker to test.In any case, version 16 is a good version.On Fri, Oct 18, 2024 at 3:02 PM Jacob Christ <notifications@odoo-community.org> wrote:Stéphane et al,I just joined the OCA a few days ago.My background (sorry for the long introduction, you can skip to the TL;DR if you are busy):I'm a software/electrictronics engineer and run my own little company and teach an embedded electronics class once a year at a local junior college. A company I worked for tried to implement Odoo 2 years ago but failed. I had never heard of Odoo but I still had a bad taste in my mouth from a recent SAP experience and I was intrigued. A little research and I discovered that it was open source* and decided to try to install it. It took me about 16 hours to figure out how to get Odoo14 installed. I discovered the web authoring tools were better than my CSS skills and left it up and pointed my domain at the installation. About a year ago I was trying to figure out how to upgrade Odoo and it seemed like my best option was to pay for hosting with Odoo S.A. I tried to make it happen at the time but it didn't work out for me. Two weeks ago I got a quote for upgrading Odoo from 14 to 18 from an integrator and it came back that it should take between 15-20 hours to do. I couldn't believe that it would take this long so I decided to investigate how difficult this was. I quickly learned that I had to go from one version to the next one at a time and that I needed Odoo 14, 15, 16, 17 and 18 installed. Since it had been 2 years since I installed Odoo I had to relearn the process. It took me about 2 hours to get Odoo 14 installed and I documented what I learned. I blew away Odoo 14 and started over. I was able to do the install in 30 minutes. Then probably another 15 mins for each additional version to 18. Next I spent 4 hours trying to figure out how to run OpenUpgrade. Once I figured it out I was able to quickly get from 14 to 15, 15 to 16 (though some pictures resized at 16 in my store and I don't know why) and 16 to 17 but 17 wasn't working. I took another four hours to figure out that the 16 to 17 upgrade is not working yet. In all I spent about 13 hours on the process and decided that the quote I received was high if I figured out how to do upgrades, having never done them before. More importantly I learned alot about Odoo and I feel more confident using it to run my business. I also am willing to help improve Odoo and the scripts.TL;DRI would like to help improve OpenUpgrade but I don't know how to get started. If nothing else, I'm happy to test 16 to 17 upgrades as improvements are made.On Wed, Oct 16, 2024 at 9:33 AM Stéphane Bidoul <notifications@odoo-community.org> wrote:Hi everyone,The 18.0 branches were created 10 days ago, and migrations are going full speed already.Thanks a lot to everyone who helped and continued to help since, this is much appreciated !We need to push an update to the dotfiles, with a new version of pylint-odoo with Odoo 18 support.At the same time, we'll update the JS linters as well as prettier, taking advantage of an improved version of the xml auto formatter.This may make some 18.0 branches or open PR red, so keep an eye on it.I'll push that one of these evenings. In the meantime, PSC can already apply it by running "pipx run copier update --trust --defaults".Please create an issue on https://github.com/OCA/oca-addons-repo-template/ if you encounter problems.-StéphaneOn Thu, Sep 12, 2024 at 3:36 PM Stéphane Bidoul <stephane.bidoul@acsone.eu> wrote:Hi everyone,If history repeats itself, we may have a new Odoo version 3 weeks from now.I created the tracking issue to prepare OCA tooling for Odoo 18, including suggestions for improvements: https://github.com/OCA/maintainer-tools/issues/628Contributions are most welcome, so don't hesitate to chime in if you want to help.Best regards,-Stéphane_______________________________________________
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 Graeme Gellatly - 04:46 - 18 Oct 2024 -
Re: Preparing for Odoo 18
Stéphane et al,I just joined the OCA a few days ago.My background (sorry for the long introduction, you can skip to the TL;DR if you are busy):I'm a software/electrictronics engineer and run my own little company and teach an embedded electronics class once a year at a local junior college. A company I worked for tried to implement Odoo 2 years ago but failed. I had never heard of Odoo but I still had a bad taste in my mouth from a recent SAP experience and I was intrigued. A little research and I discovered that it was open source* and decided to try to install it. It took me about 16 hours to figure out how to get Odoo14 installed. I discovered the web authoring tools were better than my CSS skills and left it up and pointed my domain at the installation. About a year ago I was trying to figure out how to upgrade Odoo and it seemed like my best option was to pay for hosting with Odoo S.A. I tried to make it happen at the time but it didn't work out for me. Two weeks ago I got a quote for upgrading Odoo from 14 to 18 from an integrator and it came back that it should take between 15-20 hours to do. I couldn't believe that it would take this long so I decided to investigate how difficult this was. I quickly learned that I had to go from one version to the next one at a time and that I needed Odoo 14, 15, 16, 17 and 18 installed. Since it had been 2 years since I installed Odoo I had to relearn the process. It took me about 2 hours to get Odoo 14 installed and I documented what I learned. I blew away Odoo 14 and started over. I was able to do the install in 30 minutes. Then probably another 15 mins for each additional version to 18. Next I spent 4 hours trying to figure out how to run OpenUpgrade. Once I figured it out I was able to quickly get from 14 to 15, 15 to 16 (though some pictures resized at 16 in my store and I don't know why) and 16 to 17 but 17 wasn't working. I took another four hours to figure out that the 16 to 17 upgrade is not working yet. In all I spent about 13 hours on the process and decided that the quote I received was high if I figured out how to do upgrades, having never done them before. More importantly I learned alot about Odoo and I feel more confident using it to run my business. I also am willing to help improve Odoo and the scripts.TL;DRI would like to help improve OpenUpgrade but I don't know how to get started. If nothing else, I'm happy to test 16 to 17 upgrades as improvements are made.On Wed, Oct 16, 2024 at 9:33 AM Stéphane Bidoul <notifications@odoo-community.org> wrote:Hi everyone,The 18.0 branches were created 10 days ago, and migrations are going full speed already.Thanks a lot to everyone who helped and continued to help since, this is much appreciated !We need to push an update to the dotfiles, with a new version of pylint-odoo with Odoo 18 support.At the same time, we'll update the JS linters as well as prettier, taking advantage of an improved version of the xml auto formatter.This may make some 18.0 branches or open PR red, so keep an eye on it.I'll push that one of these evenings. In the meantime, PSC can already apply it by running "pipx run copier update --trust --defaults".Please create an issue on https://github.com/OCA/oca-addons-repo-template/ if you encounter problems.-StéphaneOn Thu, Sep 12, 2024 at 3:36 PM Stéphane Bidoul <stephane.bidoul@acsone.eu> wrote:Hi everyone,If history repeats itself, we may have a new Odoo version 3 weeks from now.I created the tracking issue to prepare OCA tooling for Odoo 18, including suggestions for improvements: https://github.com/OCA/maintainer-tools/issues/628Contributions are most welcome, so don't hesitate to chime in if you want to help.Best regards,-Stéphane_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Jacob Christ - 04:01 - 18 Oct 2024
-
