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
-
Survey Module - Limit to Choices
Hello Everyone,I want to prepare one survey with only one question. I need to Limit the Number of Choices in a Multiple-Choice Question.For example: I have 10 sections in a question but the users have to select only 5 sections.Does anyone know of any module or suggestions?Thank you.
by Ramazan Subaşı - 11:01 - 6 Sep 2023 -
Module to read and extract information from PDF's
Hello everyone.
We have a client using Odoo 16 that needs to extract information from a PDF file and update a res.partner record with this info. The PDF contains data like name, address, ZIP Code, VAT number, etc. Does anyone know of any module/python library that could help us with this?
Thank you!--SAMUEL MACIAS OROPEZA
TECH LEAD
smacias@opensourceintegrators.com
P.O. BOX 940, HIGLEY, AZ 85236

by Samuel Macias Oropeza - 10:41 - 6 Sep 2023-
Re: Module to read and extract information from PDF's
Out of the box Odoo is capable to extract the text content from a it.attachment.
You just need to make sure the pdfminer.six Python library is installed.
When hat is the case, the attachment document text is extracted and written in a ir.attachment text field.
You can then do content search or even implement business logic based on it.
Reference:
https://github.com/odoo/odoo/blob/55423cbdeeb1ce35fb257624ea0d04d4be99a943/addons/attachment_indexation/__manifest__.py#L13
Thanks
Daniel
On 06/09/2023 21:42, Samuel Macias Oropeza wrote:
Hello everyone.
We have a client using Odoo 16 that needs to extract information from a PDF file and update a res.partner record with this info. The PDF contains data like name, address, ZIP Code, VAT number, etc. Does anyone know of any module/python library that could help us with this?
Thank you!
--
SAMUEL MACIAS OROPEZA
TECH LEAD
smacias@opensourceintegrators.com
P.O. BOX 940, HIGLEY, AZ 85236

_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
--
DANIEL REIS
MANAGING PARTNERM: +351 919 991 307
E: dreis@OpenSourceIntegrators.com
A: Avenida da República 3000, Estoril Office B, 3º Escr.34, 2649-517 Cascais
by Daniel Reis - 09:26 - 7 Sep 2023 -
Re: Module to read and extract information from PDF's
invoice2data is becoming a bit more unstable we are finding with new maintainers. For years it was fairly static and unchanging and fairly dedicated to Odoo, now it is more generalised. Also for this purpose it would need a bit of customization and it really only suits when you know the document beforehand. We still use it, but wouldn't for a requirement like this.For our recent requirements to integrate with DMS and also enterprise Documents module to auto receive records and attach to correct record in this area, we have gone with what is listed below with a simple custom frontend model to define patterns. This was for a backscanning project of some 1m pages, multipage detection, multi doctype kind of thing. Basically, scan 150 pages on a scanner, it comes in, gets parsed and page breaks made and separate files with a copy of extracted text, then auto attached to correct record.pdftotext works as advertised. tesseract has some dependencies and quirks, which is fine, just needs some error and ambiguous bit handling. To do really well, you would also want opencv etc to do things like contrast and deskew images from scanned files, but we found actually for the overhead, for the documents we were doing it didn't really add any value. We offered to clean up and put this work to OCA but were refused on basis that noone does OCR anymore.Alternatively, you can just push to something like GVision for images. That was our first implementation, it is maybe 1/3 of the code, but harder to test in isolated dev and the results, and while much more comprehensive, for our use case weren't really value for money.import pdftotext
import pytesseract
from pdf2image import convert_from_bytesOn Thu, Sep 7, 2023 at 8:51 AM Enric Tobella Alomar <notifications@odoo-community.org> wrote:You can try with invoice2data extractor.It can extract data from PDF (not only invoice info)El mié, 6 sept 2023 a las 22:42, Samuel Macias Oropeza (<notifications@odoo-community.org>) escribió:Hello everyone.
We have a client using Odoo 16 that needs to extract information from a PDF file and update a res.partner record with this info. The PDF contains data like name, address, ZIP Code, VAT number, etc. Does anyone know of any module/python library that could help us with this?
Thank you!--SAMUEL MACIAS OROPEZA
TECH LEAD
smacias@opensourceintegrators.com
P.O. BOX 940, HIGLEY, AZ 85236

_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
--Enric Tobella AlomarCEO & Founder_______________________________________________
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 - 11:26 - 6 Sep 2023 -
Re: Module to read and extract information from PDF's
You can try with invoice2data extractor.It can extract data from PDF (not only invoice info)El mié, 6 sept 2023 a las 22:42, Samuel Macias Oropeza (<notifications@odoo-community.org>) escribió:Hello everyone.
We have a client using Odoo 16 that needs to extract information from a PDF file and update a res.partner record with this info. The PDF contains data like name, address, ZIP Code, VAT number, etc. Does anyone know of any module/python library that could help us with this?
Thank you!--SAMUEL MACIAS OROPEZA
TECH LEAD
smacias@opensourceintegrators.com
P.O. BOX 940, HIGLEY, AZ 85236

_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
--Enric Tobella AlomarCEO & Founder
by Enric Tobella Alomar - 10:51 - 6 Sep 2023
-
-
Module to restrict access/visibility of accounts/journals
Hello everyone
I'm reaching out to you regarding a customer's requirement. We have a client in v16 that needs to restrict access/visibility of accounts and journals depending on the user groups (Account Receivable, Account Payable, Treasury, etc.). The main objective is to segregate the roles of the users to reduce the risk of fraud. Do you know of any module that could help us with this?
Thank you!--SAMUEL MACIAS OROPEZA
TECH LEAD
smacias@opensourceintegrators.com
P.O. BOX 940, HIGLEY, AZ 85236

by Samuel Macias Oropeza - 08:55 - 6 Sep 2023-
Re: Module to restrict access/visibility of accounts/journals
I think you can just add a record rule on the journal entries, to prevent some users to see journal entries they belong to a specitic journal (e.g. payroll)No need for a dedicated app..Regards,DominiqueOn Thu, 7 Sept 2023 at 02:57, Samuel Macias Oropeza <notifications@odoo-community.org> wrote:Hello everyone
I'm reaching out to you regarding a customer's requirement. We have a client in v16 that needs to restrict access/visibility of accounts and journals depending on the user groups (Account Receivable, Account Payable, Treasury, etc.). The main objective is to segregate the roles of the users to reduce the risk of fraud. Do you know of any module that could help us with this?
Thank you!--SAMUEL MACIAS OROPEZA
TECH LEAD
smacias@opensourceintegrators.com
P.O. BOX 940, HIGLEY, AZ 85236

_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by dominique.k - 12:35 - 7 Sep 2023 -
Re: Module to restrict access/visibility of accounts/journals
Just in case it helps, we have this ugly module that comes "ugly" from v7 till todayIt allows only to restrict visibility and usage of journals (not accounts)I'm not proud of it but many of ours customers use it.El mié, 6 sept 2023 a la(s) 15:57, Samuel Macias Oropeza (notifications@odoo-community.org) escribió:Hello everyone
I'm reaching out to you regarding a customer's requirement. We have a client in v16 that needs to restrict access/visibility of accounts and journals depending on the user groups (Account Receivable, Account Payable, Treasury, etc.). The main objective is to segregate the roles of the users to reduce the risk of fraud. Do you know of any module that could help us with this?
Thank you!--SAMUEL MACIAS OROPEZA
TECH LEAD
smacias@opensourceintegrators.com
P.O. BOX 940, HIGLEY, AZ 85236

_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Juan José Scarafía - 11:06 - 6 Sep 2023
-
-
Proposing myself as Banking PSC
Hi all,I'd like to become a member of Banking maintainers: https://github.com/orgs/OCA/teams/banking-maintainers, I'm already in the Accounting maintainers PSC and I think it's a related subject.I don't have many contributions to the banking area, so it doesn't matter if this proposal is not accepted 😊, anyway I'd like to fix something.My PRs on OCA repositories: https://github.com/pulls?q=is%3Apr+author%3Asergiocorato+user%3AOCA+Thanks!Sergio Corato
by Sergio Corato - 09:55 - 6 Sep 2023-
Re: Proposing myself as Banking PSC
+1On Wed, Sep 6, 2023, 3:57 AM Sergio Corato <notifications@odoo-community.org> wrote:Hi all,I'd like to become a member of Banking maintainers: https://github.com/orgs/OCA/teams/banking-maintainers, I'm already in the Accounting maintainers PSC and I think it's a related subject.I don't have many contributions to the banking area, so it doesn't matter if this proposal is not accepted 😊, anyway I'd like to fix something.My PRs on OCA repositories: https://github.com/pulls?q=is%3Apr+author%3Asergiocorato+user%3AOCA+Thanks!Sergio Corato_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Leonardo J. Caballero G. - 03:21 - 7 Sep 2023 -
Re: Proposing myself as Banking PSC
+1On Wed, Sep 6, 2023 at 9:57 AM Sergio Corato <notifications@odoo-community.org> wrote:Hi all,I'd like to become a member of Banking maintainers: https://github.com/orgs/OCA/teams/banking-maintainers, I'm already in the Accounting maintainers PSC and I think it's a related subject.I don't have many contributions to the banking area, so it doesn't matter if this proposal is not accepted 😊, anyway I'd like to fix something.My PRs on OCA repositories: https://github.com/pulls?q=is%3Apr+author%3Asergiocorato+user%3AOCA+Thanks!Sergio Corato_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
--Alex Comba
Tel (CH): +41 91 210 23 40
by Alex Comba. - 09:06 - 7 Sep 2023 -
Re: Proposing myself as Banking PSC
+1
6 sep. 2023 17:52:26 Stefano Consolaro <notifications@odoo-community.org>:
+1
Da "Sergio Corato" notifications@odoo-community.orgA "Contributors" contributors@odoo-community.orgCcData Wed, 06 Sep 2023 07:57:03 -0000Oggetto Proposing myself as Banking PSC
Hi all,
I'd like to become a member of Banking maintainers: https://github.com/orgs/OCA/teams/banking-maintainers, I'm already in the Accounting maintainers PSC and I think it's a related subject.
I don't have many contributions to the banking area, so it doesn't matter if this proposal is not accepted 😊, anyway I'd like to fix something.
My PRs on OCA repositories: https://github.com/pulls?q=is%3Apr+author%3Asergiocorato+user%3AOCA+
Thanks!
Sergio Corato
_______________________________________________
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
www.mymage.it_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Tom Blauwendraat - 10:00 - 6 Sep 2023 -
Re:Proposing myself as Banking PSC
+1Da "Sergio Corato" notifications@odoo-community.orgA "Contributors" contributors@odoo-community.orgCcData Wed, 06 Sep 2023 07:57:03 -0000Oggetto Proposing myself as Banking PSC
Hi all,I'd like to become a member of Banking maintainers: https://github.com/orgs/OCA/teams/banking-maintainers, I'm already in the Accounting maintainers PSC and I think it's a related subject.I don't have many contributions to the banking area, so it doesn't matter if this proposal is not accepted 😊, anyway I'd like to fix something.My PRs on OCA repositories: https://github.com/pulls?q=is%3Apr+author%3Asergiocorato+user%3AOCA+Thanks!Sergio Corato_______________________________________________
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 - 05:51 - 6 Sep 2023 -
Re: Proposing myself as Banking PSC
+1El mié, 6 sept 2023 a la(s) 02:57, Sergio Corato (notifications@odoo-community.org) escribió:Hi all,I'd like to become a member of Banking maintainers: https://github.com/orgs/OCA/teams/banking-maintainers, I'm already in the Accounting maintainers PSC and I think it's a related subject.I don't have many contributions to the banking area, so it doesn't matter if this proposal is not accepted 😊, anyway I'd like to fix something.My PRs on OCA repositories: https://github.com/pulls?q=is%3Apr+author%3Asergiocorato+user%3AOCA+Thanks!Sergio Corato_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Luis Romero - 05:01 - 6 Sep 2023
-
-
RE: Higher ROI at SEMA Show 2023
Hi,
Did you receive my email below?
Appreciate your response.
Thanks ,
Katie Fisher
From: Katie Fisher [mailto:katiefisher.max@gmail.com]
Sent: 08 August 2023 12:33
To: 'contributors@odoo-community.org'
Subject: Higher ROI at SEMA Show 2023Hi,
Would you be interested in acquiring Specialty Equipment Market Association Exhibition- SEMA Show Attendees List 2023?
Attendees:-
ü Warehouse Distributors
ü Chain Stores
ü Mass Merch
ü Jobbers/Retailers
ü Service And Repair Specialists
ü Dealers
ü Rebuilders
ü Off-Road Specialists and many more….
List Includes: Company Name, Contact Name, Verified E-mail id’s, Tel.no, URL/Website, Title/Designation.
If Yes, I am happy to share counts and cost details.
Thanks,
Katie Fisher
by "Katie Fisher" <katiefisher.max@gmail.com> - 05:31 - 5 Sep 2023 -
Board: how is the best way to ask for set the default branch in a repository?
Hello! Good morging!
I would like to know how to ask for setting 16.0 the default branch for all repos or how yo ask one by one
Thank you!
---
Rafael Blasco
Moduon
by Rafael Blasco (Moduon) - 10:11 - 4 Sep 2023-
Re: Board: how is the best way to ask for set the default branch in a repository?
Currently, it's the PSC *representative* who has the admin rights on the repo.-sbiOn Mon, Sep 4, 2023 at 11:47 AM jairo <notifications@odoo-community.org> wrote:El lun, 04-09-2023 a las 09:16 +0000, Daniel Reis escribió:I don't think there is a general policy here, and the decision of per repo's PSC.PSC don't have permission to change the default branch AFAIK._______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Stéphane Bidoul - 11:51 - 4 Sep 2023 -
Re: Board: how is the best way to ask for set the default branch in a repository?
El lun, 04-09-2023 a las 09:16 +0000, Daniel Reis escribió:I don't think there is a general policy here, and the decision of per repo's PSC.PSC don't have permission to change the default branch AFAIK.
by Jairo Llopis - 11:45 - 4 Sep 2023 -
Re: Board: how is the best way to ask for set the default branch in a repository?
Hello Rafael,
I don't think there is a general policy here, and the decision of per repo's PSC.
Right now, I would open an Issue asking for the change, and yes, this would per repo.
Personally, I would welcome a general policy.
The one I would suggest id to set as default branch the latest one with at least one module available to install.
/Daniel
On 04/09/2023 09:12, Rafael Blasco wrote:
Hello! Good morging!
I would like to know how to ask for setting 16.0 the default branch for all repos or how yo ask one by one
Thank you!
---
Rafael Blasco
Moduon
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
--
DANIEL REIS
MANAGING PARTNERM: +351 919 991 307
E: dreis@OpenSourceIntegrators.com
A: Avenida da República 3000, Estoril Office B, 3º Escr.34, 2649-517 Cascais
by Daniel Reis - 11:15 - 4 Sep 2023
-
-
Please, review my PR
Hi all!Recently, github actions bot marked my PR (that is migration of addon to version 15) as stale and tells me that it will be closed in the next 30 days.So, please, anybody, review this PR (https://github.com/OCA/server-auth/pull/488).This is migration of users_ldap_mail module to version 15. This module has worked fine for our client for the last few months.PS: What is the correct way to ask for review for contributions to avoid them becoming stale?With regards,Dmytro Katyukha
by dmytro.katyukha - 03:55 - 4 Sep 2023-
Re: Please, review my PR
Hi, Dmytro,The way to avoid this is that you review other PRs, and ask in exchange to review yours. Quid pro quo!Regards.
by Pedro M. Baeza - 08:11 - 4 Sep 2023
-
-
README generator update
Hi everyone,Today I deployed a new version of the README.rst generator in the OCA GitHub bot.It includes several important improvements:- Support for a CONTEXT fragment to document the use case and/or when to use the addon. 🙏
- Support for markdown fragments (more on that soon). ✨
- "Try me" links to runboat instead of runbot.
- Various minor other improvements contributed over the last 3-4 years.
The reason it was not deployed sooner is that every tiny change in the generated README.rst did cause a full CI run and publication to PyPI for all our 10k+ addons across branches. Now the generated document contains a digest of the source content and it is re-generated only when the fragments or manifests change and not when the generator changes.A full rebuild is in progress right now. Please be patient until the CI queue processes everything.Best regards,-sbi
by Stéphane Bidoul - 02:06 - 3 Sep 2023-
Re: README generator update
El dom, 03-09-2023 a las 12:07 +0000, Stéphane Bidoul escribió:A full rebuild is in progress right now. Please be patient until the CI queue processes everything.There's still the functional issue we're having on reviews, which is fixed with https://github.com/OCA/oca-addons-repo-template/pull/190. I updated that PR to fetch the latest commit from maintainer-tools. After this mass rebuild, we should be finally able to merge it, right?Thanks for all the work involved!
by Jairo Llopis - 11:51 - 4 Sep 2023 -
-
Re: README generator update
Great! ThanksLe dim. 3 sept. 2023, 14:07, Stéphane Bidoul <notifications@odoo-community.org> a écrit :Hi everyone,Today I deployed a new version of the README.rst generator in the OCA GitHub bot.It includes several important improvements:- Support for a CONTEXT fragment to document the use case and/or when to use the addon. 🙏
- Support for markdown fragments (more on that soon). ✨
- "Try me" links to runboat instead of runbot.
- Various minor other improvements contributed over the last 3-4 years.
The reason it was not deployed sooner is that every tiny change in the generated README.rst did cause a full CI run and publication to PyPI for all our 10k+ addons across branches. Now the generated document contains a digest of the source content and it is re-generated only when the fragments or manifests change and not when the generator changes.A full rebuild is in progress right now. Please be patient until the CI queue processes everything.Best regards,-sbi_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Denis Roussel. - 02:51 - 3 Sep 2023 - Support for a CONTEXT fragment to document the use case and/or when to use the addon. 🙏
-
Re: README generator update
Thanks for the great work!!On Sun, 3 Sept 2023, 14:07 Stéphane Bidoul, <notifications@odoo-community.org> wrote:Hi everyone,Today I deployed a new version of the README.rst generator in the OCA GitHub bot.It includes several important improvements:- Support for a CONTEXT fragment to document the use case and/or when to use the addon. 🙏
- Support for markdown fragments (more on that soon). ✨
- "Try me" links to runboat instead of runbot.
- Various minor other improvements contributed over the last 3-4 years.
The reason it was not deployed sooner is that every tiny change in the generated README.rst did cause a full CI run and publication to PyPI for all our 10k+ addons across branches. Now the generated document contains a digest of the source content and it is re-generated only when the fragments or manifests change and not when the generator changes.A full rebuild is in progress right now. Please be patient until the CI queue processes everything.Best regards,-sbi_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Enric Tobella Alomar - 02:11 - 3 Sep 2023 - Support for a CONTEXT fragment to document the use case and/or when to use the addon. 🙏
- Support for a CONTEXT fragment to document the use case and/or when to use the addon. 🙏
-
Anyone from Ireland: How do you configure delivery methods?
Hi OCA, I'm looking for anyone from Ireland (or who is familiar with Irish postal codes, Eircode) who can add some input on this PR: https://github.com/OCA/OpenUpgrade/pull/4112 The specific question is how you configure the range of postal codes for a delivery method using Odoo 15 or lower. Odoo 16 may improve this configuration for the Irish (and for many other people, too), but it's looking like it will be really difficult to migrate this data cleanly. Any other input is also welcome. Thank you and with kindness, Carmen
by Carmen Bianca Bakker - 12:21 - 31 Aug 2023 -
Odoo POS printer, compitability issues. iPad connection with Epson TM-M30II Thermal Printer.
Hello All,
In odoo version 16 currently, we wanted to connect POS with the printer and barcode scanner.
Hardware details:
Ipad: version 16.6, 6th generation.
Printer: Epson TM-M30II Thermal (ConnectivityInterface: Bluetooth 3.0 EDR, LAN, WiFi)
Barcode: Xenon ultra 1960 Scanner
Is this printer and barcode compatible with IoT Box and iPad?
(FYI: We don't have an IoT Box as of now, have a normal adapter/connector to connect the iPad and wired barcode. For the printer we have a Wi-Fi option.)
Facing the issue
In Chrome, I tried "Allow invalid certificates for resources loaded from localhost." but nothing worked.
Thank you.
Nikita
by "Nikita chhatbar" <nikita.chhatbar@brainvire.com> - 11:56 - 31 Aug 2023-
Re: Odoo POS printer, compitability issues. iPad connection with Epson TM-M30II Thermal Printer.
As stated David, you can use the epson natively with Odoo using the ip address. The usb barcode scanner can be directly plugged on the tablet.For a customer experience, except in some cases (flying POS), I always avoid using a tablet for a POS station. I always go for a touchscreen pc, that also ease the remote support after the go live.Le jeu. 31 août 2023 à 13:02, David Vidal <notifications@odoo-community.org> a écrit :You've got the core pos_epson_printer that can work directly against your printer if it supports ePOS. More info: https://www.odoo.com/documentation/16.0/applications/sales/point_of_sale/configuration/epos_ssc.htmlEl jue, 31 ago 2023 a las 11:57, Nikita chhatbar (<notifications@odoo-community.org>) escribió:Hello All,
In odoo version 16 currently, we wanted to connect POS with the printer and barcode scanner.
Hardware details:
Ipad: version 16.6, 6th generation.
Printer: Epson TM-M30II Thermal (ConnectivityInterface: Bluetooth 3.0 EDR, LAN, WiFi)
Barcode: Xenon ultra 1960 Scanner
Is this printer and barcode compatible with IoT Box and iPad?
(FYI: We don't have an IoT Box as of now, have a normal adapter/connector to connect the iPad and wired barcode. For the printer we have a Wi-Fi option.)
Facing the issue
In Chrome, I tried "Allow invalid certificates for resources loaded from localhost." but nothing worked.
Thank you.
Nikita_______________________________________________
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 Houssine BAKKALI - 03:37 - 31 Aug 2023 -
Re: Odoo POS printer, compitability issues. iPad connection with Epson TM-M30II Thermal Printer.
You've got the core pos_epson_printer that can work directly against your printer if it supports ePOS. More info: https://www.odoo.com/documentation/16.0/applications/sales/point_of_sale/configuration/epos_ssc.htmlEl jue, 31 ago 2023 a las 11:57, Nikita chhatbar (<notifications@odoo-community.org>) escribió:Hello All,
In odoo version 16 currently, we wanted to connect POS with the printer and barcode scanner.
Hardware details:
Ipad: version 16.6, 6th generation.
Printer: Epson TM-M30II Thermal (ConnectivityInterface: Bluetooth 3.0 EDR, LAN, WiFi)
Barcode: Xenon ultra 1960 Scanner
Is this printer and barcode compatible with IoT Box and iPad?
(FYI: We don't have an IoT Box as of now, have a normal adapter/connector to connect the iPad and wired barcode. For the printer we have a Wi-Fi option.)
Facing the issue
In Chrome, I tried "Allow invalid certificates for resources loaded from localhost." but nothing worked.
Thank you.
Nikita_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by David Vidal - 01:02 - 31 Aug 2023
-
-
Odoo pos weighing scale without IOT box
Hello there,Need your help, I want to setup weighing scale without IOT box. How that we can do?Roshan
by roshandave15@gmail.com - 09:41 - 29 Aug 2023-
Re: [SPAM] Re: Odoo pos weighing scale without IOT box
+1 on using pywebdriver. We use that quite frequently as well and that is pretty much serving all you need there.
Best Frederik
Am 31.08.23 um 09:27 schrieb Virginie Dewulf:
Hello,We connected a pos weighing scale at several shops for our customers.First used the posboxless but then got stuck in an old commit in version 12 because Odoo removed the hw_scale support in a new non major update.So we decided to use something else that could run without the posboxless and now we use the pywebdriver.Coop IT Easy knows well this tool for the scale and we can help if needed.Have a nice day,--
Virginie0477/64.17.20Info : 2j/semaine sont dédiés à Chaf et 3j/semaine sont dédiés à Coop IT Easy
-----Original Message-----From: David Vidal <notifications@odoo-community.org>Reply-To: Odoo Community Association (OCA) Contributors <contributors@odoo-community.org>To: Contributors <contributors@odoo-community.org>Subject: [SPAM] Re: Odoo pos weighing scale without IOT boxDate: Wed, 30 Aug 2023 05:47:22 -0000
You can use pywebdriver so you can connect your devices directly to the computer using the PoS: https://github.com/pywebdriver/pywebdriver
El mar, 29 ago 2023 a las 21:42, Roshan Dave (<notifications@odoo-community.org>) escribió:
Hello there,
Need your help, I want to setup weighing scale without IOT box. How that we can do?
Roshan_______________________________________________
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
-- 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. - 09:35 - 31 Aug 2023 -
Re: [SPAM] Re: Odoo pos weighing scale without IOT box
Hello,We connected a pos weighing scale at several shops for our customers.First used the posboxless but then got stuck in an old commit in version 12 because Odoo removed the hw_scale support in a new non major update.So we decided to use something else that could run without the posboxless and now we use the pywebdriver.Coop IT Easy knows well this tool for the scale and we can help if needed.Have a nice day,--
Virginie0477/64.17.20Info : 2j/semaine sont dédiés à Chaf et 3j/semaine sont dédiés à Coop IT Easy-----Original Message-----From: David Vidal <notifications@odoo-community.org>Reply-To: Odoo Community Association (OCA) Contributors <contributors@odoo-community.org>To: Contributors <contributors@odoo-community.org>Subject: [SPAM] Re: Odoo pos weighing scale without IOT boxDate: Wed, 30 Aug 2023 05:47:22 -0000You can use pywebdriver so you can connect your devices directly to the computer using the PoS: https://github.com/pywebdriver/pywebdriverEl mar, 29 ago 2023 a las 21:42, Roshan Dave (<notifications@odoo-community.org>) escribió:Hello there,Need your help, I want to setup weighing scale without IOT box. How that we can do?Roshan_______________________________________________
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. - 09:25 - 31 Aug 2023 -
Re: Odoo pos weighing scale without IOT box
You can use pywebdriver so you can connect your devices directly to the computer using the PoS: https://github.com/pywebdriver/pywebdriverEl mar, 29 ago 2023 a las 21:42, Roshan Dave (<notifications@odoo-community.org>) escribió:Hello there,Need your help, I want to setup weighing scale without IOT box. How that we can do?Roshan_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by David Vidal - 07:46 - 30 Aug 2023 -
Re: Odoo pos weighing scale without IOT box
Hello,You might want to have a look at the "posboxless" section of http://www.odoo.com/documentation/user/10.0/point_of_sale/overview/setup.htmlAs explained, "If you are running your Point of Sale on a Debian-based Linux distribution, you do not need the POSBox as you can run its software locally."Need your help, I want to setup weighing scale without IOT box. How that we can do?Roshan_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Vincent Van Rossem - 10:01 - 29 Aug 2023
-
-
Mail history in Odoo via Outlook/Gmail API for CRM purposes
Dear OCA friends, One of my customers insists on having all the emails exchanged with a customer/prospect in Odoo, which is a standard feature of all serious CRMs. In Odoo, this is a native feature : you should send your emails from Odoo and the answer will come back to Odoo, so that you will have the full history of emails in the chatter. But, in real life, nobody wants to use Odoo as its mailbox. Salesmen want to use their Outlook/Gmail/... to send emails to customers. And the mail stack of Odoo is such a nightmare, that "the less I use it the better" ! I made a little research, and it seems that, nowadays, CRM software (Hubspot for example) use the APIs of Gmail and Outlook 365 to get the emails of the employees and copy them to the CRM. In this presentation of the Outlook 365 API [1], in the Youtube video at the top of the page, they talk precisely about using the API for this specific CRM scenario (start watching at 1:00 minute). Are you aware of any opensource Odoo module using the Gmail API [2] and/or Outlook 365 API [1] to copy the emails sent/received to a customer/prospect in the chatter of the partner/lead in Odoo ? So far, I haven't found any... If not, what you point of view on such a feature ? Would you be interested to work on a prototype with me ? [1] https://learn.microsoft.com/fr-fr/graph/outlook-mail-concept-overview [2] https://developers.google.com/gmail/api/guides?hl=en -- Alexis de Lattre Akretion France - 27 rue Henri Rolland - 69100 Villeurbanne - France Mail : alexis.delattre@akretion.com Mobile : +33 6 99 08 92 45
by Alexis de Lattre - 07:00 - 29 Aug 2023-
Re: Mail history in Odoo via Outlook/Gmail API for CRM purposes
Hello,
I'm familiar with Hubspot and it also uses a plugin for the GMail web app.
For an email to be tracked by Hubspot, I need to send it through the GMail web app, with the plugin installed and connected to your account.
If I send the email using Thunderbird or some other email client, it won't be tracked.
So what Hubspot is doing is not very different from the Odoo GMail/Outlook plugin..
/Daniel
On 30/08/2023 09:27, Tom Blauwendraat wrote:
Hey Rafael,
this looks like something else though? This seems to be about using plugins in Outlook, to do actions in Odoo; not for copying mails to Odoo.
--
DANIEL REIS
MANAGING PARTNERM: +351 919 991 307
E: dreis@OpenSourceIntegrators.com
A: Avenida da República 3000, Estoril Office B, 3º Escr.34, 2649-517 Cascais
by Daniel Reis - 05:00 - 5 Sep 2023 -
Re: Mail history in Odoo via Outlook/Gmail API for CRM purposes
Hi,that sounds like an interesting approach. But how exactly should the (copied) emails be assigned to the Odoo Records?AFAIK some or even many (?) email servers or email clients remove headers when replying. Unfortunately also the headers with Odoo references.Best RegardsChristian Zöllner
SoftwareentwicklerTel.: +49 3831 44557-0
E-Mail: c.zoellner@intero-technologies.deWebsite: www.intero-technologies.deIntero Technologies GmbHHeinrich-Heine-Ring 7618435 Stralsund





Weitere Standorte der Intero Technologies GmbH Bessemerstraße 8212103 BerlinSimon-von-Utrecht-Straße 120359 HamburgKleiststraße 2365187 WiesbadenCharles-Darwin-Ring 418059 RostockSperberweg 28
50829 KölnVon-Harnack-Straße 27-28
06712 Zeitz
Geschäftsführer: Frank Löffler, Lars Lifson USt-Id: DE 251251697, AG Stralsund HRB 7076 Alle Informationen zum Datenschutz gem. Art. 13 finden Sie hier. Auf Wunsch senden wir Ihnen diese Informationen gerne auch per PDF oder in gedruckter Form zu. Von: "Alexis de Lattre" <notifications@odoo-community.org>
An: "Odoo Community Association, (OCA) Contributors" <contributors@odoo-community.org>
Gesendet: Dienstag, 29. August 2023 19:01:57
Betreff: Mail history in Odoo via Outlook/Gmail API for CRM purposesDear OCA friends, One of my customers insists on having all the emails exchanged with a customer/prospect in Odoo, which is a standard feature of all serious CRMs. In Odoo, this is a native feature : you should send your emails from Odoo and the answer will come back to Odoo, so that you will have the full history of emails in the chatter. But, in real life, nobody wants to use Odoo as its mailbox. Salesmen want to use their Outlook/Gmail/... to send emails to customers. And the mail stack of Odoo is such a nightmare, that "the less I use it the better" ! I made a little research, and it seems that, nowadays, CRM software (Hubspot for example) use the APIs of Gmail and Outlook 365 to get the emails of the employees and copy them to the CRM. In this presentation of the Outlook 365 API [1], in the Youtube video at the top of the page, they talk precisely about using the API for this specific CRM scenario (start watching at 1:00 minute). Are you aware of any opensource Odoo module using the Gmail API [2] and/or Outlook 365 API [1] to copy the emails sent/received to a customer/prospect in the chatter of the partner/lead in Odoo ? So far, I haven't found any... If not, what you point of view on such a feature ? Would you be interested to work on a prototype with me ? [1] https://learn.microsoft.com/fr-fr/graph/outlook-mail-concept-overview [2] https://developers.google.com/gmail/api/guides?hl=en -- Alexis de Lattre Akretion France - 27 rue Henri Rolland - 69100 Villeurbanne - France Mail : alexis.delattre@akretion.com Mobile : +33 6 99 08 92 45_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Christian Zöllner - 04:10 - 5 Sep 2023 -
Re: Mail history in Odoo via Outlook/Gmail API for CRM purposes
Hi Tom,
with the plugin you can add emails to existing records.
If there is a record in crm or Projecttasks, you can add the mail to the record by hitting the envelope in the proper section. If there is no record, you can create one by using the „+“.
No autosynch but manual adding is provided.
All the best
Nils
--
NICO SOLUTIONS - ENGINEERING & IT
Inhaber (Owner): Nils Coenen
Dr.-Ruckert-Str. 1G
28865 Lilienthal
Deutschland (Germany)
Ust.-Idnr. (VAT-ID): DE341437044
Kontakt (Contact):
Tel.: +49 (0)4298-4667492
Mail: info@nico-solutions.de
Web: https://nico-solutions.deDiese Mitteilung ist ausschließlich für den beabsichtigten Empfänger bestimmt. Sie kann Betriebs- oder Geschäftsgeheimnisse oder sonstige vertrauliche Informationen enthalten. Jede(r) unberechtigte Gebrauch, Kopie, Weitergabe oder Veröffentlichung ist untersagt. Sollten Sie diese E-Mail irrtümlich erhalten haben, benachrichtigen Sie uns bitte sofort durch eine Antwortmail und löschen Sie diese Nachricht nebst etwaigen Anlagen und einschließlich aller angefertigten Kopien von Ihrem System.
This message is for the sole use of the intended recipient(s) and may contain trade secrets or other confidential and privileged information. Any unauthorized review, use, copy, disclosure or distribution is prohibited. If you are not the intended recipient, please inform us immediately by reply e-mail and delete this message including any attachment or copies thereof from your system.Von: Tom Blauwendraat <notifications@odoo-community.org>
Antworten an: "Odoo Community Association (OCA) Contributors" <contributors@odoo-community.org>
Datum: Mittwoch, 30. August 2023 um 10:27
An: Contributors <contributors@odoo-community.org>
Betreff: Re: Mail history in Odoo via Outlook/Gmail API for CRM purposesHey Rafael,
this looks like something else though? This seems to be about using plugins in Outlook, to do actions in Odoo; not for copying mails to Odoo.
On 8/29/23 22:37, Rafael Blasco wrote:
Hello Alexis,
We use it since v14 natively both, Gmail an Office365
https://www.odoo.com/documentation/16.0/applications/productivity/mail_plugins.html
https://github.com/odoo/odoo/tree/16.0/addons/mail_plugin
https://github.com/odoo/odoo/tree/16.0/addons/crm_mail_plugin
https://github.com/odoo/odoo/tree/16.0/addons/project_mail_plugin
Maybe some features are Enterprise but base is CE
Regards,
Rafael Blasco
Moduon Team
De: Alexis de Lattre <notifications@odoo-community.org>
Enviado el: martes, 29 de agosto de 2023 19:02
Para: Contributors <contributors@odoo-community.org>
Asunto: Mail history in Odoo via Outlook/Gmail API for CRM purposesDear OCA friends,
One of my customers insists on having all the emails exchanged with a
customer/prospect in Odoo, which is a standard feature of all serious
CRMs. In Odoo, this is a native feature : you should send your emails
from Odoo and the answer will come back to Odoo, so that you will have
the full history of emails in the chatter. But, in real life, nobody
wants to use Odoo as its mailbox. Salesmen want to use their
Outlook/Gmail/... to send emails to customers. And the mail stack of
Odoo is such a nightmare, that "the less I use it the better" !
I made a little research, and it seems that, nowadays, CRM software
(Hubspot for example) use the APIs of Gmail and Outlook 365 to get the
emails of the employees and copy them to the CRM.
In this presentation of the Outlook 365 API [1], in the Youtube video
at the top of the page, they talk precisely about using the API for
this specific CRM scenario (start watching at 1:00 minute).
Are you aware of any opensource Odoo module using the Gmail API [2]
and/or Outlook 365 API [1] to copy the emails sent/received to a
customer/prospect in the chatter of the partner/lead in Odoo ? So far,
I haven't found any...
If not, what you point of view on such a feature ? Would you be
interested to work on a prototype with me ?
[1] https://learn.microsoft.com/fr-fr/graph/outlook-mail-concept-overview
[2] https://developers.google.com/gmail/api/guides?hl=en
--
Alexis de Lattre
Akretion France - 27 rue Henri Rolland - 69100 Villeurbanne - France
Mail : alexis.delattre@akretion.com
Mobile : +33 6 99 08 92 45
_______________________________________________
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 Nils Coenen - 10:45 - 30 Aug 2023 -
Re: Mail history in Odoo via Outlook/Gmail API for CRM purposes
Hey Rafael,
this looks like something else though? This seems to be about using plugins in Outlook, to do actions in Odoo; not for copying mails to Odoo.
On 8/29/23 22:37, Rafael Blasco wrote:
Hello Alexis,
We use it since v14 natively both, Gmail an Office365
https://www.odoo.com/documentation/16.0/applications/productivity/mail_plugins.html
https://github.com/odoo/odoo/tree/16.0/addons/mail_plugin
https://github.com/odoo/odoo/tree/16.0/addons/crm_mail_plugin
https://github.com/odoo/odoo/tree/16.0/addons/project_mail_plugin
Maybe some features are Enterprise but base is CE
Regards,
Rafael Blasco
Moduon Team
De: Alexis de Lattre <notifications@odoo-community.org>
Enviado el: martes, 29 de agosto de 2023 19:02
Para: Contributors <contributors@odoo-community.org>
Asunto: Mail history in Odoo via Outlook/Gmail API for CRM purposesDear OCA friends,
One of my customers insists on having all the emails exchanged with a
customer/prospect in Odoo, which is a standard feature of all serious
CRMs. In Odoo, this is a native feature : you should send your emails
from Odoo and the answer will come back to Odoo, so that you will have
the full history of emails in the chatter. But, in real life, nobody
wants to use Odoo as its mailbox. Salesmen want to use their
Outlook/Gmail/... to send emails to customers. And the mail stack of
Odoo is such a nightmare, that "the less I use it the better" !
I made a little research, and it seems that, nowadays, CRM software
(Hubspot for example) use the APIs of Gmail and Outlook 365 to get the
emails of the employees and copy them to the CRM.
In this presentation of the Outlook 365 API [1], in the Youtube video
at the top of the page, they talk precisely about using the API for
this specific CRM scenario (start watching at 1:00 minute).
Are you aware of any opensource Odoo module using the Gmail API [2]
and/or Outlook 365 API [1] to copy the emails sent/received to a
customer/prospect in the chatter of the partner/lead in Odoo ? So far,
I haven't found any...
If not, what you point of view on such a feature ? Would you be
interested to work on a prototype with me ?
[1] https://learn.microsoft.com/fr-fr/graph/outlook-mail-concept-overview
[2] https://developers.google.com/gmail/api/guides?hl=en
--
Alexis de Lattre
Akretion France - 27 rue Henri Rolland - 69100 Villeurbanne - France
Mail : alexis.delattre@akretion.com
Mobile : +33 6 99 08 92 45
_______________________________________________
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 Tom Blauwendraat - 10:26 - 30 Aug 2023 -
RE: Mail history in Odoo via Outlook/Gmail API for CRM purposes
Hello Alexis,
We use it since v14 natively both, Gmail an Office365
https://www.odoo.com/documentation/16.0/applications/productivity/mail_plugins.html
https://github.com/odoo/odoo/tree/16.0/addons/mail_plugin
https://github.com/odoo/odoo/tree/16.0/addons/crm_mail_plugin
https://github.com/odoo/odoo/tree/16.0/addons/project_mail_plugin
Maybe some features are Enterprise but base is CE
Regards,
Rafael Blasco
Moduon Team
De: Alexis de Lattre <notifications@odoo-community.org>
Enviado el: martes, 29 de agosto de 2023 19:02
Para: Contributors <contributors@odoo-community.org>
Asunto: Mail history in Odoo via Outlook/Gmail API for CRM purposesDear OCA friends,
One of my customers insists on having all the emails exchanged with a
customer/prospect in Odoo, which is a standard feature of all serious
CRMs. In Odoo, this is a native feature : you should send your emails
from Odoo and the answer will come back to Odoo, so that you will have
the full history of emails in the chatter. But, in real life, nobody
wants to use Odoo as its mailbox. Salesmen want to use their
Outlook/Gmail/... to send emails to customers. And the mail stack of
Odoo is such a nightmare, that "the less I use it the better" !
I made a little research, and it seems that, nowadays, CRM software
(Hubspot for example) use the APIs of Gmail and Outlook 365 to get the
emails of the employees and copy them to the CRM.
In this presentation of the Outlook 365 API [1], in the Youtube video
at the top of the page, they talk precisely about using the API for
this specific CRM scenario (start watching at 1:00 minute).
Are you aware of any opensource Odoo module using the Gmail API [2]
and/or Outlook 365 API [1] to copy the emails sent/received to a
customer/prospect in the chatter of the partner/lead in Odoo ? So far,
I haven't found any...
If not, what you point of view on such a feature ? Would you be
interested to work on a prototype with me ?
[1] https://learn.microsoft.com/fr-fr/graph/outlook-mail-concept-overview
[2] https://developers.google.com/gmail/api/guides?hl=en
--
Alexis de Lattre
Akretion France - 27 rue Henri Rolland - 69100 Villeurbanne - France
Mail : alexis.delattre@akretion.com
Mobile : +33 6 99 08 92 45
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Rafael Blasco (Moduon) - 10:36 - 29 Aug 2023
-
-
Best practice add optional="show" when adding fields in tree views
Hello Contributors!
I love to have your opinions here.
I would recommend to PSC to review when migrating modules to ask authors for adding -> optional="show" <- to the fields they add. In order to be possible to hide.
This is our sale-workflow runbot talking about sale order lines (NOTE: in v16!! In v15 is simply impossible to test anything without uninstalling 12-15 modules to have something we can call “VIEW” 😃 )
This is the best we could have.
Fields that cannot be hidden:
- Sequence2
- Lot_id
- Elaborations_ids
- Elaboration_note
This best practice could apply to sale.order.lines, and all the lines in general, lis invoice lines, stock picking lines, etc…
Has it any sense for you?
Best regards,
Rafael Blasco
Moduon Team
by Rafael Blasco (Moduon) - 06:50 - 28 Aug 2023-
Re: Best practice add optional="show" when adding fields in tree views
I also agree with the request from a functional standpoint: especially in big repos like sale-workflow, there should be a specific attention on:- preserving ux of runboatallowing to hide non-required fields in list views is particularly useful in this regard, eg. sale order lines- avoiding publishing modules disrupting base functional testing (eg: confirming an order, creating an invoice...)This can be achieved by adding settings enabling the "intrusive" behavior, by not using standard records such as "Azure interior" for testing but creating a specifically named record, and in general by trying to leave runboat as it was found on a functional level :)My 2 cents!FrancescoIl giorno mar 29 ago 2023 alle ore 11:01 Ronald Portier <notifications@odoo-community.org> ha scritto:Thanks Pedro, we are in complete agreement then. Regards, Ronald Op 29-08-2023 om 10:42 schreef Pedro M. Baeza: > Sorry, my bad. I don't know why, I read optional="hide". It's OK to > put optional="show", but I would leave out of the equation mandatory > fields without default, or those protected with a group, as the group > is already the filtering method for not showing them. > > Regards. > > _______________________________________________ > Mailing-List: https://odoo-community.org/groups/contributors-15 > <https://odoo-community.org/groups/contributors-15> > Post to: mailto:contributors@odoo-community.org > Unsubscribe: https://odoo-community.org/groups?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 Francesco Foresti - 06:21 - 14 Sep 2023 -
Re: Best practice add optional="show" when adding fields in tree views
Thanks Pedro, we are in complete agreement then. Regards, Ronald Op 29-08-2023 om 10:42 schreef Pedro M. Baeza: > Sorry, my bad. I don't know why, I read optional="hide". It's OK to > put optional="show", but I would leave out of the equation mandatory > fields without default, or those protected with a group, as the group > is already the filtering method for not showing them. > > Regards. > > _______________________________________________ > Mailing-List: https://odoo-community.org/groups/contributors-15 > <https://odoo-community.org/groups/contributors-15> > Post to: mailto:contributors@odoo-community.org > Unsubscribe: https://odoo-community.org/groups?unsubscribe > <https://odoo-community.org/groups?unsubscribe> >
by "Ronald Portier" <rportier@therp.nl> - 11:01 - 29 Aug 2023 -
Re: Best practice add optional="show" when adding fields in tree views
Sorry, my bad. I don't know why, I read optional="hide". It's OK to put optional="show", but I would leave out of the equation mandatory fields without default, or those protected with a group, as the group is already the filtering method for not showing them.Regards.
by Pedro M. Baeza - 10:41 - 29 Aug 2023 -
Re: Best practice add optional="show" when adding fields in tree views
Hi Pedro, Maybe it is me, but I am missing the point of what you are saying. On the one hand you are saying the proposed practice of making extra fields in a tree view is not a good practice, but then you say the needed extra fields need to be optional="show" or not optional. In general I think using optional="show" for newly added fields is a good practice, unless there are reasons in a feature/module that demand the field always visible even in the tree view. So maybe you can expand a bit of what you where saying, as I am open to the arguments. Kind regards, Ronald Op 29-08-2023 om 09:36 schreef Pedro M. Baeza: > It's not a good practice, as when you install a module that is adding > a feature, such a feature may require extra fields for its definition, > so they need to be optional="show" or directly not optional from the > moment you install it. On runbot, as all modules are installed, you > have a lot of columns, but it's the price to pay for having this > automated build system. > > Regards. > > _______________________________________________ > Mailing-List: https://odoo-community.org/groups/contributors-15 > <https://odoo-community.org/groups/contributors-15> > Post to: mailto:contributors@odoo-community.org > Unsubscribe: https://odoo-community.org/groups?unsubscribe > <https://odoo-community.org/groups?unsubscribe> >
by "Ronald Portier" <rportier@therp.nl> - 10:26 - 29 Aug 2023 -
Re: Best practice add optional="show" when adding fields in tree views
It's not a good practice, as when you install a module that is adding a feature, such a feature may require extra fields for its definition, so they need to be optional="show" or directly not optional from the moment you install it. On runbot, as all modules are installed, you have a lot of columns, but it's the price to pay for having this automated build system.Regards.
by Pedro M. Baeza - 09:36 - 29 Aug 2023
-
OCA Days Video Post Production RFQ
HI Everyone,The prep for OCA Days is really gearing up - we can't wait to see you.If you haven't registered yet, please get on to it, you can do so here.I'm sharing the RFQ for Video Post Production of the recorded talks - have you got a digital superstar in your company who could help? Please share it around. Deadline for submission for the RFQ is 22nd September 2023.We've updated our RFQ criteria which you can see on the RFQ process page.Our call for speakers is open and we want to hear from you! Share your talk proposals now. Technical, functional, tutorials, new modules, module updates, case studies, open discussion topics, share it all. Submissions for talks close 15th September, 2023.Any questions, please get in touch.Warmest regards,Rebecca--Rebecca GellatlyGeneral SecretaryOdoo Community Association
by Rebecca Gellatly - 03:25 - 28 Aug 2023 -
Proposing myself as PSC in Procurement & Purchase
Please vote in https://github.com/orgs/OCA/discussions/109
by Jairo Llopis - 10:31 - 21 Aug 2023-
Re: Proposing myself as PSC in Procurement & Purchase
Based on the voting there LGTM.In any case you get my vote too :wink:Done!On Mon, Aug 21, 2023 at 2:21 PM Jairo Llopis <notifications@odoo-community.org> wrote:El lun, 21 de ago de 2023 a las 09:30:54 AM, Jairo Llopis <jairo@moduon.team> escribió:Please vote in https://github.com/orgs/OCA/discussions/109
It seems voting is not good for this. You can add comments here as usual or there in the discussion.Sorry!_______________________________________________
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. - 02:31 - 25 Aug 2023 -
Re: Proposing myself as PSC in Procurement & Purchase
El lun, 21 de ago de 2023 a las 09:30:54 AM, Jairo Llopis <jairo@moduon.team> escribió:Please vote in https://github.com/orgs/OCA/discussions/109
It seems voting is not good for this. You can add comments here as usual or there in the discussion.Sorry!
by Jairo Llopis - 02:21 - 21 Aug 2023
-
-
Development environment
Hi,My name is Sylvain.I would like to know about creating an Odoo local environment, because I want to be more efficient in the development of the modules, than on Odoo.sh.
I can already launch my server with Odoo, Odoo enterprise and my custom_addons.
However I have other problems like updating the code live, I have to constantly restart the server. I saw that there were default parameters for development like: --dev=reload using the "watchdog" lib, except that after 2 3 refresh the server shuts down.
I have already used Odoo.sh and its editor, and Python recompiles well with each change, so this is doable
Same for Owl components, I find it crazy that in 2023 there is no auto refresh, so I am looking for the most optimized solution for Odoo module development.
Do you have an installation guide for local development?
The development by Docker is perhaps simpler?
Some additional information:
I am on windows
VScode, and I'm using vscode launch.js configs for Odoo server
Thanks in advance
by Sylvain - 11:41 - 17 Aug 2023-
Re: Development environment
I have tried dob. I love it, it's awesome. Odoo gets up and running in record time, but I have a problem with debugging.
https://github.com/initOS/dob/issues/4El vie, 18 ago 2023 a las 8:27, Frederik Kramer (<notifications@odoo-community.org>) escribió:... and if you happen to find dooba (which is really good) a bit to technical (as it contains almost all debugging / logging and montoring tool you can imagine) you can also give
a spin. It is inspired by the works of Technativa (on Doodba) and other Docker based environments of e.g. Camp2Camp but less complex (as it contains fewer tools). We run that from the developer machine up to large Kubernetes landscapes.
So you got plenty of options now. I think everybody would love to read your feedback, how it worked out for you.
Best Frederik
Am 18.08.23 um 07:42 schrieb Enric Tobella Alomar:
+1 we have been using doodba for a year and it works like a charm
On Fri, 18 Aug 2023, 07:37 David Vidal, <notifications@odoo-community.org> wrote:
About Doodba, I'd recommend you to use the copier template project builder: https://github.com/Tecnativa/doodba-copier-template Following the instructions you'll have an environment in just a few minutes. And if you're already costumed to docker compose for your deployments you'll find it quite easy to get in.
El jue, 17 ago 2023 a las 18:18, tblauwendraat (<notifications@odoo-community.org>) escribió:
For us we've forked Doodba into https://github.com/sunflowerit/waft for the purpose of easily building customer environments on localhost. Previously we used the anybox buildout recipe. You can look at all three of these (Doodba, waft, anybox) and see if its helpful for you
17 aug. 2023 11:42:19 Sylvain Caron <notifications@odoo-community.org>:
Hi,
My name is Sylvain.
I would like to know about creating an Odoo local environment, because I want to be more efficient in the development of the modules, than on Odoo.sh.
I can already launch my server with Odoo, Odoo enterprise and my custom_addons.
However I have other problems like updating the code live, I have to constantly restart the server. I saw that there were default parameters for development like: --dev=reload using the "watchdog" lib, except that after 2 3 refresh the server shuts down.
I have already used Odoo.sh and its editor, and Python recompiles well with each change, so this is doable
Same for Owl components, I find it crazy that in 2023 there is no auto refresh, so I am looking for the most optimized solution for Odoo module development.
Do you have an installation guide for local development?
The development by Docker is perhaps simpler?
Some additional information:
I am on windows
VScode, and I'm using vscode launch.js configs for Odoo server
Thanks in advance

Sans virus.www.avast.com _______________________________________________
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
-- 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
_______________________________________________
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 La Chica - 06:15 - 26 Aug 2023 -
Re: Development environment
... and if you happen to find dooba (which is really good) a bit to technical (as it contains almost all debugging / logging and montoring tool you can imagine) you can also give
a spin. It is inspired by the works of Technativa (on Doodba) and other Docker based environments of e.g. Camp2Camp but less complex (as it contains fewer tools). We run that from the developer machine up to large Kubernetes landscapes.
So you got plenty of options now. I think everybody would love to read your feedback, how it worked out for you.
Best Frederik
Am 18.08.23 um 07:42 schrieb Enric Tobella Alomar:
+1 we have been using doodba for a year and it works like a charm
On Fri, 18 Aug 2023, 07:37 David Vidal, <notifications@odoo-community.org> wrote:
About Doodba, I'd recommend you to use the copier template project builder: https://github.com/Tecnativa/doodba-copier-template Following the instructions you'll have an environment in just a few minutes. And if you're already costumed to docker compose for your deployments you'll find it quite easy to get in.
El jue, 17 ago 2023 a las 18:18, tblauwendraat (<notifications@odoo-community.org>) escribió:
For us we've forked Doodba into https://github.com/sunflowerit/waft for the purpose of easily building customer environments on localhost. Previously we used the anybox buildout recipe. You can look at all three of these (Doodba, waft, anybox) and see if its helpful for you
17 aug. 2023 11:42:19 Sylvain Caron <notifications@odoo-community.org>:
Hi,
My name is Sylvain.
I would like to know about creating an Odoo local environment, because I want to be more efficient in the development of the modules, than on Odoo.sh.
I can already launch my server with Odoo, Odoo enterprise and my custom_addons.
However I have other problems like updating the code live, I have to constantly restart the server. I saw that there were default parameters for development like: --dev=reload using the "watchdog" lib, except that after 2 3 refresh the server shuts down.
I have already used Odoo.sh and its editor, and Python recompiles well with each change, so this is doable
Same for Owl components, I find it crazy that in 2023 there is no auto refresh, so I am looking for the most optimized solution for Odoo module development.
Do you have an installation guide for local development?
The development by Docker is perhaps simpler?
Some additional information:
I am on windows
VScode, and I'm using vscode launch.js configs for Odoo server
Thanks in advance

Sans virus.www.avast.com _______________________________________________
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
-- 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. - 08:25 - 18 Aug 2023 -
Re: Development environment
+1 we have been using doodba for a year and it works like a charmOn Fri, 18 Aug 2023, 07:37 David Vidal, <notifications@odoo-community.org> wrote:About Doodba, I'd recommend you to use the copier template project builder: https://github.com/Tecnativa/doodba-copier-template Following the instructions you'll have an environment in just a few minutes. And if you're already costumed to docker compose for your deployments you'll find it quite easy to get in.El jue, 17 ago 2023 a las 18:18, tblauwendraat (<notifications@odoo-community.org>) escribió:For us we've forked Doodba into https://github.com/sunflowerit/waft for the purpose of easily building customer environments on localhost. Previously we used the anybox buildout recipe. You can look at all three of these (Doodba, waft, anybox) and see if its helpful for you
17 aug. 2023 11:42:19 Sylvain Caron <notifications@odoo-community.org>:
Hi,
My name is Sylvain.
I would like to know about creating an Odoo local environment, because I want to be more efficient in the development of the modules, than on Odoo.sh.
I can already launch my server with Odoo, Odoo enterprise and my custom_addons.
However I have other problems like updating the code live, I have to constantly restart the server. I saw that there were default parameters for development like: --dev=reload using the "watchdog" lib, except that after 2 3 refresh the server shuts down.
I have already used Odoo.sh and its editor, and Python recompiles well with each change, so this is doable
Same for Owl components, I find it crazy that in 2023 there is no auto refresh, so I am looking for the most optimized solution for Odoo module development.
Do you have an installation guide for local development?
The development by Docker is perhaps simpler?
Some additional information:
I am on windows
VScode, and I'm using vscode launch.js configs for Odoo server
Thanks in advance_______________________________________________
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 Enric Tobella Alomar - 07:40 - 18 Aug 2023 -
Re: Development environment
About Doodba, I'd recommend you to use the copier template project builder: https://github.com/Tecnativa/doodba-copier-template Following the instructions you'll have an environment in just a few minutes. And if you're already costumed to docker compose for your deployments you'll find it quite easy to get in.El jue, 17 ago 2023 a las 18:18, tblauwendraat (<notifications@odoo-community.org>) escribió:For us we've forked Doodba into https://github.com/sunflowerit/waft for the purpose of easily building customer environments on localhost. Previously we used the anybox buildout recipe. You can look at all three of these (Doodba, waft, anybox) and see if its helpful for you
17 aug. 2023 11:42:19 Sylvain Caron <notifications@odoo-community.org>:
Hi,
My name is Sylvain.
I would like to know about creating an Odoo local environment, because I want to be more efficient in the development of the modules, than on Odoo.sh.
I can already launch my server with Odoo, Odoo enterprise and my custom_addons.
However I have other problems like updating the code live, I have to constantly restart the server. I saw that there were default parameters for development like: --dev=reload using the "watchdog" lib, except that after 2 3 refresh the server shuts down.
I have already used Odoo.sh and its editor, and Python recompiles well with each change, so this is doable
Same for Owl components, I find it crazy that in 2023 there is no auto refresh, so I am looking for the most optimized solution for Odoo module development.
Do you have an installation guide for local development?
The development by Docker is perhaps simpler?
Some additional information:
I am on windows
VScode, and I'm using vscode launch.js configs for Odoo server
Thanks in advance_______________________________________________
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 David Vidal - 07:35 - 18 Aug 2023 -
Re: Development environment
+ For DoodbaHave been using it for local dev alongwith deployment to cloud (k8s) with automated CI/CD. It’s built in support for VSCode is a plus.On Thu, 17 Aug 2023 at 17:18, tblauwendraat <notifications@odoo-community.org> wrote:For us we've forked Doodba into https://github.com/sunflowerit/waft for the purpose of easily building customer environments on localhost. Previously we used the anybox buildout recipe. You can look at all three of these (Doodba, waft, anybox) and see if its helpful for you
17 aug. 2023 11:42:19 Sylvain Caron <notifications@odoo-community.org>:
Hi,
My name is Sylvain.
I would like to know about creating an Odoo local environment, because I want to be more efficient in the development of the modules, than on Odoo.sh.
I can already launch my server with Odoo, Odoo enterprise and my custom_addons.
However I have other problems like updating the code live, I have to constantly restart the server. I saw that there were default parameters for development like: --dev=reload using the "watchdog" lib, except that after 2 3 refresh the server shuts down.
I have already used Odoo.sh and its editor, and Python recompiles well with each change, so this is doable
Same for Owl components, I find it crazy that in 2023 there is no auto refresh, so I am looking for the most optimized solution for Odoo module development.
Do you have an installation guide for local development?
The development by Docker is perhaps simpler?
Some additional information:
I am on windows
VScode, and I'm using vscode launch.js configs for Odoo server
Thanks in advance_______________________________________________
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 Syed Kamran Ali - 06:34 - 17 Aug 2023
-
-
Vertical Rental Migration to Version 16.0
Hello, my name is Yorlys Oropeza.
I'm from Venezuela.
I am software developer in the python language, I work in a consultant company with odoo. Likewise, I have three years working with python and odoo, in development custom modules, connection with different API in odoo and others related with odoo development.
Furthermore, I hope to knowledge more about odoo development making more secure, stable and easier to use.
I'm a person open to get more knowledge and learning to fast for adapting to new challenges, personally I like challenges and get new knowledge.I want to migrate the module rental_base of the team Vertical Rental, for dispose this module to a new version 16.0, and so other clients or users benefit or used this module in this version 16.0 and in other new versions
by yorlysoro - 01:46 - 14 Aug 2023-
Re: Vertical Rental Migration to Version 16.0
Hi All,
Thanks for information about the sale rental and vertical rental modules
I'm starting to read the contributing guidelines and the migration guidelines for learning how to proceed with this,I'm new to contributing with the Open Source and OdooOn Mon, Aug 14, 2023 at 6:41 AM Pedro M. Baeza <notifications@odoo-community.org> wrote:I extend my reasoning. Points for supporting the move:- There's a dedicated repo for that topic, so no sense to keep it on a very crowded generic one.- With PIP, the install method won't change.- With the OCA apps store, the discoverability won't change.- The module is still not merged on 16.0.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 yorlysoro - 02:11 - 15 Aug 2023 -
Re: Vertical Rental Migration to Version 16.0
I extend my reasoning. Points for supporting the move:- There's a dedicated repo for that topic, so no sense to keep it on a very crowded generic one.- With PIP, the install method won't change.- With the OCA apps store, the discoverability won't change.- The module is still not merged on 16.0.Regards.
by Pedro M. Baeza - 12:37 - 14 Aug 2023 -
Re: Vertical Rental Migration to Version 16.0
Hi all, if also Pedro (one of the OCAs oldest and most renown contributor) supports this move, its about time to get it done. I'll ask internally at my end who of the (OCA process most familiar ressources) can support this move. In any case lets do it together to limit waste of time. Best Frederik Am 14.08.23 um 12:17 schrieb Pedro M. Baeza: > I agree the module sale_rental should be moved to OCA/vertical-rental. > Please go ahead with it. > > Regards. > > _______________________________________________ > 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. - 12:30 - 14 Aug 2023 -
Re: Vertical Rental Migration to Version 16.0
I agree the module sale_rental should be moved to OCA/vertical-rental. Please go ahead with it.Regards.
by Pedro M. Baeza - 12:16 - 14 Aug 2023 -
Re: Vertical Rental Migration to Version 16.0
On 14 Aug 2023, at 9:01, Frederik Kramer wrote: > I suggest that Olaf Wagner (Elegosoft) and / or Ben Brich (Humanilog), > both German folks can step in here for discussion and guidance. If i > remember well the discussion on the relation between sale_rental and > vertical_rental has been held already quite a while ago and the latter > has been deliberately contributed as a result of that discussion. But > surely Ben and Olaf know more about the history here. In any case > contribitions are always warmly appreciated Yorlys. The base module for rental services is still sale_rental from sale_workflow. We already had it included in our code in v12 as rental_sale but had to roll that back. I think sale_rental should really be moved into the vetical-rental repo, but if I remember correctly we never got approval for that from the original author(s). So AFAICS porting sale_rental to v16 is still a prerequisite to porting any other module in vertical-rental to v16. There’s a lot more rental-related code available in our internal code base at https://github.com/elego/rental-vertical, and publishing that in the OCA repo has been a very tedious and time-consuming task so far, so any help will be greatly appreciated. Currently that code is running on v12 and v14 systems and most of it has been ported to v15, but none to v16 yet. Contrary to our optimistic planning two years ago there has indeed been some interest in the rental code we produced but no budgets from commercial organizations (only NGOs) for any porting and development work yet. We have invested considerable time in getting it working in Odoo 14 and 15 but there has been no request yet for v16. So it might not be too late to move sale_rental from sale-workflow as rental_sale into the vertical-rental repo and I’d be in favour of doing that for v16. Perhaps Ben can add some details to the status and his perspective for the use and development of the rental code. Best regards, Olaf > Best Frederik > > Am 14.08.23 um 08:51 schrieb Radovan Skolnik: > >> One more note here: there is very similarly looking and actively >> maintained module here: >> <https://github.com/OCA/sale-workflow/tree/15.0/sale_rental> It >> seems it's missing few features present in additional modules present >> in vertical-rental so maybe a discussion on how to proceed here would >> be in place. >> >> >> >> >> Best regards >> >> >> >> >> Radovan >> >> >> >> >> On pondelok 14. augusta 2023 1:47:24 CEST Yorlys Jose Oropeza >> Escalona wrote: >> >> > Hello, my name is Yorlys Oropeza. >> >> > >> >> > I'm from Venezuela. >> >> > >> >> > I am software developer in the python language, I work in a >> consultant >> >> > company with odoo. Likewise, I have three years working with python >> and >> >> > odoo, in development custom modules, connection with different API >> in odoo >> >> > and others related with odoo development. >> >> > >> >> > Furthermore, I hope to knowledge more about odoo development making >> more >> >> > secure, stable and easier to use. >> >> > >> >> > I'm a person open to get more knowledge and learning to fast for >> adapting to >> >> > new challenges, personally I like challenges and get new >> knowledge. >> >> > >> >> > >> >> > >> >> > I want to migrate the module rental_base of the team Vertical >> Rental, for >> >> > dispose this module to a new version 16.0, and so other clients or >> users >> >> > benefit or used this module in this version 16.0 and in other new >> versions >> >> > >> >> > _______________________________________________ >> >> > Mailing-List: <https://odoo-community.org/groups/contributors-15> >> >> > Post to: >> [mailto:contributors@odoo-community.org](<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](<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](<mailto:frederik.kramer@initos.com>) > Internet: [www.initos.com](<http://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 > > > _______________________________________________ > Mailing-List: <https://odoo-community.org/groups/contributors-15> > Post to: mailto:contributors@odoo-community.org > Unsubscribe: <https://odoo-community.org/groups?unsubscribe> -- Olaf Wagner -- elego Software Solutions GmbH -- http://www.elegosoft.com Gustav-Meyer-Allee 25 / Gebäude 12, 13355 Berlin, Germany phone: +49 30 23 45 86 96 mobile: +49 177 2345 869 fax: +49 30 23 45 86 95 Geschäftsführer: Olaf Wagner | Sitz: Berlin Handelregister: Amtsgericht Charlottenburg HRB 77719 | USt-IdNr: DE163214194
by Olaf Wagner - 12:10 - 14 Aug 2023
-
-
exclude locations from available stock calculation
A customer asked me about the need to be able to define stock locations that are not taken into account when calculating the quantity on hand of the products in the warehouse to which it belongs. Searching in OCA I found the module stock_available_base_exclude_location (https://github.com/OCA/stock-logistics-warehouse/tree/14.0/stock_available_base_exclude_location) which I understand supports the required functionality. But it is up to version 14 and it is needed for version 15. I have the option to do the migration but first I would like to make sure that there is no other way to solve this in version 15, maybe the OCA module is not needed anymore and it can be solve using CORE functions. Thank you very much in advance.
by Juan Pablo Garza - 01:46 - 11 Aug 2023 -
Product Pricelist Simulation missing from repositories?
Greetings contributors,I cannot find anymore the modulein product-attribute repository. I have a 14.0.0.0.1 version in my local VM, which I think I downloaded directly from repository odoo/product-attribute repository, and I also noticed that module version 14 is not loaded on the Odoo shop as well (v13 and v15 are there though).What happened to that module?Thanks in advance,Francesco Ballerini
by Francesco Ballerini - 12:11 - 11 Aug 2023-
Re: Product Pricelist Simulation missing from repositories?
I see, thanks SimoIl giorno ven 11 ago 2023 alle ore 14:08 Simone Rubino <notifications@odoo-community.org> ha scritto:It probably came from https://github.com/OCA/product-attribute/pull/1256 or https://github.com/OCA/product-attribute/pull/1257.I think the module simply skipped `14.0` because of lack of interest.On Fri, Aug 11, 2023 at 12:57 PM Francesco Ballerini <notifications@odoo-community.org> wrote:I surely downloaded a PR then, though I still don't find any PR in the oca/product-attribute PR section. Has it been moved to another repository for odoo14?Thanks in advance,Francesco BalleriniIl giorno ven 11 ago 2023 alle ore 12:23 Radovan Skolnik <notifications@odoo-community.org> ha scritto:That module does not exist for 14.0 There are 2 PR for migrating the module but are not merged yet. PRs for 15.0 and 16.0 have been merged already. Best regards, Radovan Skolnik On piatok 11. augusta 2023 12:12:14 CEST Francesco Ballerini wrote: > Greetings contributors, > > > I cannot find anymore the module > > > https://apps.odoo.com/apps/modules/13.0/product_pricelist_simulation/ > > > in product-attribute repository. I have a 14.0.0.0.1 version in my local VM, > which I think I downloaded directly from repository odoo/product-attribute > repository, and I also noticed that module version 14 is not loaded on the > Odoo shop as well (v13 and v15 are there though). > > > What happened to that module? > > > Thanks in advance, > > > Francesco Ballerini > > > > > > _______________________________________________ > 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 Francesco Ballerini - 04:21 - 11 Aug 2023 -
Re: Product Pricelist Simulation missing from repositories?
It probably came from https://github.com/OCA/product-attribute/pull/1256 or https://github.com/OCA/product-attribute/pull/1257.I think the module simply skipped `14.0` because of lack of interest.On Fri, Aug 11, 2023 at 12:57 PM Francesco Ballerini <notifications@odoo-community.org> wrote:I surely downloaded a PR then, though I still don't find any PR in the oca/product-attribute PR section. Has it been moved to another repository for odoo14?Thanks in advance,Francesco BalleriniIl giorno ven 11 ago 2023 alle ore 12:23 Radovan Skolnik <notifications@odoo-community.org> ha scritto:That module does not exist for 14.0 There are 2 PR for migrating the module but are not merged yet. PRs for 15.0 and 16.0 have been merged already. Best regards, Radovan Skolnik On piatok 11. augusta 2023 12:12:14 CEST Francesco Ballerini wrote: > Greetings contributors, > > > I cannot find anymore the module > > > https://apps.odoo.com/apps/modules/13.0/product_pricelist_simulation/ > > > in product-attribute repository. I have a 14.0.0.0.1 version in my local VM, > which I think I downloaded directly from repository odoo/product-attribute > repository, and I also noticed that module version 14 is not loaded on the > Odoo shop as well (v13 and v15 are there though). > > > What happened to that module? > > > Thanks in advance, > > > Francesco Ballerini > > > > > > _______________________________________________ > 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 Simone Rubino - 02:06 - 11 Aug 2023 -
Re: Product Pricelist Simulation missing from repositories?
I surely downloaded a PR then, though I still don't find any PR in the oca/product-attribute PR section. Has it been moved to another repository for odoo14?Thanks in advance,Francesco BalleriniIl giorno ven 11 ago 2023 alle ore 12:23 Radovan Skolnik <notifications@odoo-community.org> ha scritto:That module does not exist for 14.0 There are 2 PR for migrating the module but are not merged yet. PRs for 15.0 and 16.0 have been merged already. Best regards, Radovan Skolnik On piatok 11. augusta 2023 12:12:14 CEST Francesco Ballerini wrote: > Greetings contributors, > > > I cannot find anymore the module > > > https://apps.odoo.com/apps/modules/13.0/product_pricelist_simulation/ > > > in product-attribute repository. I have a 14.0.0.0.1 version in my local VM, > which I think I downloaded directly from repository odoo/product-attribute > repository, and I also noticed that module version 14 is not loaded on the > Odoo shop as well (v13 and v15 are there though). > > > What happened to that module? > > > Thanks in advance, > > > Francesco Ballerini > > > > > > _______________________________________________ > 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 Francesco Ballerini - 12:57 - 11 Aug 2023 -
Re: Product Pricelist Simulation missing from repositories?
That module does not exist for 14.0 There are 2 PR for migrating the module but are not merged yet. PRs for 15.0 and 16.0 have been merged already. Best regards, Radovan Skolnik On piatok 11. augusta 2023 12:12:14 CEST Francesco Ballerini wrote: > Greetings contributors, > > > I cannot find anymore the module > > > https://apps.odoo.com/apps/modules/13.0/product_pricelist_simulation/ > > > in product-attribute repository. I have a 14.0.0.0.1 version in my local VM, > which I think I downloaded directly from repository odoo/product-attribute > repository, and I also noticed that module version 14 is not loaded on the > Odoo shop as well (v13 and v15 are there though). > > > What happened to that module? > > > Thanks in advance, > > > Francesco Ballerini > > > > > > _______________________________________________ > 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 - 12:21 - 11 Aug 2023
-
-
Pharmacy management
Dear contributors,We have a project with a private pharmacy.We need a few specific functionalities:- prescription management- connexion to Vidal API- ....Some contributors might have experience in that as I found a datamatrix API here https://github.com/OCA/stock-logistics-barcode/tree/15.0/base_gs1_barcodeThanks in advance for your pointers
Best regards--------------------------------
Cyril VINH-TUNG
INVITU
Computer & Network Engineering
BP 32 - 98713 Papeete - French Polynesia
Tél: +689 40 46 11 99
contact@invitu.com
www.invitu.com
by Cyril VINH-TUNG - 04:01 - 10 Aug 2023-
Re: Pharmacy management
Thank DavidI liked product_expiry_simpleBest regards--------------------------------
Cyril VINH-TUNG
INVITU
Computer & Network Engineering
BP 32 - 98713 Papeete - French Polynesia
Tél: +689 40 46 11 99
contact@invitu.com
www.invitu.comLe mar. 22 août 2023, 06:36, David Beal <notifications@odoo-community.org> a écrit :Hi Cyril,Maybe off topic !?About prescription ...and medicamentBut not for the same people ;-)RegardsLe jeu. 10 août 2023 à 04:02, Cyril VINH-TUNG <notifications@odoo-community.org> a écrit :Dear contributors,We have a project with a private pharmacy.We need a few specific functionalities:- prescription management- connexion to Vidal API- ....Some contributors might have experience in that as I found a datamatrix API here https://github.com/OCA/stock-logistics-barcode/tree/15.0/base_gs1_barcodeThanks in advance for your pointers
Best regards--------------------------------
Cyril VINH-TUNG
INVITU
Computer & Network Engineering
BP 32 - 98713 Papeete - French Polynesia
Tél: +689 40 46 11 99
contact@invitu.com
www.invitu.com_______________________________________________
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 - 02:11 - 24 Aug 2023 -
Re: Pharmacy management
Hi Cyril,Maybe off topic !?About prescription ...and medicamentBut not for the same people ;-)RegardsLe jeu. 10 août 2023 à 04:02, Cyril VINH-TUNG <notifications@odoo-community.org> a écrit :Dear contributors,We have a project with a private pharmacy.We need a few specific functionalities:- prescription management- connexion to Vidal API- ....Some contributors might have experience in that as I found a datamatrix API here https://github.com/OCA/stock-logistics-barcode/tree/15.0/base_gs1_barcodeThanks in advance for your pointers
Best regards--------------------------------
Cyril VINH-TUNG
INVITU
Computer & Network Engineering
BP 32 - 98713 Papeete - French Polynesia
Tél: +689 40 46 11 99
contact@invitu.com
www.invitu.com_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by David BEAL - 06:35 - 22 Aug 2023
-