Files
Odoo-Tutorial/weather_forecast/__manifest__.py
T
2025-04-16 10:07:51 +07:00

29 lines
799 B
Python

# -*- coding: utf-8 -*-
{
'name': "Dự báo thời tiết",
'summary': "Dự báo thời tiết theo dựa theo Open Weather.",
'description': """
- Dự báo thời tiết theo ngày (3 ngày tiếp theo), theo giờ (3 khung giờ trong ngày).
- Tạo báo cáo (PDF) thời tiết cho 3 ngày tiếp theo.
- Tự động gửi email nhắc nhở mang áo mưa tới nhân viên nếu ngày mai tỉ lệ mưa > 50%.
""",
'author': "Chicken_dev",
'website': "https://www.yourcompany.com",
'category': 'Weather',
'version': '0.1',
'depends': ['base'],
'data': [
'security/ir.model.access.csv',
'views/weather_api_views.xml',
'views/menu.xml',
'wizard/res_config_settings_views.xml',
],
}