2018-01-16 06:58:15 +01:00
|
|
|
|
# -*- coding: utf-8 -*-
|
2018-01-16 11:34:37 +01:00
|
|
|
|
# Part of Odoo, Flectra. See LICENSE file for full copyright and licensing details.
|
2018-01-16 06:58:15 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
'name': 'Database Anonymization',
|
2018-01-16 12:05:52 +01:00
|
|
|
|
'author' : 'Odoo S.A',
|
2018-01-16 06:58:15 +01:00
|
|
|
|
'version': '1.0',
|
|
|
|
|
'category': 'Extra Tools',
|
|
|
|
|
'description': """
|
|
|
|
|
This module allows you to anonymize a database.
|
|
|
|
|
===============================================
|
|
|
|
|
|
|
|
|
|
This module allows you to keep your data confidential for a given database.
|
|
|
|
|
This process is useful, if you want to use the migration process and protect
|
|
|
|
|
your own or your customer’s confidential data. The principle is that you run
|
|
|
|
|
an anonymization tool which will hide your confidential data(they are replaced
|
|
|
|
|
by ‘XXX’ characters). Then you can send the anonymized database to the migration
|
|
|
|
|
team. Once you get back your migrated database, you restore it and reverse the
|
|
|
|
|
anonymization process to recover your previous data.
|
|
|
|
|
""",
|
|
|
|
|
'depends': ['base'],
|
|
|
|
|
'demo': ['data/anonymization_demo.xml'],
|
|
|
|
|
'data': [
|
|
|
|
|
'data/ir.model.fields.anonymization.csv',
|
|
|
|
|
'security/ir.model.access.csv',
|
|
|
|
|
'views/anonymization_views.xml',
|
|
|
|
|
'wizard/anonymize_wizard_views.xml'
|
|
|
|
|
],
|
|
|
|
|
'installable': True,
|
|
|
|
|
'auto_install': False,
|
|
|
|
|
}
|