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
-
Odoo Show
I have been working for fun on this little tool (https://github.com/chienandalu/odooshow) to facilitate the inspection of the data of a recordset. Any time you're into the Odoo shell either debugging any process or entering the console in a production instance we can import the show method of the library and we will see a table with the default tree fields for that record. Something like this:Even more, you'll get links to the records urls so you can inspect them directly in the browser! (only in consoles that support console links).
By adding more attributes we can create more complex views by deciding which fields to show, grouping the records, etc. I'm working on documentation, for the moment you can see the code itself ;)
You can see a demo here -> https://asciinema.org/a/525597
There's also limited support for OdooRPC, but some special cases need to be covered.
To render the tables, I'm using the fantastic rich (https://github.com/Textualize/rich) which I can't stop recommending to everyone :)
I hope you enjoy it! (PRs and issues are welcome :))
David
by David Vidal - 12:00 - 5 Oct 2022-
Re: Odoo Show
> Thumbs up for sharing in the OCA and maybe doing a small lightning talk during the OCA event. What do you think?I'd wish to! But I'll be joining the Owl course in Brussels those days :( Anyway, I can record a small video if I can find the time...El mié, 5 oct 2022 a las 12:01, Frederik Kramer (<notifications@odoo-community.org>) escribió:HI David,
that is pretty useful. Finally we can get rid of PGAdmin then ;-) at least for the report and display part.
Thumbs up for sharing in the OCA and maybe doing a small lightning talk during the OCA event. What do you think?
Best Frederik
Am 05.10.22 um 00:02 schrieb David Vidal:
I have been working for fun on this little tool (https://github.com/chienandalu/odooshow) to facilitate the inspection of the data of a recordset. Any time you're into the Odoo shell either debugging any process or entering the console in a production instance we can import the show method of the library and we will see a table with the default tree fields for that record. Something like this:
Even more, you'll get links to the records urls so you can inspect them directly in the browser! (only in consoles that support console links).
By adding more attributes we can create more complex views by deciding which fields to show, grouping the records, etc. I'm working on documentation, for the moment you can see the code itself ;)
You can see a demo here -> https://asciinema.org/a/525597
There's also limited support for OdooRPC, but some special cases need to be covered.
To render the tables, I'm using the fantastic rich (https://github.com/Textualize/rich) which I can't stop recommending to everyone :)
I hope you enjoy it! (PRs and issues are welcome :))
David
_______________________________________________
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. Phone: +49 4181 13503-12 Fax: +49 4181 13503-10 Mobil: +49 179 3901819 Email: frederik.kramer@initos.com Web: 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 Steuer-Nr: 15/200/53247 USt-IdNr.: DE815580155
_______________________________________________
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 - 02:01 - 5 Oct 2022 -
Re: Odoo Show
Thanks for the fix, Simon :DEl mié, 5 oct 2022 a las 10:47, Simon Maillard (<notifications@odoo-community.org>) escribió:On 05/10/2022 00:02, David Vidal wrote: > I have been working for fun on this little tool > (https://github.com/chienandalu/odooshow > <https://github.com/chienandalu/odooshow>) to facilitate the inspection > of the data of a recordset. Hi, Tested and adopted, It's awesome. I used it from pytest to inspect objects, it will for sure save a lot of time when debugging or writing tests. Just to share my happiness: add to your test method: ``` import ipdb; ipdb.set_trace() ``` from your test server/vm/container/python ide: ``` $ pip3 install odooshow ipdb $ cd /path/to/my_adddon $ export PYTEST_ADDOPTS='--pdb --pdbcls=IPython.terminal.debugger:Pdb' $ pytest -s -vv --odoo-database=tests --odoo-config=/var/lib/odoo/tests_odoo.conf --pdb tests/test_hr_timesheet_ovetime.py::TestHrOvertime::test_2_overtime_sheet_is_created_on_overtime ``` Let's play with odooshow from ipdb ``` ipdb> from odooshow import show ipdb> show(self.OvertimePeriod.search([]) ... ``` ps: Got an error if the object don't have URL (The same has Quentin spoke about). I made a quick hack for now but I will submit a clean PR today. Thank you David for odooshow ! Regards, Simon -- Simon Maillard simon@ogesta.fr - 0680587358 Parce que sinon ça rend la discussion incompréhensible. > Pourquoi ça ? >> Je préfère répondre en dessous. >>> Que faites-vous à la place ? >>>> Non. >>>>> Vous n'aimez pas répondre au-dessus ?
_______________________________________________
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:55 - 5 Oct 2022 -
Re: Odoo Show
Thanks!> I just have unexepected "object has no attribute 'get_base_url'" but i'm gonna dig a bit to really understand how to use it right (or maybe open a issue) !
Simon Maillard just contributed with the fix (https://github.com/chienandalu/odooshow/pull/2) so it will be compatible with Odoo v12 (only python >=3.6 thou). It will be available in the next release :)El mié, 5 oct 2022 a las 9:17, Quentin Dupont (<notifications@odoo-community.org>) escribió:Hello,
Wow such a nice tool !
Installation and firsts tests works fine !I just have unexepected "object has no attribute 'get_base_url'" but i'm gonna dig a bit to really understand how to use it right (or maybe open a issue) !
Le 05/10/2022 à 09:02, Jay Vora a écrit :
Nice one! Thanks
On Wed, Oct 5, 2022 at 3:32 AM David Vidal <notifications@odoo-community.org> wrote:
I have been working for fun on this little tool (https://github.com/chienandalu/odooshow) to facilitate the inspection of the data of a recordset. Any time you're into the Odoo shell either debugging any process or entering the console in a production instance we can import the show method of the library and we will see a table with the default tree fields for that record. Something like this:
Even more, you'll get links to the records urls so you can inspect them directly in the browser! (only in consoles that support console links).
By adding more attributes we can create more complex views by deciding which fields to show, grouping the records, etc. I'm working on documentation, for the moment you can see the code itself ;)
You can see a demo here -> https://asciinema.org/a/525597
There's also limited support for OdooRPC, but some special cases need to be covered.
To render the tables, I'm using the fantastic rich (https://github.com/Textualize/rich) which I can't stop recommending to everyone :)
I hope you enjoy it! (PRs and issues are welcome :))
David
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
--
Technology Services @ www.serpentcs.comBusiness Solutions @ www.serpentcs.inEnterprise Mobile Apps @ www.odooonline.comQuality Assurance @ www.odooqa.comSAP Hana @ www.prozone-tech.com
Portal & DMS @ www.alfray.in
Regards,----------------------------------------------------------------------------------------------------------------------------
Jay Vora
Managing Director
Direct: +91-9879354457 Office: +91-9033472982 Skype: jaynvora
Twitter : jaynvora
-------------------------------------------------------------------------------------------------
Visit our website : http://www.serpentcs.com
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
--
Quentin DUPONT Informaticien
Pôle informatique 09 73 79 64 40 - Bureau 09 72 32 33 17
GRAP - Groupement Régional Alimentaire de Proximité
_______________________________________________
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:55 - 5 Oct 2022 -
Re: Odoo Show
HI David,
that is pretty useful. Finally we can get rid of PGAdmin then ;-) at least for the report and display part.
Thumbs up for sharing in the OCA and maybe doing a small lightning talk during the OCA event. What do you think?
Best Frederik
Am 05.10.22 um 00:02 schrieb David Vidal:
I have been working for fun on this little tool (https://github.com/chienandalu/odooshow) to facilitate the inspection of the data of a recordset. Any time you're into the Odoo shell either debugging any process or entering the console in a production instance we can import the show method of the library and we will see a table with the default tree fields for that record. Something like this:
Even more, you'll get links to the records urls so you can inspect them directly in the browser! (only in consoles that support console links).
By adding more attributes we can create more complex views by deciding which fields to show, grouping the records, etc. I'm working on documentation, for the moment you can see the code itself ;)
You can see a demo here -> https://asciinema.org/a/525597
There's also limited support for OdooRPC, but some special cases need to be covered.
To render the tables, I'm using the fantastic rich (https://github.com/Textualize/rich) which I can't stop recommending to everyone :)
I hope you enjoy it! (PRs and issues are welcome :))
David
_______________________________________________
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. Phone: +49 4181 13503-12 Fax: +49 4181 13503-10 Mobil: +49 179 3901819 Email: frederik.kramer@initos.com Web: 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 Steuer-Nr: 15/200/53247 USt-IdNr.: DE815580155
by Frederik Kramer. - 12:01 - 5 Oct 2022 -
Re: Odoo Show
Wow! Great!Congrats for the great work and thanks for sharing!El mié, 5 oct 2022 a la(s) 05:47, Simon Maillard (notifications@odoo-community.org) escribió:On 05/10/2022 00:02, David Vidal wrote: > I have been working for fun on this little tool > (https://github.com/chienandalu/odooshow > <https://github.com/chienandalu/odooshow>) to facilitate the inspection > of the data of a recordset. Hi, Tested and adopted, It's awesome. I used it from pytest to inspect objects, it will for sure save a lot of time when debugging or writing tests. Just to share my happiness: add to your test method: ``` import ipdb; ipdb.set_trace() ``` from your test server/vm/container/python ide: ``` $ pip3 install odooshow ipdb $ cd /path/to/my_adddon $ export PYTEST_ADDOPTS='--pdb --pdbcls=IPython.terminal.debugger:Pdb' $ pytest -s -vv --odoo-database=tests --odoo-config=/var/lib/odoo/tests_odoo.conf --pdb tests/test_hr_timesheet_ovetime.py::TestHrOvertime::test_2_overtime_sheet_is_created_on_overtime ``` Let's play with odooshow from ipdb ``` ipdb> from odooshow import show ipdb> show(self.OvertimePeriod.search([]) ... ``` ps: Got an error if the object don't have URL (The same has Quentin spoke about). I made a quick hack for now but I will submit a clean PR today. Thank you David for odooshow ! Regards, Simon -- Simon Maillard simon@ogesta.fr - 0680587358 Parce que sinon ça rend la discussion incompréhensible. > Pourquoi ça ? >> Je préfère répondre en dessous. >>> Que faites-vous à la place ? >>>> Non. >>>>> Vous n'aimez pas répondre au-dessus ?
_______________________________________________
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:16 - 5 Oct 2022
-
-
Event Badge Customisation Assistance Please for OCA Days
Hi,Anyone want to help the OCA Board out here. We have an issue with editing event badges. We can't, at all, not on odoo-community, not on runbot. v14.
by Graeme Gellatly - 12:31 - 3 Oct 2022-
RE: Event Badge Customisation Assistance Please for OCA Days
Thank you Holger!
https://github.com/OCA/event/pull/284
De: Graeme Gellatly <notifications@odoo-community.org>
Enviado el: lunes, 3 de octubre de 2022 12:32
Para: Contributors <contributors@odoo-community.org>
Asunto: Event Badge Customisation Assistance Please for OCA DaysHi,
Anyone want to help the OCA Board out here. We have an issue with editing event badges. We can't, at all, not on odoo-community, not on runbot. v14.
_______________________________________________
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) - 02:40 - 5 Oct 2022
-
-
WMS Migration to 15.0
Dear All,Cheers
I am working on the migration of the OCA WMS. I have migrated almost 85% of both, backend and frontend but I am having some problems.
The two main ones are:
- I lack knowledge. Does anyone know where to find the presentations that were used in the OCA days 2021? Here for example https://www.youtube.com/watch?v=1Hf0wJUoSSA
- Is there a specific mailing list for the WMS? I contacted one of the maintainers of the project but it seems to me that it is something too invasive and I do not want to bother with my issues
by Fernando La Chica - 01:11 - 30 Sep 2022 -
Update Delivery Order when sales quantity is decreased
Hello,
Decreasing a quantity on a Sales order does not propagate that change to the related Picking, and I would like that to happen.
I could find an OCA module doing this for Purchase Orders, but not for Sales Orders.
Has anyone worked on a feature like this?
My target version is 14.0.
Thank you
--
DANIEL REIS
MANAGING DIRECTORM: +351 919 991 307
E: dreis@OpenSourceIntegrators.com
A: Avenida da República 3000, Estoril Office B, #34
by Daniel Reis - 11:46 - 29 Sep 2022-
Re: Update Delivery Order when sales quantity is decreased
Indeed, they finally covered all the cases!On Thu, Sep 29, 2022 at 1:27 PM Pedro M. Baeza <notifications@odoo-community.org> wrote:Isn't this covered in core in 15.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 Denis Roussel. - 08:10 - 30 Sep 2022 -
Re: Update Delivery Order when sales quantity is decreased
Isn't this covered in core in 15.0+?Regards.
by Pedro M. Baeza - 01:25 - 29 Sep 2022 -
Re: Update Delivery Order when sales quantity is decreased
Indeed, naming is inherited from 10.0 where procurements still exist.On Thu, Sep 29, 2022 at 12:07 PM Daniel Reis <notifications@odoo-community.org> wrote:Thank you Denis, that is super helpful.
The title and summary description could be a bit clearer, to make it easier to find.
That would be easy to improve.
Thanks again
Daniel
On 29/09/22 10:56, Roussel, Denis wrote:
Hi Daniel.
Le jeu. 29 sept. 2022 à 11:46, Daniel Reis <notifications@odoo-community.org> a écrit :
Hello,
Decreasing a quantity on a Sales order does not propagate that change to the related Picking, and I would like that to happen.
I could find an OCA module doing this for Purchase Orders, but not for Sales Orders.
Has anyone worked on a feature like this?
My target version is 14.0.
Thank you
--
DANIEL REIS
MANAGING DIRECTORM: +351 919 991 307
E: dreis@OpenSourceIntegrators.com
A: Avenida da República 3000, Estoril Office B, #34
_______________________________________________
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
--
DANIEL REIS
MANAGING DIRECTORM: +351 919 991 307
E: dreis@OpenSourceIntegrators.com
A: Avenida da República 3000, Estoril Office B, #34
_______________________________________________
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. - 12:16 - 29 Sep 2022 -
Re: Update Delivery Order when sales quantity is decreased
Hi Denis,@oca days I would like to talk this through to you. I have had this functionality in private, no state to be published for some 7 years now. Nothing secret, just ugly.So well experienced in all the issues, happy to run through, or even just review yours. Ours is a bit more comprehensive as it handles many more fields and situations and updates MTO manufacturing, Purchases if possible (if draft).On Thu, Sep 29, 2022 at 10:57 PM Roussel, Denis <notifications@odoo-community.org> wrote:Hi Daniel.Le jeu. 29 sept. 2022 à 11:46, Daniel Reis <notifications@odoo-community.org> a écrit :Hello,
Decreasing a quantity on a Sales order does not propagate that change to the related Picking, and I would like that to happen.
I could find an OCA module doing this for Purchase Orders, but not for Sales Orders.
Has anyone worked on a feature like this?
My target version is 14.0.
Thank you
--
DANIEL REIS
MANAGING DIRECTORM: +351 919 991 307
E: dreis@OpenSourceIntegrators.com
A: Avenida da República 3000, Estoril Office B, #34
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Graeme Gellatly - 12:16 - 29 Sep 2022 -
Re: Update Delivery Order when sales quantity is decreased
Thank you Denis, that is super helpful.
The title and summary description could be a bit clearer, to make it easier to find.
That would be easy to improve.
Thanks again
Daniel
On 29/09/22 10:56, Roussel, Denis wrote:
Hi Daniel.
Le jeu. 29 sept. 2022 à 11:46, Daniel Reis <notifications@odoo-community.org> a écrit :
Hello,
Decreasing a quantity on a Sales order does not propagate that change to the related Picking, and I would like that to happen.
I could find an OCA module doing this for Purchase Orders, but not for Sales Orders.
Has anyone worked on a feature like this?
My target version is 14.0.
Thank you
--
DANIEL REIS
MANAGING DIRECTORM: +351 919 991 307
E: dreis@OpenSourceIntegrators.com
A: Avenida da República 3000, Estoril Office B, #34
_______________________________________________
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
--
DANIEL REIS
MANAGING DIRECTORM: +351 919 991 307
E: dreis@OpenSourceIntegrators.com
A: Avenida da República 3000, Estoril Office B, #34
by Daniel Reis - 12:06 - 29 Sep 2022
-
-
Re: Localizacion Ecuatoriana V15
Buen día, escribo el presente correo con la intención de poder contribuir con la localización Ecuatoriana(https://github.com/OCA/l10n-ecuador), la cual he visto por mucho tiempo desactualizada/abandonada. Tengo la localización en la V12 y V13 pero mi idea era migrarla a V15 para que quede en los repositorios de la OCA. Les adjunto un repositorio que es privado pero temporalmente lo pase a uno público hasta tener una respuesta de parte de uds y espero podamos integrarlo en la OCA. este módulo tiene la mayoría de funcionalidades para facturar electrónicamente en Ecuador:- Plan contable e impuestos(en V15 se podría tomar el que viene con Odoo base segun el PR https://github.com/odoo/odoo/pull/75055)
- conexión con el SRI y soporte para los documentos principales: Facturas, Notas de Crédito, Notas de débito, Guías de remisión, Liquidación de compras
- firma en python u no en java como el repositorio actual
Desde hace unos cuantos meses hay la intención de Odoo de tener la localización en enterprise(https://github.com/odoo/enterprise/pull/20993) pero por diversas razones se estanca, nuestra intención es tener una alternativa open source en la OCA.Trabajo para una empresa que es partner de Odoo y nuestro equipo de desarrollo estará encantado de colaborar, también se de otros colegas/partners que estén interesados en colaborar para tener la localización para la versión 15.Se que el código actual difiere mucho de las guidelines de la OCA pero considero puede ser la base para la migración, ajustandonos a los estándares y guidelines Odoo/OCA.Agradezco la atención brindada al presente correo y quedo muy atento a sus comentariosRepositorio V13Nota: Antes de enviar este correo estuve en contacto con Pedro Baeza quien me dio luces de cómo proceder y también me comentó que él podría participar como intermediario.El jue, 7 abr 2022 a las 14:27, Carlos Lopez (<celm1990@gmail.com>) escribió:Hola a todos,En estos últimos días hemos estado organizando un equipo de personas dispuestas a colaborar en la migración de la localización ecuatoriana, también contábamos con el Apoyo del Único PSC de Ecuador, Daniel Mendieta(https://odoo-community.org/psc-teams/ecuador-95), pero lamentablemente él falleció hace unas semanas atrás 😢 y dicho eso no tendríamos representante PSC en la OCA por lo que me gustaria saber el punto de vista de uds, estoy muy interesado y quisiera saber como puedo convertirme en PSC o algo similar que nos permita continuar con la migración de nuestra localización. A pesar de ello en los proximos dias estaremos haciendo PR al repo para sus revisiones pero nos gustaría contar con algún miembro que nos facilite las revisiones/Merge.Quedo atento a sus comentarios, muchas gracias por la atencion prestadaEl dom, 23 ene 2022 a las 12:34, Carlos Lopez (<celm1990@gmail.com>) escribió:Hola a todos, espero esten bien, disculpen la insistencia mas me gustaria tener alguna respuesta sea positiva o no. Nos interesa colaborar y tener una localización libre y funcional para Ecuador y consideramos que la OCA es el mejor lugar para ello, espero así sea.Espero nos den luces de cómo proceder.El sáb, 15 ene 2022 a las 11:02, Carlos Lopez (<celm1990@gmail.com>) escribió:Buen día, escribo el presente correo con la intención de poder contribuir con la localización Ecuatoriana(https://github.com/OCA/l10n-ecuador), la cual he visto por mucho tiempo desactualizada/abandonada. Tengo la localización en la V12 y V13 pero mi idea era migrarla a V15 para que quede en los repositorios de la OCA. Les adjunto un repositorio que es privado pero temporalmente lo pase a uno público hasta tener una respuesta de parte de uds y espero podamos integrarlo en la OCA. este módulo tiene la mayoría de funcionalidades para facturar electrónicamente en Ecuador:- Plan contable e impuestos(en V15 se podría tomar el que viene con Odoo base segun el PR https://github.com/odoo/odoo/pull/75055)
- conexión con el SRI y soporte para los documentos principales: Facturas, Notas de Crédito, Notas de débito, Guías de remisión, Liquidación de compras
- firma en python u no en java como el repositorio actual
Desde hace unos cuantos meses hay la intención de Odoo de tener la localización en enterprise(https://github.com/odoo/enterprise/pull/20993) pero por diversas razones se estanca, nuestra intención es tener una alternativa open source en la OCA.Trabajo para una empresa que es partner de Odoo y nuestro equipo de desarrollo estará encantado de colaborar, también se de otros colegas/partners que estén interesados en colaborar para tener la localización para la versión 15.Se que el código actual difiere mucho de las guidelines de la OCA pero considero puede ser la base para la migración, ajustandonos a los estándares y guidelines Odoo/OCA.Agradezco la atención brindada al presente correo y quedo muy atento a sus comentariosRepositorio V13Nota: Antes de enviar este correo estuve en contacto con Pedro Baeza quien me dio luces de cómo proceder y también me comentó que él podría participar como intermediario.--Carlos Lopez MiteSaludos Cordiales.--Saludos Cordiales.--Saludos Cordiales.--Saludos Cordiales.
by Carlos Lopez - 08:46 - 28 Sep 2022-
Re: Localizacion Ecuatoriana V15
You have one review already 🙂A terça, 14/03/2023, 22:32, Carlos Lopez <notifications@odoo-community.org> escreveu:Hi guys, yesterday we create first PR to OCA's repository, any feedback, contribution are welcome
Please follow this thread, I applied as PSC give your vote if it possible, thanks so much_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Daniel Reis - 08:01 - 15 Mar 2023 -
Re: Localizacion Ecuatoriana V15
Hi guys, yesterday we create first PR to OCA's repository, any feedback, contribution are welcome
Please follow this thread, I applied as PSC give your vote if it possible, thanks so much
by Carlos Lopez - 11:30 - 14 Mar 2023 -
Re: Localizacion Ecuatoriana V15
+1We can join efforts in this project.El mié, 28 sept 2022 a la(s) 13:56, Pedro M. Baeza (notifications@odoo-community.org) escribió:+1 on my part. It should be convenient to write in this list in English, as there's an international audience.Basically, Carlos is asking to belong to the Ecuador PSC for contributing with an open ecuatorian localization, which is great.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 "Jesús Alan Ramos Rodríguez" <alan.ramos@jarsa.com> - 07:56 - 3 Oct 2022 -
Re: Localizacion Ecuatoriana V15
+1 on my part. It should be convenient to write in this list in English, as there's an international audience.Basically, Carlos is asking to belong to the Ecuador PSC for contributing with an open ecuatorian localization, which is great.Regards.
by Pedro M. Baeza - 08:55 - 28 Sep 2022
-
Phasing out Travis
Dear contributors,As you may have noticed, we have been working towards moving our CI to GitHub actions over the past two years.The solution has proved to be stable and is active for 15.0 and also for 14.0 in many repos, as well as a few others.The time has now come to move to GitHub actions for more repos, in order to reduce OCA expenses.To this end, PSC's are encouraged to progressively update/apply the repo templates on branches that don't use GitHub actions.yet.The procedure is simple:1. install pipx2. if the repository has a `.copier-answers.yml` file, run `pipx run copier update`3. if not, run `pipx run copier copy git+https://github.com/oca/oca-addons-repo-template .`4. enter the repo slug, name and description, keep the default values for most other questions5. accept and commit the changes as `Update dotfiles`6. run `pre-commit run -a`, review and commit the changes as `Apply dotfiles`7. /ocabot merge when greenA few tips:- By default the template checks development status and license compatibility of dependencies. There may be issues with older branches. If this proves problematic to solve, you can disable them by answering no to the corresponding questions. For more recent branches (14.0+), these checks are *mandatory*, so please don't disable them.
- The most likely cause of failure is incorrectly declared external dependencies. Before Odoo 13, external_dependencies must use the package name as imported in the code, which can be different from the PyPI project name. In this case, you need to map the import name to the PyPI project name using external_dependencies_override in the corresponding setup.py, as explained in the setuptools-odoo documentation. In Odoo 13 and up, the PyPI project name (and minimum version) must be declared in the manifest external_dependencies.
- The template supports branches 10.0 and up.
In the coming months we are going to progressively reduce the number of concurrent Travis builds, so such builds will be queued longer, giving some incentive to migrate older branches that are still active.Thanks for your attention :) Do not hesitate to @ mention me in PRs where you need help to migrate.Best regards,-sbi
by Stéphane Bidoul - 03:21 - 26 Sep 2022-
Re: Phasing out Travis
On Wed, Sep 28, 2022 at 5:27 PM Pedro M. Baeza <notifications@odoo-community.org> wrote:Thanks [...] Carmen if I'm not wrong doing the hard work of adapting the template for lower versions).Absolutely! Carmen did help a lot with making it run on 10, 11, 12. It's great to see new contributors on the OCA tooling.-sbi
by Stéphane Bidoul - 07:35 - 28 Sep 2022 -
Re: Phasing out Travis
Yeah, let's say goodbye to it by having a better alternative. Thanks for caring about this, Stéphane (and Carmen if I'm not wrong doing the hard work of adapting the template for lower versions).Regards.
by Pedro M. Baeza - 05:21 - 28 Sep 2022 -
Re: Phasing out Travis
Thanks for that good job Stéphane.
El lun, 26 de sep de 2022 a las 13:22:15 PM, Stéphane Bidoul <notifications@odoo-community.org> escribió:Dear contributors,As you may have noticed, we have been working towards moving our CI to GitHub actions over the past two years.The solution has proved to be stable and is active for 15.0 and also for 14.0 in many repos, as well as a few others.The time has now come to move to GitHub actions for more repos, in order to reduce OCA expenses.To this end, PSC's are encouraged to progressively update/apply the repo templates on branches that don't use GitHub actions.yet.The procedure is simple:1. install pipx2. if the repository has a `.copier-answers.yml` file, run `pipx run copier update`3. if not, run `pipx run copier copy git+https://github.com/oca/oca-addons-repo-template .`4. enter the repo slug, name and description, keep the default values for most other questions5. accept and commit the changes as `Update dotfiles`6. run `pre-commit run -a`, review and commit the changes as `Apply dotfiles`7. /ocabot merge when greenA few tips:- By default the template checks development status and license compatibility of dependencies. There may be issues with older branches. If this proves problematic to solve, you can disable them by answering no to the corresponding questions. For more recent branches (14.0+), these checks are *mandatory*, so please don't disable them.
- The most likely cause of failure is incorrectly declared external dependencies. Before Odoo 13, external_dependencies must use the package name as imported in the code, which can be different from the PyPI project name. In this case, you need to map the import name to the PyPI project name using external_dependencies_override in the corresponding setup.py, as explained in the setuptools-odoo documentation. In Odoo 13 and up, the PyPI project name (and minimum version) must be declared in the manifest external_dependencies.
- The template supports branches 10.0 and up.
In the coming months we are going to progressively reduce the number of concurrent Travis builds, so such builds will be queued longer, giving some incentive to migrate older branches that are still active.Thanks for your attention :) Do not hesitate to @ mention me in PRs where you need help to migrate.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 Jairo Llopis - 10:01 - 27 Sep 2022
-
Proposal permission for OCA/storage
Hello everybody,@HviorForgeFlow has already permission to merge in OCA/purchase-workflow. I would like to propose that he also gets permission to merge in OCA/storage.Regards,Miquel
by Miquel Raïch - 03:05 - 22 Sep 2022 -
OCA Annual General Assembly for 2022 - upcoming dates
Hello OCA Contributors--- AGA - The AGA is coming up in October
- If you are already a Delegate please make sure you have paid for your 2022 membership so you can vote - you can contact me at membership@odoo-community.org to check if you aren't sure or reply on this list and I will contact you directly.
- If you are a current paid Member and interested in becoming a Delegate this year keep an eye out for upcoming AGA information to propose yourself. You'll then be able to vote in the AGA.
- You need to be a Delegate to apply to become a Board member if this is of interest to you.
- Key Dates
- 10th - 21st October - Week 1 & 2: OCA paid members of 2022 invited to apply their candidacy to become an OCA Delegate
- 24th October - 4th November - Week 3 & 4: Active OCA Delegates vote for 10 new OCA Delegates
- 7th - 18th November - Week 5 & 6: OCA Delegates announce their candidacy to become an OCA Board Member or Financial Auditor (for the FA the applicant does not need to be a Delegate) on the Delegate mailing list
- 21 November - 2nd December - Week 7 & 8: OCA Delegates vote for board members, auditors, financial statements
If you have any questions about the above please don't hesitate to get in touch on this list or email me directly and I will do my best to help out.Warm regards,RebeccaRebecca GellatlyGeneral SecretaryOdoo Community Association
by Rebecca Gellatly - 02:11 - 22 Sep 2022 -
16.0 branches creation
It seems that this year Odoo has created the 16.0 branch in advance:So that is very good news and we can already create the OCA branches for having them in advance to the OCA days and also for people that want to start migrating modules.Stéphane, do you take that work?Regards.
by Pedro M. Baeza - 09:00 - 21 Sep 2022-
RE: 16.0 branches creation
Thank you all who helped! Sincerely, Rafael
De: Stéphane Bidoul <notifications@odoo-community.org>
Enviado el: lunes, 3 de octubre de 2022 19:57
Para: Contributors <contributors@odoo-community.org>
Asunto: Re: 16.0 branches creationAlright folks, the 16.0 branches are being created right now.
As Sylvain wisely mentioned, it might be wise to refrain from merging until Odoo 16.0 is officially released.
Thanks to all who helped.
Enjoy,
-sbi
On Wed, Sep 21, 2022 at 2:26 PM sylvain.legal <notifications@odoo-community.org> wrote:
Thanks for this thread.
It could be great indeed, if all is initialized before the OCA days.
However, I think that we should avoid to merge PR before the OCA days, because the 16.0 is out, but will move during the following 3 weeks. Ex https://github.com/odoo/odoo/pull/100580 that will impact a lot all the module of OCA/web
so, My proposal could be :
- Create all the 16.0 branches (and associated CI, runboat, etc...)
- Allow to make PRs
- Prevent Merges before October 10, 2022.
my two cents.
On 21/09/2022 10:26, Stéphane Bidoul <notifications@odoo-community.org> wrote:
> Good news!
>
> I created an issue <https://github.com/OCA/maintainer-tools/issues/537>
> to track the required tasks and assigned myself to a few of them.
>
> If anyone wants to help with any of the open tasks, it is most welcome,
> don't hesitate.
>
> -sbi
>
> On Wed, Sep 21, 2022 at 9:32 AM Frederik Kramer
> <notifications@odoo-community.org
> <mailto:notifications@odoo-community.org>> wrote:
>
> Awsome. That is really good news in advance of the OCA Days.
>
> Best Frederiḱ
>
> Am 21.09.22 um 09:01 schrieb Pedro M. Baeza:
> > It seems that this year Odoo has created the 16.0 branch in advance:
> >
> > https://github.com/odoo/odoo/tree/16.0
> <https://github.com/odoo/odoo/tree/16.0>
> >
> > So that is very good news and we can already create the OCA branches
> > for having them in advance to the OCA days and also for people that
> > want to start migrating modules.
> >
> > Stéphane, do you take that work?
> >
> > Regards.
> >
> > _______________________________________________
> > Mailing-List: https://odoo-community.org/groups/contributors-15
> <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
> <https://odoo-community.org/groups?unsubscribe>
> >
> -- Dr.-Ing. Frederik Kramer Geschäftsführer initOS GmbH
> Innungsstraße 7 21244 Buchholz i.d.N. Phone: +49 4181 13503-12 Fax:
> +49 4181 13503-10 Mobil: +49 179 3901819 Email:
> frederik.kramer@initos.com <mailto:frederik.kramer@initos.com> Web:
> 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
> Steuer-Nr: 15/200/53247 USt-IdNr.: DE815580155
>
> _______________________________________________
> Mailing-List: https://odoo-community.org/groups/contributors-15
> <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
> <https://odoo-community.org/groups?unsubscribe>
>
> _______________________________________________
> 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_______________________________________________
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) - 03:46 - 4 Oct 2022 -
Re: 16.0 branches creation
Great. Thank you Stéphane and all who helped.Regards.On Mon, Oct 3, 2022 at 8:02 PM Pedro M. Baeza <notifications@odoo-community.org> wrote:Thanks to you.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 Laurent Mignon - 08:50 - 4 Oct 2022 -
-
Re: 16.0 branches creation
Alright folks, the 16.0 branches are being created right now.As Sylvain wisely mentioned, it might be wise to refrain from merging until Odoo 16.0 is officially released.Thanks to all who helped.Enjoy,-sbiOn Wed, Sep 21, 2022 at 2:26 PM sylvain.legal <notifications@odoo-community.org> wrote:Thanks for this thread. It could be great indeed, if all is initialized before the OCA days. However, I think that we should avoid to merge PR before the OCA days, because the 16.0 is out, but will move during the following 3 weeks. Ex https://github.com/odoo/odoo/pull/100580 that will impact a lot all the module of OCA/web so, My proposal could be : - Create all the 16.0 branches (and associated CI, runboat, etc...) - Allow to make PRs - Prevent Merges before October 10, 2022. my two cents. On 21/09/2022 10:26, Stéphane Bidoul <notifications@odoo-community.org> wrote: > Good news! > > I created an issue <https://github.com/OCA/maintainer-tools/issues/537> > to track the required tasks and assigned myself to a few of them. > > If anyone wants to help with any of the open tasks, it is most welcome, > don't hesitate. > > -sbi > > On Wed, Sep 21, 2022 at 9:32 AM Frederik Kramer > <notifications@odoo-community.org > <mailto:notifications@odoo-community.org>> wrote: > > Awsome. That is really good news in advance of the OCA Days. > > Best Frederiḱ > > Am 21.09.22 um 09:01 schrieb Pedro M. Baeza: > > It seems that this year Odoo has created the 16.0 branch in advance: > > > > https://github.com/odoo/odoo/tree/16.0 > <https://github.com/odoo/odoo/tree/16.0> > > > > So that is very good news and we can already create the OCA branches > > for having them in advance to the OCA days and also for people that > > want to start migrating modules. > > > > Stéphane, do you take that work? > > > > Regards. > > > > _______________________________________________ > > Mailing-List: https://odoo-community.org/groups/contributors-15 > <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 > <https://odoo-community.org/groups?unsubscribe> > > > -- Dr.-Ing. Frederik Kramer Geschäftsführer initOS GmbH > Innungsstraße 7 21244 Buchholz i.d.N. Phone: +49 4181 13503-12 Fax: > +49 4181 13503-10 Mobil: +49 179 3901819 Email: > frederik.kramer@initos.com <mailto:frederik.kramer@initos.com> Web: > 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 > Steuer-Nr: 15/200/53247 USt-IdNr.: DE815580155 > > _______________________________________________ > Mailing-List: https://odoo-community.org/groups/contributors-15 > <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 > <https://odoo-community.org/groups?unsubscribe> > > _______________________________________________ > 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 Stéphane Bidoul - 07:56 - 3 Oct 2022 -
Re: Existing migration work on partner-contact and vertical-association (Was: 16.0 branches creation)
Le mercredi 21 septembre 2022 à 14:02 +0000, Pedro M. Baeza a écrit : > Please specify which modules - membership_extension - membership_variable_period - membership_withdrawal - partner_contact_birthdate - partner_contact_gender - partner_contact_job_position - partner_contact_personal_information_page - partner_firstname
by Carmen Bianca Bakker - 05:10 - 21 Sep 2022
-
-
Connector Prestashop PSC update
Dear contributors,Fernando La Chica had requested to join the connector-prestashop PSC, but apparently his e-mails to the list did not get through. While we try to diagnose that issue, I took the liberty to add him to the PSC. https://odoo-community.org/psc-teams/prestashop-39If anyone has objections, do not hesitate to say so.Best regards,-sbi
by Stéphane Bidoul - 10:50 - 20 Sep 2022-
Re: Connector Prestashop PSC update
The sync should be ok now.-sbiOn Wed, Sep 21, 2022 at 5:22 PM Rafael Blasco <notifications@odoo-community.org> wrote:Hello Stéphane,
I think it has not synced with Github
https://odoo-community.org/psc-teams/prestashop-39
Vs
https://github.com/orgs/OCA/teams/connector-prestashop-maintainers
Regards,
Rafael
De: Stéphane Bidoul <notifications@odoo-community.org>
Enviado el: martes, 20 de septiembre de 2022 10:52
Para: Contributors <contributors@odoo-community.org>
Asunto: Connector Prestashop PSC updateDear contributors,
Fernando La Chica had requested to join the connector-prestashop PSC, but apparently his e-mails to the list did not get through. While we try to diagnose that issue, I took the liberty to add him to the PSC. https://odoo-community.org/psc-teams/prestashop-39
If anyone has objections, do not hesitate to say so.
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_______________________________________________
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 - 01:41 - 22 Sep 2022 -
RE: Connector Prestashop PSC update
Hello Stéphane,
I think it has not synced with Github
https://odoo-community.org/psc-teams/prestashop-39
Vs
https://github.com/orgs/OCA/teams/connector-prestashop-maintainers
Regards,
Rafael
De: Stéphane Bidoul <notifications@odoo-community.org>
Enviado el: martes, 20 de septiembre de 2022 10:52
Para: Contributors <contributors@odoo-community.org>
Asunto: Connector Prestashop PSC updateDear contributors,
Fernando La Chica had requested to join the connector-prestashop PSC, but apparently his e-mails to the list did not get through. While we try to diagnose that issue, I took the liberty to add him to the PSC. https://odoo-community.org/psc-teams/prestashop-39
If anyone has objections, do not hesitate to say so.
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 Rafael Blasco (Moduon) - 05:21 - 21 Sep 2022 -
RE: Connector Prestashop PSC update
+1
Fernando has been working in Odoo for long time and has experience in Odoo and Prestashop. I guess he will have this connector in production, that means a grear contributor and PSC for estability, improvements and fixing.
He is a very good contributor and I’m sure with this PSC will encourage himself to be a great one!
Prestashop connector need reviewers and a PSC that merge all the work is pending:
https://github.com/OCA/connector-prestashop/pulls
If all branches would be merged more and more users will use this connector.
m2c
De: Fernando La Chica <notifications@odoo-community.org>
Enviado el: martes, 20 de septiembre de 2022 21:47
Para: Contributors <contributors@odoo-community.org>
Asunto: Re: Connector Prestashop PSC updateMy proposal was:
Hi all,
I would like to apply as PSC for https://github.com/OCA/connector-prestashop
I have almost 18 years in the sector and 4 of them exclusively dedicated to Odoo. I'm working with it from 12.0 version. A year ago I joined a new team. One of the missions is to migrate from OpenERP 6.1 to Odoo 15 or higher. Thanks to this, my activity in OCA has increased. In addition, one of the entrusted projects uses the Prestashop connector intensively.
My GitHub account
https://github.com/flachicaThanks for considering my request and regards.
El mar, 20 sept 2022 a las 10:51, Stéphane Bidoul (<notifications@odoo-community.org>) escribió:
Dear contributors,
Fernando La Chica had requested to join the connector-prestashop PSC, but apparently his e-mails to the list did not get through. While we try to diagnose that issue, I took the liberty to add him to the PSC. https://odoo-community.org/psc-teams/prestashop-39
If anyone has objections, do not hesitate to say so.
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_______________________________________________
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) - 05:16 - 21 Sep 2022 -
Re: Connector Prestashop PSC update
My proposal was:
I have almost 18 years in the sector and 4 of them exclusively dedicated to Odoo. I'm working with it from 12.0 version. A year ago I joined a new team. One of the missions is to migrate from OpenERP 6.1 to Odoo 15 or higher. Thanks to this, my activity in OCA has increased. In addition, one of the entrusted projects uses the Prestashop connector intensively.
My GitHub account
https://github.com/flachicaThanks for considering my request and regards.El mar, 20 sept 2022 a las 10:51, Stéphane Bidoul (<notifications@odoo-community.org>) escribió:Dear contributors,Fernando La Chica had requested to join the connector-prestashop PSC, but apparently his e-mails to the list did not get through. While we try to diagnose that issue, I took the liberty to add him to the PSC. https://odoo-community.org/psc-teams/prestashop-39If anyone has objections, do not hesitate to say so.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 Fernando La Chica - 09:46 - 20 Sep 2022
-
-
PSC l10n-argentina
Hello, I'm currently PSC of HR and payroll modules. I saw that the repository for my country it's orphaned and has not been updated since version 9.0.Currently I work with the main Argentinian Localization developers and are a contributor of one of the main ones. We want to bring our localization to OCA to make the repository active again, and also to make our localization more standardized and official through OCA. This way we expect Argentinian maintainers and developers will join us to make a unique and very maintainable localization, merging all the localizations that are currently open source but maintained by different companies.So i propose myself as PSC of https://github.com/OCA/l10n-argentinaAlso i think that if the repo is outdated i will need to edit things like bots, and pre-commit settings, as a PSC i have access to this? Because it will be a lot of work and customization to adapt our current repositories to the OCA guidelines but we want to do it to make our country available on OCA.Wait for your response, and thanks!
by Nicolas Rodriguez Sande - 05:20 - 16 Sep 2022-
Re: PSC l10n-argentina
Hello Eric, thanks for the support. I’m starting to update the repos.
Can you change the repo default main branch to 14.0? Or someone with access to that? We are going to start in that branch and then migrate 15 and 16.
Thanks in advance.El 28 de sep. de 2022 17:42 -0300, Enric Tobella Alomar <notifications@odoo-community.org>, escribió:
Hi Nicolas!I added you as PSC member on l10n-argentina. You should receive soon a mail from github.+1 from my side too.Kind regards,From: "Nicolas Rodriguez" <notifications@odoo-community.org>
To: "Contributors" <contributors@odoo-community.org>
Date: Wed, 28 Sep 2022 19:32:31 -0000
Subject: Re: PSC l10n-argentina
I will tell them to write here if they want. But some of them mostly speak Spanish, so I don’t think they frequent this list.
They are authors and maintainers of different modules, and the idea is that they continue mantaining the same modules they are experienced but now in the OCA repos.
I’m a contributor of all of them and I have good understanding of Argentinian account and fiscal laws so that’s why I think being PSC can get the repo to live again. Bringing all modules together and not in different author repositories like it’s now for Argentina.
I keep posted for news. Thanks for the response as always Pedro, you have been very helpful.El 28 de sep. de 2022 16:22 -0300, Pedro M. Baeza <notifications@odoo-community.org>, escribió:It would be interesting that they write in this thread, but I think that given the low quantity of contributors right now, Stéphane, Daniel, Simone or any other board member will push the magic button for having you onboard :)Regards._______________________________________________
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
Tanto este mensaje como los documentos que, en su caso, lleve como anexos,
pueden contener información reservada y/o confidencial, destinada exclusivamente
para el uso del destinatario o la persona responsable de entregarlo al mismo,
estando su uso no autorizado prohibido legalmente.
Su contenido no constituye un compromiso para Creu Blanca (la empresa remitente)
salvo ratificación escrita por ambas partes. En caso de su recepción por error,
rogamos nos lo comunique por igual vía, se abstenga de realizar copias del mensaje
o documentos adjuntos, remitirlo o facilitarlo a un tercero, y proceda en su defecto,
a su eliminación.
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Nicolas Rodriguez Sande - 04:20 - 11 Oct 2022 -
Re: PSC l10n-argentina
Thanks a lot! That’s great news for our local localizations. Thanks for the confidence and hope you can see the repo alive soon!
Regards.El 28 de sep. de 2022 17:42 -0300, Enric Tobella Alomar <notifications@odoo-community.org>, escribió:
Hi Nicolas!I added you as PSC member on l10n-argentina. You should receive soon a mail from github.+1 from my side too.Kind regards,From: "Nicolas Rodriguez" <notifications@odoo-community.org>
To: "Contributors" <contributors@odoo-community.org>
Date: Wed, 28 Sep 2022 19:32:31 -0000
Subject: Re: PSC l10n-argentina
I will tell them to write here if they want. But some of them mostly speak Spanish, so I don’t think they frequent this list.
They are authors and maintainers of different modules, and the idea is that they continue mantaining the same modules they are experienced but now in the OCA repos.
I’m a contributor of all of them and I have good understanding of Argentinian account and fiscal laws so that’s why I think being PSC can get the repo to live again. Bringing all modules together and not in different author repositories like it’s now for Argentina.
I keep posted for news. Thanks for the response as always Pedro, you have been very helpful.El 28 de sep. de 2022 16:22 -0300, Pedro M. Baeza <notifications@odoo-community.org>, escribió:It would be interesting that they write in this thread, but I think that given the low quantity of contributors right now, Stéphane, Daniel, Simone or any other board member will push the magic button for having you onboard :)Regards._______________________________________________
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
Tanto este mensaje como los documentos que, en su caso, lleve como anexos,
pueden contener información reservada y/o confidencial, destinada exclusivamente
para el uso del destinatario o la persona responsable de entregarlo al mismo,
estando su uso no autorizado prohibido legalmente.
Su contenido no constituye un compromiso para Creu Blanca (la empresa remitente)
salvo ratificación escrita por ambas partes. En caso de su recepción por error,
rogamos nos lo comunique por igual vía, se abstenga de realizar copias del mensaje
o documentos adjuntos, remitirlo o facilitarlo a un tercero, y proceda en su defecto,
a su eliminación.
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Nicolas Rodriguez Sande - 12:16 - 29 Sep 2022 -
Re: PSC l10n-argentina
Hi Nicolas!I added you as PSC member on l10n-argentina. You should receive soon a mail from github.+1 from my side too.Kind regards,From: "Nicolas Rodriguez" <notifications@odoo-community.org>
To: "Contributors" <contributors@odoo-community.org>
Date: Wed, 28 Sep 2022 19:32:31 -0000
Subject: Re: PSC l10n-argentina
I will tell them to write here if they want. But some of them mostly speak Spanish, so I don’t think they frequent this list.
They are authors and maintainers of different modules, and the idea is that they continue mantaining the same modules they are experienced but now in the OCA repos.
I’m a contributor of all of them and I have good understanding of Argentinian account and fiscal laws so that’s why I think being PSC can get the repo to live again. Bringing all modules together and not in different author repositories like it’s now for Argentina.
I keep posted for news. Thanks for the response as always Pedro, you have been very helpful.El 28 de sep. de 2022 16:22 -0300, Pedro M. Baeza <notifications@odoo-community.org>, escribió:It would be interesting that they write in this thread, but I think that given the low quantity of contributors right now, Stéphane, Daniel, Simone or any other board member will push the magic button for having you onboard :)Regards._______________________________________________
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
Tanto este mensaje como los documentos que, en su caso, lleve como anexos,
pueden contener información reservada y/o confidencial, destinada exclusivamente
para el uso del destinatario o la persona responsable de entregarlo al mismo,
estando su uso no autorizado prohibido legalmente.
Su contenido no constituye un compromiso para Creu Blanca (la empresa remitente)
salvo ratificación escrita por ambas partes. En caso de su recepción por error,
rogamos nos lo comunique por igual vía, se abstenga de realizar copias del mensaje
o documentos adjuntos, remitirlo o facilitarlo a un tercero, y proceda en su defecto,
a su eliminación.
by Enric Tobella Alomar - 10:40 - 28 Sep 2022 -
Re: PSC l10n-argentina
I will tell them to write here if they want. But some of them mostly speak Spanish, so I don’t think they frequent this list.
They are authors and maintainers of different modules, and the idea is that they continue mantaining the same modules they are experienced but now in the OCA repos.
I’m a contributor of all of them and I have good understanding of Argentinian account and fiscal laws so that’s why I think being PSC can get the repo to live again. Bringing all modules together and not in different author repositories like it’s now for Argentina.
I keep posted for news. Thanks for the response as always Pedro, you have been very helpful.El 28 de sep. de 2022 16:22 -0300, Pedro M. Baeza <notifications@odoo-community.org>, escribió:
It would be interesting that they write in this thread, but I think that given the low quantity of contributors right now, Stéphane, Daniel, Simone or any other board member will push the magic button for having you onboard :)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 Nicolas Rodriguez Sande - 09:31 - 28 Sep 2022 -
Re: PSC l10n-argentina
It would be interesting that they write in this thread, but I think that given the low quantity of contributors right now, Stéphane, Daniel, Simone or any other board member will push the magic button for having you onboard :)Regards.
by Pedro M. Baeza - 09:20 - 28 Sep 2022
-
-
Proposing myself as PSC for l10n-switzerland
Hello,I have been working with Odoo and contributing to the OCA for five years now.I have learned a lot working with all of you. Thanks for that.I would like to take a more active role starting by proposing myself as PSC on l10n-swizterland.My github account : TDuCheers,Thierry DucrestcamptocampINNOVATIVE SOLUTIONSBY OPEN SOURCE EXPERTSThierry DucrestSoftware developerBusiness Solutions
by Thierry Ducrest - 01:56 - 16 Sep 2022-
Re: Proposing myself as PSC for l10n-switzerland
Thank youcamptocampINNOVATIVE SOLUTIONSBY OPEN SOURCE EXPERTSThierry DucrestSoftware developerBusiness SolutionsOn Mon, Oct 10, 2022 at 9:57 AM Yannick Payot <notifications@odoo-community.org> wrote:You have been added to the PSC you should have access shortly.On Mon, 10 Oct 2022 at 09:45, Yannick Payot <yannick.payot@camptocamp.com> wrote:+1On Mon, 26 Sept 2022 at 09:17, Akim Juillerat <notifications@odoo-community.org> wrote:+1camptocampINNOVATIVE SOLUTIONSBY OPEN SOURCE EXPERTSAkim JuilleratBusiness solutionsSoftware architectOn Fri, Sep 16, 2022 at 1:57 PM Thierry Ducrest <notifications@odoo-community.org> wrote:Hello,I have been working with Odoo and contributing to the OCA for five years now.I have learned a lot working with all of you. Thanks for that.I would like to take a more active role starting by proposing myself as PSC on l10n-swizterland.My github account : TDuCheers,Thierry DucrestcamptocampINNOVATIVE SOLUTIONSBY OPEN SOURCE EXPERTSThierry DucrestSoftware developerBusiness Solutions_______________________________________________
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 Thierry Ducrest - 10:06 - 10 Oct 2022 -
Re: Proposing myself as PSC for l10n-switzerland
You have been added to the PSC you should have access shortly.On Mon, 10 Oct 2022 at 09:45, Yannick Payot <yannick.payot@camptocamp.com> wrote:+1On Mon, 26 Sept 2022 at 09:17, Akim Juillerat <notifications@odoo-community.org> wrote:+1camptocampINNOVATIVE SOLUTIONSBY OPEN SOURCE EXPERTSAkim JuilleratBusiness solutionsSoftware architectOn Fri, Sep 16, 2022 at 1:57 PM Thierry Ducrest <notifications@odoo-community.org> wrote:Hello,I have been working with Odoo and contributing to the OCA for five years now.I have learned a lot working with all of you. Thanks for that.I would like to take a more active role starting by proposing myself as PSC on l10n-swizterland.My github account : TDuCheers,Thierry DucrestcamptocampINNOVATIVE SOLUTIONSBY OPEN SOURCE EXPERTSThierry DucrestSoftware developerBusiness Solutions_______________________________________________
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 Yannick Payot - 09:55 - 10 Oct 2022 -
Re: Proposing myself as PSC for l10n-switzerland
+1On Mon, 26 Sept 2022 at 09:17, Akim Juillerat <notifications@odoo-community.org> wrote:+1camptocampINNOVATIVE SOLUTIONSBY OPEN SOURCE EXPERTSAkim JuilleratBusiness solutionsSoftware architectOn Fri, Sep 16, 2022 at 1:57 PM Thierry Ducrest <notifications@odoo-community.org> wrote:Hello,I have been working with Odoo and contributing to the OCA for five years now.I have learned a lot working with all of you. Thanks for that.I would like to take a more active role starting by proposing myself as PSC on l10n-swizterland.My github account : TDuCheers,Thierry DucrestcamptocampINNOVATIVE SOLUTIONSBY OPEN SOURCE EXPERTSThierry DucrestSoftware developerBusiness Solutions_______________________________________________
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 Yannick Payot - 09:46 - 10 Oct 2022 -
Re: Proposing myself as PSC for l10n-switzerland
+1camptocampINNOVATIVE SOLUTIONSBY OPEN SOURCE EXPERTSAkim JuilleratBusiness solutionsSoftware architectOn Fri, Sep 16, 2022 at 1:57 PM Thierry Ducrest <notifications@odoo-community.org> wrote:Hello,I have been working with Odoo and contributing to the OCA for five years now.I have learned a lot working with all of you. Thanks for that.I would like to take a more active role starting by proposing myself as PSC on l10n-swizterland.My github account : TDuCheers,Thierry DucrestcamptocampINNOVATIVE SOLUTIONSBY OPEN SOURCE EXPERTSThierry DucrestSoftware developerBusiness Solutions_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Akim Juillerat - 09:16 - 26 Sep 2022 -
Re: Proposing myself as PSC for l10n-switzerland
+1On Fri, Sep 16, 2022 at 1:57 PM Thierry Ducrest <notifications@odoo-community.org> wrote:Hello,I have been working with Odoo and contributing to the OCA for five years now.I have learned a lot working with all of you. Thanks for that.I would like to take a more active role starting by proposing myself as PSC on l10n-swizterland.My github account : TDuCheers,Thierry DucrestcamptocampINNOVATIVE SOLUTIONSBY OPEN SOURCE EXPERTSThierry DucrestSoftware developerBusiness Solutions_______________________________________________
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:30 - 16 Sep 2022
-
-
Proposing myself as l10n-bulgaria PSC
Hi to all,I want to apply to the PSC for the l10n-bulgaria repository.I'm basically focused on accounting and all linked with booking in Odoo accounting. I made many fixes in this functionality like algorithms for re-creating quantity in stock_qaunt and next following functionality in accounting.My repository https://github.com/rosenvladimirovThanks,
Rosen Vladimirov
+359886100204
by Rosen Vladimirov - 01:05 - 15 Sep 2022-
Re: Proposing myself as l10n-bulgaria PSC
Yes, I agree.Thanks,
Rosen Vladimirov
+359886100204На пт, 16.09.2022 г. в 10:31 ч. Stéphane Bidoul <notifications@odoo-community.org> написа:Hi Rosen,If you agree to be the PSC representative, we can create a PSC for the Bulgarian localization, and the repository.As you are already a member, the administrative side is all good.Best regards,-StéphaneOn Thu, Sep 15, 2022 at 1:07 PM Росен Владимиров <notifications@odoo-community.org> wrote:Hi to all,I want to apply to the PSC for the l10n-bulgaria repository.I'm basically focused on accounting and all linked with booking in Odoo accounting. I made many fixes in this functionality like algorithms for re-creating quantity in stock_qaunt and next following functionality in accounting.My repository https://github.com/rosenvladimirovThanks,
Rosen Vladimirov
+359886100204_______________________________________________
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 Rosen Vladimirov - 03:06 - 16 Sep 2022 -
Re: Proposing myself as l10n-bulgaria PSC
Hi Rosen,If you agree to be the PSC representative, we can create a PSC for the Bulgarian localization, and the repository.As you are already a member, the administrative side is all good.Best regards,-StéphaneOn Thu, Sep 15, 2022 at 1:07 PM Росен Владимиров <notifications@odoo-community.org> wrote:Hi to all,I want to apply to the PSC for the l10n-bulgaria repository.I'm basically focused on accounting and all linked with booking in Odoo accounting. I made many fixes in this functionality like algorithms for re-creating quantity in stock_qaunt and next following functionality in accounting.My repository https://github.com/rosenvladimirovThanks,
Rosen Vladimirov
+359886100204_______________________________________________
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 - 09:30 - 16 Sep 2022 -
Re: Proposing myself as l10n-bulgaria PSC
Hi, Rosen,Thanks for your offer for doing such a task. I see that there's no such repo yet on OCA. First of all, it should be created, and then you can start doing pull requests. That kind of request goes to contribute@odoo-community.org, but I think board members read both, so maybe it's enough with this thread. Let's see what they comment about.Regards.
by Pedro M. Baeza - 08:55 - 16 Sep 2022
-
-
Odoo Google Drive/Spreadsheet depreciation
Hi all,
Just catching up concerning the depreciation of Odoo natives Google Drive & Spreadsheet functionalities following changes in OAuth flows on Google's end.
We have a few clients using Google Drive integration through the template functionality and this module.
Damien Bouvy in the PR was talking about an alternative for authentication with a Google Drive app. I am not sure about the work that would be required or the implications of such a setting...
Did anybody start looking at this for alternate solutions before we dive in on our own ?
Thanks in advance!--
Quentin Lavallee - Chargé de projetsNUMIGI SOLUTIONS INC.(514) 317-7944Longueuil, Québec, Canada
by Quentin Lavallée-Bourdeau - 09:01 - 14 Sep 2022 -
Proposing myself for Accounting/Banking PSCs
Hello fellow contributorsIt's been a few years I've been contributing to plenty of repositories for the OCA and since it seems to me that it's in the accounting related repositories that I've been most active (through PRs or code reviews, mostly in account-invoicing, account-reconcile, account-payment, ...), I'd be happy to help a bit more on these topics by proposing myself as PSC.With the OCA days approaching, I guess it could be good to have more people involved.My github handle for those would want to have a look at what I did: https://github.com/grindtildeathBTW, is there any reason to have two different PSCs for these projects?Best regardscamptocampINNOVATIVE SOLUTIONSBY OPEN SOURCE EXPERTSAkim JuilleratBusiness solutionsSoftware architect
by Akim Juillerat - 05:36 - 13 Sep 2022-
Re: Proposing myself for Accounting/Banking PSCs
DoneOn Wed, Sep 14, 2022 at 4:42 PM Akim Juillerat <notifications@odoo-community.org> wrote:Hello,Thank you very much.Can you please add me to https://odoo-community.org/psc-teams/banking-10 as well (mostly for account-reconcile and account-payment) ?camptocampINNOVATIVE SOLUTIONSBY OPEN SOURCE EXPERTSAkim JuilleratBusiness solutionsSoftware architectOn Wed, Sep 14, 2022 at 10:42 AM Stéphane Bidoul <notifications@odoo-community.org> wrote:On Wed, Sep 14, 2022 at 8:11 AM Thierry Ducrest <notifications@odoo-community.org> wrote:+1camptocampINNOVATIVE SOLUTIONSBY OPEN SOURCE EXPERTSThierry DucrestSoftware developerBusiness SolutionsOn Tue, Sep 13, 2022 at 6:12 PM Alexandre Fayolle <notifications@odoo-community.org> wrote:yes please! On 13/09/2022 17:37, Akim Juillerat wrote: > Hello fellow contributors > > It's been a few years I've been contributing to plenty of repositories > for the OCA and since it seems to me that it's in the accounting related > repositories that I've been most active (through PRs or code reviews, > mostly in account-invoicing, account-reconcile, account-payment, ...), > I'd be happy to help a bit more on these topics by proposing myself as PSC. > > With the OCA days approaching, I guess it could be good to have more > people involved. > > My github handle for those would want to have a look at what I did: > https://github.com/grindtildeath <https://github.com/grindtildeath> > > BTW, is there any reason to have two different PSCs for these projects? > > Best regards > *< font size="6">camptocamp* > INNOVATIVE SOLUTIONS > BY OPEN SOURCE EXPERTS > > *Akim Juillerat > * > Business solutions > Software architect > +41 62 544 03 78 > * > * > *Camptocamp SA* > Leberngasse 21 > 4600 Olten > Switzerland > +41 21 619 10 10 > www.camptocamp.com <http://www.camptocamp.com> > > _______________________________________________ > 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> > -- Alexandre Fayolle Senior Software Engineer Tel : +33 4 58 48 20 30 Camptocamp France SAS 18 rue du Lac Saint André 73 370 Le Bourget-du-Lac France http://www.camptocamp.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
by Stéphane Bidoul - 04:51 - 14 Sep 2022 -
Re: Proposing myself for Accounting/Banking PSCs
Hello,Thank you very much.Can you please add me to https://odoo-community.org/psc-teams/banking-10 as well (mostly for account-reconcile and account-payment) ?camptocampINNOVATIVE SOLUTIONSBY OPEN SOURCE EXPERTSAkim JuilleratBusiness solutionsSoftware architectOn Wed, Sep 14, 2022 at 10:42 AM Stéphane Bidoul <notifications@odoo-community.org> wrote:On Wed, Sep 14, 2022 at 8:11 AM Thierry Ducrest <notifications@odoo-community.org> wrote:+1camptocampINNOVATIVE SOLUTIONSBY OPEN SOURCE EXPERTSThierry DucrestSoftware developerBusiness SolutionsOn Tue, Sep 13, 2022 at 6:12 PM Alexandre Fayolle <notifications@odoo-community.org> wrote:yes please! On 13/09/2022 17:37, Akim Juillerat wrote: > Hello fellow contributors > > It's been a few years I've been contributing to plenty of repositories > for the OCA and since it seems to me that it's in the accounting related > repositories that I've been most active (through PRs or code reviews, > mostly in account-invoicing, account-reconcile, account-payment, ...), > I'd be happy to help a bit more on these topics by proposing myself as PSC. > > With the OCA days approaching, I guess it could be good to have more > people involved. > > My github handle for those would want to have a look at what I did: > https://github.com/grindtildeath <https://github.com/grindtildeath> > > BTW, is there any reason to have two different PSCs for these projects? > > Best regards > *< font size="6">camptocamp* > INNOVATIVE SOLUTIONS > BY OPEN SOURCE EXPERTS > > *Akim Juillerat > * > Business solutions > Software architect > +41 62 544 03 78 > * > * > *Camptocamp SA* > Leberngasse 21 > 4600 Olten > Switzerland > +41 21 619 10 10 > www.camptocamp.com <http://www.camptocamp.com> > > _______________________________________________ > 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> > -- Alexandre Fayolle Senior Software Engineer Tel : +33 4 58 48 20 30 Camptocamp France SAS 18 rue du Lac Saint André 73 370 Le Bourget-du-Lac France http://www.camptocamp.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
by Akim Juillerat - 04:41 - 14 Sep 2022 -
Re: Proposing myself for Accounting/Banking PSCs
On Wed, Sep 14, 2022 at 8:11 AM Thierry Ducrest <notifications@odoo-community.org> wrote:+1camptocampINNOVATIVE SOLUTIONSBY OPEN SOURCE EXPERTSThierry DucrestSoftware developerBusiness SolutionsOn Tue, Sep 13, 2022 at 6:12 PM Alexandre Fayolle <notifications@odoo-community.org> wrote:yes please! On 13/09/2022 17:37, Akim Juillerat wrote: > Hello fellow contributors > > It's been a few years I've been contributing to plenty of repositories > for the OCA and since it seems to me that it's in the accounting related > repositories that I've been most active (through PRs or code reviews, > mostly in account-invoicing, account-reconcile, account-payment, ...), > I'd be happy to help a bit more on these topics by proposing myself as PSC. > > With the OCA days approaching, I guess it could be good to have more > people involved. > > My github handle for those would want to have a look at what I did: > https://github.com/grindtildeath <https://github.com/grindtildeath> > > BTW, is there any reason to have two different PSCs for these projects? > > Best regards > *< font size="6">camptocamp* > INNOVATIVE SOLUTIONS > BY OPEN SOURCE EXPERTS > > *Akim Juillerat > * > Business solutions > Software architect > +41 62 544 03 78 > * > * > *Camptocamp SA* > Leberngasse 21 > 4600 Olten > Switzerland > +41 21 619 10 10 > www.camptocamp.com <http://www.camptocamp.com> > > _______________________________________________ > 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> > -- Alexandre Fayolle Senior Software Engineer Tel : +33 4 58 48 20 30 Camptocamp France SAS 18 rue du Lac Saint André 73 370 Le Bourget-du-Lac France http://www.camptocamp.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 Stéphane Bidoul - 10:41 - 14 Sep 2022 -
Re: Proposing myself for Accounting/Banking PSCs
+1On Tue, Sep 13, 2022 at 5:37 PM Akim Juillerat <notifications@odoo-community.org> wrote:Hello fellow contributorsIt's been a few years I've been contributing to plenty of repositories for the OCA and since it seems to me that it's in the accounting related repositories that I've been most active (through PRs or code reviews, mostly in account-invoicing, account-reconcile, account-payment, ...), I'd be happy to help a bit more on these topics by proposing myself as PSC.With the OCA days approaching, I guess it could be good to have more people involved.My github handle for those would want to have a look at what I did: https://github.com/grindtildeathBTW, is there any reason to have two different PSCs for these projects?Best regards< font size="6">camptocampINNOVATIVE SOLUTIONSBY OPEN SOURCE EXPERTSAkim JuilleratBusiness solutionsSoftware architect_______________________________________________
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. - 10:36 - 14 Sep 2022 -
Re: Proposing myself for Accounting/Banking PSCs
+1On Tue, Sep 13, 2022 at 5:37 PM Akim Juillerat <notifications@odoo-community.org> wrote:Hello fellow contributorsIt's been a few years I've been contributing to plenty of repositories for the OCA and since it seems to me that it's in the accounting related repositories that I've been most active (through PRs or code reviews, mostly in account-invoicing, account-reconcile, account-payment, ...), I'd be happy to help a bit more on these topics by proposing myself as PSC.With the OCA days approaching, I guess it could be good to have more people involved.My github handle for those would want to have a look at what I did: https://github.com/grindtildeathBTW, is there any reason to have two different PSCs for these projects?Best regards< font size="6">camptocampINNOVATIVE SOLUTIONSBY OPEN SOURCE EXPERTSAkim JuilleratBusiness solutionsSoftware architect_______________________________________________
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. - 08:40 - 14 Sep 2022
-
-
Stock Repositories splitting
Hi all,In order to prepare the advent of v16 and to mitigate repositories growing, I want to request some repositories creation.- stock-logistics-warehouse:
- stock_available
- stock_orderpoint
- stock_request
- stock_vertical_lift
If some of you see another useful repository that could miss and represent an interesting grouping per functional point of view, don't hesitate !--
by Denis Roussel. - 10:25 - 7 Sep 2022-
Re: Stock Repositories splitting
Many thanks!I'll do it right nowOn Fri, Oct 7, 2022 at 2:57 PM Simone Orsi <notifications@odoo-community.org> wrote:I created all repos. Can you take care of the bootstrap?On Fri, Oct 7, 2022 at 12:02 PM Roussel, Denis <notifications@odoo-community.org> wrote:Hi Simone,Here are they:stock-logistics-availability: This repository contains modules to provide more information about product stock availability in terms of quantities (immediately usable, potential, unreserved ones, ...).
stock-logistics-orderpoint: This repository contains modules to extend reordering rules (available on warehouses locations) functionalities.
stock-logistics-request: This repository contains modules to provide another way of creating stock movements. Provided as a dedicated application, users will be able to create their stock needs by product and location.
stock-logistics-interfaces: This repository contains modules to manage vertical physical (such as Kardex Remstar, Modula, ...). lifts for stock internal locations.On Fri, Oct 7, 2022 at 11:56 AM Simone Orsi <notifications@odoo-community.org> wrote:Hi Denis,sorry I've been a bit under the weather for some weeks... and having OCA days + OXP next week does not help in this sense, as you know :DWhich is the definitive list of these new repos? I see some discussion but it is kind of hard to pick which ones you agreed upon.Can you list them again pls?Thanks and CU soon :)SOn Fri, Oct 7, 2022 at 8:57 AM Roussel, Denis <notifications@odoo-community.org> wrote:Gentle ping reminder @BoardOn Mon, Oct 3, 2022 at 5:38 PM Roussel, Denis <denis.roussel@acsone.eu> wrote:Hi,In order to begin on good basis, it should be great to have new repos.Here are again the specifications:stock-logistics-availability: This repository contains modules to provide more information about product stock availability in terms of quantities (immediately usable, potential, unreserved ones, ...).stock-logistics-orderpoint: This repository contains modules to extend reordering rules (available on warehouses locations) functionalities.stock-logistics-request: This repository contains modules to provide another way of creating stock movements. Provided as a dedicated application, users will be able to create their stock needs by product and location.stock-logistics-interfaces: This repository contains modules to manage vertical physical (such as Kardex Remstar, Modula, ...). lifts for stock internal locations.On Thu, Sep 8, 2022 at 10:36 AM David Beal <notifications@odoo-community.org> wrote:Hello,On my side i never known if a module was in stock-logistics-workflow or stock-logistics-warehouseGood point to have more dedicated repositories well namedAs I see all stocks repos are prefixed stock-logistics ...Then it seems there is no added value for 'logistics' name (no help to understand the content)What if if we rename all prefix to stock only of those repositoriesI'm lazy and I prefer to write "cd stock-..." rather than "cd stock-logistics-..." all days of the yearWhat do you think about this? Not lazy on your side ?ThanksRegardsLe mer. 7 sept. 2022 à 13:42, Daniel Reis <notifications@odoo-community.org> a écrit :OK for me.
On 07/09/22 12:17, Roussel, Denis wrote:
Hi @Jacques-Etienne
No problem for stock-logistics-interfaces. You know more the coverage of those modules. But doesn't it sound a little bit too generic ?
I also thought about inventory modules. But from v15, Odoo has refactored the way inventories are done. There are currently no module of that kind in v15 branch either. Maybe we can wait and see on that one.
I'd prefer keeping the habits of people for both well known ones. Warehouse is usually for 'static' representations of flows (base objects, ...). Workflow is usually for pickings/moves behaviours.As the first aim of my request is to lower the weight of repositories, merging both is quite unwanted.
On Wed, Sep 7, 2022 at 1:06 PM Jacques-Etienne Baudoux <notifications@odoo-community.org> wrote:
Maybe stock-logistics-interfaces instead of stock-logistics-lift and include the measuring devices modules
And also stock-logistics-inventory ?
What about the remaining modules in stock-logistics-warehouse? It's not always clear why a module is in stock-logistics-warehouse or in stock-logistics-workflow. Shouldn't stock-logistics-warehouse then be dropped in favor of stock-logistics-workflow ?
J-E
Le mer. 7 sept. 2022 à 11:42, Simone Orsi <notifications@odoo-community.org> a écrit :
ah ok, well, using module names didn't sound as "new repo names" ;P
I agree w/ the remarks by Holger and Daniel then.
We could have- stock-logistics-availability
- stock-logistics-orderpoint
- stock-logistics-request
- stock-logistics-lift
On Wed, Sep 7, 2022 at 11:36 AM Roussel, Denis <notifications@odoo-community.org> wrote:
@Holger of course hyphens in names
For descriptions in repos, I can do it as soon as they are created.
On Wed, Sep 7, 2022 at 11:27 AM Holger Brunn <notifications@odoo-community.org> wrote:
> stock-logistics-warehouse: > stock_available > stock_orderpoint > stock_request > stock_vertical_lift I rather like hyphens in repository names instead of underscores, and all current repos do that. So I'd suggest to do it the same with the new repos. New ones are fine with me, still I think people proposing new repos should immediately provide a catchy description that can be placed to github and the oca db. -- Your partner for the hard Odoo problems https://hunki-enterprises.com
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
--
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
--
Simone Orsi
Full stack Python web developer, Odoo specialist, Odoo Community Board Member, in love with open source._______________________________________________
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
--
DANIEL REIS
MANAGING DIRECTORM: +351 919 991 307
E: dreis@OpenSourceIntegrators.com
A: Avenida da República 3000, Estoril Office B, #34
_______________________________________________
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
--Simone OrsiFull stack Python web developer, Odoo specialist, Odoo Community Board Member, in love with open source._______________________________________________
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
--Simone OrsiFull stack Python web developer, Odoo specialist, Odoo Community Board Member, in love with open source._______________________________________________
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. - 03:10 - 7 Oct 2022 -
Re: Stock Repositories splitting
I created all repos. Can you take care of the bootstrap?On Fri, Oct 7, 2022 at 12:02 PM Roussel, Denis <notifications@odoo-community.org> wrote:Hi Simone,Here are they:stock-logistics-availability: This repository contains modules to provide more information about product stock availability in terms of quantities (immediately usable, potential, unreserved ones, ...).
stock-logistics-orderpoint: This repository contains modules to extend reordering rules (available on warehouses locations) functionalities.
stock-logistics-request: This repository contains modules to provide another way of creating stock movements. Provided as a dedicated application, users will be able to create their stock needs by product and location.
stock-logistics-interfaces: This repository contains modules to manage vertical physical (such as Kardex Remstar, Modula, ...). lifts for stock internal locations.On Fri, Oct 7, 2022 at 11:56 AM Simone Orsi <notifications@odoo-community.org> wrote:Hi Denis,sorry I've been a bit under the weather for some weeks... and having OCA days + OXP next week does not help in this sense, as you know :DWhich is the definitive list of these new repos? I see some discussion but it is kind of hard to pick which ones you agreed upon.Can you list them again pls?Thanks and CU soon :)SOn Fri, Oct 7, 2022 at 8:57 AM Roussel, Denis <notifications@odoo-community.org> wrote:Gentle ping reminder @BoardOn Mon, Oct 3, 2022 at 5:38 PM Roussel, Denis <denis.roussel@acsone.eu> wrote:Hi,In order to begin on good basis, it should be great to have new repos.Here are again the specifications:stock-logistics-availability: This repository contains modules to provide more information about product stock availability in terms of quantities (immediately usable, potential, unreserved ones, ...).stock-logistics-orderpoint: This repository contains modules to extend reordering rules (available on warehouses locations) functionalities.stock-logistics-request: This repository contains modules to provide another way of creating stock movements. Provided as a dedicated application, users will be able to create their stock needs by product and location.stock-logistics-interfaces: This repository contains modules to manage vertical physical (such as Kardex Remstar, Modula, ...). lifts for stock internal locations.On Thu, Sep 8, 2022 at 10:36 AM David Beal <notifications@odoo-community.org> wrote:Hello,On my side i never known if a module was in stock-logistics-workflow or stock-logistics-warehouseGood point to have more dedicated repositories well namedAs I see all stocks repos are prefixed stock-logistics ...Then it seems there is no added value for 'logistics' name (no help to understand the content)What if if we rename all prefix to stock only of those repositoriesI'm lazy and I prefer to write "cd stock-..." rather than "cd stock-logistics-..." all days of the yearWhat do you think about this? Not lazy on your side ?ThanksRegardsLe mer. 7 sept. 2022 à 13:42, Daniel Reis <notifications@odoo-community.org> a écrit :OK for me.
On 07/09/22 12:17, Roussel, Denis wrote:
Hi @Jacques-Etienne
No problem for stock-logistics-interfaces. You know more the coverage of those modules. But doesn't it sound a little bit too generic ?
I also thought about inventory modules. But from v15, Odoo has refactored the way inventories are done. There are currently no module of that kind in v15 branch either. Maybe we can wait and see on that one.
I'd prefer keeping the habits of people for both well known ones. Warehouse is usually for 'static' representations of flows (base objects, ...). Workflow is usually for pickings/moves behaviours.As the first aim of my request is to lower the weight of repositories, merging both is quite unwanted.
On Wed, Sep 7, 2022 at 1:06 PM Jacques-Etienne Baudoux <notifications@odoo-community.org> wrote:
Maybe stock-logistics-interfaces instead of stock-logistics-lift and include the measuring devices modules
And also stock-logistics-inventory ?
What about the remaining modules in stock-logistics-warehouse? It's not always clear why a module is in stock-logistics-warehouse or in stock-logistics-workflow. Shouldn't stock-logistics-warehouse then be dropped in favor of stock-logistics-workflow ?
J-E
Le mer. 7 sept. 2022 à 11:42, Simone Orsi <notifications@odoo-community.org> a écrit :
ah ok, well, using module names didn't sound as "new repo names" ;P
I agree w/ the remarks by Holger and Daniel then.
We could have- stock-logistics-availability
- stock-logistics-orderpoint
- stock-logistics-request
- stock-logistics-lift
On Wed, Sep 7, 2022 at 11:36 AM Roussel, Denis <notifications@odoo-community.org> wrote:
@Holger of course hyphens in names
For descriptions in repos, I can do it as soon as they are created.
On Wed, Sep 7, 2022 at 11:27 AM Holger Brunn <notifications@odoo-community.org> wrote:
> stock-logistics-warehouse: > stock_available > stock_orderpoint > stock_request > stock_vertical_lift I rather like hyphens in repository names instead of underscores, and all current repos do that. So I'd suggest to do it the same with the new repos. New ones are fine with me, still I think people proposing new repos should immediately provide a catchy description that can be placed to github and the oca db. -- Your partner for the hard Odoo problems https://hunki-enterprises.com
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
--
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
--
Simone Orsi
Full stack Python web developer, Odoo specialist, Odoo Community Board Member, in love with open source._______________________________________________
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
--
DANIEL REIS
MANAGING DIRECTORM: +351 919 991 307
E: dreis@OpenSourceIntegrators.com
A: Avenida da República 3000, Estoril Office B, #34
_______________________________________________
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
--Simone OrsiFull stack Python web developer, Odoo specialist, Odoo Community Board Member, in love with open source._______________________________________________
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
--Simone OrsiFull stack Python web developer, Odoo specialist, Odoo Community Board Member, in love with open source.
by Simone Orsi. - 02:55 - 7 Oct 2022 -
Re: Stock Repositories splitting
Hi Simone,Here are they:stock-logistics-availability: This repository contains modules to provide more information about product stock availability in terms of quantities (immediately usable, potential, unreserved ones, ...).
stock-logistics-orderpoint: This repository contains modules to extend reordering rules (available on warehouses locations) functionalities.
stock-logistics-request: This repository contains modules to provide another way of creating stock movements. Provided as a dedicated application, users will be able to create their stock needs by product and location.
stock-logistics-interfaces: This repository contains modules to manage vertical physical (such as Kardex Remstar, Modula, ...). lifts for stock internal locations.On Fri, Oct 7, 2022 at 11:56 AM Simone Orsi <notifications@odoo-community.org> wrote:Hi Denis,sorry I've been a bit under the weather for some weeks... and having OCA days + OXP next week does not help in this sense, as you know :DWhich is the definitive list of these new repos? I see some discussion but it is kind of hard to pick which ones you agreed upon.Can you list them again pls?Thanks and CU soon :)SOn Fri, Oct 7, 2022 at 8:57 AM Roussel, Denis <notifications@odoo-community.org> wrote:Gentle ping reminder @BoardOn Mon, Oct 3, 2022 at 5:38 PM Roussel, Denis <denis.roussel@acsone.eu> wrote:Hi,In order to begin on good basis, it should be great to have new repos.Here are again the specifications:stock-logistics-availability: This repository contains modules to provide more information about product stock availability in terms of quantities (immediately usable, potential, unreserved ones, ...).stock-logistics-orderpoint: This repository contains modules to extend reordering rules (available on warehouses locations) functionalities.stock-logistics-request: This repository contains modules to provide another way of creating stock movements. Provided as a dedicated application, users will be able to create their stock needs by product and location.stock-logistics-interfaces: This repository contains modules to manage vertical physical (such as Kardex Remstar, Modula, ...). lifts for stock internal locations.On Thu, Sep 8, 2022 at 10:36 AM David Beal <notifications@odoo-community.org> wrote:Hello,On my side i never known if a module was in stock-logistics-workflow or stock-logistics-warehouseGood point to have more dedicated repositories well namedAs I see all stocks repos are prefixed stock-logistics ...Then it seems there is no added value for 'logistics' name (no help to understand the content)What if if we rename all prefix to stock only of those repositoriesI'm lazy and I prefer to write "cd stock-..." rather than "cd stock-logistics-..." all days of the yearWhat do you think about this? Not lazy on your side ?ThanksRegardsLe mer. 7 sept. 2022 à 13:42, Daniel Reis <notifications@odoo-community.org> a écrit :OK for me.
On 07/09/22 12:17, Roussel, Denis wrote:
Hi @Jacques-Etienne
No problem for stock-logistics-interfaces. You know more the coverage of those modules. But doesn't it sound a little bit too generic ?
I also thought about inventory modules. But from v15, Odoo has refactored the way inventories are done. There are currently no module of that kind in v15 branch either. Maybe we can wait and see on that one.
I'd prefer keeping the habits of people for both well known ones. Warehouse is usually for 'static' representations of flows (base objects, ...). Workflow is usually for pickings/moves behaviours.As the first aim of my request is to lower the weight of repositories, merging both is quite unwanted.
On Wed, Sep 7, 2022 at 1:06 PM Jacques-Etienne Baudoux <notifications@odoo-community.org> wrote:
Maybe stock-logistics-interfaces instead of stock-logistics-lift and include the measuring devices modules
And also stock-logistics-inventory ?
What about the remaining modules in stock-logistics-warehouse? It's not always clear why a module is in stock-logistics-warehouse or in stock-logistics-workflow. Shouldn't stock-logistics-warehouse then be dropped in favor of stock-logistics-workflow ?
J-E
Le mer. 7 sept. 2022 à 11:42, Simone Orsi <notifications@odoo-community.org> a écrit :
ah ok, well, using module names didn't sound as "new repo names" ;P
I agree w/ the remarks by Holger and Daniel then.
We could have- stock-logistics-availability
- stock-logistics-orderpoint
- stock-logistics-request
- stock-logistics-lift
On Wed, Sep 7, 2022 at 11:36 AM Roussel, Denis <notifications@odoo-community.org> wrote:
@Holger of course hyphens in names
For descriptions in repos, I can do it as soon as they are created.
On Wed, Sep 7, 2022 at 11:27 AM Holger Brunn <notifications@odoo-community.org> wrote:
> stock-logistics-warehouse: > stock_available > stock_orderpoint > stock_request > stock_vertical_lift I rather like hyphens in repository names instead of underscores, and all current repos do that. So I'd suggest to do it the same with the new repos. New ones are fine with me, still I think people proposing new repos should immediately provide a catchy description that can be placed to github and the oca db. -- Your partner for the hard Odoo problems https://hunki-enterprises.com
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
--
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
--
Simone Orsi
Full stack Python web developer, Odoo specialist, Odoo Community Board Member, in love with open source._______________________________________________
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
--
DANIEL REIS
MANAGING DIRECTORM: +351 919 991 307
E: dreis@OpenSourceIntegrators.com
A: Avenida da República 3000, Estoril Office B, #34
_______________________________________________
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
--Simone OrsiFull stack Python web developer, Odoo specialist, Odoo Community Board Member, in love with open source._______________________________________________
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. - 12:01 - 7 Oct 2022 -
Re: Stock Repositories splitting
Hi Denis,sorry I've been a bit under the weather for some weeks... and having OCA days + OXP next week does not help in this sense, as you know :DWhich is the definitive list of these new repos? I see some discussion but it is kind of hard to pick which ones you agreed upon.Can you list them again pls?Thanks and CU soon :)SOn Fri, Oct 7, 2022 at 8:57 AM Roussel, Denis <notifications@odoo-community.org> wrote:Gentle ping reminder @BoardOn Mon, Oct 3, 2022 at 5:38 PM Roussel, Denis <denis.roussel@acsone.eu> wrote:Hi,In order to begin on good basis, it should be great to have new repos.Here are again the specifications:stock-logistics-availability: This repository contains modules to provide more information about product stock availability in terms of quantities (immediately usable, potential, unreserved ones, ...).stock-logistics-orderpoint: This repository contains modules to extend reordering rules (available on warehouses locations) functionalities.stock-logistics-request: This repository contains modules to provide another way of creating stock movements. Provided as a dedicated application, users will be able to create their stock needs by product and location.stock-logistics-interfaces: This repository contains modules to manage vertical physical (such as Kardex Remstar, Modula, ...). lifts for stock internal locations.On Thu, Sep 8, 2022 at 10:36 AM David Beal <notifications@odoo-community.org> wrote:Hello,On my side i never known if a module was in stock-logistics-workflow or stock-logistics-warehouseGood point to have more dedicated repositories well namedAs I see all stocks repos are prefixed stock-logistics ...Then it seems there is no added value for 'logistics' name (no help to understand the content)What if if we rename all prefix to stock only of those repositoriesI'm lazy and I prefer to write "cd stock-..." rather than "cd stock-logistics-..." all days of the yearWhat do you think about this? Not lazy on your side ?ThanksRegardsLe mer. 7 sept. 2022 à 13:42, Daniel Reis <notifications@odoo-community.org> a écrit :OK for me.
On 07/09/22 12:17, Roussel, Denis wrote:
Hi @Jacques-Etienne
No problem for stock-logistics-interfaces. You know more the coverage of those modules. But doesn't it sound a little bit too generic ?
I also thought about inventory modules. But from v15, Odoo has refactored the way inventories are done. There are currently no module of that kind in v15 branch either. Maybe we can wait and see on that one.
I'd prefer keeping the habits of people for both well known ones. Warehouse is usually for 'static' representations of flows (base objects, ...). Workflow is usually for pickings/moves behaviours.As the first aim of my request is to lower the weight of repositories, merging both is quite unwanted.
On Wed, Sep 7, 2022 at 1:06 PM Jacques-Etienne Baudoux <notifications@odoo-community.org> wrote:
Maybe stock-logistics-interfaces instead of stock-logistics-lift and include the measuring devices modules
And also stock-logistics-inventory ?
What about the remaining modules in stock-logistics-warehouse? It's not always clear why a module is in stock-logistics-warehouse or in stock-logistics-workflow. Shouldn't stock-logistics-warehouse then be dropped in favor of stock-logistics-workflow ?
J-E
Le mer. 7 sept. 2022 à 11:42, Simone Orsi <notifications@odoo-community.org> a écrit :
ah ok, well, using module names didn't sound as "new repo names" ;P
I agree w/ the remarks by Holger and Daniel then.
We could have- stock-logistics-availability
- stock-logistics-orderpoint
- stock-logistics-request
- stock-logistics-lift
On Wed, Sep 7, 2022 at 11:36 AM Roussel, Denis <notifications@odoo-community.org> wrote:
@Holger of course hyphens in names
For descriptions in repos, I can do it as soon as they are created.
On Wed, Sep 7, 2022 at 11:27 AM Holger Brunn <notifications@odoo-community.org> wrote:
> stock-logistics-warehouse: > stock_available > stock_orderpoint > stock_request > stock_vertical_lift I rather like hyphens in repository names instead of underscores, and all current repos do that. So I'd suggest to do it the same with the new repos. New ones are fine with me, still I think people proposing new repos should immediately provide a catchy description that can be placed to github and the oca db. -- Your partner for the hard Odoo problems https://hunki-enterprises.com
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
--
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
--
Simone Orsi
Full stack Python web developer, Odoo specialist, Odoo Community Board Member, in love with open source._______________________________________________
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
--
DANIEL REIS
MANAGING DIRECTORM: +351 919 991 307
E: dreis@OpenSourceIntegrators.com
A: Avenida da República 3000, Estoril Office B, #34
_______________________________________________
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
--Simone OrsiFull stack Python web developer, Odoo specialist, Odoo Community Board Member, in love with open source.
by Simone Orsi. - 11:55 - 7 Oct 2022 -
Re: Stock Repositories splitting
Gentle ping reminder @BoardOn Mon, Oct 3, 2022 at 5:38 PM Roussel, Denis <denis.roussel@acsone.eu> wrote:Hi,In order to begin on good basis, it should be great to have new repos.Here are again the specifications:stock-logistics-availability: This repository contains modules to provide more information about product stock availability in terms of quantities (immediately usable, potential, unreserved ones, ...).stock-logistics-orderpoint: This repository contains modules to extend reordering rules (available on warehouses locations) functionalities.stock-logistics-request: This repository contains modules to provide another way of creating stock movements. Provided as a dedicated application, users will be able to create their stock needs by product and location.stock-logistics-interfaces: This repository contains modules to manage vertical physical (such as Kardex Remstar, Modula, ...). lifts for stock internal locations.On Thu, Sep 8, 2022 at 10:36 AM David Beal <notifications@odoo-community.org> wrote:Hello,On my side i never known if a module was in stock-logistics-workflow or stock-logistics-warehouseGood point to have more dedicated repositories well namedAs I see all stocks repos are prefixed stock-logistics ...Then it seems there is no added value for 'logistics' name (no help to understand the content)What if if we rename all prefix to stock only of those repositoriesI'm lazy and I prefer to write "cd stock-..." rather than "cd stock-logistics-..." all days of the yearWhat do you think about this? Not lazy on your side ?ThanksRegardsLe mer. 7 sept. 2022 à 13:42, Daniel Reis <notifications@odoo-community.org> a écrit :OK for me.
On 07/09/22 12:17, Roussel, Denis wrote:
Hi @Jacques-Etienne
No problem for stock-logistics-interfaces. You know more the coverage of those modules. But doesn't it sound a little bit too generic ?
I also thought about inventory modules. But from v15, Odoo has refactored the way inventories are done. There are currently no module of that kind in v15 branch either. Maybe we can wait and see on that one.
I'd prefer keeping the habits of people for both well known ones. Warehouse is usually for 'static' representations of flows (base objects, ...). Workflow is usually for pickings/moves behaviours.As the first aim of my request is to lower the weight of repositories, merging both is quite unwanted.
On Wed, Sep 7, 2022 at 1:06 PM Jacques-Etienne Baudoux <notifications@odoo-community.org> wrote:
Maybe stock-logistics-interfaces instead of stock-logistics-lift and include the measuring devices modules
And also stock-logistics-inventory ?
What about the remaining modules in stock-logistics-warehouse? It's not always clear why a module is in stock-logistics-warehouse or in stock-logistics-workflow. Shouldn't stock-logistics-warehouse then be dropped in favor of stock-logistics-workflow ?
J-E
Le mer. 7 sept. 2022 à 11:42, Simone Orsi <notifications@odoo-community.org> a écrit :
ah ok, well, using module names didn't sound as "new repo names" ;P
I agree w/ the remarks by Holger and Daniel then.
We could have- stock-logistics-availability
- stock-logistics-orderpoint
- stock-logistics-request
- stock-logistics-lift
On Wed, Sep 7, 2022 at 11:36 AM Roussel, Denis <notifications@odoo-community.org> wrote:
@Holger of course hyphens in names
For descriptions in repos, I can do it as soon as they are created.
On Wed, Sep 7, 2022 at 11:27 AM Holger Brunn <notifications@odoo-community.org> wrote:
> stock-logistics-warehouse: > stock_available > stock_orderpoint > stock_request > stock_vertical_lift I rather like hyphens in repository names instead of underscores, and all current repos do that. So I'd suggest to do it the same with the new repos. New ones are fine with me, still I think people proposing new repos should immediately provide a catchy description that can be placed to github and the oca db. -- Your partner for the hard Odoo problems https://hunki-enterprises.com
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
--
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
--
Simone Orsi
Full stack Python web developer, Odoo specialist, Odoo Community Board Member, in love with open source._______________________________________________
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
--
DANIEL REIS
MANAGING DIRECTORM: +351 919 991 307
E: dreis@OpenSourceIntegrators.com
A: Avenida da República 3000, Estoril Office B, #34
_______________________________________________
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 Denis Roussel. - 08:55 - 7 Oct 2022
-
OCA Days 2022 Talk Proposals - submissions close today 31st August
Hello OCA Contributors,Just a quick reminder that if you had a talk proposal to send through for OCA days 2022, today is the last day to do so.
You can submit your presentation ideas here: https://odoo-community.org/event/oca-days-2022-liege-2022-10-10-2022-10-12-131/track_proposalWe are looking forward to hearing about what people have been up to over the last year!Warmest regards,Rebecca--Rebecca GellatlyGeneral SecretaryOdoo Community Association
by Rebecca Gellatly - 11:45 - 31 Aug 2022-
Re: OCA Days 2022 Talk Proposals - submissions close today 31st August
Thanks everyone.Yes, as Stephane says we have them all.
So many great topics to work with.
I'll be in touch with the people who have proposed talks over the next couple of weeks.Cheers,RebeccaOn Thu, 1 Sept 2022 at 06:57, Pierre Verkest <notifications@odoo-community.org> wrote:Thanks for your Time Stéphane !RegardsLe mer. 31 août 2022 à 18:17, Stéphane Bidoul <notifications@odoo-community.org> a écrit :Hi Pierre, Gonzalo, Pedro, Frederik,I confirm your submission have been received.Best regards,-sbiOn Wed, Aug 31, 2022 at 2:42 PM Pierre Verkest <notifications@odoo-community.org> wrote:Hi !Was the same for me, I haven't got any feedback that my proposal was properly received, I hope so !?Regards,Le mer. 31 août 2022 à 14:07, Gonzalo Ruzafa <notifications@odoo-community.org> a écrit :RebeccaHow are you? Same case a Frederik, let me know if its there.Thanks!El mié, 31 ago 2022 a la(s) 06:46, Rebecca Gellatly (notifications@odoo-community.org) escribió:Hello OCA Contributors,Just a quick reminder that if you had a talk proposal to send through for OCA days 2022, today is the last day to do so.
You can submit your presentation ideas here: https://odoo-community.org/event/oca-days-2022-liege-2022-10-10-2022-10-12-131/track_proposalWe are looking forward to hearing about what people have been up to over the last year!Warmest regards,Rebecca--Rebecca GellatlyGeneral SecretaryOdoo Community Association_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribeEl mié, 31 ago 2022 a la(s) 06:46, Rebecca Gellatly (notifications@odoo-community.org) escribió:Hello OCA Contributors,Just a quick reminder that if you had a talk proposal to send through for OCA days 2022, today is the last day to do so.
You can submit your presentation ideas here: https://odoo-community.org/event/oca-days-2022-liege-2022-10-10-2022-10-12-131/track_proposalWe are looking forward to hearing about what people have been up to over the last year!Warmest regards,Rebecca--Rebecca GellatlyGeneral SecretaryOdoo Community Association_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
--Pierre_______________________________________________
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
--Rebecca GellatlyGeneral SecretaryOdoo Community Association
by Rebecca Gellatly - 05:45 - 1 Sep 2022 -
Re: OCA Days 2022 Talk Proposals - submissions close today 31st August
Thanks for your Time Stéphane !RegardsLe mer. 31 août 2022 à 18:17, Stéphane Bidoul <notifications@odoo-community.org> a écrit :Hi Pierre, Gonzalo, Pedro, Frederik,I confirm your submission have been received.Best regards,-sbiOn Wed, Aug 31, 2022 at 2:42 PM Pierre Verkest <notifications@odoo-community.org> wrote:Hi !Was the same for me, I haven't got any feedback that my proposal was properly received, I hope so !?Regards,Le mer. 31 août 2022 à 14:07, Gonzalo Ruzafa <notifications@odoo-community.org> a écrit :RebeccaHow are you? Same case a Frederik, let me know if its there.Thanks!El mié, 31 ago 2022 a la(s) 06:46, Rebecca Gellatly (notifications@odoo-community.org) escribió:Hello OCA Contributors,Just a quick reminder that if you had a talk proposal to send through for OCA days 2022, today is the last day to do so.
You can submit your presentation ideas here: https://odoo-community.org/event/oca-days-2022-liege-2022-10-10-2022-10-12-131/track_proposalWe are looking forward to hearing about what people have been up to over the last year!Warmest regards,Rebecca--Rebecca GellatlyGeneral SecretaryOdoo Community Association_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribeEl mié, 31 ago 2022 a la(s) 06:46, Rebecca Gellatly (notifications@odoo-community.org) escribió:Hello OCA Contributors,Just a quick reminder that if you had a talk proposal to send through for OCA days 2022, today is the last day to do so.
You can submit your presentation ideas here: https://odoo-community.org/event/oca-days-2022-liege-2022-10-10-2022-10-12-131/track_proposalWe are looking forward to hearing about what people have been up to over the last year!Warmest regards,Rebecca--Rebecca GellatlyGeneral SecretaryOdoo Community Association_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
--Pierre_______________________________________________
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 Pierre Verkest - 08:56 - 31 Aug 2022 -
Re: OCA Days 2022 Talk Proposals - submissions close today 31st August
Hi Pierre, Gonzalo, Pedro, Frederik,I confirm your submission have been received.Best regards,-sbiOn Wed, Aug 31, 2022 at 2:42 PM Pierre Verkest <notifications@odoo-community.org> wrote:Hi !Was the same for me, I haven't got any feedback that my proposal was properly received, I hope so !?Regards,Le mer. 31 août 2022 à 14:07, Gonzalo Ruzafa <notifications@odoo-community.org> a écrit :RebeccaHow are you? Same case a Frederik, let me know if its there.Thanks!El mié, 31 ago 2022 a la(s) 06:46, Rebecca Gellatly (notifications@odoo-community.org) escribió:Hello OCA Contributors,Just a quick reminder that if you had a talk proposal to send through for OCA days 2022, today is the last day to do so.
You can submit your presentation ideas here: https://odoo-community.org/event/oca-days-2022-liege-2022-10-10-2022-10-12-131/track_proposalWe are looking forward to hearing about what people have been up to over the last year!Warmest regards,Rebecca--Rebecca GellatlyGeneral SecretaryOdoo Community Association_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribeEl mié, 31 ago 2022 a la(s) 06:46, Rebecca Gellatly (notifications@odoo-community.org) escribió:Hello OCA Contributors,Just a quick reminder that if you had a talk proposal to send through for OCA days 2022, today is the last day to do so.
You can submit your presentation ideas here: https://odoo-community.org/event/oca-days-2022-liege-2022-10-10-2022-10-12-131/track_proposalWe are looking forward to hearing about what people have been up to over the last year!Warmest regards,Rebecca--Rebecca GellatlyGeneral SecretaryOdoo Community Association_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
--Pierre_______________________________________________
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 - 06:15 - 31 Aug 2022 -
Re: OCA Days 2022 Talk Proposals - submissions close today 31st August
Hi !Was the same for me, I haven't got any feedback that my proposal was properly received, I hope so !?Regards,Le mer. 31 août 2022 à 14:07, Gonzalo Ruzafa <notifications@odoo-community.org> a écrit :RebeccaHow are you? Same case a Frederik, let me know if its there.Thanks!El mié, 31 ago 2022 a la(s) 06:46, Rebecca Gellatly (notifications@odoo-community.org) escribió:Hello OCA Contributors,Just a quick reminder that if you had a talk proposal to send through for OCA days 2022, today is the last day to do so.
You can submit your presentation ideas here: https://odoo-community.org/event/oca-days-2022-liege-2022-10-10-2022-10-12-131/track_proposalWe are looking forward to hearing about what people have been up to over the last year!Warmest regards,Rebecca--Rebecca GellatlyGeneral SecretaryOdoo Community Association_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribeEl mié, 31 ago 2022 a la(s) 06:46, Rebecca Gellatly (notifications@odoo-community.org) escribió:Hello OCA Contributors,Just a quick reminder that if you had a talk proposal to send through for OCA days 2022, today is the last day to do so.
You can submit your presentation ideas here: https://odoo-community.org/event/oca-days-2022-liege-2022-10-10-2022-10-12-131/track_proposalWe are looking forward to hearing about what people have been up to over the last year!Warmest regards,Rebecca--Rebecca GellatlyGeneral SecretaryOdoo Community Association_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
--Pierre
by Pierre Verkest - 02:41 - 31 Aug 2022 -
Re: OCA Days 2022 Talk Proposals - submissions close today 31st August
RebeccaHow are you? Same case a Frederik, let me know if its there.Thanks!El mié, 31 ago 2022 a la(s) 06:46, Rebecca Gellatly (notifications@odoo-community.org) escribió:Hello OCA Contributors,Just a quick reminder that if you had a talk proposal to send through for OCA days 2022, today is the last day to do so.
You can submit your presentation ideas here: https://odoo-community.org/event/oca-days-2022-liege-2022-10-10-2022-10-12-131/track_proposalWe are looking forward to hearing about what people have been up to over the last year!Warmest regards,Rebecca--Rebecca GellatlyGeneral SecretaryOdoo Community Association_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribeEl mié, 31 ago 2022 a la(s) 06:46, Rebecca Gellatly (notifications@odoo-community.org) escribió:Hello OCA Contributors,Just a quick reminder that if you had a talk proposal to send through for OCA days 2022, today is the last day to do so.
You can submit your presentation ideas here: https://odoo-community.org/event/oca-days-2022-liege-2022-10-10-2022-10-12-131/track_proposalWe are looking forward to hearing about what people have been up to over the last year!Warmest regards,Rebecca--Rebecca GellatlyGeneral SecretaryOdoo Community Association_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Gonzalo Ruzafa - 02:06 - 31 Aug 2022
-
-
Proposing myself as PSC for OCA/server-tools
Hi everyone, Recently I've been quite active in the "server-tools" repo. I see that regular maintainance is not being done (enough) by the current maintainers - understandable of course, because it's a big repository and everyone's busy, etc. So I also want to be able to do it - merge approved MR's, fasttrack some really small changes, close duplicate MR's, that sort of thing. Can I be a PSC of "server-tools"? -Tom
by Tom Blauwendraat - 05:55 - 22 Aug 2022-
Re: Proposing myself as PSC for OCA/server-tools
Thank you! I'll tread with care.
On 8/29/22 14:31, Stéphane Bidoul wrote:
Hi Tom,
I just added you to the Tools PSC. It's a big one covering a large number of repos.
You should receive the GitHub invite in the next 24 hours.
-sbi
On Mon, Aug 29, 2022 at 12:01 PM Tom Blauwendraat <notifications@odoo-community.org> wrote:
Thanks for the support! I counted around +7, am I in? On 8/22/22 17:52, Tom Blauwendraat wrote: > Hi everyone, > > Recently I've been quite active in the "server-tools" repo. > > I see that regular maintainance is not being done (enough) by the > current maintainers - understandable of course, because it's a big > repository and everyone's busy, etc. > > So I also want to be able to do it - merge approved MR's, fasttrack > some really small changes, close duplicate MR's, that sort of thing. > > Can I be a PSC of "server-tools"? > > -Tom >
_______________________________________________
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 - 08:35 - 29 Aug 2022 -
Re: Proposing myself as PSC for OCA/server-tools
Hi Tom,I just added you to the Tools PSC. It's a big one covering a large number of repos.You should receive the GitHub invite in the next 24 hours.-sbiOn Mon, Aug 29, 2022 at 12:01 PM Tom Blauwendraat <notifications@odoo-community.org> wrote:Thanks for the support! I counted around +7, am I in? On 8/22/22 17:52, Tom Blauwendraat wrote: > Hi everyone, > > Recently I've been quite active in the "server-tools" repo. > > I see that regular maintainance is not being done (enough) by the > current maintainers - understandable of course, because it's a big > repository and everyone's busy, etc. > > So I also want to be able to do it - merge approved MR's, fasttrack > some really small changes, close duplicate MR's, that sort of thing. > > Can I be a PSC of "server-tools"? > > -Tom >
_______________________________________________
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 - 02:31 - 29 Aug 2022 -
Re: Proposing myself as PSC for OCA/server-tools
Thanks for the support! I counted around +7, am I in? On 8/22/22 17:52, Tom Blauwendraat wrote: > Hi everyone, > > Recently I've been quite active in the "server-tools" repo. > > I see that regular maintainance is not being done (enough) by the > current maintainers - understandable of course, because it's a big > repository and everyone's busy, etc. > > So I also want to be able to do it - merge approved MR's, fasttrack > some really small changes, close duplicate MR's, that sort of thing. > > Can I be a PSC of "server-tools"? > > -Tom >
by Tom Blauwendraat - 12:01 - 29 Aug 2022 -
Re: Proposing myself as PSC for OCA/server-tools
+1On Tue, 23 Aug 2022 at 11:56, David Beal <notifications@odoo-community.org> wrote:Le mar. 23 août 2022 à 10:17, Nikos Tsirintanis <notifications@odoo-community.org> a écrit :+1
On 22-08-2022 17:56, Tom Blauwendraat wrote:
Hi everyone, Recently I've been quite active in the "server-tools" repo. I see that regular maintainance is not being done (enough) by the current maintainers - understandable of course, because it's a big repository and everyone's busy, etc. So I also want to be able to do it - merge approved MR's, fasttrack some really small changes, close duplicate MR's, that sort of thing. Can I be a PSC of "server-tools"? -Tom
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
-- Therp - Maatwerk in open ontwikkeling Nikos Tsirintanis - Ontwerp en implementatie mail: ntsirintanis@therp.nl web: http://therp.nl phone: +31 (0)20 3093093
_______________________________________________
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 Luis Lafaurie - 02:25 - 23 Aug 2022 -
Re: Proposing myself as PSC for OCA/server-tools
Le mar. 23 août 2022 à 10:17, Nikos Tsirintanis <notifications@odoo-community.org> a écrit :+1
On 22-08-2022 17:56, Tom Blauwendraat wrote:
Hi everyone, Recently I've been quite active in the "server-tools" repo. I see that regular maintainance is not being done (enough) by the current maintainers - understandable of course, because it's a big repository and everyone's busy, etc. So I also want to be able to do it - merge approved MR's, fasttrack some really small changes, close duplicate MR's, that sort of thing. Can I be a PSC of "server-tools"? -Tom
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
-- Therp - Maatwerk in open ontwikkeling Nikos Tsirintanis - Ontwerp en implementatie mail: ntsirintanis@therp.nl web: http://therp.nl phone: +31 (0)20 3093093
_______________________________________________
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 - 12:55 - 23 Aug 2022
-
-
OCA Days 2022 - Video Post Production RFQ
Hello OCA Contributors,
I hope this finds you all well!I wanted to share some information about our latest RFQS.--- Graphic Designer RFQ 2022:
- Pouce-Pied was successful in our recent RFQ for a Graphic Designer for 2022. We would like to thank ForgeFlow, Nathalie Lothier and Ariadna Dalmau for applying.
- OCA Days 2022 - Video Post Production RFQ
- This is a new RFQ - Deadline 16th September
- You can find the details here.
We are looking forward to the collaboration ahead.
Warmest regards,RebeccaRebecca GellatlyGeneral SecretaryOdoo Community Association
by Rebecca Gellatly - 04:11 - 22 Aug 2022 -
Re: Proposal to become PSC of module OCA/payroll
As explained by Nicolás, +1 by my part in Payroll PSC.Regards.
by Pedro M. Baeza - 05:56 - 17 Aug 2022-
Re: Proposal to become PSC of module OCA/payroll
That helped a lot, thanks!He should get the invitation on the next sync.On Fri, Sep 2, 2022 at 9:22 PM Pedro M. Baeza <notifications@odoo-community.org> wrote:It seems his messages are not getting through the list, so he asked me to send here his email: nicolasrsande@gmail.comIt should be in the OCA Odoo instance, as he has confirmed his subscription to the mailing list.Regards._______________________________________________
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:25 - 5 Sep 2022 -
Re: Proposal to become PSC of module OCA/payroll
It seems his messages are not getting through the list, so he asked me to send here his email: nicolasrsande@gmail.comIt should be in the OCA Odoo instance, as he has confirmed his subscription to the mailing list.Regards.
by Pedro M. Baeza - 09:20 - 2 Sep 2022 -
Re: Proposal to become PSC of module OCA/payroll
Hello,I didn't get the original message indeed.@Nicolas: I cannot find your user on our instance. Can you give me an email?Bests,SOn Fri, Aug 19, 2022 at 10:57 AM Michael Telahun <notifications@odoo-community.org> wrote:+1 from me. Payroll needs more care and feeding :-) and Nicolas is an active contributor
On 19/08/2022 09:22, Pedro M. Baeza wrote:
Indeed it seems very weird. This is the original message (that I received being in direct copy):
Nicolas Rodriguez Sande
17 ago 2022, 17:53 (hace 2 días)
para contributors, mí
Hello, I'm submitting this email to become a candidate to PSC of the module OCA/payroll and also OCA/hr if needed.
In the last months I've been submitting a lot of changes to the module OCA/payroll which was orphaned for maintenance for a long time. I created the Argentinian localization for payroll and maintain that localization in my country, which depends of the OCA Payroll module, so last months i've been migrating some estructural and improvement changes that i developed for my country localization to the base module, so all the community can benefit from this enhancements and maintenance of the module.
Actually I'm one of the declared maintainers of the payroll modules.
Here I cc Mr. Pedro M. Baeza who I've been in contact with for the last few months to merge the changes that I submitted in my PRs and discussed opinions about the future of the module.He explained to me about how OCA works and its governance laws. Also talked about being a candidate for PSC for the OCA/payroll module and suggested me to candidate for that position with his support.
Since I've been really active in the module and plan to continue improving and submitting PRs, I think I would be a good fit to be the PSC of the repository.
About myself i can tell that i'm an informatic engineer and developer with 10 years of experience coding. I mainly work for my own business in Argentina and for my own consulting firm which covers a lot of areas of the industry in my country. I have a lot of experience as a business owner and accounting skills so I think that makes me a good developer for odoo modules because I can extract the business logic and translate into code without the hassle of bridging the functional and technical roles in this type of development.
Finally i hope you can take my proposal into account, at least for the OCA/payroll module but i don't discard a candidature for other modules too, because i have a lot of private codebase that i developed for odoo in all this time and i wish to open that to the world of the open source software, so all people could benefit of new and updated code and also a collaborative maintenance environment.
You can see my history of movements in my GitHub account which i link here:
If you need more information or want to ask some questions I leave this channel open for any you will need or could help you with.
Kind Regards.Nicolas.
_______________________________________________
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
--Simone OrsiFull stack Python web developer, Odoo specialist, Odoo Community Board Member, in love with open source.
by Simone Orsi. - 04:56 - 30 Aug 2022 -
Re: Proposal to become PSC of module OCA/payroll
+1 from me. Payroll needs more care and feeding :-) and Nicolas is an active contributor
On 19/08/2022 09:22, Pedro M. Baeza wrote:
Indeed it seems very weird. This is the original message (that I received being in direct copy):
Nicolas Rodriguez Sande
17 ago 2022, 17:53 (hace 2 días)
para contributors, mí
Hello, I'm submitting this email to become a candidate to PSC of the module OCA/payroll and also OCA/hr if needed.
In the last months I've been submitting a lot of changes to the module OCA/payroll which was orphaned for maintenance for a long time. I created the Argentinian localization for payroll and maintain that localization in my country, which depends of the OCA Payroll module, so last months i've been migrating some estructural and improvement changes that i developed for my country localization to the base module, so all the community can benefit from this enhancements and maintenance of the module.
Actually I'm one of the declared maintainers of the payroll modules.
Here I cc Mr. Pedro M. Baeza who I've been in contact with for the last few months to merge the changes that I submitted in my PRs and discussed opinions about the future of the module.He explained to me about how OCA works and its governance laws. Also talked about being a candidate for PSC for the OCA/payroll module and suggested me to candidate for that position with his support.
Since I've been really active in the module and plan to continue improving and submitting PRs, I think I would be a good fit to be the PSC of the repository.
About myself i can tell that i'm an informatic engineer and developer with 10 years of experience coding. I mainly work for my own business in Argentina and for my own consulting firm which covers a lot of areas of the industry in my country. I have a lot of experience as a business owner and accounting skills so I think that makes me a good developer for odoo modules because I can extract the business logic and translate into code without the hassle of bridging the functional and technical roles in this type of development.
Finally i hope you can take my proposal into account, at least for the OCA/payroll module but i don't discard a candidature for other modules too, because i have a lot of private codebase that i developed for odoo in all this time and i wish to open that to the world of the open source software, so all people could benefit of new and updated code and also a collaborative maintenance environment.
You can see my history of movements in my GitHub account which i link here:
If you need more information or want to ask some questions I leave this channel open for any you will need or could help you with.
Kind Regards.Nicolas.
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Raphael Makonnen - 10:55 - 19 Aug 2022 -
Re: Proposal to become PSC of module OCA/payroll
Indeed it seems very weird. This is the original message (that I received being in direct copy):Nicolas Rodriguez Sande
17 ago 2022, 17:53 (hace 2 días)para contributors, míHello, I'm submitting this email to become a candidate to PSC of the module OCA/payroll and also OCA/hr if needed.In the last months I've been submitting a lot of changes to the module OCA/payroll which was orphaned for maintenance for a long time. I created the Argentinian localization for payroll and maintain that localization in my country, which depends of the OCA Payroll module, so last months i've been migrating some estructural and improvement changes that i developed for my country localization to the base module, so all the community can benefit from this enhancements and maintenance of the module.Actually I'm one of the declared maintainers of the payroll modules.Here I cc Mr. Pedro M. Baeza who I've been in contact with for the last few months to merge the changes that I submitted in my PRs and discussed opinions about the future of the module.He explained to me about how OCA works and its governance laws. Also talked about being a candidate for PSC for the OCA/payroll module and suggested me to candidate for that position with his support.Since I've been really active in the module and plan to continue improving and submitting PRs, I think I would be a good fit to be the PSC of the repository.About myself i can tell that i'm an informatic engineer and developer with 10 years of experience coding. I mainly work for my own business in Argentina and for my own consulting firm which covers a lot of areas of the industry in my country. I have a lot of experience as a business owner and accounting skills so I think that makes me a good developer for odoo modules because I can extract the business logic and translate into code without the hassle of bridging the functional and technical roles in this type of development.Finally i hope you can take my proposal into account, at least for the OCA/payroll module but i don't discard a candidature for other modules too, because i have a lot of private codebase that i developed for odoo in all this time and i wish to open that to the world of the open source software, so all people could benefit of new and updated code and also a collaborative maintenance environment.You can see my history of movements in my GitHub account which i link here:If you need more information or want to ask some questions I leave this channel open for any you will need or could help you with.
Kind Regards.Nicolas.
by Pedro M. Baeza - 08:21 - 19 Aug 2022
-





