mirror of
https://github.com/guohuadeng/app-odoo.git
synced 2025-02-23 04:11:36 +02:00
[app_auto_backup] v18
This commit is contained in:
60
app_auto_backup/__manifest__.py
Normal file
60
app_auto_backup/__manifest__.py
Normal file
@@ -0,0 +1,60 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# 'author': "Yenthe Van Ginneken",
|
||||
# 'website': "http://www.odoo.yenthevg.com",
|
||||
# 'author': "guohuadeng@hotmail.com",
|
||||
# 'website': "https://www.odooai.cn",
|
||||
|
||||
{
|
||||
'name': "Database auto backup and Download,数据库自动备份",
|
||||
'version': '24.11.06',
|
||||
|
||||
'summary': 'Automated and odoo database backups. easy download and manage database file. optimized from auto_backup of oca Yenthe Van Ginneken',
|
||||
|
||||
'description': """
|
||||
1. Easy schedule database backup
|
||||
2. Set remote backup and cron schedule
|
||||
3. Manual backup database in one click
|
||||
4. Easy download backup file or remove file for System user
|
||||
11. Multi-language Support. Multi-Company Support.
|
||||
12. Support Odoo 18,17,16,15,14,13,12, Enterprise and Community and odoo.sh Edition.
|
||||
13. Full Open Source.
|
||||
The Database Auto-Backup module enables the user to make configurations for the automatic backup of the database.
|
||||
Backups can be taken on the local system or on a remote server, through SFTP.
|
||||
You only have to specify the hostname, port, backup location and databasename (all will be pre-filled by default with correct data.
|
||||
If you want to write to an external server with SFTP you will need to provide the IP, username and password for the remote backups.
|
||||
The base of this module is taken from Odoo SA V6.1 (https://www.odoo.com/apps/modules/6.0/auto_backup/) and then upgraded and heavily expanded.
|
||||
This module is made and provided by Yenthe Van Ginneken (Oocademy).
|
||||
Automatic backup for all such configured databases can then be scheduled as follows:
|
||||
|
||||
1) Go to Settings / Technical / Automation / Scheduled actions.
|
||||
2) Search the action 'Backup scheduler'.
|
||||
3) Set it active and choose how often you wish to take backups.
|
||||
4) If you want to write backups to a remote location you should fill in the SFTP details.
|
||||
""",
|
||||
|
||||
'author': 'odooai.cn',
|
||||
'website': "http://www.odooai.cn",
|
||||
'category': 'Extra tools',
|
||||
'installable': True,
|
||||
'license': 'LGPL-3',
|
||||
'price': 38.00,
|
||||
'currency': 'EUR',
|
||||
|
||||
# any module necessary for this one to work correctly
|
||||
'depends': [
|
||||
'base',
|
||||
'app_odoo_customize'
|
||||
],
|
||||
'external_dependencies': {
|
||||
'python': ['paramiko'],
|
||||
},
|
||||
|
||||
# always loaded
|
||||
'data': [
|
||||
'security/user_groups.xml',
|
||||
'security/ir.model.access.csv',
|
||||
'views/backup_view.xml',
|
||||
'data/backup_data.xml',
|
||||
'views/db_backup_details.xml',
|
||||
],
|
||||
}
|
||||
Reference in New Issue
Block a user