34 lines
991 B
Python
34 lines
991 B
Python
# -*- coding: utf-8 -*-
|
|
{
|
|
'name': "Project Task Partner Info",
|
|
|
|
'summary': "Add partner information to project tasks",
|
|
|
|
'description': """
|
|
The Project Task Partner Info module adds partner information like phone number and email address to the `project.task` model in Odoo.
|
|
|
|
To install this module, follow the standard Odoo module installation process. To use this module, navigate to a task in the Odoo project management module and you will be able to see and edit the partner's phone number and email address on the task form view.
|
|
|
|
For support or questions about this module, please contact the developer.
|
|
""",
|
|
|
|
'author': "Techsystech",
|
|
'website': "https://erp.techsystech.io",
|
|
|
|
'category': 'Project',
|
|
'version': '1.0',
|
|
|
|
'depends': ['base', 'project'],
|
|
|
|
'data': [
|
|
#'security/ir.model.access.csv',
|
|
'views/task_view.xml',
|
|
],
|
|
|
|
'demo': [
|
|
'demo/demo.xml',
|
|
],
|
|
|
|
'application': False,
|
|
}
|