Skip to Content
  • 100 % coverage not enough?
    Hi all,
    
    
    I submitted a PR with 100% code coverage to the account-invoicing repo.
    
    
    However the branch is red because 100% is apparently not enough. 
    Supposedly the PR would decrease the overall coverage percentage. How??
    
    
    See here: https://github.com/OCA/account-invoicing/pull/1544
    
    
    I think any PR that gets code coverage > 90% (and that does not decrease 
    coverage of an existing module), should get a branch green, but 
    certainly 100%.
    
    
    Kind regards, Ronald
    
    
    

    by "Ronald Portier" <rportier@therp.nl> - 08:56 - 8 Sep 2023
  • Re: Proposing myself as Banking PSC
    +1

    On Wed, Sep 6, 2023, 3:57 AM Sergio Corato <notifications@odoo-community.org> wrote:
    Hi all,

    I'd like to become a member of Banking maintainers: https://github.com/orgs/OCA/teams/banking-maintainers, I'm already in the Accounting maintainers PSC and I think it's a related subject.

    I don't have many contributions to the banking area, so it doesn't matter if this proposal is not accepted 😊, anyway I'd like to fix something.


    Thanks!

    Sergio Corato

    _______________________________________________
    Mailing-List: https://odoo-community.org/groups/contributors-15
    Post to: mailto:contributors@odoo-community.org
    Unsubscribe: https://odoo-community.org/groups?unsubscribe


    by Leonardo J. Caballero G. - 03:21 - 7 Sep 2023
  • Re: Module to read and extract information from PDF's
    Out of the box Odoo is capable to extract the text content from a it.attachment.
    You just need to make sure the pdfminer.six Python library is installed.

    When hat is the case, the attachment document text is extracted and written in a ir.attachment text field.
    You can then do content search or even implement business logic based on it.

    Reference:
    https://github.com/odoo/odoo/blob/55423cbdeeb1ce35fb257624ea0d04d4be99a943/addons/attachment_indexation/__manifest__.py#L13

    Thanks
    Daniel

    On 06/09/2023 21:42, Samuel Macias Oropeza wrote:
    Hello everyone. 

    We have a client using Odoo 16 that needs to extract information from a PDF file and update a res.partner record with this info. The PDF contains data like name, address, ZIP Code, VAT number, etc. Does anyone know of any module/python library that could help us with this?

    Thank you!

    --

    SAMUEL MACIAS OROPEZA

    TECH LEAD

    smacias@opensourceintegrators.com

    P.O. BOX 940, HIGLEY, AZ 85236

    _______________________________________________
    Mailing-List: https://odoo-community.org/groups/contributors-15
    Post to: mailto:contributors@odoo-community.org
    Unsubscribe: https://odoo-community.org/groups?unsubscribe


    --
    DANIEL REIS
    MANAGING PARTNER

    M: +351 919 991 307
    E: dreis@OpenSourceIntegrators.com
    A: Avenida da República 3000, Estoril Office B, 3º Escr.34, 2649-517 Cascais


    by Daniel Reis - 09:26 - 7 Sep 2023
  • Re: Proposing myself as Banking PSC
    +1

    On Wed, Sep 6, 2023 at 9:57 AM Sergio Corato <notifications@odoo-community.org> wrote:
    Hi all,

    I'd like to become a member of Banking maintainers: https://github.com/orgs/OCA/teams/banking-maintainers, I'm already in the Accounting maintainers PSC and I think it's a related subject.

    I don't have many contributions to the banking area, so it doesn't matter if this proposal is not accepted 😊, anyway I'd like to fix something.


    Thanks!

    Sergio Corato

    _______________________________________________
    Mailing-List: https://odoo-community.org/groups/contributors-15
    Post to: mailto:contributors@odoo-community.org
    Unsubscribe: https://odoo-community.org/groups?unsubscribe



    --

    by Alex Comba. - 09:06 - 7 Sep 2023
  • Login Case Sensative
    Howdy y'all,

    I wanted this issue to get some more attention as it can effect many people using Odoo:


    Feel free to reply in the PR or directly here.

    Take care,
    Jason
    jason@companionedu.com

    by companiontechnology - 05:15 - 7 Sep 2023
  • Re: Module to restrict access/visibility of accounts/journals
    I think you can just add a record rule on the journal entries, to prevent some users to see journal entries they belong to a specitic journal (e.g. payroll)
    No need for a dedicated app..

    Regards,

    Dominique


    On Thu, 7 Sept 2023 at 02:57, Samuel Macias Oropeza <notifications@odoo-community.org> wrote:
    Hello everyone
    I'm reaching out to you regarding a customer's requirement. We have a client in v16 that needs to restrict access/visibility of accounts and journals depending on the user groups (Account Receivable, Account Payable, Treasury, etc.). The main objective is to segregate the roles of the users to reduce the risk of fraud. Do you know of any module that could help us with this?

    Thank you!

    --

    SAMUEL MACIAS OROPEZA

    TECH LEAD

    smacias@opensourceintegrators.com

    P.O. BOX 940, HIGLEY, AZ 85236

    _______________________________________________
    Mailing-List: https://odoo-community.org/groups/contributors-15
    Post to: mailto:contributors@odoo-community.org
    Unsubscribe: https://odoo-community.org/groups?unsubscribe


    by dominique.k - 12:35 - 7 Sep 2023
  • Re: Module to read and extract information from PDF's
    invoice2data is becoming a bit more unstable we are finding with new maintainers. For years it was fairly static and unchanging and fairly dedicated to Odoo, now it is more generalised.  Also for this purpose it would need a bit of customization and it really only suits when you know the document beforehand. We still use it, but wouldn't for a requirement like this.

    For our recent requirements to integrate with DMS and also enterprise Documents module to auto receive records and attach to correct record in this area, we have gone with what is listed below with a simple custom frontend model to define patterns. This was for a backscanning project of some 1m pages, multipage detection, multi doctype kind of thing. Basically, scan 150 pages on a scanner, it comes in, gets parsed and page breaks made and separate files with a copy of extracted text, then auto attached to correct record.

    pdftotext works as advertised. tesseract has some dependencies and quirks, which is fine, just needs some error and ambiguous bit handling. To do really well, you would also want opencv etc to do things like contrast and deskew images from scanned files, but we found actually for the overhead, for the documents we were doing it didn't really add any value. We offered to clean up and put this work to OCA but were refused on basis that noone does OCR anymore.

    Alternatively, you can just push to something like GVision for images. That was our first implementation, it is maybe 1/3 of the code, but harder to test in isolated dev and the results, and while much more comprehensive, for our use case weren't really value for money.

    import pdftotext
    import pytesseract
    from pdf2image import convert_from_bytes

    On Thu, Sep 7, 2023 at 8:51 AM Enric Tobella Alomar <notifications@odoo-community.org> wrote:
    You can try with invoice2data extractor.

    It can extract data from PDF (not only invoice info)

    El mié, 6 sept 2023 a las 22:42, Samuel Macias Oropeza (<notifications@odoo-community.org>) escribió:
    Hello everyone. 

    We have a client using Odoo 16 that needs to extract information from a PDF file and update a res.partner record with this info. The PDF contains data like name, address, ZIP Code, VAT number, etc. Does anyone know of any module/python library that could help us with this?

    Thank you!

    --

    SAMUEL MACIAS OROPEZA

    TECH LEAD

    smacias@opensourceintegrators.com

    P.O. BOX 940, HIGLEY, AZ 85236

    _______________________________________________
    Mailing-List: https://odoo-community.org/groups/contributors-15
    Post to: mailto:contributors@odoo-community.org
    Unsubscribe: https://odoo-community.org/groups?unsubscribe



    --
    Enric Tobella Alomar
    CEO & Founder

    _______________________________________________
    Mailing-List: https://odoo-community.org/groups/contributors-15
    Post to: mailto:contributors@odoo-community.org
    Unsubscribe: https://odoo-community.org/groups?unsubscribe


    by Graeme Gellatly - 11:26 - 6 Sep 2023
  • Re: Module to restrict access/visibility of accounts/journals
    Just in case it helps, we have this ugly module that comes "ugly" from v7 till today

    It allows only to restrict visibility and usage of journals (not accounts)

    I'm not proud of it but many of ours customers use it.



    Ing. Juan José Scarafía

    (+54 9 341) 3 278039

    twitter: @jjscarafia

    github: @jjscarafia



    El mié, 6 sept 2023 a la(s) 15:57, Samuel Macias Oropeza (notifications@odoo-community.org) escribió:
    Hello everyone
    I'm reaching out to you regarding a customer's requirement. We have a client in v16 that needs to restrict access/visibility of accounts and journals depending on the user groups (Account Receivable, Account Payable, Treasury, etc.). The main objective is to segregate the roles of the users to reduce the risk of fraud. Do you know of any module that could help us with this?

    Thank you!

    --

    SAMUEL MACIAS OROPEZA

    TECH LEAD

    smacias@opensourceintegrators.com

    P.O. BOX 940, HIGLEY, AZ 85236

    _______________________________________________
    Mailing-List: https://odoo-community.org/groups/contributors-15
    Post to: mailto:contributors@odoo-community.org
    Unsubscribe: https://odoo-community.org/groups?unsubscribe


    by Juan José Scarafía - 11:06 - 6 Sep 2023
  • Survey Module - Limit to Choices
    Hello Everyone,

    I want to prepare one survey with only one question. I need to Limit the Number of Choices in a Multiple-Choice Question.

    For example: I have 10 sections in a question but the users have to select only 5 sections.

    Does anyone know of any module or suggestions?

    Thank you.






    by Ramazan Subaşı - 11:01 - 6 Sep 2023
  • Re: Module to read and extract information from PDF's
    You can try with invoice2data extractor.

    It can extract data from PDF (not only invoice info)

    El mié, 6 sept 2023 a las 22:42, Samuel Macias Oropeza (<notifications@odoo-community.org>) escribió:
    Hello everyone. 

    We have a client using Odoo 16 that needs to extract information from a PDF file and update a res.partner record with this info. The PDF contains data like name, address, ZIP Code, VAT number, etc. Does anyone know of any module/python library that could help us with this?

    Thank you!

    --

    SAMUEL MACIAS OROPEZA

    TECH LEAD

    smacias@opensourceintegrators.com

    P.O. BOX 940, HIGLEY, AZ 85236

    _______________________________________________
    Mailing-List: https://odoo-community.org/groups/contributors-15
    Post to: mailto:contributors@odoo-community.org
    Unsubscribe: https://odoo-community.org/groups?unsubscribe



    --
    Enric Tobella Alomar
    CEO & Founder


    by Enric Tobella Alomar - 10:51 - 6 Sep 2023
  • Module to read and extract information from PDF's
    Hello everyone. 

    We have a client using Odoo 16 that needs to extract information from a PDF file and update a res.partner record with this info. The PDF contains data like name, address, ZIP Code, VAT number, etc. Does anyone know of any module/python library that could help us with this?

    Thank you!

    --

    SAMUEL MACIAS OROPEZA

    TECH LEAD

    smacias@opensourceintegrators.com

    P.O. BOX 940, HIGLEY, AZ 85236


    by Samuel Macias Oropeza - 10:41 - 6 Sep 2023
  • Re: Proposing myself as Banking PSC
    +1

    6 sep. 2023 17:52:26 Stefano Consolaro <notifications@odoo-community.org>:

    +1
    Da "Sergio Corato" notifications@odoo-community.org
    A "Contributors" contributors@odoo-community.org
    Cc
    Data Wed, 06 Sep 2023 07:57:03 -0000
    Oggetto Proposing myself as Banking PSC

    Hi all,

    I'd like to become a member of Banking maintainers: https://github.com/orgs/OCA/teams/banking-maintainers, I'm already in the Accounting maintainers PSC and I think it's a related subject.

    I don't have many contributions to the banking area, so it doesn't matter if this proposal is not accepted 😊, anyway I'd like to fix something.


    Thanks!

    Sergio Corato

    _______________________________________________
    Mailing-List: https://odoo-community.org/groups/contributors-15
    Post to: mailto:contributors@odoo-community.org
    Unsubscribe: https://odoo-community.org/groups?unsubscribe



    Stefano Consolaro
    www.mymage.it

    _______________________________________________
    Mailing-List: https://odoo-community.org/groups/contributors-15
    Post to: mailto:contributors@odoo-community.org
    Unsubscribe: https://odoo-community.org/groups?unsubscribe


    by Tom Blauwendraat - 10:00 - 6 Sep 2023
  • Module to restrict access/visibility of accounts/journals
    Hello everyone
    I'm reaching out to you regarding a customer's requirement. We have a client in v16 that needs to restrict access/visibility of accounts and journals depending on the user groups (Account Receivable, Account Payable, Treasury, etc.). The main objective is to segregate the roles of the users to reduce the risk of fraud. Do you know of any module that could help us with this?

    Thank you!

    --

    SAMUEL MACIAS OROPEZA

    TECH LEAD

    smacias@opensourceintegrators.com

    P.O. BOX 940, HIGLEY, AZ 85236


    by Samuel Macias Oropeza - 08:55 - 6 Sep 2023
  • Re:Proposing myself as Banking PSC
    +1
    Da "Sergio Corato" notifications@odoo-community.org
    A "Contributors" contributors@odoo-community.org
    Cc
    Data Wed, 06 Sep 2023 07:57:03 -0000
    Oggetto Proposing myself as Banking PSC

    Hi all,

    I'd like to become a member of Banking maintainers: https://github.com/orgs/OCA/teams/banking-maintainers, I'm already in the Accounting maintainers PSC and I think it's a related subject.

    I don't have many contributions to the banking area, so it doesn't matter if this proposal is not accepted 😊, anyway I'd like to fix something.


    Thanks!

    Sergio Corato

    _______________________________________________
    Mailing-List: https://odoo-community.org/groups/contributors-15
    Post to: mailto:contributors@odoo-community.org
    Unsubscribe: https://odoo-community.org/groups?unsubscribe



    Stefano Consolaro
    www.mymage.it

    by Stefano Consolaro - 05:51 - 6 Sep 2023
  • Re: Proposing myself as Banking PSC
    +1 

    El mié, 6 sept 2023 a la(s) 02:57, Sergio Corato (notifications@odoo-community.org) escribió:
    Hi all,

    I'd like to become a member of Banking maintainers: https://github.com/orgs/OCA/teams/banking-maintainers, I'm already in the Accounting maintainers PSC and I think it's a related subject.

    I don't have many contributions to the banking area, so it doesn't matter if this proposal is not accepted 😊, anyway I'd like to fix something.


    Thanks!

    Sergio Corato

    _______________________________________________
    Mailing-List: https://odoo-community.org/groups/contributors-15
    Post to: mailto:contributors@odoo-community.org
    Unsubscribe: https://odoo-community.org/groups?unsubscribe


    by Luis Romero - 05:01 - 6 Sep 2023
  • Proposing myself as Banking PSC
    Hi all,

    I'd like to become a member of Banking maintainers: https://github.com/orgs/OCA/teams/banking-maintainers, I'm already in the Accounting maintainers PSC and I think it's a related subject.

    I don't have many contributions to the banking area, so it doesn't matter if this proposal is not accepted 😊, anyway I'd like to fix something.


    Thanks!

    Sergio Corato

    by Sergio Corato - 09:55 - 6 Sep 2023
  • Re: OCA 2022 Delegates Campaign is now open....
    I want to become the delegate 

    On Mon, 10 Oct 2022, 10:32 am Rebecca Gellatly, <notifications@odoo-community.org> wrote:

    Dear Odoo enthusiasts, OCA members and contributors,


    The 2022 OCA Delegates Campaign is open. From now and until October 21st, you can apply to be an OCA Delegate if you are a current paid Member.


    Why?


    The Delegate Assembly is the Association’s supreme authority. Each Delegate member is entitled to one vote at the Delegate Assembly. Decisions of the Delegate Assembly are taken by a majority vote of the Delegate members present and voting. For further details, please read the Bylaws.


    How?


    To apply as a candidate, you have to:

    The campaign will be closed on October 21st, 2022.


    Then what?


    The vote will be open from October 24th - November 4th, 2022. Current OCA Delegates will have to vote for 10 new Delegates among the candidates. 


    The results of the election will be announced on those lists on November 7th, 2022. 


    The 10 new Delegates will then take part with the existing Delegates in :

    • the 2022 OCA Board Member Campaign from November 7th - 18th, 2022

    • the 2022 OCA Financial Auditor Campaign from November 7th - 18th, 2022

    • the 2022 General Assembly from November 21st to December 2nd, 2022.


    We look forward to seeing those who can make it the OCA Days this week, there will be a AMA OCA Board session where you can ask questions about this process or you can reply to this email as well.

    Warmest regards, Rebecca


    --
    Rebecca Gellatly
    General Secretary
    Odoo Community Association

    _______________________________________________
    Mailing-List: https://odoo-community.org/groups/contributors-15
    Post to: mailto:contributors@odoo-community.org
    Unsubscribe: https://odoo-community.org/groups?unsubscribe


    by Manish Mannan - 05:36 - 6 Sep 2023
  • RE: Higher ROI at SEMA Show 2023

     

     

    Hi,

     

    Did you receive my email below?

     

    Appreciate your response.

     

    Thanks ,

    Katie Fisher

     

    From: Katie Fisher [mailto:katiefisher.max@gmail.com]
    Sent: 08 August 2023 12:33
    To: 'contributors@odoo-community.org'
    Subject: Higher ROI at SEMA Show 2023

     

    Hi,

     

    Would you be interested in acquiring Specialty Equipment Market Association Exhibition- SEMA Show Attendees List 2023?

     

    Attendees:-

     

    ü  Warehouse Distributors

    ü  Chain Stores

    ü  Mass Merch

    ü  Jobbers/Retailers

    ü  Service And Repair Specialists

    ü  Dealers

    ü  Rebuilders

    ü  Off-Road Specialists and many more….

     

    List Includes: Company Name, Contact Name, Verified E-mail id’s, Tel.no, URL/Website, Title/Designation.

     

    If Yes, I am happy to share counts and cost details.

     

    Thanks,

    Katie Fisher


    by "Katie Fisher" <katiefisher.max@gmail.com> - 05:31 - 5 Sep 2023
  • Re: Mail history in Odoo via Outlook/Gmail API for CRM purposes
    Hello,

    I'm familiar with Hubspot and it also uses a plugin for the GMail web app.
    For an email to be tracked by Hubspot, I need to send it through the GMail web app, with the plugin installed and connected to your account.
    If I send the email using Thunderbird or some other email client, it won't be tracked.

    So what Hubspot is doing is not very different from the Odoo GMail/Outlook plugin..

    /Daniel

    On 30/08/2023 09:27, Tom Blauwendraat wrote:

    Hey Rafael,

    this looks like something else though? This seems to be about using plugins in Outlook, to do actions in Odoo; not for copying mails to Odoo.


    --
    DANIEL REIS
    MANAGING PARTNER

    M: +351 919 991 307
    E: dreis@OpenSourceIntegrators.com
    A: Avenida da República 3000, Estoril Office B, 3º Escr.34, 2649-517 Cascais


    by Daniel Reis - 05:00 - 5 Sep 2023
  • Re: Mail history in Odoo via Outlook/Gmail API for CRM purposes
    Hi,

    that sounds like an interesting approach. But how exactly should the (copied) emails be assigned to the Odoo Records?
    AFAIK some or even many (?) email servers or email clients remove headers when replying. Unfortunately also the headers with Odoo references.

    Best Regards

    Christian Zöllner
    Softwareentwickler

     
    Tel.: +49 3831 44557-0
    E-Mail: c.zoellner@intero-technologies.de
     
    Intero Technologies GmbH
    Heinrich-Heine-Ring 76
    18435 Stralsund
    twitter iconxing iconfacebook iconlinkedin icon
     
    Logo Gold
     
    Weitere Standorte der Intero Technologies GmbH
    Bessemerstraße 82
    12103 Berlin
    Simon-von-Utrecht-Straße 1
    20359 Hamburg
     
    Kleiststraße 23
    65187 Wiesbaden
    Charles-Darwin-Ring 4
    18059 Rostock
     
    Sperberweg 28
    50829 Köln
    Von-Harnack-Straße 27-28
    06712 Zeitz
     
     
     
    Geschäftsführer: Frank Löffler, Lars Lifson USt-Id: DE 251251697, AG Stralsund HRB 7076
     
    Alle Informationen zum Datenschutz gem. Art. 13 finden Sie hier. Auf Wunsch senden wir Ihnen diese Informationen gerne auch per PDF oder in gedruckter Form zu.


    Von: "Alexis de Lattre" <notifications@odoo-community.org>
    An: "Odoo Community Association, (OCA) Contributors" <contributors@odoo-community.org>
    Gesendet: Dienstag, 29. August 2023 19:01:57
    Betreff: Mail history in Odoo via Outlook/Gmail API for CRM purposes

    Dear OCA friends,
    
    One of my customers insists on having all the emails exchanged with a
    customer/prospect in Odoo, which is a standard feature of all serious
    CRMs. In Odoo, this is a native feature : you should send your emails
    from Odoo and the answer will come back to Odoo, so that you will have
    the full history of emails in the chatter. But, in real life, nobody
    wants to use Odoo as its mailbox. Salesmen want to use their
    Outlook/Gmail/... to send emails to customers. And the mail stack of
    Odoo is such a nightmare, that "the less I use it the better" !
    
    I made a little research, and it seems that, nowadays, CRM software
    (Hubspot for example) use the APIs of Gmail and Outlook 365 to get the
    emails of the employees and copy them to the CRM.
    In this presentation of the Outlook 365 API [1], in the Youtube video
    at the top of the page, they talk precisely about using the API for
    this specific CRM scenario (start watching at 1:00 minute).
    
    Are you aware of any opensource Odoo module using the Gmail API [2]
    and/or Outlook 365 API [1] to copy the emails sent/received to a
    customer/prospect in the chatter of the partner/lead in Odoo ? So far,
    I haven't found any...
    
    If not, what you point of view on such a feature ? Would you be
    interested to work on a prototype with me ?
    
    [1] https://learn.microsoft.com/fr-fr/graph/outlook-mail-concept-overview
    [2] https://developers.google.com/gmail/api/guides?hl=en
    
    
    
    -- 
    Alexis de Lattre
    Akretion France - 27 rue Henri Rolland - 69100 Villeurbanne - France
    Mail : alexis.delattre@akretion.com
    Mobile : +33 6 99 08 92 45
    

    _______________________________________________
    Mailing-List: https://odoo-community.org/groups/contributors-15
    Post to: mailto:contributors@odoo-community.org
    Unsubscribe: https://odoo-community.org/groups?unsubscribe



    by Christian Zöllner - 04:10 - 5 Sep 2023