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
-
ignoring formatting commits with new git feature
Hi all, As explained here https://www.moxio.com/blog/43/ignoring-bulk-change-commits-with-git-blame since git 2.23 it's easy to ignore some commits to keep git blame cmd also efficient than without these commits. Shortly: - add a .git-blame-ignore-revs in your repo and put commits to ignore (black ones mainly) - apply git config blame.ignoreRevsFile .git-blame-ignore-revs : now git blame works with the most informative way about authoring if you have git 2.23 at least I think it can be interesting to use OCA. What do you think ? Bonne journée David BEAL - akretion.com Chef de projet Odoo Développement / Intégration
by David BEAL - 01:56 - 4 Jun 2020-
Re: ignoring formatting commits with new git feature
Thanks a lot for your reply, Le jeu. 4 juin 2020 à 14:42, Yannick Vaucher <yannick.vaucher@camptocamp.com> a écrit : > > Interesting, nevertheless what kind of commit do you want to bypass in git blame, if I get it correctly we could ignore the linting commits that way? > > Which could come handy with all modules we applied black on. Yannick, You're right this is that my aim > > Yannick Vaucher > Business Solutions Architect > > Camptocamp SA > PSE A, CH-1015 Lausanne > Phone: +41 21 619 10 30 > Office: +41 21 619 10 10 > http://www.camptocamp.com/ > > > On Thu, 4 Jun 2020 at 13:57, David Beal <david.beal@akretion.com> wrote: > > Hi all, > > As explained here > https://www.moxio.com/blog/43/ignoring-bulk-change-commits-with-git-blame > > since git 2.23 it's easy to ignore some commits to keep git blame cmd > also efficient than without these commits. > > Shortly: > > - add a .git-blame-ignore-revs in your repo and put commits to ignore > (black ones mainly) > - apply git config blame.ignoreRevsFile .git-blame-ignore-revs : now > git blame works with the most informative way about authoring if you > have git 2.23 at least > > I think it can be interesting to use OCA. > > What do you think ? > > Bonne journée > > > David BEAL - akretion.com > Chef de projet > Odoo Développement / Intégration > > _______________________________________________ > Mailing-List: https://odoo-community.org/groups/contributors-15 > Post to: mailto:contributors@odoo-community.org > Unsubscribe: https://odoo-community.org/groups?unsubscribe > > _______________________________________________ > Mailing-List: https://odoo-community.org/groups/contributors-15 > Post to: mailto:contributors@odoo-community.org > Unsubscribe: https://odoo-community.org/groups?unsubscribe
by David BEAL - 03:15 - 4 Jun 2020 -
Re: ignoring formatting commits with new git feature
Thank you David for sharing this. Very useful to know!lmignonOn Thu, Jun 4, 2020 at 1:57 PM David Beal <david.beal@akretion.com> wrote:Hi all, As explained here https://www.moxio.com/blog/43/ignoring-bulk-change-commits-with-git-blame since git 2.23 it's easy to ignore some commits to keep git blame cmd also efficient than without these commits. Shortly: - add a .git-blame-ignore-revs in your repo and put commits to ignore (black ones mainly) - apply git config blame.ignoreRevsFile .git-blame-ignore-revs : now git blame works with the most informative way about authoring if you have git 2.23 at least I think it can be interesting to use OCA. What do you think ? Bonne journée David BEAL - akretion.com Chef de projet Odoo Développement / Intégration
_______________________________________________
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 - 02:41 - 4 Jun 2020 -
Re: ignoring formatting commits with new git feature
Interesting, nevertheless what kind of commit do you want to bypass in git blame, if I get it correctly we could ignore the linting commits that way?Which could come handy with all modules we applied black on.Yannick VaucherBusiness Solutions ArchitectCamptocamp SAPSE A, CH-1015 LausannePhone: +41 21 619 10 30Office: +41 21 619 10 10On Thu, 4 Jun 2020 at 13:57, David Beal <david.beal@akretion.com> wrote:Hi all, As explained here https://www.moxio.com/blog/43/ignoring-bulk-change-commits-with-git-blame since git 2.23 it's easy to ignore some commits to keep git blame cmd also efficient than without these commits. Shortly: - add a .git-blame-ignore-revs in your repo and put commits to ignore (black ones mainly) - apply git config blame.ignoreRevsFile .git-blame-ignore-revs : now git blame works with the most informative way about authoring if you have git 2.23 at least I think it can be interesting to use OCA. What do you think ? Bonne journée David BEAL - akretion.com Chef de projet Odoo Développement / Intégration
_______________________________________________
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 - 02:41 - 4 Jun 2020 -
Re: ignoring formatting commits with new git feature
Hi David,Yes this is very helpful. I glimpsed that existed but could not find it again until now.Thanks a lot for sharing!-sbiOn Thu, Jun 4, 2020 at 1:57 PM David Beal <david.beal@akretion.com> wrote:Hi all, As explained here https://www.moxio.com/blog/43/ignoring-bulk-change-commits-with-git-blame since git 2.23 it's easy to ignore some commits to keep git blame cmd also efficient than without these commits. Shortly: - add a .git-blame-ignore-revs in your repo and put commits to ignore (black ones mainly) - apply git config blame.ignoreRevsFile .git-blame-ignore-revs : now git blame works with the most informative way about authoring if you have git 2.23 at least I think it can be interesting to use OCA. What do you think ? Bonne journée David BEAL - akretion.com Chef de projet Odoo Développement / Intégration
_______________________________________________
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:36 - 4 Jun 2020
-
-
Add v 12.0 to Fleet
Hi,in https://github.com/OCA/fleet I see only v.13 branch.It is possible to have v.12 too?I have a micro module to propose.ThanksStefano Consolarowww.mymage.it
by Stefano Consolaro - 11:20 - 31 May 2020-
Re: Info on "lost" PR
I like "make reviews to get reviewers", the domino effect can have a good result in this case.
My only problem is to learn (Odoo, code, ...) do to useful review, but I will do.ThanksStefanoDa: "Daniel Reis" dreis@opensourceintegrators.com
Hi Stefan, not a procedure, more like a social skill :-)I usually try tagging/pinging people to help, but that’s not always successful.Next you can look for other pending PRs and do review them. That “entitles” you to ask the person to review back your PR.This is not because of you or what you’re doing. It happens to me also. The thing is we have more PR proponents that PR reviewers. The solution, IMO, is to make reviews to get reviewers.ThanksDanielDa: "Stefano Consolaro" stefano.consolaro@mymage.it
Hi Daniel,
sorry if I write directly to you, but I need help to understand the right path to complete the PR.
Some time ago you approved one of my PR https://github.com/OCA/management-system/pull/265 (my first on OCA ;-)), but I have other that are waiting:
264, 266, 267, 282, 283, 284, 286 and the porting of 265: 325 and 326.There is some procedure to request revisions or your team do it based on community necessity/priority?Some hint?Thanks in advance
by Stefano Consolaro - 11:35 - 2 Jun 2020 -
Re: Info on "lost" PR
Hi Stefan, not a procedure, more like a social skill :-)I usually try tagging/pinging people to help, but that’s not always successful.Next you can look for other pending PRs and do review them. That “entitles” you to ask the person to review back your PR.This is not because of you or what you’re doing. It happens to me also. The thing is we have more PR proponents that PR reviewers. The solution, IMO, is to make reviews to get reviewers.ThanksDaniel--Stefano Consolaro <stefano.consolaro@mymage.it> escreveu em seg, 1/06/2020 às 23:33 :Well done, I used the list address :-(Remember to not do some things after midnight.
Da: "Stefano Consolaro" stefano.consolaro@mymage.itCc:Data: Tue, 2 Jun 2020 00:26:07 +0200Oggetto: Info on "lost" PR
Hi Daniel,
sorry if I write directly to you, but I need help to understand the right path to complete the PR.
Some time ago you approved one of my PR https://github.com/OCA/management-system/pull/265 (my first on OCA ;-)), but I have other that are waiting:
264, 266, 267, 282, 283, 284, 286 and the porting of 265: 325 and 326.There is some procedure to request revisions or your team do it based on community necessity/priority?Some hint?Thanks in advanceStefano ConsolaroStefano Consolaro_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
Thanks
Daniel
by Daniel Reis - 12:45 - 2 Jun 2020 -
Re: Info on "lost" PR
Well done, I used the list address :-(Remember to not do some things after midnight.
Da: "Stefano Consolaro" stefano.consolaro@mymage.itA: contributors@odoo-community.orgCc:Data: Tue, 2 Jun 2020 00:26:07 +0200Oggetto: Info on "lost" PR
Hi Daniel,
sorry if I write directly to you, but I need help to understand the right path to complete the PR.
Some time ago you approved one of my PR https://github.com/OCA/management-system/pull/265 (my first on OCA ;-)), but I have other that are waiting:
264, 266, 267, 282, 283, 284, 286 and the porting of 265: 325 and 326.There is some procedure to request revisions or your team do it based on community necessity/priority?Some hint?Thanks in advanceStefano Consolarowww.mymage.itStefano Consolarowww.mymage.it
by Stefano Consolaro - 12:31 - 2 Jun 2020 -
Info on "lost" PR
Hi Daniel,
sorry if I write directly to you, but I need help to understand the right path to complete the PR.
Some time ago you approved one of my PR https://github.com/OCA/management-system/pull/265 (my first on OCA ;-)), but I have other that are waiting:
264, 266, 267, 282, 283, 284, 286 and the porting of 265: 325 and 326.There is some procedure to request revisions or your team do it based on community necessity/priority?Some hint?Thanks in advanceStefano Consolarowww.mymage.it
by Stefano Consolaro - 12:31 - 2 Jun 2020 -
Re: Add v 12.0 to Fleet
Perfet! Thank you Daniel!
Da: "Daniel Reis" dreis@opensourceintegrators.comA: "Contributors" contributors@odoo-community.orgCc:Data: Mon, 01 Jun 2020 13:31:55 -0000Oggetto: Re: Add v 12.0 to Fleet
Done!
On 31/05/2020 22:21, Stefano Consolaro wrote:
Hi,in https://github.com/OCA/fleet I see only v.13 branch.It is possible to have v.12 too?I have a micro module to propose.Thanks
Stefano Consolaro
Stefano Consolarowww.mymage.it
by Stefano Consolaro - 05:51 - 1 Jun 2020
-
-
OCA modules library mismatch.
Dear community,While adding features into some https://github.com/OCA/l10n-thailand/ modules PR. We found that we need newer version of python lib than what is installed by odoo core.Core odoo used num2words v.0.5.6 (exclude th currency) but the module need num2words v.0.5.7. So our test will fail.How do we get away with this?Thank you
by Kitti Upariphutthiphong - 07:16 - 28 May 2020-
Re: OCA modules library mismatch.
Superb! Thanks Simone!On Thu, May 28, 2020 at 2:32 PM Simone Rubino <simone.rubino@agilebg.com> wrote:Hi, in italian localization we have solved a similar issue we had with `pyxb`'s version with this commit https://github.com/OCA/l10n-italy/commit/ff609d376743cfd85b2d9bb5b44c17381d2f5b9e.Hope it helps!On Thu, 28 May 2020 at 07:17, Kitti Upariphutthiphong <kittiu@ecosoft.co.th> wrote:Dear community,While adding features into some https://github.com/OCA/l10n-thailand/ modules PR. We found that we need newer version of python lib than what is installed by odoo core.Core odoo used num2words v.0.5.6 (exclude th currency) but the module need num2words v.0.5.7. So our test will fail.How do we get away with this?Thank you_______________________________________________
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 Kitti Upariphutthiphong - 12:40 - 28 May 2020 -
Re: OCA modules library mismatch.
Hi, in italian localization we have solved a similar issue we had with `pyxb`'s version with this commit https://github.com/OCA/l10n-italy/commit/ff609d376743cfd85b2d9bb5b44c17381d2f5b9e.Hope it helps!On Thu, 28 May 2020 at 07:17, Kitti Upariphutthiphong <kittiu@ecosoft.co.th> wrote:Dear community,While adding features into some https://github.com/OCA/l10n-thailand/ modules PR. We found that we need newer version of python lib than what is installed by odoo core.Core odoo used num2words v.0.5.6 (exclude th currency) but the module need num2words v.0.5.7. So our test will fail.How do we get away with this?Thank you_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Simone Rubino - 09:31 - 28 May 2020
-
-
New OpenUpgrade usage mailing list
Hi, contributors!As the usage of OpenUpgrade is increasing and the issue tracker of the GitHub repository is not for asking questions about its usage and problems outside of the migration scripts themselves, we have created a new mailing list for handling all of this:You can subscribe to it at https://odoo-community.org/groups. For those not collaborating directly with the development of the migration scripts, but have experience using the tool for migrating databases, please subscribe and reply to newcomers that try to use it and ask here.Regards.
by Pedro M. Baeza - 01:36 - 27 May 2020-
Re: New OpenUpgrade usage mailing list
Thanks!Le mer. 27 mai 2020 à 16:26, Ivan Todorovich <ivan.todorovich@druidoo.io> a écrit :Thanks Pedro!El mié., 27 may. 2020 a las 15:47, Sylvain LE GAL (<sylvain.legal@grap.coop>) escribió:Thanks Pedro !> As the usage of OpenUpgrade is increasingGood news !regards.Le mer. 27 mai 2020 à 13:37, Pedro M. Baeza (Tecnativa) <pedro.baeza@tecnativa.com> a écrit :Hi, contributors!As the usage of OpenUpgrade is increasing and the issue tracker of the GitHub repository is not for asking questions about its usage and problems outside of the migration scripts themselves, we have created a new mailing list for handling all of this:You can subscribe to it at https://odoo-community.org/groups. For those not collaborating directly with the development of the migration scripts, but have experience using the tool for migrating databases, please subscribe and reply to newcomers that try to use it and ask here.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
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Joël Grand Guillaume - 09:26 - 27 May 2020 -
Re: New OpenUpgrade usage mailing list
Thanks Pedro!El mié., 27 may. 2020 a las 15:47, Sylvain LE GAL (<sylvain.legal@grap.coop>) escribió:Thanks Pedro !> As the usage of OpenUpgrade is increasingGood news !regards.Le mer. 27 mai 2020 à 13:37, Pedro M. Baeza (Tecnativa) <pedro.baeza@tecnativa.com> a écrit :Hi, contributors!As the usage of OpenUpgrade is increasing and the issue tracker of the GitHub repository is not for asking questions about its usage and problems outside of the migration scripts themselves, we have created a new mailing list for handling all of this:You can subscribe to it at https://odoo-community.org/groups. For those not collaborating directly with the development of the migration scripts, but have experience using the tool for migrating databases, please subscribe and reply to newcomers that try to use it and ask here.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
by Iván Todorovich - 04:25 - 27 May 2020 -
Re: New OpenUpgrade usage mailing list
Thanks Pedro !> As the usage of OpenUpgrade is increasingGood news !regards.Le mer. 27 mai 2020 à 13:37, Pedro M. Baeza (Tecnativa) <pedro.baeza@tecnativa.com> a écrit :Hi, contributors!As the usage of OpenUpgrade is increasing and the issue tracker of the GitHub repository is not for asking questions about its usage and problems outside of the migration scripts themselves, we have created a new mailing list for handling all of this:You can subscribe to it at https://odoo-community.org/groups. For those not collaborating directly with the development of the migration scripts, but have experience using the tool for migrating databases, please subscribe and reply to newcomers that try to use it and ask here.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 Sylvain LE GAL - 03:45 - 27 May 2020
-
-
OCA DMS modules coming from MuK
I'm glad to announce that MuK IT has agreed to move their great DMS modules to OCA, starting with the version 13.0. The repository has been already created and a first proposal has arisen from the Spanish OCA Days celebrated these past 2 days thanks to several contributors like Enric Tobella, Gelu Boros and Antoni Romera:You can review it for getting it merged and also start enjoying it. More extensions are to come in the future.Thanks to Mathias and Derrim from MuK for this move and the rest of the involved people.Regards.
by Pedro M. Baeza - 06:31 - 20 May 2020-
Re: OCA DMS modules coming from MuK
Great! Thanks a lot to MuK and OCA contributors.On Wed, May 20, 2020 at 6:32 PM Pedro M. Baeza (Tecnativa) <pedro.baeza@tecnativa.com> wrote:I'm glad to announce that MuK IT has agreed to move their great DMS modules to OCA, starting with the version 13.0. The repository has been already created and a first proposal has arisen from the Spanish OCA Days celebrated these past 2 days thanks to several contributors like Enric Tobella, Gelu Boros and Antoni Romera:You can review it for getting it merged and also start enjoying it. More extensions are to come in the future.Thanks to Mathias and Derrim from MuK for this move and the rest of the involved people.Regards._______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
--Alex Comba
Tel (CH): +41 91 210 23 40
by Alex Comba. - 09:25 - 21 May 2020 -
Re: OCA DMS modules coming from MuK
Cool! Thanks to MuK and OCA sprinters!On Wed, May 20, 2020 at 6:32 PM Pedro M. Baeza (Tecnativa) <pedro.baeza@tecnativa.com> wrote:I'm glad to announce that MuK IT has agreed to move their great DMS modules to OCA, starting with the version 13.0. The repository has been already created and a first proposal has arisen from the Spanish OCA Days celebrated these past 2 days thanks to several contributors like Enric Tobella, Gelu Boros and Antoni Romera:You can review it for getting it merged and also start enjoying it. More extensions are to come in the future.Thanks to Mathias and Derrim from MuK for this move and the rest of the involved people.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 Simone Orsi. - 08:30 - 21 May 2020 -
Re: OCA DMS modules coming from MuK
Many thanks to Muk IT and OCA!
Bruno Joliveau - Architecte applications - PrésidentNUMIGI SOLUTIONS INC.(514) 317-7944Longueuil, Québec, CanadaLe mer. 20 mai 2020 à 12:32, Pedro M. Baeza (Tecnativa) <pedro.baeza@tecnativa.com> a écrit :I'm glad to announce that MuK IT has agreed to move their great DMS modules to OCA, starting with the version 13.0. The repository has been already created and a first proposal has arisen from the Spanish OCA Days celebrated these past 2 days thanks to several contributors like Enric Tobella, Gelu Boros and Antoni Romera:You can review it for getting it merged and also start enjoying it. More extensions are to come in the future.Thanks to Mathias and Derrim from MuK for this move and the rest of the involved people.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 Bruno Joliveau - 09:01 - 20 May 2020 -
Re: OCA DMS modules coming from MuK
Great !On Wed, May 20, 2020 at 6:47 PM Georg Notter <georg.notter@agenterp.com> wrote:That's GREAT!THUMBS UP and THX--
Mit freundlichen Grüßen
We look forward to see you. Best Regards
Dipl. Ing. (Fh) Georg A. G. Notter
Agent ERP GmbH
-------- Weitergeleitete Nachricht --------Von: Pedro M. Baeza (Tecnativa) <pedro.baeza@tecnativa.com>Antwort an: Odoo Community Association (OCA) Contributors <contributors@odoo-community.org>An: Contributors <contributors@odoo-community.org>Betreff: OCA DMS modules coming from MuKDatum: Wed, 20 May 2020 16:32:24 -0000I'm glad to announce that MuK IT has agreed to move their great DMS modules to OCA, starting with the version 13.0. The repository has been already created and a first proposal has arisen from the Spanish OCA Days celebrated these past 2 days thanks to several contributors like Enric Tobella, Gelu Boros and Antoni Romera:You can review it for getting it merged and also start enjoying it. More extensions are to come in the future.Thanks to Mathias and Derrim from MuK for this move and the rest of the involved people.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
--__________________________________________
Denis Roussel
Software Engineer
Acsone SA, Succursale de Liège (Val Benoît)
Tel : +32 2 888 31 49
Fax : +32 2 888 31 59
Gsm : +32 472 22 00 57Acsone sa/nv
Boulevard de la Woluwe 56 Woluwedal | B-1200 Brussels | BelgiumQuai Banning, 6 (Val Benoît) | B-4000 Liège | Belgium
Zone Industrielle 22 | L-8287 Kehlen | Luxembourg
by Denis Roussel. - 07:06 - 20 May 2020 -
Re: OCA DMS modules coming from MuK
That's GREAT!THUMBS UP and THX--
Mit freundlichen Grüßen
We look forward to see you. Best Regards
Dipl. Ing. (Fh) Georg A. G. Notter
Agent ERP GmbH
-------- Weitergeleitete Nachricht --------Von: Pedro M. Baeza (Tecnativa) <pedro.baeza@tecnativa.com>Antwort an: Odoo Community Association (OCA) Contributors <contributors@odoo-community.org>An: Contributors <contributors@odoo-community.org>Betreff: OCA DMS modules coming from MuKDatum: Wed, 20 May 2020 16:32:24 -0000I'm glad to announce that MuK IT has agreed to move their great DMS modules to OCA, starting with the version 13.0. The repository has been already created and a first proposal has arisen from the Spanish OCA Days celebrated these past 2 days thanks to several contributors like Enric Tobella, Gelu Boros and Antoni Romera:You can review it for getting it merged and also start enjoying it. More extensions are to come in the future.Thanks to Mathias and Derrim from MuK for this move and the rest of the involved people.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 Georg Notter - 06:46 - 20 May 2020
-
-
Proposal for new OCA repo website-themes
Dear contributors,
I would like to propose a place in OCA for Odoo High quality Themes with a Github access public and open source
As I ask in https://twitter.com/rafaodoo/status/1258000239753076736 Odoo themes are not Github accessible + nobody can contribute them to fix or improve.
As web_responsive is the most downloaded module in the Official Apps store, an OCA Theme could be the same.
Moreover, the theme of https://odoo-community.org/ is missing so there is a good start for improving the image of OCA with the new them just in the migration to v13
Thanks
Best regards
Rafael Blasco
Tecnativa
by Rafael Blasco (Moduon) - 06:46 - 19 May 2020-
Re: Proposal for new OCA repo website-themes
I think we already have it though, no?Le mar. 19 mai 2020 à 18:53, Ivan Todorovich <ivan.todorovich@druidoo.io> a écrit :+1Good ideaLe mar. 19 mai 2020 à 18:47, Rafael Blasco <rafael.blasco@tecnativa.com> a écrit :Dear contributors,
I would like to propose a place in OCA for Odoo High quality Themes with a Github access public and open source
As I ask in https://twitter.com/rafaodoo/status/1258000239753076736 Odoo themes are not Github accessible + nobody can contribute them to fix or improve.
As web_responsive is the most downloaded module in the Official Apps store, an OCA Theme could be the same.
Moreover, the theme of https://odoo-community.org/ is missing so there is a good start for improving the image of OCA with the new them just in the migration to v13
Thanks
Best regards
Rafael Blasco
Tecnativa
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Iván Todorovich - 06:55 - 19 May 2020 -
-
Re: Proposal for new OCA repo website-themes
+1Good ideaLe mar. 19 mai 2020 à 18:47, Rafael Blasco <rafael.blasco@tecnativa.com> a écrit :Dear contributors,
I would like to propose a place in OCA for Odoo High quality Themes with a Github access public and open source
As I ask in https://twitter.com/rafaodoo/status/1258000239753076736 Odoo themes are not Github accessible + nobody can contribute them to fix or improve.
As web_responsive is the most downloaded module in the Official Apps store, an OCA Theme could be the same.
Moreover, the theme of https://odoo-community.org/ is missing so there is a good start for improving the image of OCA with the new them just in the migration to v13
Thanks
Best regards
Rafael Blasco
Tecnativa
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Iván Todorovich - 06:55 - 19 May 2020
-
-
Void an Invoice? (not really "Cancel")
Dear community, I’m coming from Xero software for invoicing to Odoo, and in Xero there was a feature to void an invoice where it stays non-editable, yet no longer requires any payments. Use-case: invoice was sent to customer but for some reason the deal was cancelled. Is it a thing in Odoo? Kind regards, Alexey
by Alexey Pelykh <alexey.pelykh@gmail.com> - 08:21 - 15 May 2020-
Re: Void an Invoice? (not really "Cancel")
With "state cancelation" i meant the Odoo "state" field and its value "cancel", which you don't want to use. You want to let the invoice stand as it is and either cancel it "accounting-wise" or correct it (which implies the cancel, too). And you do that in Odoo with the "add credit note" feature.Best RegardsChristianVon: "Alexey Pelykh" <alexey.pelykh@gmail.com>
An: "Odoo Community Association, (OCA) Contributors" <contributors@odoo-community.org>
Gesendet: Freitag, 15. Mai 2020 16:27:01
Betreff: Re: Void an Invoice? (not really "Cancel")I’m talking about state cancellation, not accounting when invoice is “deemed paid” via Credit Note. In other words, invoice was issued yet was voided due to mistake, change of mind, etc. It still has a number, still should not be editable to keep records in check, etc. “Cancel” in Odoo means “revertable” state to draft, yet there’s no state that “Cancel and Locked, Final”.
On 15 May 2020, at 16:16, Christian Zöllner <c.zoellner@intero-technologies.de> wrote:Hi,please don't mix up state cancelation with accounting cancelation. The second one was already answered very clearly by using Odoo's "add credit note" functionality.Best RegardsChristianVon: "Diogo Duarte" <dduarte@odoogap.com>
An: "Odoo Community Association, (OCA) Contributors" <contributors@odoo-community.org>
Gesendet: Freitag, 15. Mai 2020 10:17:29
Betreff: Re: Void an Invoice? (not really "Cancel")Version 13 there is a button "Reset to Draft" >> "Cancel"Version 12.0 and under you need to install a module for allowing cancel journals the check "allow cancel" on the journal then you get a cancel button on the invoices.This is not legal in most countries, correct is to add a credit note/refund for the full amountOn Fri, May 15, 2020 at 7:21 AM Alexey Pelykh <alexey.pelykh@gmail.com> wrote:Dear community, I’m coming from Xero software for invoicing to Odoo, and in Xero there was a feature to void an invoice where it stays non-editable, yet no longer requires any payments. Use-case: invoice was sent to customer but for some reason the deal was cancelled. Is it a thing in Odoo? Kind regards, Alexey
_______________________________________________
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
--Christian Zöllner
E-Mail: c.zoellner@intero-technologies.de
Intero Technologies GmbH
Heinrich-Heine-Ring 76
D - 18435 Stralsund
Tel: +49 (0) 3831 – 44 55 7 - 0
Fax: +49 (0) 3831 – 44 55 7 - 79
Internet: www.intero-technologies.de
Intero Technologies GmbH • Firmensitz: Heinrich-Heine-Ring 76, 18435 Stralsund , Deutschland • Registergericht: Amtsgericht Stralsund, HRB 7076 • Geschäftsführer: Frank Löffler, Lars Lifson • USt-Ident.Nr. DE 251251697
This eMail and its content is dedicated to the intended recipient only. If you have received it in error please contact the sender immediately by fax or return eMail. Please then delete the eMail and any copies of it._______________________________________________
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
--Christian Zöllner
E-Mail: c.zoellner@intero-technologies.de
Intero Technologies GmbH
Heinrich-Heine-Ring 76
D - 18435 Stralsund
Tel: +49 (0) 3831 – 44 55 7 - 0
Fax: +49 (0) 3831 – 44 55 7 - 79
Internet: www.intero-technologies.de
Intero Technologies GmbH • Firmensitz: Heinrich-Heine-Ring 76, 18435 Stralsund , Deutschland • Registergericht: Amtsgericht Stralsund, HRB 7076 • Geschäftsführer: Frank Löffler, Lars Lifson • USt-Ident.Nr. DE 251251697
This eMail and its content is dedicated to the intended recipient only. If you have received it in error please contact the sender immediately by fax or return eMail. Please then delete the eMail and any copies of it.
by Christian Zöllner - 10:36 - 18 May 2020 -
Re: Void an Invoice? (not really "Cancel")
I’m talking about state cancellation, not accounting when invoice is “deemed paid” via Credit Note. In other words, invoice was issued yet was voided due to mistake, change of mind, etc. It still has a number, still should not be editable to keep records in check, etc. “Cancel” in Odoo means “revertable” state to draft, yet there’s no state that “Cancel and Locked, Final”.
On 15 May 2020, at 16:16, Christian Zöllner <c.zoellner@intero-technologies.de> wrote:Hi,please don't mix up state cancelation with accounting cancelation. The second one was already answered very clearly by using Odoo's "add credit note" functionality.Best RegardsChristianVon: "Diogo Duarte" <dduarte@odoogap.com>
An: "Odoo Community Association, (OCA) Contributors" <contributors@odoo-community.org>
Gesendet: Freitag, 15. Mai 2020 10:17:29
Betreff: Re: Void an Invoice? (not really "Cancel")Version 13 there is a button "Reset to Draft" >> "Cancel"Version 12.0 and under you need to install a module for allowing cancel journals the check "allow cancel" on the journal then you get a cancel button on the invoices.This is not legal in most countries, correct is to add a credit note/refund for the full amountOn Fri, May 15, 2020 at 7:21 AM Alexey Pelykh <alexey.pelykh@gmail.com> wrote:Dear community, I’m coming from Xero software for invoicing to Odoo, and in Xero there was a feature to void an invoice where it stays non-editable, yet no longer requires any payments. Use-case: invoice was sent to customer but for some reason the deal was cancelled. Is it a thing in Odoo? Kind regards, Alexey
_______________________________________________
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
--Christian Zöllner
E-Mail: c.zoellner@intero-technologies.de
Intero Technologies GmbH
Heinrich-Heine-Ring 76
D - 18435 Stralsund
Tel: +49 (0) 3831 – 44 55 7 - 0
Fax: +49 (0) 3831 – 44 55 7 - 79
Internet: www.intero-technologies.de
Intero Technologies GmbH • Firmensitz: Heinrich-Heine-Ring 76, 18435 Stralsund , Deutschland • Registergericht: Amtsgericht Stralsund, HRB 7076 • Geschäftsführer: Frank Löffler, Lars Lifson • USt-Ident.Nr. DE 251251697
This eMail and its content is dedicated to the intended recipient only. If you have received it in error please contact the sender immediately by fax or return eMail. Please then delete the eMail and any copies of it._______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Alexey Pelykh <alexey.pelykh@gmail.com> - 04:25 - 15 May 2020 -
Re: Void an Invoice? (not really "Cancel")
Hi,please don't mix up state cancelation with accounting cancelation. The second one was already answered very clearly by using Odoo's "add credit note" functionality.Best RegardsChristianVon: "Diogo Duarte" <dduarte@odoogap.com>
An: "Odoo Community Association, (OCA) Contributors" <contributors@odoo-community.org>
Gesendet: Freitag, 15. Mai 2020 10:17:29
Betreff: Re: Void an Invoice? (not really "Cancel")Version 13 there is a button "Reset to Draft" >> "Cancel"Version 12.0 and under you need to install a module for allowing cancel journals the check "allow cancel" on the journal then you get a cancel button on the invoices.This is not legal in most countries, correct is to add a credit note/refund for the full amountOn Fri, May 15, 2020 at 7:21 AM Alexey Pelykh <alexey.pelykh@gmail.com> wrote:Dear community, I’m coming from Xero software for invoicing to Odoo, and in Xero there was a feature to void an invoice where it stays non-editable, yet no longer requires any payments. Use-case: invoice was sent to customer but for some reason the deal was cancelled. Is it a thing in Odoo? Kind regards, Alexey
_______________________________________________
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
--Christian Zöllner
E-Mail: c.zoellner@intero-technologies.de
Intero Technologies GmbH
Heinrich-Heine-Ring 76
D - 18435 Stralsund
Tel: +49 (0) 3831 – 44 55 7 - 0
Fax: +49 (0) 3831 – 44 55 7 - 79
Internet: www.intero-technologies.de
Intero Technologies GmbH • Firmensitz: Heinrich-Heine-Ring 76, 18435 Stralsund , Deutschland • Registergericht: Amtsgericht Stralsund, HRB 7076 • Geschäftsführer: Frank Löffler, Lars Lifson • USt-Ident.Nr. DE 251251697
This eMail and its content is dedicated to the intended recipient only. If you have received it in error please contact the sender immediately by fax or return eMail. Please then delete the eMail and any copies of it.
by Christian Zöllner - 04:15 - 15 May 2020 -
Re: Void an Invoice? (not really "Cancel")
Version 13 there is a button "Reset to Draft" >> "Cancel"Version 12.0 and under you need to install a module for allowing cancel journals the check "allow cancel" on the journal then you get a cancel button on the invoices.This is not legal in most countries, correct is to add a credit note/refund for the full amountOn Fri, May 15, 2020 at 7:21 AM Alexey Pelykh <alexey.pelykh@gmail.com> wrote:Dear community, I’m coming from Xero software for invoicing to Odoo, and in Xero there was a feature to void an invoice where it stays non-editable, yet no longer requires any payments. Use-case: invoice was sent to customer but for some reason the deal was cancelled. Is it a thing in Odoo? Kind regards, Alexey
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Diogo Duarte - 10:16 - 15 May 2020 -
Re: Void an Invoice? (not really "Cancel")
Why not using Pro-Forma invoices ?On Fri, May 15, 2020 at 8:21 AM Alexey Pelykh <alexey.pelykh@gmail.com> wrote:Dear community, I’m coming from Xero software for invoicing to Odoo, and in Xero there was a feature to void an invoice where it stays non-editable, yet no longer requires any payments. Use-case: invoice was sent to customer but for some reason the deal was cancelled. Is it a thing in Odoo? Kind regards, Alexey
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
--__________________________________________
Denis Roussel
Software Engineer
Acsone SA, Succursale de Liège (Val Benoît)
Tel : +32 2 888 31 49
Fax : +32 2 888 31 59
Gsm : +32 472 22 00 57Acsone sa/nv
Boulevard de la Woluwe 56 Woluwedal | B-1200 Brussels | BelgiumQuai Banning, 6 (Val Benoît) | B-4000 Liège | Belgium
Zone Industrielle 22 | L-8287 Kehlen | Luxembourg
by Denis Roussel. - 09:45 - 15 May 2020
-
-
About rest api
Hello,I hope you are doing well.I'm a developer and i want to use your app rest api the get a bi-direction web service (odoo and another system web service) and I'm stuck because i don't know how to use the web service client with odoo to sent (POST and GET) information and data from their system.Please help me with a documentation or another app that can provides this service.Thank youACHRAFBest regards
by EL IDRISSI Mohamed Achraf - 10:35 - 11 May 2020-
Re: About rest api
Do you speak about base_rest module found there : https://github.com/OCA/rest-frameworkIt includes Swagger as an interface for testing your new rest services.On Tue, May 12, 2020 at 11:31 AM Daniel Reis <dreis@opensourceintegrators.com> wrote:Hello Achraf,
I understand you want to implement a REST Client in Odoo to use an external web service.
This sends you back to plain Python and is not Odoo specific.
So you should start creating your Python script to play with the API.
That will probably learning about the Requests library.
When you get that working, then you need to "plug" it in Odoo, adding the code triggering your API calls, such as a button method or a scheduler job.
Good luck
Daniel Reis
On 11/05/2020 21:37, EL IDRISSI Mohamed Achraf wrote:
Hello,
I hope you are doing well.
I'm a developer and i want to use your app rest api the get a bi-direction web service (odoo and another system web service) and I'm stuck because i don't know how to use the web service client with odoo to sent (POST and GET) information and data from their system.
Please help me with a documentation or another app that can provides this service.
Thank you
ACHRAF
Best regards_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
--__________________________________________
Denis Roussel
Software Engineer
Acsone SA, Succursale de Liège (Val Benoît)
Tel : +32 2 888 31 49
Fax : +32 2 888 31 59
Gsm : +32 472 22 00 57Acsone sa/nv
Boulevard de la Woluwe 56 Woluwedal | B-1200 Brussels | BelgiumQuai Banning, 6 (Val Benoît) | B-4000 Liège | Belgium
Zone Industrielle 22 | L-8287 Kehlen | Luxembourg
by Denis Roussel. - 11:46 - 12 May 2020 -
Re: About rest api
Hello Achraf,
I understand you want to implement a REST Client in Odoo to use an external web service.
This sends you back to plain Python and is not Odoo specific.
So you should start creating your Python script to play with the API.
That will probably learning about the Requests library.
When you get that working, then you need to "plug" it in Odoo, adding the code triggering your API calls, such as a button method or a scheduler job.
Good luck
Daniel Reis
On 11/05/2020 21:37, EL IDRISSI Mohamed Achraf wrote:
Hello,
I hope you are doing well.
I'm a developer and i want to use your app rest api the get a bi-direction web service (odoo and another system web service) and I'm stuck because i don't know how to use the web service client with odoo to sent (POST and GET) information and data from their system.
Please help me with a documentation or another app that can provides this service.
Thank you
ACHRAF
Best regards_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Daniel Reis - 11:31 - 12 May 2020
-
-
Modules for read only User Groups
Hello! I remember seeing some modules, or at least some discussion, to provide User Groups with read only access. But I'm not able to find anything. Does anyone remember this or knows how to point me in the right direction? Thanks Daniel reis
by Daniel Reis <dgreis@sapo.pt> - 11:01 - 11 May 2020-
Re: Modules for read only User Groups
If you want a user with readonly for all models, you can create a group "readonly" and inherit the "ir_model_access.check" method to check if the user has this group so the permission is just read.Something like this:You can use the current groups way to enable menus and models permissions, but if you assign the new readonly group so, this user only will can read (not write, create, unlink) even if the original groups allow.I hope this can be helpful for you.Feel free to contribute it to OCA if you think that it is helpfulDisclaimer1: It is only a POC without a depth analysis.Disclaimer2: Readonly group apply for all models. Maybe, it could be configurable making a few changes.El mar., 12 may. 2020 a las 5:22, Pedro M. Baeza (Tecnativa) (<pedro.baeza@tecnativa.com>) escribió:For me the good OCA module is one that allows this as a general switch, not having to create an specific module for each area (and leaving out possible specific modules). I think this can be done at ORM level overriding write/create or even lower layers, or _check_access.Regards._______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
--Moisés López CalderónMobile: (+521) 477-752-22-30Twitter: @moylop260Twitter: @vauxoo
by Moisés López Calderón - 10:10 - 18 May 2020 -
Re: Modules for read only User Groups
For me the good OCA module is one that allows this as a general switch, not having to create an specific module for each area (and leaving out possible specific modules). I think this can be done at ORM level overriding write/create or even lower layers, or _check_access.Regards.
by Pedro M. Baeza - 12:21 - 12 May 2020 -
Re: Modules for read only User Groups
Le mar. 12 mai 2020 à 11:22, Daniel Reis <dreis@opensourceintegrators.com> a écrit :I wonder if it could make sense to have this under the OCA.
Yes, why not !Maybe that discussion already happened in the past.
No, it hasn't been discussed in the past. I feel that these modules never received any attention from the community (or maybe some people use it, but I never got any feedback because it "just works"). But I find them very useful.Alexis
by Alexis de Lattre - 12:16 - 12 May 2020 -
Re: Modules for read only User Groups
Thank you Alexis. I wonder if it could make sense to have this under the OCA. Maybe that discussion already happened in the past. /Daniel On 12/05/2020 10:16, Alexis de Lattre wrote: > I confirm that I continue to maintain my viewer-groups modules in this > Akretion project : https://github.com/akretion/odoo-viewer-groups > It is only available on v8, v10 and v12, according to Akretion's > policy to work on even versions of Odoo. > I use those modules on almost all my deployments ; I find it very > useful. I'll certainly port these module to Odoo v14. >
by Daniel Reis - 11:21 - 12 May 2020 -
Re: Modules for read only User Groups
I confirm that I continue to maintain my viewer-groups modules in this Akretion project : https://github.com/akretion/odoo-viewer-groupsIt is only available on v8, v10 and v12, according to Akretion's policy to work on even versions of Odoo.I use those modules on almost all my deployments ; I find it very useful. I'll certainly port these module to Odoo v14.--Alexis de Lattre
Akretion France - 27 rue Henri Rolland - 69100 Villeurbanne - France
Mail : alexis.delattre@akretion.comLe lun. 11 mai 2020 à 11:37, David Beal <david.beal@akretion.com> a écrit :Hi Daniel,probably hereLe lun. 11 mai 2020 à 11:11, Pedro M. Baeza (Tecnativa) <pedro.baeza@tecnativa.com> a écrit :AFAIK, nothing has reached OCA repositories yet about that.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
by Alexis de Lattre - 11:15 - 12 May 2020
-
-
OCA Repositories in Odoo Apps Store
Hello all, as i checked the apps.odoo.com it seems that not all branches are pushed to Odoo, so it is a known issue or how we can fix it to record all repositories and branches? I checked for v13.0 and on OCA Apps Store there are approx. 440 but on Odoo Apps Store there are only 134. -- Mihai Fekete NextERP Romania S.R.L. 600B, Peciu Nou, Romania E-mail: feketemihai@nexterp.ro Telefon: 0788-749989 Website: https://nexterp.ro
by Fekete Mihai <feketemihai@nexterp.ro> - 09:26 - 8 May 2020-
Re: OCA Repositories in Odoo Apps Store
Thanks guy for the good job! That really help!Le sam. 13 juin 2020 à 13:42, Stéphane Bidoul <stephane.bidoul@acsone.eu> a écrit :Hi folks,First of all, a huge thank you to Alexey for it's oca-publish-modules script [1].I spent a few hours this morning tweaking it to make it work in the current state of the universe.And I published the log here: https://odoo-community.org/apps.odoo.com/As you can see there are quite some issues to resolve (license issues, missing dependencies, name conflicts etc), which will certainly raise interesting questions.The good thing is that we now have a path to automate the process [2], and make the issues visible to the community so we collaborate on fixing them.Enjoy,-sbi[2] which requires some more work, but we'll get to it, eventually--On Thu, Jun 11, 2020 at 10:02 PM Simone Orsi <simahawk@gmail.com> wrote:Ciao Yannick,> We definitely need to dispatch the work there, the board shouldn't be the ones that handle it. It can be delegated to PSC IMO. In most cases (licences and dependencies) they can check it.totally +1 :)AFAIK, this requires admin access to the OCA account, but I guess we can delegate it to a bunch of persons.I'll check w/ the board.> Simone, do you know if we can extract the list of errors easily?No, at least not w/ the poor UI of the dashboard.We could maybe leverage the tool drafted by Alexey to crawl the pages but is going to require some work.Alternatively, we could make the module sync on OCA website fetch the module page from S.A. website to check if it's published and if it's under OCA umbrella.Of course, in case is not found it won't tell you the reason but we could notify the people.Cheers,S.On Thu, Jun 11, 2020 at 2:47 PM Yannick Vaucher <yannick.vaucher@camptocamp.com> wrote:Seems we will have some manual job to do to restore some repository.The warnings are either:1. <module>: The license LGPL-3 conflicts with one of its dependencies. Please make sure that you comply with the licenses compatibility. See our FAQ at https://apps.odoo.com/apps/faq#maintainer_faq_04 .2. Module <module> already exists for another serie. Please select a free module name or use the right account and this repository: <not an OCA repository>3. <module>: unmet dependency <another_module> for series 13.0. Dependency might be invalid.(4. No module found in repository ssh://git@github.com/OCA/<repo>.git#13.0.
Each module needs to be in a separate folder at the root of the repository, even if there is only one module.
If you have all the files of your module at the root of your repository, you need to create a new folder with the name of your module and move all the files in it.) -> This one is just normal(5. <module>: Module not installable) -> The module is most likely "installable": FalseIn #2 I recognize some OCA contributors that might have forked a module and registered it by mistake. But it requires us to reclaim them. We already did it in the past and Odoo helped us on that.We definitely need to dispatch the work there, the board shouldn't be the ones that handle it. It can be delegated to PSC IMO. In most cases (licences and dependencies) they can check it.Simone, do you know if we can extract the list of errors easily?Cheers,YannickOn Tue, 9 Jun 2020 at 07:31, Simone Orsi <simahawk@gmail.com> wrote:Hello,I'll do a round of checks but we have soooo many repos and modules that is very hard to get the full picture of their status at glance.@Fekete: do you have a list of modules/repo/branch you specifically detected?AFAIK this can be due to a bunch of reasons: branch not registered, scan of repo failed.The 1st reason depends on the fact that the process is still manual and Odoo does not ease this process at all.There's a WIP proof of concept here to try to automate the process.If anyone wants to help Alexey with it, I'm sure it will be appreciated ;)The 2nd may depend on errors when parsing some files (eg: rst docs).Meanwhile, if you notice a module or a repo is missing, please let us know.Cheers,S.On Mon, Jun 8, 2020 at 11:21 PM Daniel Reis <dreis@opensourceintegrators.com> wrote:Hello,
I got hold of the OCA app credentials, and there are a lot of warning to deal with.
I'll go through them.
You're welcome to ask me about any particular repo, if you want.
Thanks
Daniel
On 08/06/2020 20:56, Frederik Kramer wrote:
Or probably strategy enforcement ;-) Who knows. But i am with Holger to double check and to make sure that OCA is not doeing anything wrong Best Frederik Am Montag, den 08.06.2020, 19:52 +0000 schrieb Holger Brunn: > > Except mistake or bugs, the company seems filter the apps she wants > to show. > > so let's assume one of the first two and reach out to see what's > going on. A > mistake/glitch/whatever on the submitting (so our) side also isn't > impossible, > so let's ask the people busy with that to double check. > > In the past I made the mistake to mark some of my cooler modules as > dependencies, which they were because they don't do anything on their > own, but > that got them hidden in the app store. Maybe we also have different > visibility > rules at play between odoo sa and oca? > > --- > 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 -- Dr.-Ing. Frederik Kramer Geschäftsführer initOS GmbH An der Eisenbahn 1 21224 Rosengarten Phone: +49 4105 56156-12 Fax: +49 4105 56156-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: Rosengarten – Klecken 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
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Joël Grand Guillaume - 08:35 - 18 Jun 2020 -
Re: OCA Repositories in Odoo Apps Store
Hi folks,First of all, a huge thank you to Alexey for it's oca-publish-modules script [1].I spent a few hours this morning tweaking it to make it work in the current state of the universe.And I published the log here: https://odoo-community.org/apps.odoo.com/As you can see there are quite some issues to resolve (license issues, missing dependencies, name conflicts etc), which will certainly raise interesting questions.The good thing is that we now have a path to automate the process [2], and make the issues visible to the community so we collaborate on fixing them.Enjoy,-sbi[2] which requires some more work, but we'll get to it, eventually--On Thu, Jun 11, 2020 at 10:02 PM Simone Orsi <simahawk@gmail.com> wrote:Ciao Yannick,> We definitely need to dispatch the work there, the board shouldn't be the ones that handle it. It can be delegated to PSC IMO. In most cases (licences and dependencies) they can check it.totally +1 :)AFAIK, this requires admin access to the OCA account, but I guess we can delegate it to a bunch of persons.I'll check w/ the board.> Simone, do you know if we can extract the list of errors easily?No, at least not w/ the poor UI of the dashboard.We could maybe leverage the tool drafted by Alexey to crawl the pages but is going to require some work.Alternatively, we could make the module sync on OCA website fetch the module page from S.A. website to check if it's published and if it's under OCA umbrella.Of course, in case is not found it won't tell you the reason but we could notify the people.Cheers,S.On Thu, Jun 11, 2020 at 2:47 PM Yannick Vaucher <yannick.vaucher@camptocamp.com> wrote:Seems we will have some manual job to do to restore some repository.The warnings are either:1. <module>: The license LGPL-3 conflicts with one of its dependencies. Please make sure that you comply with the licenses compatibility. See our FAQ at https://apps.odoo.com/apps/faq#maintainer_faq_04 .2. Module <module> already exists for another serie. Please select a free module name or use the right account and this repository: <not an OCA repository>3. <module>: unmet dependency <another_module> for series 13.0. Dependency might be invalid.(4. No module found in repository ssh://git@github.com/OCA/<repo>.git#13.0.
Each module needs to be in a separate folder at the root of the repository, even if there is only one module.
If you have all the files of your module at the root of your repository, you need to create a new folder with the name of your module and move all the files in it.) -> This one is just normal(5. <module>: Module not installable) -> The module is most likely "installable": FalseIn #2 I recognize some OCA contributors that might have forked a module and registered it by mistake. But it requires us to reclaim them. We already did it in the past and Odoo helped us on that.We definitely need to dispatch the work there, the board shouldn't be the ones that handle it. It can be delegated to PSC IMO. In most cases (licences and dependencies) they can check it.Simone, do you know if we can extract the list of errors easily?Cheers,YannickOn Tue, 9 Jun 2020 at 07:31, Simone Orsi <simahawk@gmail.com> wrote:Hello,I'll do a round of checks but we have soooo many repos and modules that is very hard to get the full picture of their status at glance.@Fekete: do you have a list of modules/repo/branch you specifically detected?AFAIK this can be due to a bunch of reasons: branch not registered, scan of repo failed.The 1st reason depends on the fact that the process is still manual and Odoo does not ease this process at all.There's a WIP proof of concept here to try to automate the process.If anyone wants to help Alexey with it, I'm sure it will be appreciated ;)The 2nd may depend on errors when parsing some files (eg: rst docs).Meanwhile, if you notice a module or a repo is missing, please let us know.Cheers,S.On Mon, Jun 8, 2020 at 11:21 PM Daniel Reis <dreis@opensourceintegrators.com> wrote:Hello,
I got hold of the OCA app credentials, and there are a lot of warning to deal with.
I'll go through them.
You're welcome to ask me about any particular repo, if you want.
Thanks
Daniel
On 08/06/2020 20:56, Frederik Kramer wrote:
Or probably strategy enforcement ;-) Who knows. But i am with Holger to double check and to make sure that OCA is not doeing anything wrong Best Frederik Am Montag, den 08.06.2020, 19:52 +0000 schrieb Holger Brunn: > > Except mistake or bugs, the company seems filter the apps she wants > to show. > > so let's assume one of the first two and reach out to see what's > going on. A > mistake/glitch/whatever on the submitting (so our) side also isn't > impossible, > so let's ask the people busy with that to double check. > > In the past I made the mistake to mark some of my cooler modules as > dependencies, which they were because they don't do anything on their > own, but > that got them hidden in the app store. Maybe we also have different > visibility > rules at play between odoo sa and oca? > > --- > 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 -- Dr.-Ing. Frederik Kramer Geschäftsführer initOS GmbH An der Eisenbahn 1 21224 Rosengarten Phone: +49 4105 56156-12 Fax: +49 4105 56156-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: Rosengarten – Klecken 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
_______________________________________________
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 - 01:40 - 13 Jun 2020 -
Re: OCA Repositories in Odoo Apps Store
Ciao Yannick,> We definitely need to dispatch the work there, the board shouldn't be the ones that handle it. It can be delegated to PSC IMO. In most cases (licences and dependencies) they can check it.totally +1 :)AFAIK, this requires admin access to the OCA account, but I guess we can delegate it to a bunch of persons.I'll check w/ the board.> Simone, do you know if we can extract the list of errors easily?No, at least not w/ the poor UI of the dashboard.We could maybe leverage the tool drafted by Alexey to crawl the pages but is going to require some work.Alternatively, we could make the module sync on OCA website fetch the module page from S.A. website to check if it's published and if it's under OCA umbrella.Of course, in case is not found it won't tell you the reason but we could notify the people.Cheers,S.On Thu, Jun 11, 2020 at 2:47 PM Yannick Vaucher <yannick.vaucher@camptocamp.com> wrote:Seems we will have some manual job to do to restore some repository.The warnings are either:1. <module>: The license LGPL-3 conflicts with one of its dependencies. Please make sure that you comply with the licenses compatibility. See our FAQ at https://apps.odoo.com/apps/faq#maintainer_faq_04 .2. Module <module> already exists for another serie. Please select a free module name or use the right account and this repository: <not an OCA repository>3. <module>: unmet dependency <another_module> for series 13.0. Dependency might be invalid.(4. No module found in repository ssh://git@github.com/OCA/<repo>.git#13.0.
Each module needs to be in a separate folder at the root of the repository, even if there is only one module.
If you have all the files of your module at the root of your repository, you need to create a new folder with the name of your module and move all the files in it.) -> This one is just normal(5. <module>: Module not installable) -> The module is most likely "installable": FalseIn #2 I recognize some OCA contributors that might have forked a module and registered it by mistake. But it requires us to reclaim them. We already did it in the past and Odoo helped us on that.We definitely need to dispatch the work there, the board shouldn't be the ones that handle it. It can be delegated to PSC IMO. In most cases (licences and dependencies) they can check it.Simone, do you know if we can extract the list of errors easily?Cheers,YannickOn Tue, 9 Jun 2020 at 07:31, Simone Orsi <simahawk@gmail.com> wrote:Hello,I'll do a round of checks but we have soooo many repos and modules that is very hard to get the full picture of their status at glance.@Fekete: do you have a list of modules/repo/branch you specifically detected?AFAIK this can be due to a bunch of reasons: branch not registered, scan of repo failed.The 1st reason depends on the fact that the process is still manual and Odoo does not ease this process at all.There's a WIP proof of concept here to try to automate the process.If anyone wants to help Alexey with it, I'm sure it will be appreciated ;)The 2nd may depend on errors when parsing some files (eg: rst docs).Meanwhile, if you notice a module or a repo is missing, please let us know.Cheers,S.On Mon, Jun 8, 2020 at 11:21 PM Daniel Reis <dreis@opensourceintegrators.com> wrote:Hello,
I got hold of the OCA app credentials, and there are a lot of warning to deal with.
I'll go through them.
You're welcome to ask me about any particular repo, if you want.
Thanks
Daniel
On 08/06/2020 20:56, Frederik Kramer wrote:
Or probably strategy enforcement ;-) Who knows. But i am with Holger to double check and to make sure that OCA is not doeing anything wrong Best Frederik Am Montag, den 08.06.2020, 19:52 +0000 schrieb Holger Brunn: > > Except mistake or bugs, the company seems filter the apps she wants > to show. > > so let's assume one of the first two and reach out to see what's > going on. A > mistake/glitch/whatever on the submitting (so our) side also isn't > impossible, > so let's ask the people busy with that to double check. > > In the past I made the mistake to mark some of my cooler modules as > dependencies, which they were because they don't do anything on their > own, but > that got them hidden in the app store. Maybe we also have different > visibility > rules at play between odoo sa and oca? > > --- > 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 -- Dr.-Ing. Frederik Kramer Geschäftsführer initOS GmbH An der Eisenbahn 1 21224 Rosengarten Phone: +49 4105 56156-12 Fax: +49 4105 56156-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: Rosengarten – Klecken 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
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Simone Orsi. - 10:01 - 11 Jun 2020 -
Re: OCA Repositories in Odoo Apps Store
+1 good distinction.On Wed, Jun 10, 2020, 2:17 PM Jacobus Erasmus <jacobus@ivyweb.co.za> wrote:+1
On 2020/06/10 09:07, admin@ygol.com wrote:
+1
--
Yves Goldberg
--
----- Original message -----
From: "Pedro M. Baeza (Tecnativa)" <pedro.baeza@tecnativa.com>
To: Contributors <contributors@odoo-community.org>
Subject: Re: OCA Repositories in Odoo Apps Store
Date: Wednesday, June 10, 2020 09:56
I also prefer to ignore Odoo Apps Store due to:
- The confirmed blacklist.
- To not have a special distinction between all the existing crap there.
- All the maintenance burden we need to do for being there (not only publishing, but maintaining a special HTML file for having the same README displayed there, and many more). Personally last year that I was in charge of this I accounted 30 hours only for this.
And personally I don't think the visibility we get is relevant enough. I prefer to spend that time spreading our own Apps Store or use it for having more features (like multi-language READMEs).
Regards.
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
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
--
Email SignatureJacobus Erasmus | Director a: IvyWeb (Pty) Ltd | 23 Rayner Avenue, Kilnerpark, Pretoria, 0186 | South Africa
e: jacobus@ivyweb.co.za | w: www.ivyweb.co.za
m: +27 84 251 6888 | p: +27 84 251 6888_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Kitti Upariphutthiphong - 03:06 - 11 Jun 2020 -
Re: OCA Repositories in Odoo Apps Store
Seems we will have some manual job to do to restore some repository.The warnings are either:1. <module>: The license LGPL-3 conflicts with one of its dependencies. Please make sure that you comply with the licenses compatibility. See our FAQ at https://apps.odoo.com/apps/faq#maintainer_faq_04 .2. Module <module> already exists for another serie. Please select a free module name or use the right account and this repository: <not an OCA repository>3. <module>: unmet dependency <another_module> for series 13.0. Dependency might be invalid.(4. No module found in repository ssh://git@github.com/OCA/<repo>.git#13.0.
Each module needs to be in a separate folder at the root of the repository, even if there is only one module.
If you have all the files of your module at the root of your repository, you need to create a new folder with the name of your module and move all the files in it.) -> This one is just normal(5. <module>: Module not installable) -> The module is most likely "installable": FalseIn #2 I recognize some OCA contributors that might have forked a module and registered it by mistake. But it requires us to reclaim them. We already did it in the past and Odoo helped us on that.We definitely need to dispatch the work there, the board shouldn't be the ones that handle it. It can be delegated to PSC IMO. In most cases (licences and dependencies) they can check it.Simone, do you know if we can extract the list of errors easily?Cheers,YannickOn Tue, 9 Jun 2020 at 07:31, Simone Orsi <simahawk@gmail.com> wrote:Hello,I'll do a round of checks but we have soooo many repos and modules that is very hard to get the full picture of their status at glance.@Fekete: do you have a list of modules/repo/branch you specifically detected?AFAIK this can be due to a bunch of reasons: branch not registered, scan of repo failed.The 1st reason depends on the fact that the process is still manual and Odoo does not ease this process at all.There's a WIP proof of concept here to try to automate the process.If anyone wants to help Alexey with it, I'm sure it will be appreciated ;)The 2nd may depend on errors when parsing some files (eg: rst docs).Meanwhile, if you notice a module or a repo is missing, please let us know.Cheers,S.On Mon, Jun 8, 2020 at 11:21 PM Daniel Reis <dreis@opensourceintegrators.com> wrote:Hello,
I got hold of the OCA app credentials, and there are a lot of warning to deal with.
I'll go through them.
You're welcome to ask me about any particular repo, if you want.
Thanks
Daniel
On 08/06/2020 20:56, Frederik Kramer wrote:
Or probably strategy enforcement ;-) Who knows. But i am with Holger to double check and to make sure that OCA is not doeing anything wrong Best Frederik Am Montag, den 08.06.2020, 19:52 +0000 schrieb Holger Brunn: > > Except mistake or bugs, the company seems filter the apps she wants > to show. > > so let's assume one of the first two and reach out to see what's > going on. A > mistake/glitch/whatever on the submitting (so our) side also isn't > impossible, > so let's ask the people busy with that to double check. > > In the past I made the mistake to mark some of my cooler modules as > dependencies, which they were because they don't do anything on their > own, but > that got them hidden in the app store. Maybe we also have different > visibility > rules at play between odoo sa and oca? > > --- > 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 -- Dr.-Ing. Frederik Kramer Geschäftsführer initOS GmbH An der Eisenbahn 1 21224 Rosengarten Phone: +49 4105 56156-12 Fax: +49 4105 56156-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: Rosengarten – Klecken 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
_______________________________________________
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 - 02:46 - 11 Jun 2020
-
-
Information on Odoo website limits
Hi CommunityWe have a client who is looking to create a portal for the doctors to enter (for example) flu vaccine orders. They are concerned about two things in particular:- How many concurrent requests could Odoo handle (eg they get flooded with requrests if ever the COVID-19 vaccine is released)
- How susceptible is it to denial of service attacks?
I realise that these are pretty broad questions, but any guidelines would be very useful.Thanks to all.Kind regardsJonathan Wilson
Chief Sales and Innovation Executive
WilldooIT Pty Ltd
Recent Linkedin articles:First Australian Odoo GOLD partner2017, 2015 & 2013 Odoo Best Partner Asia/PacificCreators of Odoo-Pentaho integration project"Making growth through technology easy"
E: jonathan.wilson@willdooit.com
P: +61 3 9135 1900
M: +61 4 000 17 444
10/435 Williamstown Road
Port Melbourne VIC 3207
DISCLAIMER | This electronic message together with any attachments is confidential. If you are not the recipient, do not copy, disclose, or use the contents in any way. Please also advise us by e-mail that you have received this message in error and then please destroy this email and any of its attachments. WilldooIT Pty. Ltd. is not responsible for any changes made to this message and/or any attachments after sending by Willdoo IT Pty. Ltd. WilldooIT Pty. Ltd. use virus scanning software but exclude all liability for virus or anything similar in this email or attachment.
by Jonathan Wilson - 10:51 - 6 May 2020-
Re: Information on Odoo website limits
Hi DiogoThanks Diogo - my thoughts also.Kind regardsJonathan Wilson
Chief Sales and Innovation Executive
WilldooIT Pty Ltd
Recent Linkedin articles:First Australian Odoo GOLD partner2017, 2015 & 2013 Odoo Best Partner Asia/PacificCreators of Odoo-Pentaho integration project"Making growth through technology easy"
E: jonathan.wilson@willdooit.com
P: +61 3 9135 1900
M: +61 4 000 17 444
10/435 Williamstown Road
Port Melbourne VIC 3207
DISCLAIMER | This electronic message together with any attachments is confidential. If you are not the recipient, do not copy, disclose, or use the contents in any way. Please also advise us by e-mail that you have received this message in error and then please destroy this email and any of its attachments. WilldooIT Pty. Ltd. is not responsible for any changes made to this message and/or any attachments after sending by Willdoo IT Pty. Ltd. WilldooIT Pty. Ltd. use virus scanning software but exclude all liability for virus or anything similar in this email or attachment.
On Thu, 7 May 2020 at 07:37, Diogo Duarte <dduarte@odoogap.com> wrote:Hi Jonathan,You can always use a load balancer and several Odoo instances, that will allow you to scale a lot.Use CDN and cache (where possible) and you will be relieving Odoo of some load.All about RAM and Cores at the end of the dayOn Wed, May 6, 2020 at 9:52 PM Jonathan Wilson <jonathan.wilson@willdooit.com> wrote:Hi CommunityWe have a client who is looking to create a portal for the doctors to enter (for example) flu vaccine orders. They are concerned about two things in particular:- How many concurrent requests could Odoo handle (eg they get flooded with requrests if ever the COVID-19 vaccine is released)
- How susceptible is it to denial of service attacks?
I realise that these are pretty broad questions, but any guidelines would be very useful.Thanks to all.Kind regardsJonathan Wilson
Chief Sales and Innovation Executive
WilldooIT Pty Ltd
Recent Linkedin articles:First Australian Odoo GOLD partner2017, 2015 & 2013 Odoo Best Partner Asia/PacificCreators of Odoo-Pentaho integration project"Making growth through technology easy"
E: jonathan.wilson@willdooit.com
P: +61 3 9135 1900
M: +61 4 000 17 444
10/435 Williamstown Road
Port Melbourne VIC 3207
DISCLAIMER | This electronic message together with any attachments is confidential. If you are not the recipient, do not copy, disclose, or use the contents in any way. Please also advise us by e-mail that you have received this message in error and then please destroy this email and any of its attachments. WilldooIT Pty. Ltd. is not responsible for any changes made to this message and/or any attachments after sending by Willdoo IT Pty. Ltd. WilldooIT Pty. Ltd. use virus scanning software but exclude all liability for virus or anything similar in this email or attachment.
_______________________________________________
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 Jonathan Wilson - 01:35 - 7 May 2020 -
Re: Information on Odoo website limits
Hi Jonathan,You can always use a load balancer and several Odoo instances, that will allow you to scale a lot.Use CDN and cache (where possible) and you will be relieving Odoo of some load.All about RAM and Cores at the end of the dayOn Wed, May 6, 2020 at 9:52 PM Jonathan Wilson <jonathan.wilson@willdooit.com> wrote:Hi CommunityWe have a client who is looking to create a portal for the doctors to enter (for example) flu vaccine orders. They are concerned about two things in particular:- How many concurrent requests could Odoo handle (eg they get flooded with requrests if ever the COVID-19 vaccine is released)
- How susceptible is it to denial of service attacks?
I realise that these are pretty broad questions, but any guidelines would be very useful.Thanks to all.Kind regardsJonathan Wilson
Chief Sales and Innovation Executive
WilldooIT Pty Ltd
Recent Linkedin articles:First Australian Odoo GOLD partner2017, 2015 & 2013 Odoo Best Partner Asia/PacificCreators of Odoo-Pentaho integration project"Making growth through technology easy"
E: jonathan.wilson@willdooit.com
P: +61 3 9135 1900
M: +61 4 000 17 444
10/435 Williamstown Road
Port Melbourne VIC 3207
DISCLAIMER | This electronic message together with any attachments is confidential. If you are not the recipient, do not copy, disclose, or use the contents in any way. Please also advise us by e-mail that you have received this message in error and then please destroy this email and any of its attachments. WilldooIT Pty. Ltd. is not responsible for any changes made to this message and/or any attachments after sending by Willdoo IT Pty. Ltd. WilldooIT Pty. Ltd. use virus scanning software but exclude all liability for virus or anything similar in this email or attachment.
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Diogo Duarte - 11:36 - 6 May 2020 -
Re: Information on Odoo website limits
Hi NhomarThank you.Kind regardsJonathan Wilson
Chief Sales and Innovation Executive
WilldooIT Pty Ltd
Recent Linkedin articles:First Australian Odoo GOLD partner2017, 2015 & 2013 Odoo Best Partner Asia/PacificCreators of Odoo-Pentaho integration project"Making growth through technology easy"
E: jonathan.wilson@willdooit.com
P: +61 3 9135 1900
M: +61 4 000 17 444
10/435 Williamstown Road
Port Melbourne VIC 3207
DISCLAIMER | This electronic message together with any attachments is confidential. If you are not the recipient, do not copy, disclose, or use the contents in any way. Please also advise us by e-mail that you have received this message in error and then please destroy this email and any of its attachments. WilldooIT Pty. Ltd. is not responsible for any changes made to this message and/or any attachments after sending by Willdoo IT Pty. Ltd. WilldooIT Pty. Ltd. use virus scanning software but exclude all liability for virus or anything similar in this email or attachment.
On Thu, 7 May 2020 at 07:07, Nhomar Hernández <nhomar@vauxoo.com> wrote:El mié., 6 de may. de 2020 a la(s) 15:52, Jonathan Wilson (jonathan.wilson@willdooit.com) escribió:Hi CommunityWe have a client who is looking to create a portal for the doctors to enter (for example) flu vaccine orders. They are concerned about two things in particular:- How many concurrent requests could Odoo handle (eg they get flooded with requrests if ever the COVID-19 vaccine is released)
We achieved 5000/min well deployed- How susceptible is it to denial of service attacks?
This is not odoo's side but deployment side, if you set your odoo behind a proper configured nginx we kill all the DDOS that are tyied to be done to us or our customers...We failed once and we blocke the IP with a proper status page and set of deployments you can have a proper instance.I hope it helps, call me if you need any help.I realise that these are pretty broad questions, but any guidelines would be very useful.Thanks to all.Kind regardsJonathan Wilson
Chief Sales and Innovation Executive
WilldooIT Pty Ltd
Recent Linkedin articles:First Australian Odoo GOLD partner2017, 2015 & 2013 Odoo Best Partner Asia/PacificCreators of Odoo-Pentaho integration project"Making growth through technology easy"
E: jonathan.wilson@willdooit.com
P: +61 3 9135 1900
M: +61 4 000 17 444
10/435 Williamstown Road
Port Melbourne VIC 3207
DISCLAIMER | This electronic message together with any attachments is confidential. If you are not the recipient, do not copy, disclose, or use the contents in any way. Please also advise us by e-mail that you have received this message in error and then please destroy this email and any of its attachments. WilldooIT Pty. Ltd. is not responsible for any changes made to this message and/or any attachments after sending by Willdoo IT Pty. Ltd. WilldooIT Pty. Ltd. use virus scanning software but exclude all liability for virus or anything similar in this email or attachment.
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
--
--
Nhomar Hernandez
CEO Vauxoo, Odoo Gold Partner.
Site: http://vauxoo.com
Twitter: @nhomar
Github User: https://github.com/nhomar
Skype: nhomar00 (Envia mail previo no lo superviso siempre).
HangOut: nhomar@vauxoo.com
Móvil: +52 4773933942
(Whatsapp y telegram, intenta mejor telegram, whatsapp lo uso muy poco.)_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Jonathan Wilson - 11:16 - 6 May 2020 -
Re: Information on Odoo website limits
El mié., 6 de may. de 2020 a la(s) 15:52, Jonathan Wilson (jonathan.wilson@willdooit.com) escribió:Hi CommunityWe have a client who is looking to create a portal for the doctors to enter (for example) flu vaccine orders. They are concerned about two things in particular:- How many concurrent requests could Odoo handle (eg they get flooded with requrests if ever the COVID-19 vaccine is released)
We achieved 5000/min well deployed- How susceptible is it to denial of service attacks?
This is not odoo's side but deployment side, if you set your odoo behind a proper configured nginx we kill all the DDOS that are tyied to be done to us or our customers...We failed once and we blocke the IP with a proper status page and set of deployments you can have a proper instance.I hope it helps, call me if you need any help.I realise that these are pretty broad questions, but any guidelines would be very useful.Thanks to all.Kind regardsJonathan Wilson
Chief Sales and Innovation Executive
WilldooIT Pty Ltd
Recent Linkedin articles:First Australian Odoo GOLD partner2017, 2015 & 2013 Odoo Best Partner Asia/PacificCreators of Odoo-Pentaho integration project"Making growth through technology easy"
E: jonathan.wilson@willdooit.com
P: +61 3 9135 1900
M: +61 4 000 17 444
10/435 Williamstown Road
Port Melbourne VIC 3207
DISCLAIMER | This electronic message together with any attachments is confidential. If you are not the recipient, do not copy, disclose, or use the contents in any way. Please also advise us by e-mail that you have received this message in error and then please destroy this email and any of its attachments. WilldooIT Pty. Ltd. is not responsible for any changes made to this message and/or any attachments after sending by Willdoo IT Pty. Ltd. WilldooIT Pty. Ltd. use virus scanning software but exclude all liability for virus or anything similar in this email or attachment.
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
--
--
Nhomar Hernandez
CEO Vauxoo, Odoo Gold Partner.
Site: http://vauxoo.com
Twitter: @nhomar
Github User: https://github.com/nhomar
Skype: nhomar00 (Envia mail previo no lo superviso siempre).
HangOut: nhomar@vauxoo.com
Móvil: +52 4773933942
(Whatsapp y telegram, intenta mejor telegram, whatsapp lo uso muy poco.)
by Nhomar Hernández - 11:05 - 6 May 2020
-
Common .gitignore
Dear community,Several PRs like https://github.com/OCA/hr/pull/824 arrived, and this gave me idea to suggest maybe we should have common .gitignore across all repositories? That way, changes like these would have more traction and discussions. Since nature of changes to .gitignore is adding new IDE and similar, it’s valuable to have that standardized, IMHO.What are your opinions?Kind regards,Alexey
by Alexey Pelykh <alexey.pelykh@gmail.com> - 08:51 - 30 Apr 2020-
Re: Common .gitignore
To be honest, editors shouldn't really matter anyway should they? Its pretty uncommon an OCA repo is your top level project directory or maybe I've been doing it wrong all these years.On Thu, 30 Apr 2020, 7:57 pm Stéphane Bidoul, <stephane.bidoul@acsone.eu> wrote:> IMO preferred editors should be removed from the file and ignored globally in your own git config.Good point Simone.-sbiOn Thu, Apr 30, 2020 at 9:37 AM Simone Orsi <simahawk@gmail.com> wrote:Ciao,+1 for common .gitignore. The Python one was used as a base for what we have now AFAIR.IMO preferred editors should be removed from the file and ignored globally in your own git config.S.On Thu, Apr 30, 2020 at 9:22 AM Simone Rubino <simone.rubino@agilebg.com> wrote:PRO standardizing gitignore file for Odoo, maybe an extension of https://github.com/github/gitignore/blob/master/Python.gitignore ?About the IDE: some people are very attached to the one they are using (for me it's Pycharm ❤, for others sublime, visual studio code, the more the merrier), so I'd give a short list of 'supported IDEs' and include their files to be ignored (like '.idea' for Pycharm) in the standardized .gitignore.On Thu, 30 Apr 2020 at 08:52, Alexey Pelykh <alexey.pelykh@gmail.com> wrote:Dear community,Several PRs like https://github.com/OCA/hr/pull/824 arrived, and this gave me idea to suggest maybe we should have common .gitignore across all repositories? That way, changes like these would have more traction and discussions. Since nature of changes to .gitignore is adding new IDE and similar, it’s valuable to have that standardized, IMHO.What are your opinions?Kind regards,Alexey_______________________________________________
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 Graeme Gellatly - 10:45 - 30 Apr 2020 -
Re: Common .gitignore
> IMO preferred editors should be removed from the file and ignored globally in your own git config.Good point Simone.-sbiOn Thu, Apr 30, 2020 at 9:37 AM Simone Orsi <simahawk@gmail.com> wrote:Ciao,+1 for common .gitignore. The Python one was used as a base for what we have now AFAIR.IMO preferred editors should be removed from the file and ignored globally in your own git config.S.On Thu, Apr 30, 2020 at 9:22 AM Simone Rubino <simone.rubino@agilebg.com> wrote:PRO standardizing gitignore file for Odoo, maybe an extension of https://github.com/github/gitignore/blob/master/Python.gitignore ?About the IDE: some people are very attached to the one they are using (for me it's Pycharm ❤, for others sublime, visual studio code, the more the merrier), so I'd give a short list of 'supported IDEs' and include their files to be ignored (like '.idea' for Pycharm) in the standardized .gitignore.On Thu, 30 Apr 2020 at 08:52, Alexey Pelykh <alexey.pelykh@gmail.com> wrote:Dear community,Several PRs like https://github.com/OCA/hr/pull/824 arrived, and this gave me idea to suggest maybe we should have common .gitignore across all repositories? That way, changes like these would have more traction and discussions. Since nature of changes to .gitignore is adding new IDE and similar, it’s valuable to have that standardized, IMHO.What are your opinions?Kind regards,Alexey_______________________________________________
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 - 09:56 - 30 Apr 2020 -
Re: Common .gitignore
Ciao,+1 for common .gitignore. The Python one was used as a base for what we have now AFAIR.IMO preferred editors should be removed from the file and ignored globally in your own git config.S.On Thu, Apr 30, 2020 at 9:22 AM Simone Rubino <simone.rubino@agilebg.com> wrote:PRO standardizing gitignore file for Odoo, maybe an extension of https://github.com/github/gitignore/blob/master/Python.gitignore ?About the IDE: some people are very attached to the one they are using (for me it's Pycharm ❤, for others sublime, visual studio code, the more the merrier), so I'd give a short list of 'supported IDEs' and include their files to be ignored (like '.idea' for Pycharm) in the standardized .gitignore.On Thu, 30 Apr 2020 at 08:52, Alexey Pelykh <alexey.pelykh@gmail.com> wrote:Dear community,Several PRs like https://github.com/OCA/hr/pull/824 arrived, and this gave me idea to suggest maybe we should have common .gitignore across all repositories? That way, changes like these would have more traction and discussions. Since nature of changes to .gitignore is adding new IDE and similar, it’s valuable to have that standardized, IMHO.What are your opinions?Kind regards,Alexey_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Simone Orsi. - 09:36 - 30 Apr 2020 -
Re: Common .gitignore
+1----- Original message -----From: "Stéphane Bidoul" <stephane.bidoul@acsone.eu>To: Contributors <contributors@odoo-community.org>Subject: Re: Common .gitignoreDate: Thursday, April 30, 2020 10:22+1It should go there: https://github.com/OCA/maintainer-quality-tools/tree/master/sample_files/pre-commit-13.0At some point we will probably have a mechanism that updates these files automatically in all repos.-sbiOn Thu, Apr 30, 2020 at 8:52 AM Alexey Pelykh <alexey.pelykh@gmail.com> wrote:Dear community,Several PRs like https://github.com/OCA/hr/pull/824 arrived, and this gave me idea to suggest maybe we should have common .gitignore across all repositories? That way, changes like these would have more traction and discussions. Since nature of changes to .gitignore is adding new IDE and similar, it’s valuable to have that standardized, IMHO.What are your opinions?Kind regards,Alexey_______________________________________________Mailing-List: https://odoo-community.org/groups/contributors-15Post to: mailto:contributors@odoo-community.orgUnsubscribe: https://odoo-community.org/groups?unsubscribe_______________________________________________Mailing-List: https://odoo-community.org/groups/contributors-15Post to: mailto:contributors@odoo-community.orgUnsubscribe: https://odoo-community.org/groups?unsubscribe
by Yves Goldberg - 09:25 - 30 Apr 2020 -
Re: Common .gitignore
+1It should go there: https://github.com/OCA/maintainer-quality-tools/tree/master/sample_files/pre-commit-13.0At some point we will probably have a mechanism that updates these files automatically in all repos.-sbiOn Thu, Apr 30, 2020 at 8:52 AM Alexey Pelykh <alexey.pelykh@gmail.com> wrote:Dear community,Several PRs like https://github.com/OCA/hr/pull/824 arrived, and this gave me idea to suggest maybe we should have common .gitignore across all repositories? That way, changes like these would have more traction and discussions. Since nature of changes to .gitignore is adding new IDE and similar, it’s valuable to have that standardized, IMHO.What are your opinions?Kind regards,Alexey_______________________________________________
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:21 - 30 Apr 2020
-
-
account_bank_statement_import_online
Hello Everyone,I'm moving forward with the implementation of my Odoo 11 CE, so far everything is working fine, but now I'm looking to have implemented the account_bank_statement_import_online module I successfully have it install and I follow the instruction, I set the Bank feeds to Online(OCA) but in provider I have only dummy as an option, I don't know how to change it or add another provider shot-2020-04-28_21-12-18.jpg (attached) with the specification of my bank. If I click on dummy it will show me shot-2020-04-28_21-02-09.jpg (attached), At this point, I don't know what to do so if you can please show me the path I'll really appreciate.Thanks for all your helpRegards,----
Harold g Luzardo b
@Kickfliph
GNU/Linux User #535193
pub 2048R/0BCF3A23 2014-06-08
Key fingerprint = 842E 986F 2A7B A507 4F0B 4A0F A73D 5885 0BCF 3A23
by Harold Burton - 03:26 - 29 Apr 2020-
Re: account_bank_statement_import_online
account_bank_statement_import_paypal for importing CSV reports from PayPal has been improved on v11 recently, and quite working there, but multi_step_wizard for v11 is here https://github.com/OCA/connector-jira/tree/11.0/multi_step_wizard instead of server-ux
On 29 Apr 2020, at 14:07, Harold luzardo <haroldburtonl@gmail.com> wrote:OOhhh OK now I see my mistake, sorry about that, checking the 12.0 repo there is account_bank_statement_import_*online*_paypal and “account_bank_statement_import_paypal” but not for 11.0 witch is the one I'm trying get to work, Thanks again for sharing this information with all of us, in this point, I will have to find another way to pull / import my bank and Paypal statements because I still don't understand the file import method matching columns.Regards,On Wed, Apr 29, 2020 at 6:52 AM Alexey Pelykh <alexey.pelykh@gmail.com> wrote:Well, first of all for v12 multi_step_wizard is quite available in server-ux repo https://www.odoo.com/apps/modules/12.0/multi_step_wizard/Secondly, you’re referring trying to install account_bank_statement_import_*online*_paypal yet in error message it’s “account_bank_statement_import_paypal” which is for manual CSV reports import from PayPalOn 29 Apr 2020, at 12:47, Harold luzardo <haroldburtonl@gmail.com> wrote:Hello Everyone,Thanks for your replays, now I have things more clear, as I have this module installed already so I decided to install the account_bank_statement_import_online_paypal but I'm getting this message "You try to install module 'account_bank_statement_import_paypal' that depends on module 'multi_step_wizard'.But the latter module is not available in your system." so I guess there nothing else to do, the weird thing is that the repo contains these modules for my Odoo version so at this point I'm confused.Thanks for all your support.Regards,On Wed, Apr 29, 2020 at 12:37 AM Alexey Pelykh <alexey.pelykh@gmail.com> wrote:That’s correct, account_bank_statement_import_online provides only base for developing bank- or service-specific providers, like account_bank_statement_import_online_paypal or account_bank_statement_import_online_transferwise. There are PRs for v12 to support Ponto https://github.com/OCA/bank-statement-import/pull/279 and Qonto https://github.com/OCA/bank-statement-import/pull/277, and several country-specific bank providers (for Ukraine and Estonia I believe) that I’m aware of.On 29 Apr 2020, at 03:42, Graeme Gellatly <gdgellatly@gmail.com> wrote:That module is only for providers of online banking type service providers if I recall. Basically Paypal and Transferwise I think.On Wed, Apr 29, 2020 at 1:27 PM Harold luzardo <haroldburtonl@gmail.com> wrote:Hello Everyone,I'm moving forward with the implementation of my Odoo 11 CE, so far everything is working fine, but now I'm looking to have implemented the account_bank_statement_import_online module I successfully have it install and I follow the instruction, I set the Bank feeds to Online(OCA) but in provider I have only dummy as an option, I don't know how to change it or add another provider shot-2020-04-28_21-12-18.jpg (attached) with the specification of my bank. If I click on dummy it will show me shot-2020-04-28_21-02-09.jpg (attached), At this point, I don't know what to do so if you can please show me the path I'll really appreciate.Thanks for all your helpRegards,----
Harold g Luzardo b
@Kickfliph
GNU/Linux User #535193
pub 2048R/0BCF3A23 2014-06-08
Key fingerprint = 842E 986F 2A7B A507 4F0B 4A0F A73D 5885 0BCF 3A23_______________________________________________
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----
Harold g Luzardo b
@Kickfliph
GNU/Linux User #535193
pub 2048R/0BCF3A23 2014-06-08
Key fingerprint = 842E 986F 2A7B A507 4F0B 4A0F A73D 5885 0BCF 3A23_______________________________________________
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----
Harold g Luzardo b
@Kickfliph
GNU/Linux User #535193
pub 2048R/0BCF3A23 2014-06-08
Key fingerprint = 842E 986F 2A7B A507 4F0B 4A0F A73D 5885 0BCF 3A23_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Alexey Pelykh <alexey.pelykh@gmail.com> - 02:35 - 29 Apr 2020 -
Re: account_bank_statement_import_online
OOhhh OK now I see my mistake, sorry about that, checking the 12.0 repo there is account_bank_statement_import_*online*_paypal and “account_bank_statement_import_paypal” but not for 11.0 witch is the one I'm trying get to work, Thanks again for sharing this information with all of us, in this point, I will have to find another way to pull / import my bank and Paypal statements because I still don't understand the file import method matching columns.Regards,On Wed, Apr 29, 2020 at 6:52 AM Alexey Pelykh <alexey.pelykh@gmail.com> wrote:Well, first of all for v12 multi_step_wizard is quite available in server-ux repo https://www.odoo.com/apps/modules/12.0/multi_step_wizard/Secondly, you’re referring trying to install account_bank_statement_import_*online*_paypal yet in error message it’s “account_bank_statement_import_paypal” which is for manual CSV reports import from PayPal
On 29 Apr 2020, at 12:47, Harold luzardo <haroldburtonl@gmail.com> wrote:Hello Everyone,Thanks for your replays, now I have things more clear, as I have this module installed already so I decided to install the account_bank_statement_import_online_paypal but I'm getting this message "You try to install module 'account_bank_statement_import_paypal' that depends on module 'multi_step_wizard'.But the latter module is not available in your system." so I guess there nothing else to do, the weird thing is that the repo contains these modules for my Odoo version so at this point I'm confused.Thanks for all your support.Regards,On Wed, Apr 29, 2020 at 12:37 AM Alexey Pelykh <alexey.pelykh@gmail.com> wrote:That’s correct, account_bank_statement_import_online provides only base for developing bank- or service-specific providers, like account_bank_statement_import_online_paypal or account_bank_statement_import_online_transferwise. There are PRs for v12 to support Ponto https://github.com/OCA/bank-statement-import/pull/279 and Qonto https://github.com/OCA/bank-statement-import/pull/277, and several country-specific bank providers (for Ukraine and Estonia I believe) that I’m aware of.On 29 Apr 2020, at 03:42, Graeme Gellatly <gdgellatly@gmail.com> wrote:That module is only for providers of online banking type service providers if I recall. Basically Paypal and Transferwise I think.On Wed, Apr 29, 2020 at 1:27 PM Harold luzardo <haroldburtonl@gmail.com> wrote:Hello Everyone,I'm moving forward with the implementation of my Odoo 11 CE, so far everything is working fine, but now I'm looking to have implemented the account_bank_statement_import_online module I successfully have it install and I follow the instruction, I set the Bank feeds to Online(OCA) but in provider I have only dummy as an option, I don't know how to change it or add another provider shot-2020-04-28_21-12-18.jpg (attached) with the specification of my bank. If I click on dummy it will show me shot-2020-04-28_21-02-09.jpg (attached), At this point, I don't know what to do so if you can please show me the path I'll really appreciate.Thanks for all your helpRegards,----
Harold g Luzardo b
@Kickfliph
GNU/Linux User #535193
pub 2048R/0BCF3A23 2014-06-08
Key fingerprint = 842E 986F 2A7B A507 4F0B 4A0F A73D 5885 0BCF 3A23_______________________________________________
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----
Harold g Luzardo b
@Kickfliph
GNU/Linux User #535193
pub 2048R/0BCF3A23 2014-06-08
Key fingerprint = 842E 986F 2A7B A507 4F0B 4A0F A73D 5885 0BCF 3A23_______________________________________________
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
----
Harold g Luzardo b
@Kickfliph
GNU/Linux User #535193
pub 2048R/0BCF3A23 2014-06-08
Key fingerprint = 842E 986F 2A7B A507 4F0B 4A0F A73D 5885 0BCF 3A23
by Harold Burton - 02:06 - 29 Apr 2020 -
Re: account_bank_statement_import_online
Well, first of all for v12 multi_step_wizard is quite available in server-ux repo https://www.odoo.com/apps/modules/12.0/multi_step_wizard/Secondly, you’re referring trying to install account_bank_statement_import_*online*_paypal yet in error message it’s “account_bank_statement_import_paypal” which is for manual CSV reports import from PayPal
On 29 Apr 2020, at 12:47, Harold luzardo <haroldburtonl@gmail.com> wrote:Hello Everyone,Thanks for your replays, now I have things more clear, as I have this module installed already so I decided to install the account_bank_statement_import_online_paypal but I'm getting this message "You try to install module 'account_bank_statement_import_paypal' that depends on module 'multi_step_wizard'.But the latter module is not available in your system." so I guess there nothing else to do, the weird thing is that the repo contains these modules for my Odoo version so at this point I'm confused.Thanks for all your support.Regards,On Wed, Apr 29, 2020 at 12:37 AM Alexey Pelykh <alexey.pelykh@gmail.com> wrote:That’s correct, account_bank_statement_import_online provides only base for developing bank- or service-specific providers, like account_bank_statement_import_online_paypal or account_bank_statement_import_online_transferwise. There are PRs for v12 to support Ponto https://github.com/OCA/bank-statement-import/pull/279 and Qonto https://github.com/OCA/bank-statement-import/pull/277, and several country-specific bank providers (for Ukraine and Estonia I believe) that I’m aware of.On 29 Apr 2020, at 03:42, Graeme Gellatly <gdgellatly@gmail.com> wrote:That module is only for providers of online banking type service providers if I recall. Basically Paypal and Transferwise I think.On Wed, Apr 29, 2020 at 1:27 PM Harold luzardo <haroldburtonl@gmail.com> wrote:Hello Everyone,I'm moving forward with the implementation of my Odoo 11 CE, so far everything is working fine, but now I'm looking to have implemented the account_bank_statement_import_online module I successfully have it install and I follow the instruction, I set the Bank feeds to Online(OCA) but in provider I have only dummy as an option, I don't know how to change it or add another provider shot-2020-04-28_21-12-18.jpg (attached) with the specification of my bank. If I click on dummy it will show me shot-2020-04-28_21-02-09.jpg (attached), At this point, I don't know what to do so if you can please show me the path I'll really appreciate.Thanks for all your helpRegards,----
Harold g Luzardo b
@Kickfliph
GNU/Linux User #535193
pub 2048R/0BCF3A23 2014-06-08
Key fingerprint = 842E 986F 2A7B A507 4F0B 4A0F A73D 5885 0BCF 3A23_______________________________________________
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----
Harold g Luzardo b
@Kickfliph
GNU/Linux User #535193
pub 2048R/0BCF3A23 2014-06-08
Key fingerprint = 842E 986F 2A7B A507 4F0B 4A0F A73D 5885 0BCF 3A23_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Alexey Pelykh <alexey.pelykh@gmail.com> - 12:51 - 29 Apr 2020 -
Re: account_bank_statement_import_online
Hello Everyone,Thanks for your replays, now I have things more clear, as I have this module installed already so I decided to install the account_bank_statement_import_online_paypal but I'm getting this message "You try to install module 'account_bank_statement_import_paypal' that depends on module 'multi_step_wizard'.But the latter module is not available in your system." so I guess there nothing else to do, the weird thing is that the repo contains these modules for my Odoo version so at this point I'm confused.Thanks for all your support.Regards,On Wed, Apr 29, 2020 at 12:37 AM Alexey Pelykh <alexey.pelykh@gmail.com> wrote:That’s correct, account_bank_statement_import_online provides only base for developing bank- or service-specific providers, like account_bank_statement_import_online_paypal or account_bank_statement_import_online_transferwise. There are PRs for v12 to support Ponto https://github.com/OCA/bank-statement-import/pull/279 and Qonto https://github.com/OCA/bank-statement-import/pull/277, and several country-specific bank providers (for Ukraine and Estonia I believe) that I’m aware of.
On 29 Apr 2020, at 03:42, Graeme Gellatly <gdgellatly@gmail.com> wrote:That module is only for providers of online banking type service providers if I recall. Basically Paypal and Transferwise I think.On Wed, Apr 29, 2020 at 1:27 PM Harold luzardo <haroldburtonl@gmail.com> wrote:Hello Everyone,I'm moving forward with the implementation of my Odoo 11 CE, so far everything is working fine, but now I'm looking to have implemented the account_bank_statement_import_online module I successfully have it install and I follow the instruction, I set the Bank feeds to Online(OCA) but in provider I have only dummy as an option, I don't know how to change it or add another provider shot-2020-04-28_21-12-18.jpg (attached) with the specification of my bank. If I click on dummy it will show me shot-2020-04-28_21-02-09.jpg (attached), At this point, I don't know what to do so if you can please show me the path I'll really appreciate.Thanks for all your helpRegards,----
Harold g Luzardo b
@Kickfliph
GNU/Linux User #535193
pub 2048R/0BCF3A23 2014-06-08
Key fingerprint = 842E 986F 2A7B A507 4F0B 4A0F A73D 5885 0BCF 3A23_______________________________________________
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
----
Harold g Luzardo b
@Kickfliph
GNU/Linux User #535193
pub 2048R/0BCF3A23 2014-06-08
Key fingerprint = 842E 986F 2A7B A507 4F0B 4A0F A73D 5885 0BCF 3A23
by Harold Burton - 12:45 - 29 Apr 2020 -
Re: account_bank_statement_import_online
That’s correct, account_bank_statement_import_online provides only base for developing bank- or service-specific providers, like account_bank_statement_import_online_paypal or account_bank_statement_import_online_transferwise. There are PRs for v12 to support Ponto https://github.com/OCA/bank-statement-import/pull/279 and Qonto https://github.com/OCA/bank-statement-import/pull/277, and several country-specific bank providers (for Ukraine and Estonia I believe) that I’m aware of.
On 29 Apr 2020, at 03:42, Graeme Gellatly <gdgellatly@gmail.com> wrote:That module is only for providers of online banking type service providers if I recall. Basically Paypal and Transferwise I think.On Wed, Apr 29, 2020 at 1:27 PM Harold luzardo <haroldburtonl@gmail.com> wrote:Hello Everyone,I'm moving forward with the implementation of my Odoo 11 CE, so far everything is working fine, but now I'm looking to have implemented the account_bank_statement_import_online module I successfully have it install and I follow the instruction, I set the Bank feeds to Online(OCA) but in provider I have only dummy as an option, I don't know how to change it or add another provider shot-2020-04-28_21-12-18.jpg (attached) with the specification of my bank. If I click on dummy it will show me shot-2020-04-28_21-02-09.jpg (attached), At this point, I don't know what to do so if you can please show me the path I'll really appreciate.Thanks for all your helpRegards,----
Harold g Luzardo b
@Kickfliph
GNU/Linux User #535193
pub 2048R/0BCF3A23 2014-06-08
Key fingerprint = 842E 986F 2A7B A507 4F0B 4A0F A73D 5885 0BCF 3A23_______________________________________________
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 Alexey Pelykh <alexey.pelykh@gmail.com> - 06:35 - 29 Apr 2020
-
-
Why I Can find the source of an image
Hello Everyone,I have an Odoo11 CE and it's working fine, I'm trying to personalize the website, I'm using a free theme, but there some images that I'm looking to change/replace but I have a hard time trying to find where they are landing, I have tried searching by name, grep. locate and find but no luck, I can see the path showing in the website, mydomain.com/web/image/721/image.png so I went to the source Odoo folder but I can't find the image.png, I can see a /web/ folder but it doesn't contain the image I'm looking for.For sure I'm missing something that's why I'm asking for your good help,Thanks in advance,Regards.----
Harold g Luzardo b
@Kickfliph
GNU/Linux User #535193
pub 2048R/0BCF3A23 2014-06-08
Key fingerprint = 842E 986F 2A7B A507 4F0B 4A0F A73D 5885 0BCF 3A23
by Harold Burton - 11:26 - 27 Apr 2020-
Re: Why I Can find the source of an image
Thanks Joao,I found some of the images I was looking for, and yes the theme has many folders and each of them has his own img folder in, I believe that now I start to understand how it works.Thanks again I really appreciate all the help.Regards,On Mon, Apr 27, 2020 at 5:46 PM João Jerónimo <joao.jeronimo.pro@gmail.com> wrote:Hello,
The image you are looking for is most likely under the "static" sub-directory of the module that installed your theme.
What theme are you using? Is it in the Odoo or OCA store?
Cumprimentos, João Jerónimo
On 27/04/20 22:26, Harold luzardo wrote:
Hello Everyone,
I have an Odoo11 CE and it's working fine, I'm trying to personalize the website, I'm using a free theme, but there some images that I'm looking to change/replace but I have a hard time trying to find where they are landing, I have tried searching by name, grep. locate and find but no luck, I can see the path showing in the website, mydomain.com/web/image/721/image.png so I went to the source Odoo folder but I can't find the image.png, I can see a /web/ folder but it doesn't contain the image I'm looking for.
For sure I'm missing something that's why I'm asking for your good help,
Thanks in advance,
Regards.
--
--
Harold g Luzardo b
@Kickfliph
GNU/Linux User #535193
pub 2048R/0BCF3A23 2014-06-08
Key fingerprint = 842E 986F 2A7B A507 4F0B 4A0F A73D 5885 0BCF 3A23
_______________________________________________
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
----
Harold g Luzardo b
@Kickfliph
GNU/Linux User #535193
pub 2048R/0BCF3A23 2014-06-08
Key fingerprint = 842E 986F 2A7B A507 4F0B 4A0F A73D 5885 0BCF 3A23
by Harold Burton - 02:51 - 28 Apr 2020 -
Re: Why I Can find the source of an image
Hello,
The image you are looking for is most likely under the "static" sub-directory of the module that installed your theme.
What theme are you using? Is it in the Odoo or OCA store?
Cumprimentos, João Jerónimo
On 27/04/20 22:26, Harold luzardo wrote:
Hello Everyone,
I have an Odoo11 CE and it's working fine, I'm trying to personalize the website, I'm using a free theme, but there some images that I'm looking to change/replace but I have a hard time trying to find where they are landing, I have tried searching by name, grep. locate and find but no luck, I can see the path showing in the website, mydomain.com/web/image/721/image.png so I went to the source Odoo folder but I can't find the image.png, I can see a /web/ folder but it doesn't contain the image I'm looking for.
For sure I'm missing something that's why I'm asking for your good help,
Thanks in advance,
Regards.
--
--
Harold g Luzardo b
@Kickfliph
GNU/Linux User #535193
pub 2048R/0BCF3A23 2014-06-08
Key fingerprint = 842E 986F 2A7B A507 4F0B 4A0F A73D 5885 0BCF 3A23
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by joao.jeronimo.pro - 11:45 - 27 Apr 2020
-
-
Technical help on odoo cache framework
Hi everyone,I'm working on extending the mrp module but I'm stuck on a technical issue that could come from a lack of knowledge of the 12.0 odoo framework since I'm coming from 6.1An Odoo server in raised on the UI with the message 'stock.move(311659,).product_type' when I create a new mrp.production record but no traceback is available neither in the UI or the server log/console.After some step-by-step debugging I finally found the culprit, an exception CacheMiss is raised when I try to access the `product_type` field of the mrp.production.move_raw_ids One2Many fields.Do you have some tips for me that would help me to understand what is failing in my code ?class MrpProduction(models.Model):
_inherit = 'mrp.production'
@api.multi
def _generate_moves(self):
super(MrpProduction, self)._generate_moves()
for production in self:
# Assign consumable immediatly
consu_move_ids = production.move_raw_ids.filtered(
lambda r: r.product_type == 'consu'
)
consu_move_ids._action_assign()Regards,Yann Papouin
by Yann Papouin - 01:16 - 24 Apr 2020-
Re: Technical help on odoo cache framework
FYI, I made a PR with a fix for this issue: https://github.com/odoo/odoo/pull/50178Thanks everyone.
by Yann Papouin - 11:36 - 25 Apr 2020 -
Re: Technical help on odoo cache framework
Indeed, self.invalidate_cache() is fixing the issue when added after super().I tried self.invalidate_cache(['move_raw_ids']) to avoid the "RPG vs Bug" solution but the issue stay the same.About @api.depends, I read that it was used to trigger computed fields update.After some testing, I'm pretty sure that it is a framework issue because to reproduce it, you need this particular case:- ProductA MTO - Manufacture (BoM A)- ProductB MTO - Manufacture (BoM B)- ProductC MTO - Buy- ProductD MTO - BuyBoM A Content:- ProductB- ProductCBoM B Content:- ProductDWhen creating a new ProductA production, my inherited _generate_move() is correctly called for ProductB production but it fails for ProductA. If BoM content is switched, then it works fine...The second clue that make me think that it is framework issue is the fact that the CacheMiss exception should not be raised in the UI and that the server does not report any issue on INFO/DEBUG handlers like if the exception had leaked to the UI unintentionally.
by Yann Papouin - 05:16 - 24 Apr 2020 -
Re: Technical help on odoo cache framework
> Hi, if you have cache issues, sometimes it may be useful to call > `invalidate_cahce` ( > https://github.com/odoo/odoo/blob/36c2c7f04cc4fb63df17fcadb2eee6c5ea2e0a80/ > odoo/models.py#L5190 [1] ) for the records/fields you are working on. It may > help you fix your code or better understand why it isn't working as is. very often the culprit is not declaring all dependencies in @api.depends. When you do that right, the framework takes care of updating the cache
by Holger Brunn <holger@brunn.email> - 03:40 - 24 Apr 2020 -
Re: Technical help on odoo cache framework
Hi,if you have cache issues, sometimes it may be useful to call `invalidate_cahce` (https://github.com/odoo/odoo/blob/36c2c7f04cc4fb63df17fcadb2eee6c5ea2e0a80/odoo/models.py#L5190) for the records/fields you are working on.It may help you fix your code or better understand why it isn't working as is.On Fri, 24 Apr 2020 at 14:02, Yann Papouin <y.papouin@dec-industrie.com> wrote:No, product_type is a related field:_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Simone Rubino - 02:55 - 24 Apr 2020 -
Re: Technical help on odoo cache framework
No, product_type is a related field:
by Yann Papouin - 02:01 - 24 Apr 2020
-
-
Effective Org
Audacious theoreme:
For an effective organization, drop odoo for keybase alltogether.After all, organizations are made of people, right?Odoo's fundamental process model is too stiff for organic business growth.Odoo's omnichannel conversational capabilities are weak. It's general conversational capabilities are week, too.And are there chances your business is not a Jon Doe table factory, like one plate, four legs, you know...Conclusion: integrate odoo as a backend into your tools landscape, but drive your business growth elsewhere..
by dar - 05:20 - 24 Apr 2020-
Re: Effective Org
> Like others, I used to explore it a while back. It has vision is to be Monolith software vs Modularity as in Odoo. And so not many optional plugins. Because if there is new requirements, they will just include in the main package. But some time, I think 2 different requirements can't co-exists, right?I have a very clear opinion for that: Odoo's modularity over time has consumed about 30-60% of the potential ecosystem's momentum and development power in vain.Plain python inheritance is nothing bad to go with for customizations, if you need them. At least on top of a decently specced "monolith".Hence a fair share of feature flagged in-tree specs is actually a benefit for just about everything: manageability, design coherence, conceptual strength, etcetera.
Whereas Odoo is an absolute terrible monolith when it comes to the application design itself:
- Process Scheduler? -> Odoo- Pluggability of about anything: 0- API design: inconsistent (RPC concepts / framework / api design principles? consistent whitelisting?)- Client side rendering? -> Owl!!! - not, let's say, vue.js or react or something at risk that you could find decent off-the-shelf programmers on the market capable of dealing with Odoo.- web server -> Odoo/werkzeug carving it out into wsgi isn't straight forward and not a priority
- CLI tools: bare and deficient- And lot's of conceptual spaqetty at about every level of the framework (which is kind of a collateral of a monolith).QED.On Sat, Apr 25, 2020 at 10:47 PM David Arnold <dar@xoe.solutions> wrote:> Out of pure curiosity, what’s the largest Odoo deployment anyone made? Meaning, largest company that uses Odoo, and why “larger” don’t use it?> I’ve even heard that “Odoo is not as prestigious as Dynamics or IBM one"Maybe because their ecosystem's flavor doesn't appeal to "larger", after doing "larger" their due diligence.
Couple of reasons:
- Generally odoo and partners are opposing in their line of argumentation. (know own stories and stories heard from really big leads from others)- Odoo (at least SF office) is incapable of detecting really interesting opportunities out of their ecosystem and providing the appropriate support in closing (it's catastrophic!)- Odoo is a VERY bad technological ecosystem player - and there are companies thoughtful about it. (no standards integrations, no well documented API, no standard adherence, no interop, the list goes on... )- There is serious in-tree feature lack- "Large" does not fall victim to marketing as easily- There are only very few serious community members (flagship members) - which usually sum up for the "investment security" criterion- Which in turn would make up for Odoo's relatively young history. It's still considered an in mature product.- And if you look at features, they might be right - conceptually (and filtering out all those shiny features invented by marketing INSTEAD of by real users)I would say, if you are a reasonably sized integrator, your best bet to reach "larger" is to tuck away the Odoo brand and just sell a working ERP system.In that case, and if you dispose of some noteworthy dev resources in amount and quality, you might be better off with ERPNext.
That being said, there are claims of some pretty large deployments. I would say even "impressive". But to speak of one which is in public circulation: Geely (the owner of Volvo).
Why did they use it for a very scoped use case in their business, only? And if it was as brilliant as claimed, why is there no news about Geely expanding the use of Odoo?And as it seems from my past due diligence about the case, they seem to use community and the document modules from the excellent guys @ MUK AT. Kudos, btw!On Sat, Apr 25, 2020 at 1:22 AM Alexey Pelykh <alexey.pelykh@gmail.com> wrote:Out of pure curiosity, what’s the largest Odoo deployment anyone made? Meaning, largest company that uses Odoo, and why “larger” don’t use it?I’ve even heard that “Odoo is not as prestigious as Dynamics or IBM one"
On 25 Apr 2020, at 08:06, Kitti Upariphutthiphong <kittiu@ecosoft.co.th> wrote:Hi David,ERPNext is a nicely packaged software with its unique concept. Among OSS ERPs, beside Odoo, only ERPNext caught my attention, although, ERPNext is on the opposite side of Odoo in evey way.Like others, I used to explore it a while back. It has vision is to be Monolith software vs Modularity as in Odoo. And so not many optional plugins. Because if there is new requirements, they will just include in the main package. But some time, I think 2 different requirement can't co-exists, right?ERPNext definitely have more things out of the box, but I wonder when it come to niche requirements (like Localizaiton among others), how can we cope with it. And this is the area where OCA shines.In summary, I think Odoo is more difficult to implement, but also more flexible. ERPNext is easy to start with on general term, but lack of niche solution.Would be interested to hear your indept comparison too :)KittiOn Sat, Apr 25, 2020 at 3:42 AM P.V.Anthony <anthony@mindmedia.com.sg> wrote:On 25/4/20 4:37 am, David Arnold wrote: > I'll definitely make some more in depth testing and report back. I for one would really like to know the results of the testing of erpnext. P.V.Anthony_______________________________________________
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 dar - 06:06 - 26 Apr 2020 -
Re: Effective Org
> Out of pure curiosity, what’s the largest Odoo deployment anyone made? Meaning, largest company that uses Odoo, and why “larger” don’t use it?> I’ve even heard that “Odoo is not as prestigious as Dynamics or IBM one"Maybe because their ecosystem's flavor doesn't appeal to "larger", after doing "larger" their due diligence.
Couple of reasons:
- Generally odoo and partners are opposing in their line of argumentation. (know own stories and stories heard from really big leads from others)- Odoo (at least SF office) is incapable of detecting really interesting opportunities out of their ecosystem and providing the appropriate support in closing (it's catastrophic!)- Odoo is a VERY bad technological ecosystem player - and there are companies thoughtful about it. (no standards integrations, no well documented API, no standard adherence, no interop, the list goes on... )- There is serious in-tree feature lack- "Large" does not fall victim to marketing as easily- There are only very few serious community members (flagship members) - which usually sum up for the "investment security" criterion- Which in turn would make up for Odoo's relatively young history. It's still considered an in mature product.- And if you look at features, they might be right - conceptually (and filtering out all those shiny features invented by marketing INSTEAD of by real users)I would say, if you are a reasonably sized integrator, your best bet to reach "larger" is to tuck away the Odoo brand and just sell a working ERP system.In that case, and if you dispose of some noteworthy dev resources in amount and quality, you might be better off with ERPNext.
That being said, there are claims of some pretty large deployments. I would say even "impressive". But to speak of one which is in public circulation: Geely (the owner of Volvo).
Why did they use it for a very scoped use case in their business, only? And if it was as brilliant as claimed, why is there no news about Geely expanding the use of Odoo?And as it seems from my past due diligence about the case, they seem to use community and the document modules from the excellent guys @ MUK AT. Kudos, btw!On Sat, Apr 25, 2020 at 1:22 AM Alexey Pelykh <alexey.pelykh@gmail.com> wrote:Out of pure curiosity, what’s the largest Odoo deployment anyone made? Meaning, largest company that uses Odoo, and why “larger” don’t use it?I’ve even heard that “Odoo is not as prestigious as Dynamics or IBM one"
On 25 Apr 2020, at 08:06, Kitti Upariphutthiphong <kittiu@ecosoft.co.th> wrote:Hi David,ERPNext is a nicely packaged software with its unique concept. Among OSS ERPs, beside Odoo, only ERPNext caught my attention, although, ERPNext is on the opposite side of Odoo in evey way.Like others, I used to explore it a while back. It has vision is to be Monolith software vs Modularity as in Odoo. And so not many optional plugins. Because if there is new requirements, they will just include in the main package. But some time, I think 2 different requirement can't co-exists, right?ERPNext definitely have more things out of the box, but I wonder when it come to niche requirements (like Localizaiton among others), how can we cope with it. And this is the area where OCA shines.In summary, I think Odoo is more difficult to implement, but also more flexible. ERPNext is easy to start with on general term, but lack of niche solution.Would be interested to hear your indept comparison too :)KittiOn Sat, Apr 25, 2020 at 3:42 AM P.V.Anthony <anthony@mindmedia.com.sg> wrote:On 25/4/20 4:37 am, David Arnold wrote: > I'll definitely make some more in depth testing and report back. I for one would really like to know the results of the testing of erpnext. P.V.Anthony_______________________________________________
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 dar - 05:51 - 26 Apr 2020 -
Re: Effective Org
Out of pure curiosity, what’s the largest Odoo deployment anyone made? Meaning, largest company that uses Odoo, and why “larger” don’t use it?I’ve even heard that “Odoo is not as prestigious as Dynamics or IBM one"
On 25 Apr 2020, at 08:06, Kitti Upariphutthiphong <kittiu@ecosoft.co.th> wrote:Hi David,ERPNext is a nicely packaged software with its unique concept. Among OSS ERPs, beside Odoo, only ERPNext caught my attention, although, ERPNext is on the opposite side of Odoo in evey way.Like others, I used to explore it a while back. It has vision is to be Monolith software vs Modularity as in Odoo. And so not many optional plugins. Because if there is new requirements, they will just include in the main package. But some time, I think 2 different requirement can't co-exists, right?ERPNext definitely have more things out of the box, but I wonder when it come to niche requirements (like Localizaiton among others), how can we cope with it. And this is the area where OCA shines.In summary, I think Odoo is more difficult to implement, but also more flexible. ERPNext is easy to start with on general term, but lack of niche solution.Would be interested to hear your indept comparison too :)KittiOn Sat, Apr 25, 2020 at 3:42 AM P.V.Anthony <anthony@mindmedia.com.sg> wrote:On 25/4/20 4:37 am, David Arnold wrote: > I'll definitely make some more in depth testing and report back. I for one would really like to know the results of the testing of erpnext. P.V.Anthony_______________________________________________
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 Alexey Pelykh <alexey.pelykh@gmail.com> - 08:21 - 25 Apr 2020 -
Re: Effective Org
Hi David,ERPNext is a nicely packaged software with its unique concept. Among OSS ERPs, beside Odoo, only ERPNext caught my attention, although, ERPNext is on the opposite side of Odoo in evey way.Like others, I used to explore it a while back. It has vision is to be Monolith software vs Modularity as in Odoo. And so not many optional plugins. Because if there is new requirements, they will just include in the main package. But some time, I think 2 different requirement can't co-exists, right?ERPNext definitely have more things out of the box, but I wonder when it come to niche requirements (like Localizaiton among others), how can we cope with it. And this is the area where OCA shines.In summary, I think Odoo is more difficult to implement, but also more flexible. ERPNext is easy to start with on general term, but lack of niche solution.Would be interested to hear your indept comparison too :)KittiOn Sat, Apr 25, 2020 at 3:42 AM P.V.Anthony <anthony@mindmedia.com.sg> wrote:On 25/4/20 4:37 am, David Arnold wrote: > I'll definitely make some more in depth testing and report back. I for one would really like to know the results of the testing of erpnext. P.V.Anthony_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
by Kitti Upariphutthiphong - 08:05 - 25 Apr 2020 -
Re: Effective Org
On 25/4/20 4:37 am, David Arnold wrote: > I'll definitely make some more in depth testing and report back. I for one would really like to know the results of the testing of erpnext. P.V.Anthony
by anthony@mindmedia.com.sg - 10:41 - 24 Apr 2020
-
-
stock-logistics-barcode OCA module application
Hello there,I try to install the OCA module stock-logistics-barcode[1] for version 11, I have git clone the repository and place it into extra-addons folder, I went back to my Odoo and using the debug action I refresh my application list, but I'm not able to see listed this module. Searching and asking a bit I have tried restarting the server and checking the __manufest__.py installable: True status[2]. I have other modules that are placed in that same path folder (extra-addons) and they are working fine, showing and updating correctly, but for some reason, I'm not able to have this one working, definitely, I'm doing or missing something but as a good NEWBIE that I'm I don't what it is.Thanks for your helpRegards,[2]./stock_scanner/__manifest__.py: 'installable': True,./stock_barcodes/__manifest__.py: "installable": True,
./stock_barcodes_supplierinfo/__manifest__.py: "installable": True,
./product_supplierinfo_barcode/__manifest__.py: "installable": True,
./base_gs1_barcode/__manifest__.py: 'installable': True,
./stock_barcodes_gs1/__manifest__.py: 'installable': True,
./product_multi_ean/__manifest__.py: 'installable': True,
./stock_barcodes_gs1_expiry/__manifest__.py: 'installable': True,----
Harold g Luzardo b
@Kickfliph
GNU/Linux User #535193
pub 2048R/0BCF3A23 2014-06-08
Key fingerprint = 842E 986F 2A7B A507 4F0B 4A0F A73D 5885 0BCF 3A23
by Harold Burton - 03:51 - 23 Apr 2020-
Re: stock-logistics-barcode OCA module application
Hello Everyone,So I found the way to install the modules, the stock-logistics-barcode is a folder that contains a set of 11 modules, so what was happening is once I add that path into Odoo config file and restart my website and all Odoo start to cash, so I create soft symbolic links "ls -s" to the root path of Odoo addons and it's working now, I know that this is not the best / elegant way but at least I found a solution. Now, if you clone git stock-logistics-barcode you will find a folder in named "setup" that contains the same 11 modules folder repeated again, this was the only folder I did not create al symbolic link for, I believe this is the root cause of my problem so if someone has an idea why this repo is like this it will help us all.Regards,On Thu, Apr 23, 2020 at 11:26 AM Kiril Vangelovski <kiril@lambda-is.com> wrote:Check server logs and/or the browser dev tools for errors, without that it is hard to say what's the issue.
The config is not cached but you should restart the server so that it is applied.
Regards,
Kiril
On 23.4.20 17:12, Harold luzardo wrote:
Thanks Kiril,
I replicate what you said, but once I click on app button I ending in a page with no menus on the top of the screen just my logo and that's it :( looks like the page is not loading completely if I go back and remove the added path everything works fine again, By any chance is there like a cache or so that keeps the previous config saved?
Thanks for all your help.
On Thu, Apr 23, 2020 at 10:07 AM Kiril Vangelovski <kiril@lambda-is.com> wrote:
Hi Harold, The modules should be in the root path of the directory that you've added in addons_path. If they are not you should add the additional path specifically even though it is a child. Example: addons_path = /opt/odoo/odoo/addons,/mnt/extra-addons,/mnt/extra-addons/stock-logistics-barcode Regards, Kiril On 23.4.20 15:52, Harold luzardo wrote: > Hello there, > > I try to install the OCA module stock-logistics-barcode[1] for version > 11, I have git clone the repository and place it into extra-addons > folder, I went back to my Odoo and using the debug action I refresh my > application list, but I'm not able to see listed this module. > Searching and asking a bit I have tried restarting the server and > checking the __manufest__.py installable: True status[2]. I have other > modules that are placed in that same path folder (extra-addons) and > they are working fine, showing and updating correctly, but for some > reason, I'm not able to have this one working, definitely, I'm doing > or missing something but as a good NEWBIE that I'm I don't what it is. > > Thanks for your help > > Regards, > > [1]https://github.com/OCA/stock-logistics-barcode/tree/11.0 > > [2] > ./stock_scanner/__manifest__.py: 'installable': True, > ./stock_barcodes/__manifest__.py: "installable": True, > ./stock_barcodes_supplierinfo/__manifest__.py: "installable": True, > ./product_supplierinfo_barcode/__manifest__.py: "installable": True, > ./base_gs1_barcode/__manifest__.py: 'installable': True, > ./stock_barcodes_gs1/__manifest__.py: 'installable': True, > ./product_multi_ean/__manifest__.py: 'installable': True, > ./stock_barcodes_gs1_expiry/__manifest__.py: 'installable': True, > > -- > -- > Harold g Luzardo b > @Kickfliph > GNU/Linux User #535193 > pub 2048R/0BCF3A23 2014-06-08 > Key fingerprint = 842E 986F 2A7B A507 4F0B 4A0F A73D 5885 0BCF 3A23 > > _______________________________________________ > Mailing-List: https://odoo-community.org/groups/contributors-15 > Post to: mailto:contributors@odoo-community.org > Unsubscribe: https://odoo-community.org/groups?unsubscribe > -- Lambda IS DOOEL - free/open-source information systems implementation & development Kiril Vangelovski - consultant/developer web: https://www.lambda-is.com tel: +38971753823
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
--
--
Harold g Luzardo b
@Kickfliph
GNU/Linux User #535193
pub 2048R/0BCF3A23 2014-06-08
Key fingerprint = 842E 986F 2A7B A507 4F0B 4A0F A73D 5885 0BCF 3A23
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
-- Lambda IS DOOEL - free/open-source information systems implementation & development Kiril Vangelovski - consultant/developer web: https://www.lambda-is.com tel: +38971753823
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
----
Harold g Luzardo b
@Kickfliph
GNU/Linux User #535193
pub 2048R/0BCF3A23 2014-06-08
Key fingerprint = 842E 986F 2A7B A507 4F0B 4A0F A73D 5885 0BCF 3A23
by Harold Burton - 03:16 - 25 Apr 2020 -
Re: stock-logistics-barcode OCA module application
Check server logs and/or the browser dev tools for errors, without that it is hard to say what's the issue.
The config is not cached but you should restart the server so that it is applied.
Regards,
Kiril
On 23.4.20 17:12, Harold luzardo wrote:
Thanks Kiril,
I replicate what you said, but once I click on app button I ending in a page with no menus on the top of the screen just my logo and that's it :( looks like the page is not loading completely if I go back and remove the added path everything works fine again, By any chance is there like a cache or so that keeps the previous config saved?
Thanks for all your help.
On Thu, Apr 23, 2020 at 10:07 AM Kiril Vangelovski <kiril@lambda-is.com> wrote:
Hi Harold, The modules should be in the root path of the directory that you've added in addons_path. If they are not you should add the additional path specifically even though it is a child. Example: addons_path = /opt/odoo/odoo/addons,/mnt/extra-addons,/mnt/extra-addons/stock-logistics-barcode Regards, Kiril On 23.4.20 15:52, Harold luzardo wrote: > Hello there, > > I try to install the OCA module stock-logistics-barcode[1] for version > 11, I have git clone the repository and place it into extra-addons > folder, I went back to my Odoo and using the debug action I refresh my > application list, but I'm not able to see listed this module. > Searching and asking a bit I have tried restarting the server and > checking the __manufest__.py installable: True status[2]. I have other > modules that are placed in that same path folder (extra-addons) and > they are working fine, showing and updating correctly, but for some > reason, I'm not able to have this one working, definitely, I'm doing > or missing something but as a good NEWBIE that I'm I don't what it is. > > Thanks for your help > > Regards, > > [1]https://github.com/OCA/stock-logistics-barcode/tree/11.0 > > [2] > ./stock_scanner/__manifest__.py: 'installable': True, > ./stock_barcodes/__manifest__.py: "installable": True, > ./stock_barcodes_supplierinfo/__manifest__.py: "installable": True, > ./product_supplierinfo_barcode/__manifest__.py: "installable": True, > ./base_gs1_barcode/__manifest__.py: 'installable': True, > ./stock_barcodes_gs1/__manifest__.py: 'installable': True, > ./product_multi_ean/__manifest__.py: 'installable': True, > ./stock_barcodes_gs1_expiry/__manifest__.py: 'installable': True, > > -- > -- > Harold g Luzardo b > @Kickfliph > GNU/Linux User #535193 > pub 2048R/0BCF3A23 2014-06-08 > Key fingerprint = 842E 986F 2A7B A507 4F0B 4A0F A73D 5885 0BCF 3A23 > > _______________________________________________ > Mailing-List: https://odoo-community.org/groups/contributors-15 > Post to: mailto:contributors@odoo-community.org > Unsubscribe: https://odoo-community.org/groups?unsubscribe > -- Lambda IS DOOEL - free/open-source information systems implementation & development Kiril Vangelovski - consultant/developer web: https://www.lambda-is.com tel: +38971753823
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
--
--
Harold g Luzardo b
@Kickfliph
GNU/Linux User #535193
pub 2048R/0BCF3A23 2014-06-08
Key fingerprint = 842E 986F 2A7B A507 4F0B 4A0F A73D 5885 0BCF 3A23
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
-- Lambda IS DOOEL - free/open-source information systems implementation & development Kiril Vangelovski - consultant/developer web: https://www.lambda-is.com tel: +38971753823
by Kiril Vangelovski - 05:26 - 23 Apr 2020 -
Re: stock-logistics-barcode OCA module application
Thanks Kiril,I replicate what you said, but once I click on app button I ending in a page with no menus on the top of the screen just my logo and that's it :( looks like the page is not loading completely if I go back and remove the added path everything works fine again, By any chance is there like a cache or so that keeps the previous config saved?Thanks for all your help.On Thu, Apr 23, 2020 at 10:07 AM Kiril Vangelovski <kiril@lambda-is.com> wrote:Hi Harold, The modules should be in the root path of the directory that you've added in addons_path. If they are not you should add the additional path specifically even though it is a child. Example: addons_path = /opt/odoo/odoo/addons,/mnt/extra-addons,/mnt/extra-addons/stock-logistics-barcode Regards, Kiril On 23.4.20 15:52, Harold luzardo wrote: > Hello there, > > I try to install the OCA module stock-logistics-barcode[1] for version > 11, I have git clone the repository and place it into extra-addons > folder, I went back to my Odoo and using the debug action I refresh my > application list, but I'm not able to see listed this module. > Searching and asking a bit I have tried restarting the server and > checking the __manufest__.py installable: True status[2]. I have other > modules that are placed in that same path folder (extra-addons) and > they are working fine, showing and updating correctly, but for some > reason, I'm not able to have this one working, definitely, I'm doing > or missing something but as a good NEWBIE that I'm I don't what it is. > > Thanks for your help > > Regards, > > [1]https://github.com/OCA/stock-logistics-barcode/tree/11.0 > > [2] > ./stock_scanner/__manifest__.py: 'installable': True, > ./stock_barcodes/__manifest__.py: "installable": True, > ./stock_barcodes_supplierinfo/__manifest__.py: "installable": True, > ./product_supplierinfo_barcode/__manifest__.py: "installable": True, > ./base_gs1_barcode/__manifest__.py: 'installable': True, > ./stock_barcodes_gs1/__manifest__.py: 'installable': True, > ./product_multi_ean/__manifest__.py: 'installable': True, > ./stock_barcodes_gs1_expiry/__manifest__.py: 'installable': True, > > -- > -- > Harold g Luzardo b > @Kickfliph > GNU/Linux User #535193 > pub 2048R/0BCF3A23 2014-06-08 > Key fingerprint = 842E 986F 2A7B A507 4F0B 4A0F A73D 5885 0BCF 3A23 > > _______________________________________________ > Mailing-List: https://odoo-community.org/groups/contributors-15 > Post to: mailto:contributors@odoo-community.org > Unsubscribe: https://odoo-community.org/groups?unsubscribe > -- Lambda IS DOOEL - free/open-source information systems implementation & development Kiril Vangelovski - consultant/developer web: https://www.lambda-is.com tel: +38971753823
_______________________________________________
Mailing-List: https://odoo-community.org/groups/contributors-15
Post to: mailto:contributors@odoo-community.org
Unsubscribe: https://odoo-community.org/groups?unsubscribe
----
Harold g Luzardo b
@Kickfliph
GNU/Linux User #535193
pub 2048R/0BCF3A23 2014-06-08
Key fingerprint = 842E 986F 2A7B A507 4F0B 4A0F A73D 5885 0BCF 3A23
by Harold Burton - 05:11 - 23 Apr 2020 -
Re: stock-logistics-barcode OCA module application
Hi Harold, The modules should be in the root path of the directory that you've added in addons_path. If they are not you should add the additional path specifically even though it is a child. Example: addons_path = /opt/odoo/odoo/addons,/mnt/extra-addons,/mnt/extra-addons/stock-logistics-barcode Regards, Kiril On 23.4.20 15:52, Harold luzardo wrote: > Hello there, > > I try to install the OCA module stock-logistics-barcode[1] for version > 11, I have git clone the repository and place it into extra-addons > folder, I went back to my Odoo and using the debug action I refresh my > application list, but I'm not able to see listed this module. > Searching and asking a bit I have tried restarting the server and > checking the __manufest__.py installable: True status[2]. I have other > modules that are placed in that same path folder (extra-addons) and > they are working fine, showing and updating correctly, but for some > reason, I'm not able to have this one working, definitely, I'm doing > or missing something but as a good NEWBIE that I'm I don't what it is. > > Thanks for your help > > Regards, > > [1]https://github.com/OCA/stock-logistics-barcode/tree/11.0 > > [2] > ./stock_scanner/__manifest__.py: 'installable': True, > ./stock_barcodes/__manifest__.py: "installable": True, > ./stock_barcodes_supplierinfo/__manifest__.py: "installable": True, > ./product_supplierinfo_barcode/__manifest__.py: "installable": True, > ./base_gs1_barcode/__manifest__.py: 'installable': True, > ./stock_barcodes_gs1/__manifest__.py: 'installable': True, > ./product_multi_ean/__manifest__.py: 'installable': True, > ./stock_barcodes_gs1_expiry/__manifest__.py: 'installable': True, > > -- > -- > Harold g Luzardo b > @Kickfliph > GNU/Linux User #535193 > pub 2048R/0BCF3A23 2014-06-08 > Key fingerprint = 842E 986F 2A7B A507 4F0B 4A0F A73D 5885 0BCF 3A23 > > _______________________________________________ > Mailing-List: https://odoo-community.org/groups/contributors-15 > Post to: mailto:contributors@odoo-community.org > Unsubscribe: https://odoo-community.org/groups?unsubscribe > -- Lambda IS DOOEL - free/open-source information systems implementation & development Kiril Vangelovski - consultant/developer web: https://www.lambda-is.com tel: +38971753823
by Kiril Vangelovski - 04:05 - 23 Apr 2020
-
-
Crowdfunding? Again
Dear community, There was a question about crowdfunding specific fixes or migrations year or so ago. At that time it did not find any support, if I recall correctly, yet I’d like to resurface it and start a discussion about OCA setting up any suitable platform of fund-an-issue using GitHub. Kind regards, Alexey
by Alexey Pelykh <alexey.pelykh@gmail.com> - 02:15 - 22 Apr 2020 -
Yet another followup module ?
Dear OCA friends,I published yesterday a new module called Overdue Invoice Reminder (technical name : account_invoice_overdue_reminder) :It is an alternative to the OCA module account_credit_control available on https://github.com/OCA/credit-control (was in OCA/account-financial-tools for v10 and under)If you want to have a demo of my new module, please look at my screencast :Why did I decide to develop "yet another module" for followup ? Because I deployed the account_credit_control module for several companies (in v10), and the experience was not very positive, and they all stopped using it shortly after the deployment. My feeling about this OCA module is that it is like an army tank designed to send millions of followup letters ; the usability is not so good and it's not possible to customize the email/letters. Also, this module is very big (1900 line of python code) and difficult to modify because it is quite complex. That's why I decided to start the development of a new module from scratch. My main goals were:- give full control on the overdue email/letters to the user,- usability and easy the understand,- simplicity (700 lines of Python code, easy to read and understand),- reminders by email by default, with the possibility to also send letters and make phone calls.Please look at the README of the module for more info about the module (and its limitations) :I haven't submitted this module to OCA because of the rule "1 module per feature". But, if you think that this module should be in OCA, I'm ready to submit it. Anyway, your feedback on this module is welcomed. But don't forget that I want to KEEP THIS MODULE SIMPLE, so I may refuse features that add too much complexity.P.S. : I plan to backport this module to v10 after the first feedbacks.
--Alexis de Lattre
Akretion France - 27 rue Henri Rolland - 69100 Villeurbanne - France
Mail : alexis.delattre@akretion.comMobile : +33 6 99 08 92 45
by Alexis de Lattre - 12:20 - 22 Apr 2020-
Re: Yet another followup module ?
Le lun. 22 juin 2020 à 11:07, Alexis de Lattre <alexis.delattre@akretion.com> a écrit :The PR for v10.0 is here :Looking at Travis results, seems that the branch has been setup for 13.0 with black/pre-commit, etc...account_invoice_overdue_reminder/__manifest__.py:5: [C8106(manifest-version-format), ] Wrong Version Format "10.0.2.0.0" in manifest file. Regex to match: "(13\.0)\.\d+\.\d+\.\d+$"
--Alexis de Lattre
by Alexis de Lattre - 11:16 - 22 Jun 2020 -
Re: Yet another followup module ?
Le sam. 20 juin 2020 à 19:22, Daniel Reis <dreis@opensourceintegrators.com> a écrit :The 10.0 branch is available now.Thank you very much Daniel for your kind help.The PR for v10.0 is here :Alexis
by Alexis de Lattre - 11:11 - 22 Jun 2020 -
Re: Yet another followup module ?
Alexis,
The 10.0 branch is available now.
Thanks
Daniel
On 19/06/2020 11:42, Alexis de Lattre wrote:
Le ven. 19 juin 2020 à 10:22, Daniel Reis <dreis@opensourceintegrators.com> a écrit :
In my opinion, the least surprising option is to create the 10.0 branch on the same repo.
Do you have access to do that?
OK, I agree with you.
It seems I do have the access to create/delete branches on that project, but I'm not sure how I am supposed to do it (I'm not a git expert !)...
Alexis
_______________________________________________
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 - 07:21 - 20 Jun 2020 -
Re: Yet another followup module ?
No problem, I can take on that.
On 19/06/2020 11:42, Alexis de Lattre wrote:
Le ven. 19 juin 2020 à 10:22, Daniel Reis <dreis@opensourceintegrators.com> a écrit :
In my opinion, the least surprising option is to create the 10.0 branch on the same repo.
Do you have access to do that?
OK, I agree with you.
It seems I do have the access to create/delete branches on that project, but I'm not sure how I am supposed to do it (I'm not a git expert !)...
Alexis
_______________________________________________
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 - 03:46 - 19 Jun 2020 -
Re: Yet another followup module ?
Le ven. 19 juin 2020 à 10:22, Daniel Reis <dreis@opensourceintegrators.com> a écrit :In my opinion, the least surprising option is to create the 10.0 branch on the same repo.
Do you have access to do that?OK, I agree with you.It seems I do have the access to create/delete branches on that project, but I'm not sure how I am supposed to do it (I'm not a git expert !)...Alexis
by Alexis de Lattre - 12:41 - 19 Jun 2020
-
-
Functional question: add invoice to Account Credit Control email
Hello Community,Hope everyone is fine/at home!I have a functional question (as usual) about the accound credit control functionality.- from v11 it has been moved here: https://github.com/OCA/credit-control/This module sends reminders to customers who are late for the payment of their invoices.The email sends an attachment, which is a summary of the list of not paid invoices.Would it be possible to add the invoices themselves (in addition to or in replacement of the summary PDF)?I checked the github PR and issues and didn't notice such functionnality.Thanks a lot and have a nice day,--
Virginie0477/64.17.20--Si vous avez un contrat de support, posez-nous vos question à l'adresse "support@coopiteasy.be"--Lors de l'envoi d'un mail, renseignez le nom de la structure pour laquelle vous travaillez. Merci.
by Virginie Dewulf. - 08:45 - 22 Apr 2020-
Re: Functional question: add invoice to Account Credit Control email
We Are Also intrested in this topic💪🏼🤞👍🏻Mit freundlichen Grüßen
We look forward to see you. Best Regards
Dipl. Ing. (Fh) Georg Notter
Agent ERP GmbH
www.agenterp.comAm 22.04.2020 um 08:52 schrieb svalaeys@fiefmanage.ch:
Hi Virginie,
We have done this in v12, but I almost regret we did. It turns out it’s a great idea when you have one or maybe two invoices open, but as soon as you have more it’s barely manageable.
If you still want more details I don’t mind sharing.
Stephane
From: Virginie Dewulf <virginie@coopiteasy.be>
Sent: Wednesday, April 22, 2020 8:47 AM
To: Contributors <contributors@odoo-community.org>
Subject: Functional question: add invoice to Account Credit Control emailHello Community,
Hope everyone is fine/at home!
I have a functional question (as usual) about the accound credit control functionality.
- from v11 it has been moved here: https://github.com/OCA/credit-control/
This module sends reminders to customers who are late for the payment of their invoices.
The email sends an attachment, which is a summary of the list of not paid invoices.
Would it be possible to add the invoices themselves (in addition to or in replacement of the summary PDF)?
I checked the github PR and issues and didn't notice such functionnality.
Thanks a lot and have a nice day,
--
Virginie
0477/64.17.20
--
Si vous avez un contrat de support, posez-nous vos question à l'adresse "support@coopiteasy.be"
--
Lors de l'envoi d'un mail, renseignez le nom de la structure pour laquelle vous travaillez. Merci.
_______________________________________________
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 Georg Notter - 08:56 - 22 Apr 2020 -
RE: Functional question: add invoice to Account Credit Control email
Hi Virginie,
We have done this in v12, but I almost regret we did. It turns out it’s a great idea when you have one or maybe two invoices open, but as soon as you have more it’s barely manageable.
If you still want more details I don’t mind sharing.
Stephane
From: Virginie Dewulf <virginie@coopiteasy.be>
Sent: Wednesday, April 22, 2020 8:47 AM
To: Contributors <contributors@odoo-community.org>
Subject: Functional question: add invoice to Account Credit Control emailHello Community,
Hope everyone is fine/at home!
I have a functional question (as usual) about the accound credit control functionality.
- from v11 it has been moved here: https://github.com/OCA/credit-control/
This module sends reminders to customers who are late for the payment of their invoices.
The email sends an attachment, which is a summary of the list of not paid invoices.
Would it be possible to add the invoices themselves (in addition to or in replacement of the summary PDF)?
I checked the github PR and issues and didn't notice such functionnality.
Thanks a lot and have a nice day,
--
Virginie
0477/64.17.20
--
Si vous avez un contrat de support, posez-nous vos question à l'adresse "support@coopiteasy.be"
--
Lors de l'envoi d'un mail, renseignez le nom de la structure pour laquelle vous travaillez. Merci.
_______________________________________________
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 Valaeys - 08:50 - 22 Apr 2020
-



