76 lines
2.3 KiB
Python
76 lines
2.3 KiB
Python
# -*- coding: utf-8 -*-
|
||
|
||
# Created on 2023-02-02
|
||
# author: NextERP
|
||
# email: 300883@qq.com
|
||
# resource of NextERP
|
||
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl).
|
||
|
||
# Documentation: https://www.odoo.com/documentation/18.0
|
||
|
||
##############################################################################
|
||
# Copyright (C) 2009-TODAY NextERP
|
||
# Author: Ivan Deng,300883@qq.com
|
||
# You can modify it under the terms of the GNU LESSER
|
||
# GENERAL PUBLIC LICENSE (LGPL v3), Version 3.
|
||
# See <http://www.gnu.org/licenses/>.
|
||
#
|
||
# It is forbidden to publish, distribute, sublicense, or sell copies
|
||
# of the Software or modified copies of the Software.
|
||
##############################################################################
|
||
|
||
{
|
||
"name": "NextERP Common Util and Tools",
|
||
"version": "18.0.25.01.26",
|
||
"author": "NextERP",
|
||
"category": "Extra tools",
|
||
"website": "https://www.odoo.com",
|
||
"live_test_url": "https://demo.odooapp.cn",
|
||
"license": "LGPL-3",
|
||
"sequence": 2,
|
||
"price": 0.00,
|
||
"currency": "EUR",
|
||
"images": ["static/description/banner.png"],
|
||
"summary": """
|
||
Core for common use for NextERP apps
|
||
""",
|
||
"description": """
|
||
need to setup odoo.conf, add follow:
|
||
server_wide_modules = web,app_common
|
||
1. Quick import data from excel with .py code
|
||
2. Quick m2o default value
|
||
3. Filter for useless field
|
||
4. UTC local timezone convert
|
||
5. Get browser ua, user-agent
|
||
6. Image to local, image url to local, media to local attachment
|
||
7. Log cron job
|
||
8. Boost for less no use mail
|
||
9. Customize .rng file
|
||
10. Misc like get distance between two points
|
||
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.
|
||
""",
|
||
"depends": [
|
||
"mail",
|
||
"base_setup",
|
||
"web",
|
||
],
|
||
"data": [
|
||
"views/res_config_settings_views.xml",
|
||
"views/ir_cron_views.xml",
|
||
# 'report/.xml',
|
||
],
|
||
"qweb": [
|
||
"static/src/xml/*.xml",
|
||
],
|
||
"demo": [],
|
||
# 'pre_init_hook': 'pre_init_hook',
|
||
# 'post_init_hook': 'post_init_hook',
|
||
# 'uninstall_hook': 'uninstall_hook',
|
||
# 'external_dependencies': {'python': ['pyyaml', 'ua-parser', 'user-agents']},
|
||
"installable": True,
|
||
"application": True,
|
||
"auto_install": True,
|
||
}
|