Pedro M. Baeza
c39fac3aaa
[MIG] base_view_inheritance_extension: Migration to 9.0
Trivial changes:
* Version in README changed
* Version in manifest changed
8 years ago
Jairo Llopis
30ca4edaef
[base_view_inheritance_extension] Relicense to LGPL. ( #4 )
8 years ago
Holger Brunn
998cba0b4c
[ADD] base_view_inheritance_extension
8 years ago
Pedro M. Baeza
fd2aed6994
Merge pull request #670 from Tecnativa/9.0-server_environment-fix
[FIX] server_environment: Protect import
8 years ago
Pedro M. Baeza
f0b8682000
[FIX] server_environment: Protect import
8 years ago
Dave Lasley
fffcb7a8d1
[FIX] password_security: Validate admin pass
* Add current time as password_write_date for admin user in demo, disabling the reset prompt - fixes #652
8 years ago
Jairo Llopis
f8ec029b37
[FIX][mail_environment][server_environment] Prevent ImportError.
Fixes #488 .
8 years ago
OCA Git Bot
ee0b3ec07d
[UPD] addons table in README.md
8 years ago
Guewen Baconnier
1aadfc7273
Merge pull request #617 from acsone/9.0-server_env_ir_c_p-sbi
[9.0][ADD] server_environment_ir_config_parameter
8 years ago
Pedro M. Baeza
c2c6b9d605
Merge pull request #637 from dreispt/9.0-externaldb-relicense
Relicense to LGPL
8 years ago
OCA Git Bot
dd154903d9
[ADD] setup.py
8 years ago
OCA Git Bot
6c8563a4b1
[UPD] addons table in README.md
8 years ago
Pedro M. Baeza
d9628275a8
Merge pull request #649 from Tecnativa/9.0-mig-base_import_match
[9.0] [MIG] base_import_match module
8 years ago
cubells
ab03a74889
[9.0] [MIG] base_import_match module
8 years ago
Jairo Llopis
a14870f185
Avoid UnicodeEncodeError. ( #544 )
* Fix wrong README format.
* [FIX][base_import_match] Avoid UnicodeEncodeError.
When the model or field you chose was translated and had some non-ascii
character, you got an error like this: `UnicodeEncodeError: 'ascii' codec can't
encode character u'\xed' in position 15: ordinal not in range(128)`.
Now, using unicode strings, that won't happen again.
* Do not require a hidden field.
* Further unicode protection, add ondelete clause.
8 years ago
OCA Transbot
346dcfbec7
OCA Transbot updated translations from Transifex
9 years ago
Moisés López
b0cf7a3180
base_import_match: Small rst fixes in readme file
9 years ago
Jairo Llopis
11bf4254f6
[IMP] base_import_match: Add conditionals to fields when importing.
This patch allows to import res.partner records by VAT when is_company==True by default.
9 years ago
Jairo Llopis
c837ee502f
[ADD] base_import_match: Import deduplicator.
By default, when importing data (like CSV import) with the ``base_import``
module, Odoo follows this rule:
1. If you import the XMLID of a record, make an **update**.
2. If you do not, **create** a new record.
This module allows you to set additional rules to match if a given import is an
update or a new record.
This is useful when you need to sync heterogeneous databases, and the field you
use to match records in those databases with Odoo's is not the XMLID but the
name, VAT, email, etc.
After installing this module, the import logic will be changed to:
1. If you import the XMLID of a record, make an **update**.
2. If you do not:
1. If there are import match rules for the model you are importing:
1. Discard the rules that require fields you are not importing.
2. Traverse the remaining rules one by one in order to find a match in
the database.
1. If one match is found:
1. Stop traversing the rest of valid rules.
2. **Update** that record.
2. If zero or multiple matches are found:
1. Continue with the next rule.
3. If all rules are exhausted and no single match is found:
1. **Create** a new record.
2. If there are no match rules for your model:
1. **Create** a new record.
9 years ago
OCA Transbot
73c08848f2
OCA Transbot updated translations from Transifex
8 years ago
OCA Git Bot
862ed2d416
[UPD] addons table in README.md
8 years ago
Pedro M. Baeza
7cf463949b
Merge pull request #641 from osiell/9.0-mig-base_user_role
[MIG] 9.0 - Migrate 'base_user_role'
8 years ago
sebalix
167d999bcf
[IMP] base_user_role - Set a default category to associated groups
8 years ago
Stéphane Bidoul (ACSONE)
205b728d13
[IMP] base_user_role: display roles as first tab in user form
8 years ago
Stéphane Bidoul (ACSONE)
4044f326b0
[ADD] setup.py
8 years ago
sebalix
47bd8d45d1
[IMP] base_user_role - Bump module version to '9.0.1.0.0'
[IMP] base_user_role - Replace '<openerp>' tags by '<odoo>' + Remove useless '<data>' tags + Reindent XML content
[FIX] base_user_role - Fix noupdate declaration
[REM] base_user_role - Remove old migration script
8 years ago
Dave Lasley
13254701f1
Merge pull request #636 from laslabs/hotfix/9.0/auto_backup-commit_history
[FIX][9.0] auto_backup: Missing files
8 years ago
OCA Git Bot
e459190814
[ADD] setup.py
8 years ago
OCA Git Bot
92c97a9532
[UPD] addons table in README.md
8 years ago
Daniel Reis
1c2efd9698
Merge pull request #621 from adhoc-dev/9.0-mig-base_name_search_improved
Port to 9.0 base_name_search_improved
8 years ago
Dave Lasley
43ed6e8a48
[MIG] auto_backup: Migrate to v9
* Add self.ensure_ones
* Add test coverage
8 years ago
Nicolas Mac Rouillon
1481d5eb8f
# Please enter the commit message for your changes. Lines starting
8 years ago
Nicolas Mac Rouillon
16b3127de5
Merge branch '9.0' of https://github.com/OCA/server-tools into 9.0-mig-base_name_search_improved
8 years ago
OCA Transbot
c903157a1f
OCA Transbot updated translations from Transifex
8 years ago
Sébastien Alix
faec99ceb5
8.0 - New module 'base_user_role' to manage user roles efficiently ( #608 )
* [ADD] New module 'base_user_role'
* [FIX] base_user_role - Review
* [FIX] base_user_role - Review s/is_active/is_enabled/
* [FIX] base_user_role - Review s/is_active/is_enabled/
* [IMP] base_user_role - Translations updated (template + FR)
* [FIX] base_user_role - Lint
8 years ago
OCA Git Bot
2e436e1d1e
[ADD] setup.py
8 years ago
OCA Git Bot
e03213ce4d
[UPD] addons table in README.md
8 years ago
Daniel Reis
84b102cda8
Relicense to LGPL
With the agreement of authors and contributors.
Closes #635 (https://github.com/OCA/server-tools/issues/635 )
8 years ago
Stéphane Bidoul (ACSONE)
45a4172539
remove en.po that was erroneously created by transbot
8 years ago
OCA Transbot
d567a06bad
OCA Transbot updated translations from Transifex
8 years ago
OCA Transbot
8b25e10ea5
OCA Transbot updated translations from Transifex
8 years ago
OCA Transbot
64d428eaa7
OCA Transbot updated translations from Transifex
9 years ago
OCA Transbot
8312435617
OCA Transbot updated translations from Transifex
9 years ago
David Beal
4b6f8f1747
logger db_backup for pysftp ( #419 )
9 years ago
Javi Melendez
0c1a7d75bf
auto_backup: Empty dump using sftp backup option ( #432 )
9 years ago
Javi Melendez
13df2b798b
auto_backup: bad reference to field sftp_private_key ( #423 )
Bump module version to 8.0.1.0.1
9 years ago
OCA Transbot
72e1609792
OCA Transbot updated translations from Transifex
9 years ago
OCA Transbot
60818b7596
OCA Transbot updated translations from Transifex
9 years ago
OCA Transbot
0297bb33b6
OCA Transbot updated translations from Transifex
9 years ago
archetipo
743c12b831
FIX License type
9 years ago