Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Syncing from upstream OCA/connector-telephony (16.0) #170

Merged
merged 187 commits into from
May 6, 2024
Merged

Commits on Apr 16, 2024

  1. Initial import.

    Long life to the asterisk_click2dial module for OpenERP !
    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    51faab4 View commit details
    Browse the repository at this point in the history
  2. - smaller "Dial" button on partner contact

    - option to allow the use of phone numbers in National format,
      as discussed with Albert. This option is on the definition of the server.
      -> required a large change of the reformat number process
    - added exact link to documentation in module description
    - some clean-up
    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    c5e98b0 View commit details
    Browse the repository at this point in the history
  3. Vianney changed the name of the 'alert-info' field to 'alert_info'...

    but he also made the change in the name of the SIP header !
    This commit reverts this mistake.
    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    97ca6f1 View commit details
    Browse the repository at this point in the history
  4. [FIX] WaitTime parameter is now really taken into account

    In fact, it corresponds to the 'Timeout' instruction for the Asterisk Manager
    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    688d92d View commit details
    Browse the repository at this point in the history
  5. Make error messages displayed on screen translatable.

    Add French translation for these messages.
    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    7496ea9 View commit details
    Browse the repository at this point in the history
  6. - Add copyright headers in XML files

    - Convert the comments for the functions to the standard style
    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    12d1b78 View commit details
    Browse the repository at this point in the history
  7. Country_prefix is now a "required" field.

    Added "active" field on asterisk.server object.
    In order to access all the Asterisk servers, included the desactivated ones,
    I added a view dedicated to the object asterisk.server, which is accessible
    under Administration > Configuration.
    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    a9b6810 View commit details
    Browse the repository at this point in the history
  8. Check that the user has a callerID.

    Thanks to Bernat Brunet from NaN for pointing this out.
    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    e3f4451 View commit details
    Browse the repository at this point in the history
  9. First implementation of get_name_from_phone_number function

    Make phone and mobile fields searchable
    Took into account some pylint coding convention suggestions
    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    80e9f09 View commit details
    Browse the repository at this point in the history
  10. Much better function get_name_from_phone_number :

    - we now handle the fact that phone numbers may contain spaces or special chars such in OpenERP, which is often the case in real life
    - check input number
    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    0882242 View commit details
    Browse the repository at this point in the history
  11. Add AGI script and its wrapper to manage timeout.

    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    6960720 View commit details
    Browse the repository at this point in the history
  12. Don't put the admin user by default, it's not a good example.

    Added a comment about the user rights.
    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    ff3fad2 View commit details
    Browse the repository at this point in the history
  13. Add a group "Asterisk CallerID" decidated to the CallerID name lookup…

    … feature
    
    Update module description.
    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    00f2040 View commit details
    Browse the repository at this point in the history
  14. Better context handling

    Update in comments
    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    dbab71a View commit details
    Browse the repository at this point in the history
  15. Update URL of the module documentation.

    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    f85322a View commit details
    Browse the repository at this point in the history
  16. [FIX] There shouldn't be any space between the name and the phone num…

    …ber in the callerID instruction to Asterisk.
    
    Patch courtesy of Marcel van der Boom. Thanks for your feedback !
    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    d81682e View commit details
    Browse the repository at this point in the history
  17. - Send CallerID to Asterisk as UTF-8 by default

      Accoring to my tests and the info I got, SIP phones support UTF-8 fine
    - Create a command line option to convert the name from UTF-8 to ASCII (-a)
    - add default parameter to the help message
    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    262ba88 View commit details
    Browse the repository at this point in the history
  18. Networking code is now IPv6-ready

    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    5c70c70 View commit details
    Browse the repository at this point in the history
  19. [FIX] Avoid a view conflict with the "base_contact" module by adding …

    …a priority on the res.partner view.
    
    Better handling of check functions when there are several ids.
    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    2c778c1 View commit details
    Browse the repository at this point in the history
  20. [FIX] Base_contact also inherit the view base.view_partner_address_fo…

    …rm1 and removes the "mobile" field, so I need to change the priority to this view too.
    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    15a07b5 View commit details
    Browse the repository at this point in the history
  21. [FIX] Wrong if condition fixed

    Thanks to Todd Johnson for pointing out this mistake.
    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    0a0a977 View commit details
    Browse the repository at this point in the history
  22. Avoid code duplication in views : the full tree/form view for Asteris…

    …k server now inherit from the tree/form view in the company form.
    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    81fe673 View commit details
    Browse the repository at this point in the history
  23. Changed author name to Akretion

    Changed view names
    Great solution (thanks to Sebastien for finding it !) to avoid having 2 different tree&form views for asterisk server.
    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    8fe8471 View commit details
    Browse the repository at this point in the history
  24. Add support for XML-RPC secure with SSL.

    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    42963df View commit details
    Browse the repository at this point in the history
  25. Fallback to utf-8 if sys.stdout.encoding fails.

    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    5f10e07 View commit details
    Browse the repository at this point in the history
  26. Create a dedicated Tab in the res_users view.

    Larger phone field in res_partner_address (smaller 'dial' button)
    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    5f3f7ed View commit details
    Browse the repository at this point in the history
  27. Start to clean the networking code :

    . adds debug message
    . starts to better manage character encoding in the networking code... but I still need more info about AMI on this.
    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    86e005f View commit details
    Browse the repository at this point in the history
  28. Large code cleanup :

    - now parses answers received from Asterisk and display errors to the user
    - now properly encodes the requests sent to Asterisk in ASCII (AMI doesn't support other charsets unfortunately)
    - required fields are now required=True
    - Single constraint function for all asterisk.server fields
    - Fields that shouldn't have non-ascii caracters are not validated if they have non-ASCII caracters (including CallerID)
    - clean-up error message code
    - if no Asterisk server is defined for a user, it takes the first Asterisk serve
    r defined
    - methods now always return something
    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    d9d15d8 View commit details
    Browse the repository at this point in the history
  29. Cosmetic changes.

    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    e31f4c4 View commit details
    Browse the repository at this point in the history
  30. Convert to new logger API of OpenERP 6.1

    Remove print
    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    24cd10a View commit details
    Browse the repository at this point in the history
  31. Add translations from extra-trunk

    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    5eb93a3 View commit details
    Browse the repository at this point in the history
  32. [FIX] Fix issue in constraint function for res_users.

    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    c980973 View commit details
    Browse the repository at this point in the history
  33. [IMP] Better AGI script :

    - cleaner code
    - should avoid these Asterisk errors :
       utils.c ast_carefulwrite: write() returned error: Broken pipe
    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    07c5cfd View commit details
    Browse the repository at this point in the history
  34. New feature : add wizard that opens the partner form of the calling p…

    …arty
    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    3fb7b0a View commit details
    Browse the repository at this point in the history
  35. Remove purchase menu entry, because it would require a dependancy on …

    …the 'purchase' module.
    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    6b10693 View commit details
    Browse the repository at this point in the history
  36. Update the module description to add the new feature "open calling pa…

    …rtner".
    
    Code clean-up.
    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    581b581 View commit details
    Browse the repository at this point in the history
  37. Improve (and fixes) the 'Open calling partner' function : better usab…

    …ility and less clicks
    
    Update the description.
    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    0c916cc View commit details
    Browse the repository at this point in the history
  38. Add 2 screenshots.

    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    40147fd View commit details
    Browse the repository at this point in the history
  39. For the feature "Open calling party", if the phone number is not in O…

    …penERP, he proposes to create a new partner with this phone or mobile number.
    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    565b731 View commit details
    Browse the repository at this point in the history
  40. Add user-specific alert-info option.

    Ability to have multiple alert-info options (separate them with '|').
    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    2c6632d View commit details
    Browse the repository at this point in the history
  41. Add logo that will appear in the list of modules in web client

    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    8fa464c View commit details
    Browse the repository at this point in the history
  42. Convert the phone number to international format before writing it on…

    … the new partner.
    
    Factorize code.
    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    439e79e View commit details
    Browse the repository at this point in the history
  43. Works even if national_prefix is empty.

    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    e27ee4b View commit details
    Browse the repository at this point in the history
  44. Update translation file.

    Update French translation.
    Update module description.
    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    963b41d View commit details
    Browse the repository at this point in the history
  45. Add 'variable' field on res.users

    New design of the pop-up "open calling partner" when the calling number is not found
    When calling number is not found, now also proposes to update an existing contact
    Update French translation
    Update module description
    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    cacee9f View commit details
    Browse the repository at this point in the history
  46. [FIX] avoid a crash when emptying "contact to update"

    Fix typo
    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    022aa4e View commit details
    Browse the repository at this point in the history
  47. Better error message.

    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    627ac0c View commit details
    Browse the repository at this point in the history
  48. Port asterisk_click2dial_crm to version 6.1 :

    - code re-factoring
    - add "open CRM call" from the "open calling partner" wizard
    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    b57943a View commit details
    Browse the repository at this point in the history
  49. asterisk_click2dial_crm :

    - when you do a click2dial, it now triggers a wizard that proposes to create a CRM phone call (instead of directly creating the CRM phone call)
    - Add option on res_users for users who don't want to trigger the wizard when they do a click2dial
    - Add FR translation
    - update module description and module category
    
    asterisk_click2dial :
    - update module category
    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    72631a3 View commit details
    Browse the repository at this point in the history
  50. Patch courtesy of daemon dog :

    - add support for SCCP phones
    - adds dial_suffix to allow some tweaking for SCCP phones
    - move menu entry of asterisk servers to Settings >Configuration > Asterisk servers
    - strip (0) from phone number in all scenarios
    
    Added by me : re-org of res.users form view, to separate standard parameters from advanced/optional ones.
    nodenet-1 authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    d358768 View commit details
    Browse the repository at this point in the history
  51. Fix crahes when using the Web interface (these crashes did not occur …

    …with the Gtk Client)
    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    192175c View commit details
    Browse the repository at this point in the history
  52. Don't set readonly fields in the "open calling partner" wizard, to av…

    …oid calling default_get twice (and thus connect to asterisk twice)
    
    Make "open calling partner" work with Asterisk 1.4 (or it is IAX trunk ?)
    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    909483f View commit details
    Browse the repository at this point in the history
  53. Add Local/ as possible channel type

    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    0785bdc View commit details
    Browse the repository at this point in the history
  54. Now uses the phonenumber lib to reformat numbers in "clean" format an…

    …d store them in E.164 format. Start to modify the code to take advantage of this great lib.
    
    Thanks to Ludovic Gasc for pointing this lib to me during PyconFR 2012 in Paris !
    
    Fix a bug with Open Calling Partner when CallerID has non-ASCII chars.
    
    Move all code of wizard to wizard directory.
    
    IMPORTANT : when you upgrade to this revision, run the wizard "Reformat all phone numbers" from Settings > Configuration > Asterisk.
    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    54bd66c View commit details
    Browse the repository at this point in the history
  55. Add support for geolocalisation via the phonenumbers lib in the get_c…

    …id_name.py script. If you add --geoloc, the numbers that are not found in OpenERP will be geolocalized.
    
    Thanks to Ludovic Gasc for making me discover this great "phonenumbers" lib.
    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    d9bffca View commit details
    Browse the repository at this point in the history
  56. Display the country name only when it's not my own country. This make…

    … the option to display only the city useless IMHO, so I removed this option.
    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    447016d View commit details
    Browse the repository at this point in the history
  57. Add debug log, to help a user.

    Small code clean-up.
    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    ce5022e View commit details
    Browse the repository at this point in the history
  58. More debug and warning messages, to help a user in its debug.

    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    fbc4206 View commit details
    Browse the repository at this point in the history
  59. [FIX] open calling partner should work again.

    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    a85ce32 View commit details
    Browse the repository at this point in the history
  60. Now use a PATH variable in get_cid_name_timeout.sh

    get_cid_name.py : don't update the CallerID name if there is already one present.
    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    8de3cf9 View commit details
    Browse the repository at this point in the history
  61. Use py-asterisk from http://code.google.com/p/py-asterisk/ (up-to-dat…

    …e mercurial version required) instead of our own code
    
    Add a field 'resource' on res.users, which is used in "SIP/resource", instead of "SIP/internal_number", which was not correct. YOU NEED TO UPDATE YOUR DATA !
    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    ef2953e View commit details
    Browse the repository at this point in the history
  62. Add some exclusion on CallerID for which we don't query openerp or tr…

    …y to geolocate.
    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    97f1fa1 View commit details
    Browse the repository at this point in the history
  63. Remove the import of the socket lib, that we don't use any more.

    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    a1e0f70 View commit details
    Browse the repository at this point in the history
  64. Port to OpenERP 7.0

    Add logo for the module asterisk_click2dial_crm
    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    b4f153b View commit details
    Browse the repository at this point in the history
  65. Oups, fix my previous commit.

    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    0c7aeb6 View commit details
    Browse the repository at this point in the history
  66. In the wizards, Instead of creating a new record and opening it, I op…

    …en a new form with the values. It's better when using the Web interface, because it avoids a click on "Edit".
    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    bd865ae View commit details
    Browse the repository at this point in the history
  67. Configuration menu
    Copy the full SHA
    94ef95a View commit details
    Browse the repository at this point in the history
  68. [FIX] res.partner.address -> res.partner

    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    59c8058 View commit details
    Browse the repository at this point in the history
  69. Update views to take advantage of the new styles provided by OpenERP …

    …7.0.
    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    3aaf17c View commit details
    Browse the repository at this point in the history
  70. Remove <field name="type">form/tree</field> in ir.ui.view model (de…

    …precated in OpenERP 7.0)
    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    9707ac8 View commit details
    Browse the repository at this point in the history
  71. Cosmetic changes.

    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    a60e07c View commit details
    Browse the repository at this point in the history
  72. The number of digits to match from the end of the phone number is now…

    … configurable. This code is now fully located in the asterisk_click2dial module (removed from the "get_cid_name.py" script).
    
    WARNING : if you upgrade your asterisk_click2dial module to this version, you should also update the script "get_cid_name.py" on your Asterisk server to this version.
    The imports now use the new openerp paths.
    Convert self.pool.get('obj') to self.pool['obj'] so that it crashes exactly where it should.
    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    6e06b2b View commit details
    Browse the repository at this point in the history
  73. Country prefix now has an intelligent default value.

    Just for fun, because I love the phonenumbers lib !
    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    aaf55ee View commit details
    Browse the repository at this point in the history
  74. Update version number of the script get_cid_name.py, to make it easie…

    …r to identify people who forgot to update it.
    
    Update year in copyright
    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    ff82add View commit details
    Browse the repository at this point in the history
  75. Remove Local/ from the list of chan types, because Originate doesn't …

    …work with Local/phonenumber.
    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    7ce2d6c View commit details
    Browse the repository at this point in the history
  76. Add encoding in the shell script get_cid_name_timeout.sh

    Remove an unused line of code.
    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    7d951cb View commit details
    Browse the repository at this point in the history
  77. Add read rights on asterisk.server for group "Asterisk CallerID"

    Patch courtesy of Marcel van der Boom (HS-Development BV)
    Convert ACLs from XML format to CSV format.
    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    43eef72 View commit details
    Browse the repository at this point in the history
  78. Avoid a crash when the answer to the "Status" query doesn't contain w…

    …hat is expected.
    
    Patch courtesy of Marcel van der Boom (HS-Development BV).
    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    10930b7 View commit details
    Browse the repository at this point in the history
  79. [FIX] Adapt view inheritance of res.partner form to post-v7.0-release…

    … changes
    
    Patch courtesy of Marcel van der Boom (HS-Development BV)
    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    817db64 View commit details
    Browse the repository at this point in the history
  80. Add compatibility with Asterisk 1.4 for the function "Open calling pa…

    …rtner"
    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    a17277d View commit details
    Browse the repository at this point in the history
  81. [IMP] Add Dial button in Lead and Opportunity views

    [IMP] Add CDR account management for Originating Call
    Invitu authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    cb0787b View commit details
    Browse the repository at this point in the history
  82. Move the generic code from res.partner to a new object asterisk.common.

    res.partner and crm.lead now inherit from asterisk.common. Thanks to Sebastien Beau for giving me the idea.
    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    1402c71 View commit details
    Browse the repository at this point in the history
  83. Configuration menu
    Copy the full SHA
    f7d8a9a View commit details
    Browse the repository at this point in the history
  84. [IMP] Add Dial button in Claim Form View

    Invitu authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    5e52c40 View commit details
    Browse the repository at this point in the history
  85. Add back "Local" as channel type.

    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    deb8b4b View commit details
    Browse the repository at this point in the history
  86. Fix a few strings.

    Update POT file and French translation.
    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    e26c347 View commit details
    Browse the repository at this point in the history
  87. The regular "phone", "mobile" and "fax" fields now store the phone nu…

    …mber in E164 format ; the special fields phone_e164, mobile_e164 and fax_164 are not used any more.
    
    Add phone widget that handle the "nice" display of phone number to the user.
    IMPORTANT : you need to restart the wizard "Reformat all phone numbers" in order to put the "phone", "mobile" and "fax" fields in E164 format (without spaces).
    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    7a8bb7a View commit details
    Browse the repository at this point in the history
  88. No need for ilike to match numbers !

    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    39b22bf View commit details
    Browse the repository at this point in the history
  89. Add 'external_dependencies' in __openerp__.py

    Remove unneeded imports
    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    c71436a View commit details
    Browse the repository at this point in the history
  90. FIX to make the script work with the latest version of the phonenumbe…

    …rs lib
    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    d21ed3a View commit details
    Browse the repository at this point in the history
  91. Use RFC 2806 : add a fax: URL and convert callto: URLs to tel: URLs

    The wizard "Reformat phones numbers" is now extended to objects other than res.partner
    Update coding standard
    Don't use xpath in inherited views when not necessary
    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    27d57c0 View commit details
    Browse the repository at this point in the history
  92. Update my script to make it work with the latest versions of the phon…

    …enumbers lib.
    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    49ebb41 View commit details
    Browse the repository at this point in the history
  93. Long-awaited feature : automatic pop-up on incoming calls in the Open…

    …ERP Web interface. Special thank to Jean-Sébastien Suzanne for his collaboration on this new feature.
    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    52fabd0 View commit details
    Browse the repository at this point in the history
  94. Extract Asterisk-independant code (the widget="phone" + phone number …

    …reformatting) from the asterisk_click2dial module to a new base_phone module.
    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    1335ec3 View commit details
    Browse the repository at this point in the history
  95. Add option try_parent in open_filtered_object

    In the wizard "Open Calling Partner", when you click on "open related orders" for example, it will open the orders with an explicit filter that you can then delete.
    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    16767b1 View commit details
    Browse the repository at this point in the history
  96. Very large changes in the structure of the project :

    - move more asterisk-independant code to base_phone module and create new asterisk-independant modules
    - rename module asterisk_popup to base_phone_popup
    - add ability to get callerid names not only from partners, but also from leads, employees, applicants, etc...
    - same for auto pop-up : not only for partners, but also for leads, employees, etc...
    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    48e51bd View commit details
    Browse the repository at this point in the history
  97. Add support for update of the name on OUTGOING calls (for far, it was…

    … only possible on incoming calls).
    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    b58cd25 View commit details
    Browse the repository at this point in the history
  98. Fix documentation.

    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    2583481 View commit details
    Browse the repository at this point in the history
  99. Add a "Test Connection to Asterisk" button on the asterisk.server for…

    …m view.
    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    907bb66 View commit details
    Browse the repository at this point in the history
  100. The "Dial" button is now inside the phone widget : this is great beca…

    …use it avoids the double inherit of views with phone fields (4 view XML files are removed in asterisk_click2dial* modules thanks to this !)
    
    The "Open Calling Partner" feature is now located in the top right menu, next to the Preferences (instead of the Sales menu)
    A click on tel: and fax: links doesn't open a new tab any more
    Update description and copyrights of asterisk_click2dial_crm
    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    7dac5c7 View commit details
    Browse the repository at this point in the history
  101. Update POT file and partial update of FR translation

    Convert regular string to translatable string
    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    d77d348 View commit details
    Browse the repository at this point in the history
  102. Port to OpenERP v8.0

    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    bff8696 View commit details
    Browse the repository at this point in the history
  103. Better button for Open Calling Partner

    s.petersen authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    8d53c3c View commit details
    Browse the repository at this point in the history
  104. Add href="#", so that the mouse cursor has the right aspect when over…

    … the phone icon
    
    Simplify HTML
    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    3f5365d View commit details
    Browse the repository at this point in the history
  105. Feature "Open Calling Partner" replaced by "Open Caller", with a comp…

    …letely new behavior
    
    As a consequence, the modules asterisk_click2dial_event and asterisk_click2dial_crm_claim have been dropped
    New wizard "Number not found" (inspired by the old "Open Calling Partner" with many enhancements), which is called by base_phone_popup and Open Caller
    Formatting of number for click2dial is now handled by the phonenumbers lib: as a consequence, 3 fields have been dropped from asterisk.server (national_prefix, international_prefix, country_prefix)
    New option 'dial_button_invisible' in the phone widget
    New sample script asterisk_click2dial/scripts/openerp_popup_timeout.sh
    Update translations and some module descriptions
    All the modules are now PEP8 compliant
    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    4458359 View commit details
    Browse the repository at this point in the history
  106. FIX remplace debug stuff by real code !

    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    1fcceed View commit details
    Browse the repository at this point in the history
  107. Use =like instead of like in phone number search, because I add the '…

    …%' myself
    
    Add logger.error in the function used by the inherit of write/create, for easier debugging when it is called by a webservice
    Add . in PATH in my sample shell scripts
    Code cleanup (thank you flake8 !)
    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    450c233 View commit details
    Browse the repository at this point in the history
  108. Fix code style

    Sandy Carter authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    a57b99b View commit details
    Browse the repository at this point in the history
  109. Don't fail if Asterisk and asterisk_click2dial aren't installed

    Sandy Carter authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    23f6b9e View commit details
    Browse the repository at this point in the history
  110. Ability to avoid the 'Not found in Odoo' as callerID name when phone …

    …is not found
    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    993ac55 View commit details
    Browse the repository at this point in the history
  111. [FIX] Bug #11 AMI test: success is now only reported when it really w…

    …orks !
    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    239b0da View commit details
    Browse the repository at this point in the history
  112. PEP8 fix

    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    def5064 View commit details
    Browse the repository at this point in the history
  113. Update screenshots

    Remove old-style icons on buttons
    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    2341c18 View commit details
    Browse the repository at this point in the history
  114. Highlight dial button in screenshot

    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    a638a66 View commit details
    Browse the repository at this point in the history
  115. Add OCA as author of OCA addons

    In order to get visibility on https://www.odoo.com/apps the OCA board has
    decided to add the OCA as author of all the addons maintained as part of the
    association.
    gurneyalex authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    5d0cc15 View commit details
    Browse the repository at this point in the history
  116. Configuration menu
    Copy the full SHA
    b98df8d View commit details
    Browse the repository at this point in the history
  117. Add support for "Create CRM phonecall" on leads (and not only partners)

    Re-organise the codebase to prepare the arrival of a new module for a telephony system other than Asterisk
    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    7351278 View commit details
    Browse the repository at this point in the history
  118. Remove an import that is not needed any more

    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    75c7a2a View commit details
    Browse the repository at this point in the history
  119. new: pkg: adds requirements.txt to explicit dependencies and ease scr…

    …ipted installations.
    vaab authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    290ea29 View commit details
    Browse the repository at this point in the history
  120. FIX old/new API call

    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    4ea1d9e View commit details
    Browse the repository at this point in the history
  121. Please welcome the new module ovh_telephony_connector !

    Some code clean-up and re-organisation in the generic modules
    Prepare the removal of the module asterisk_click2dial_crm
    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    a060f78 View commit details
    Browse the repository at this point in the history
  122. Configuration menu
    Copy the full SHA
    f4def3c View commit details
    Browse the repository at this point in the history
  123. [UPD] prefix versions with 8.0

    sbidoul authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    a9c2625 View commit details
    Browse the repository at this point in the history
  124. [MIG] Make modules uninstallable

    pedrobaeza authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    08e8b32 View commit details
    Browse the repository at this point in the history
  125. Port asterisk_click2dial to new API

    alexis-via authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    e7b8ce9 View commit details
    Browse the repository at this point in the history
  126. Port JS and controller code of asterisk_click2dial to v9

    Juris Malinens authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    f0821ba View commit details
    Browse the repository at this point in the history
  127. Port crm_phone to v9

    Code cleanup, fixes, small enhancements
    The code to extract the calling party number from the list of channels is now inheritable
    alexis-via authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    98c8670 View commit details
    Browse the repository at this point in the history
  128. Restore the object crm.phonecall that was dropped in v9 community

    Proper name_get for callerid for applicants
    Small bugfixes/enhancements
    alexis-via authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    33355ad View commit details
    Browse the repository at this point in the history
  129. Add notes about a workaround to make the phone logo in top bar work w…

    …ith Odoo enterprise
    alexis-via authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    3d92c8e View commit details
    Browse the repository at this point in the history
  130. Configuration menu
    Copy the full SHA
    66e918a View commit details
    Browse the repository at this point in the history
  131. [MIG] Make modules uninstallable

    pedrobaeza authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    37527ef View commit details
    Browse the repository at this point in the history
  132. [MIG] Rename manifest files

    pedrobaeza authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    41d15a5 View commit details
    Browse the repository at this point in the history
  133. Port crm_phone, hr_phone, hr_recruitment_phone, event_phone to v10

    Remove crm_claim_phone, because there is no crm_claim module in v10
    Start to port asterisk_click2dial (JS code still needs to be ported)
    alexis-via authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    438218b View commit details
    Browse the repository at this point in the history
  134. [FIX] base_phone: Fixed click2dial feature

    Sylvain GARANCHER authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    d516e5c View commit details
    Browse the repository at this point in the history
  135. Port opencaller to v10

    alexis-via authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    787bd4a View commit details
    Browse the repository at this point in the history
  136. PEP8 fix

    alexis-via authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    56cdb9b View commit details
    Browse the repository at this point in the history
  137. Configuration menu
    Copy the full SHA
    c547ad0 View commit details
    Browse the repository at this point in the history
  138. Configuration menu
    Copy the full SHA
    6ab2d87 View commit details
    Browse the repository at this point in the history
  139. [10.0][ADD] asterisk_click2dial: PJSIP channel type

    Alexis de Lattre authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    1dfad53 View commit details
    Browse the repository at this point in the history
  140. Configuration menu
    Copy the full SHA
    7d25715 View commit details
    Browse the repository at this point in the history
  141. Configuration menu
    Copy the full SHA
    01608b7 View commit details
    Browse the repository at this point in the history
  142. Configuration menu
    Copy the full SHA
    963ef5b View commit details
    Browse the repository at this point in the history
  143. Configuration menu
    Copy the full SHA
    864809d View commit details
    Browse the repository at this point in the history
  144. remove obsolete .pot files [ci skip]

    sbidoul authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    e651c43 View commit details
    Browse the repository at this point in the history
  145. Configuration menu
    Copy the full SHA
    54eed9a View commit details
    Browse the repository at this point in the history
  146. Port to v12 base_phone, asterisk_click2dial, crm_phone, hr_phone, eve…

    …nt_phone and hr_recruitment_phone
    alexis-via authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    9640d5a View commit details
    Browse the repository at this point in the history
  147. Configuration menu
    Copy the full SHA
    ee39be8 View commit details
    Browse the repository at this point in the history
  148. Configuration menu
    Copy the full SHA
    e33277d View commit details
    Browse the repository at this point in the history
  149. Update translation files

    Updated by Update PO files to match POT (msgmerge) hook in Weblate.
    oca-transbot authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    31fc78b View commit details
    Browse the repository at this point in the history
  150. Forward port dial button refactor from v11 to v12

    Move tests from base_phone to crm_phone (to benefit from crm_phone_validation)
    Don't use a demo partner in test (this partner was removed in later versions)
    Continue to remove dependancy on demo data in tests
    Forward port of base_phone_popup from v10 to v12 (use web_notify)
    alexis-via authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    4e12dfa View commit details
    Browse the repository at this point in the history
  151. Configuration menu
    Copy the full SHA
    6090c9f View commit details
    Browse the repository at this point in the history
  152. Update translation files

    Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
    
    Translation: connector-telephony-12.0/connector-telephony-12.0-asterisk_click2dial
    Translate-URL: https://translation.odoo-community.org/projects/connector-telephony-12-0/connector-telephony-12-0-asterisk_click2dial/
    oca-transbot authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    c84132d View commit details
    Browse the repository at this point in the history
  153. Configuration menu
    Copy the full SHA
    4f8ba43 View commit details
    Browse the repository at this point in the history
  154. Translated using Weblate (Portuguese (Brazil))

    Currently translated at 20.9% (19 of 91 strings)
    
    Translation: connector-telephony-12.0/connector-telephony-12.0-asterisk_click2dial
    Translate-URL: https://translation.odoo-community.org/projects/connector-telephony-12-0/connector-telephony-12-0-asterisk_click2dial/pt_BR/
    Rodrigo Macedo authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    26789ae View commit details
    Browse the repository at this point in the history
  155. Translated using Weblate (Portuguese (Brazil))

    Currently translated at 78.0% (71 of 91 strings)
    
    Translation: connector-telephony-12.0/connector-telephony-12.0-asterisk_click2dial
    Translate-URL: https://translation.odoo-community.org/projects/connector-telephony-12-0/connector-telephony-12-0-asterisk_click2dial/pt_BR/
    Rodrigo Macedo authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    16394c7 View commit details
    Browse the repository at this point in the history
  156. Translated using Weblate (Portuguese (Brazil))

    Currently translated at 100.0% (91 of 91 strings)
    
    Translation: connector-telephony-12.0/connector-telephony-12.0-asterisk_click2dial
    Translate-URL: https://translation.odoo-community.org/projects/connector-telephony-12-0/connector-telephony-12-0-asterisk_click2dial/pt_BR/
    Rodrigo Macedo authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    84182c1 View commit details
    Browse the repository at this point in the history
  157. Configuration menu
    Copy the full SHA
    64e560c View commit details
    Browse the repository at this point in the history
  158. Update translation files

    Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
    
    Translation: connector-telephony-12.0/connector-telephony-12.0-asterisk_click2dial
    Translate-URL: https://translation.odoo-community.org/projects/connector-telephony-12-0/connector-telephony-12-0-asterisk_click2dial/
    oca-transbot authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    4f9c8aa View commit details
    Browse the repository at this point in the history
  159. Configuration menu
    Copy the full SHA
    f26e5e6 View commit details
    Browse the repository at this point in the history
  160. Configuration menu
    Copy the full SHA
    1fb00cf View commit details
    Browse the repository at this point in the history
  161. Translated using Weblate (Flemish)

    Currently translated at 45.1% (41 of 91 strings)
    
    Translation: connector-telephony-12.0/connector-telephony-12.0-asterisk_click2dial
    Translate-URL: https://translation.odoo-community.org/projects/connector-telephony-12-0/connector-telephony-12-0-asterisk_click2dial/nl_BE/
    mimusica authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    a94db30 View commit details
    Browse the repository at this point in the history
  162. Update translation files

    Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
    
    Translation: connector-telephony-12.0/connector-telephony-12.0-asterisk_click2dial
    Translate-URL: https://translation.odoo-community.org/projects/connector-telephony-12-0/connector-telephony-12-0-asterisk_click2dial/
    oca-transbot authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    281ac21 View commit details
    Browse the repository at this point in the history
  163. Configuration menu
    Copy the full SHA
    173811e View commit details
    Browse the repository at this point in the history
  164. asterisk_click2dial 12.0.1.0.1

    OCA-git-bot authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    214f54e View commit details
    Browse the repository at this point in the history
  165. Update translation files

    Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
    
    Translation: connector-telephony-12.0/connector-telephony-12.0-asterisk_click2dial
    Translate-URL: https://translation.odoo-community.org/projects/connector-telephony-12-0/connector-telephony-12-0-asterisk_click2dial/
    oca-transbot authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    b5ff40e View commit details
    Browse the repository at this point in the history
  166. [MIG] asterisk_click2dial from v12 to v14

    PJSIP is now the default channel type instead of SIP
    Convert README to the new subdir format
    Minor code improvements
    alexis-via authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    a87a96d View commit details
    Browse the repository at this point in the history
  167. Configuration menu
    Copy the full SHA
    11e7d60 View commit details
    Browse the repository at this point in the history
  168. asterisk_click2dial: migrate AGI script to python3

    Full code cleanup of the AGI script
    Minor modifications to take into account the remark of the reviewers
    alexis-via authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    5a9ef8e View commit details
    Browse the repository at this point in the history
  169. Configuration menu
    Copy the full SHA
    bae9d4e View commit details
    Browse the repository at this point in the history
  170. [UPD] README.rst

    OCA-git-bot authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    cfab3a3 View commit details
    Browse the repository at this point in the history
  171. Translated using Weblate (Portuguese (Brazil))

    Currently translated at 100.0% (91 of 91 strings)
    
    Translation: connector-telephony-14.0/connector-telephony-14.0-asterisk_click2dial
    Translate-URL: https://translation.odoo-community.org/projects/connector-telephony-14-0/connector-telephony-14-0-asterisk_click2dial/pt_BR/
    Rodrigo Macedo authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    dcc80b0 View commit details
    Browse the repository at this point in the history
  172. Configuration menu
    Copy the full SHA
    f000f0b View commit details
    Browse the repository at this point in the history
  173. Translated using Weblate (Spanish (Argentina))

    Currently translated at 96.7% (88 of 91 strings)
    
    Translation: connector-telephony-14.0/connector-telephony-14.0-asterisk_click2dial
    Translate-URL: https://translation.odoo-community.org/projects/connector-telephony-14-0/connector-telephony-14-0-asterisk_click2dial/es_AR/
    nimarosa authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    cd7be54 View commit details
    Browse the repository at this point in the history
  174. Configuration menu
    Copy the full SHA
    b5db975 View commit details
    Browse the repository at this point in the history
  175. Configuration menu
    Copy the full SHA
    205bb94 View commit details
    Browse the repository at this point in the history
  176. Translated using Weblate (Italian)

    Currently translated at 7.6% (7 of 91 strings)
    
    Translation: connector-telephony-14.0/connector-telephony-14.0-asterisk_click2dial
    Translate-URL: https://translation.odoo-community.org/projects/connector-telephony-14-0/connector-telephony-14-0-asterisk_click2dial/it/
    mymage authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    3fb56ba View commit details
    Browse the repository at this point in the history
  177. Translated using Weblate (Slovenian)

    Currently translated at 8.7% (8 of 91 strings)
    
    Translation: connector-telephony-14.0/connector-telephony-14.0-asterisk_click2dial
    Translate-URL: https://translation.odoo-community.org/projects/connector-telephony-14-0/connector-telephony-14-0-asterisk_click2dial/sl/
    sysadminmatmoz authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    e3dbd4e View commit details
    Browse the repository at this point in the history
  178. [UPD] Update asterisk_click2dial.pot

    oca-ci authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    331dc91 View commit details
    Browse the repository at this point in the history
  179. asterisk_click2dial 14.0.2.0.0

    OCA-git-bot authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    b7610a9 View commit details
    Browse the repository at this point in the history
  180. Update translation files

    Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
    
    Translation: connector-telephony-14.0/connector-telephony-14.0-asterisk_click2dial
    Translate-URL: https://translation.odoo-community.org/projects/connector-telephony-14-0/connector-telephony-14-0-asterisk_click2dial/
    weblate authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    65f4941 View commit details
    Browse the repository at this point in the history
  181. [UPD] README.rst

    OCA-git-bot authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    5a5f7bb View commit details
    Browse the repository at this point in the history
  182. Translated using Weblate (Spanish)

    Currently translated at 100.0% (91 of 91 strings)
    
    Translation: connector-telephony-14.0/connector-telephony-14.0-asterisk_click2dial
    Translate-URL: https://translation.odoo-community.org/projects/connector-telephony-14-0/connector-telephony-14-0-asterisk_click2dial/es/
    Ivorra78 authored and luisDIXMIT committed Apr 16, 2024
    Configuration menu
    Copy the full SHA
    428da4b View commit details
    Browse the repository at this point in the history
  183. Configuration menu
    Copy the full SHA
    6bd81eb View commit details
    Browse the repository at this point in the history

Commits on Apr 19, 2024

  1. Configuration menu
    Copy the full SHA
    0295aec View commit details
    Browse the repository at this point in the history

Commits on May 5, 2024

  1. Merge PR #319 into 16.0

    Signed-off-by nimarosa
    OCA-git-bot committed May 5, 2024
    Configuration menu
    Copy the full SHA
    8212ea0 View commit details
    Browse the repository at this point in the history
  2. [UPD] Update asterisk_click2dial.pot

    oca-ci committed May 5, 2024
    Configuration menu
    Copy the full SHA
    64d3e3f View commit details
    Browse the repository at this point in the history
  3. [BOT] post-merge updates

    OCA-git-bot committed May 5, 2024
    Configuration menu
    Copy the full SHA
    8b3a393 View commit details
    Browse the repository at this point in the history