From 8b966323131f7f4119c5820cf56ecc295c929702 Mon Sep 17 00:00:00 2001 From: Brenden Eshbach Date: Tue, 18 Jul 2023 15:43:35 -0500 Subject: [PATCH] initial_commit --- .gitignore | 2 ++ README.md | 23 +++++++++++++++++++++++ __init__.py | 4 ++++ __manifest__.py | 33 +++++++++++++++++++++++++++++++++ controllers/__init__.py | 3 +++ controllers/controllers.py | 21 +++++++++++++++++++++ models/__init__.py | 3 +++ models/partner_contact.py | 24 ++++++++++++++++++++++++ security/ir.model.access.csv | 1 + views/task_view.xml | 14 ++++++++++++++ 10 files changed, 128 insertions(+) create mode 100644 .gitignore create mode 100644 README.md create mode 100644 __init__.py create mode 100644 __manifest__.py create mode 100644 controllers/__init__.py create mode 100644 controllers/controllers.py create mode 100644 models/__init__.py create mode 100644 models/partner_contact.py create mode 100644 security/ir.model.access.csv create mode 100644 views/task_view.xml diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..7b5c727 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +views/Odoo Invoice from Task Workspace.code-workspace +*.pyc \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..5514796 --- /dev/null +++ b/README.md @@ -0,0 +1,23 @@ +# Project Task Partner Info + +This module adds partner information like phone number and email address to the `project.task` model in Odoo. + +## Installation + +To install this module, follow these steps: + +1. Copy the `project_task_partner_info` directory to the `addons` directory of your Odoo installation. +2. In the Odoo web interface, go to the "Apps" menu and click on the "Update Apps List" button. +3. Search for the `project_task_partner_info` module and click on the "Install" button. + +## Usage + +After installing this module, you will be able to see the partner's phone number and email address on the task form view. + +## Credits + +This module was developed by [Your Name or Company]. + +## License + +This module is licensed under the [AGPL-3](https://www.gnu.org/licenses/agpl-3.0.en.html). diff --git a/__init__.py b/__init__.py new file mode 100644 index 0000000..511a0ca --- /dev/null +++ b/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- + +from . import controllers +from . import models \ No newline at end of file diff --git a/__manifest__.py b/__manifest__.py new file mode 100644 index 0000000..662dc50 --- /dev/null +++ b/__manifest__.py @@ -0,0 +1,33 @@ +# -*- 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, +} diff --git a/controllers/__init__.py b/controllers/__init__.py new file mode 100644 index 0000000..457bae2 --- /dev/null +++ b/controllers/__init__.py @@ -0,0 +1,3 @@ +# -*- coding: utf-8 -*- + +from . import controllers \ No newline at end of file diff --git a/controllers/controllers.py b/controllers/controllers.py new file mode 100644 index 0000000..6560301 --- /dev/null +++ b/controllers/controllers.py @@ -0,0 +1,21 @@ +# -*- coding: utf-8 -*- +# from odoo import http + + +# class InvoiceFromTask(http.Controller): +# @http.route('/invoice_from_task/invoice_from_task', auth='public') +# def index(self, **kw): +# return "Hello, world" + +# @http.route('/invoice_from_task/invoice_from_task/objects', auth='public') +# def list(self, **kw): +# return http.request.render('invoice_from_task.listing', { +# 'root': '/invoice_from_task/invoice_from_task', +# 'objects': http.request.env['invoice_from_task.invoice_from_task'].search([]), +# }) + +# @http.route('/invoice_from_task/invoice_from_task/objects/', auth='public') +# def object(self, obj, **kw): +# return http.request.render('invoice_from_task.object', { +# 'object': obj +# }) diff --git a/models/__init__.py b/models/__init__.py new file mode 100644 index 0000000..a0c8612 --- /dev/null +++ b/models/__init__.py @@ -0,0 +1,3 @@ +# -*- coding: utf-8 -*- + +from . import partner_contact \ No newline at end of file diff --git a/models/partner_contact.py b/models/partner_contact.py new file mode 100644 index 0000000..1b26b3f --- /dev/null +++ b/models/partner_contact.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- + +from odoo import api, fields, models + +class ProjectTask(models.Model): + _inherit = "project.task" + + # related field to display phone of related res.partner record + customer_phone_id = fields.Char( + string="Phone", + related="partner_id.phone" + ) + + # related field to display email of related res.partner record + customer_email_id = fields.Char( + string="Email", + related="partner_id.email" + ) + + # related field to display email of related res.partner record + customer_mobile_id = fields.Char( + string="Mobile", + related="partner_id.mobile" + ) \ No newline at end of file diff --git a/security/ir.model.access.csv b/security/ir.model.access.csv new file mode 100644 index 0000000..58262d4 --- /dev/null +++ b/security/ir.model.access.csv @@ -0,0 +1 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink \ No newline at end of file diff --git a/views/task_view.xml b/views/task_view.xml new file mode 100644 index 0000000..2d88b97 --- /dev/null +++ b/views/task_view.xml @@ -0,0 +1,14 @@ + + + project.task.form.inherit + project.task + + + + + + + + + + \ No newline at end of file