Added support for OpenEMS Odoo Add-ons
Signed-off-by: Arila Barnes <axmsoftware@Arilas-MacBook-Air-2.local>
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
You can configure some common name patterns for the inverse function
|
||||
in Settings > General settings:
|
||||
|
||||
* Lastname Firstname: For example 'Anderson Robert'
|
||||
* Lastname, Firstname: For example 'Anderson, Robert'
|
||||
* Firstname Lastname: For example 'Robert Anderson'
|
||||
|
||||
After applying the changes, you can recalculate all partners name clicking
|
||||
"Recalculate names" button. Note: This process could take so much time depending
|
||||
how many partners there are in database.
|
||||
|
||||
You can use *_get_inverse_name* method to get lastname and firstname from a simple string
|
||||
and also *_get_computed_name* to get a name form the lastname and firstname.
|
||||
These methods can be overridden to change the format specified above.
|
||||
@@ -0,0 +1,23 @@
|
||||
* Nicolas Bessi <nicolas.bessi@camptocamp.com>
|
||||
* Yannick Vaucher <yannick.vaucher@camptocamp.com>
|
||||
* Vincent Renaville <vincent.renaville@camptocamp.com>
|
||||
* Guewen Baconnier <guewen.baconnier@camptocamp.com>
|
||||
* Holger Brunn <hbrunn@terp.nl>
|
||||
* Jonathan Nemry <jonathan.nemry@acsone.eu>
|
||||
* Olivier Laurent <olivier.laurent@acsone.eu>
|
||||
* Sandy Carter <sandy.carter@savoirfairelinux.com>
|
||||
* Alexis de Lattre <alexis.delattre@akretion.fr>
|
||||
* Lorenzo Battistini <lorenzo.battistini@agilebg.com>
|
||||
* Hans Henrik Gabelgaard <hhg@gabelgaard.org>
|
||||
* Jairo Llopis <j.llopis@grupoesoc.es>
|
||||
* Adrien Peiffer <adrien.peiffer@acsone.eu>
|
||||
* Ronald Portier <ronald@therp.nl>
|
||||
* Sylvain Van Hoof
|
||||
* Pedro Baeza <pedro.baeza@serviciosbaeza.com>
|
||||
* Dave Lasley <dave@laslabs.com>
|
||||
* Graeme Gellatly <graeme@o4sb.com>
|
||||
* Laurent Mignon <laurent.mignon@acsone.eu>
|
||||
* Bjorn Billen <bjorn.billen@dynapps.be>
|
||||
* `Aion Tech <https://aiontech.company/>`_:
|
||||
|
||||
* Simone Rubino <simone.rubino@aion-tech.it>
|
||||
@@ -0,0 +1,2 @@
|
||||
This module was written to extend the functionality of contacts to support
|
||||
having separate last name and first name.
|
||||
@@ -0,0 +1,3 @@
|
||||
Patterns for the inverse function are configurable only at system level. Maybe
|
||||
this configuration could depend on partner language, country or company,
|
||||
as discussed at `this OCA issue <https://github.com/OCA/partner-contact/issues/210>`_
|
||||
@@ -0,0 +1,13 @@
|
||||
The field *name* becomes a stored function field concatenating the *last name*
|
||||
and the *first name*. This avoids breaking compatibility with other modules.
|
||||
|
||||
Users should fulfill manually the separate fields for *last name* and *first
|
||||
name*, but in case you edit just the *name* field in some unexpected module,
|
||||
there is an inverse function that tries to split that automatically. It assumes
|
||||
that you write the *name* in format configured (*"Lastname Firstname"*, by default),
|
||||
but it could lead to wrong splitting (because it's just blindly trying to
|
||||
guess what you meant), so you better specify it manually.
|
||||
|
||||
For the same reason, after installing, previous names for contacts will stay in
|
||||
the *name* field, and the first time you edit any of them you will be asked to
|
||||
supply the *last name* and *first name* (just once per contact).
|
||||
Reference in New Issue
Block a user