initial_commit

v16.0 project_task_partner_info-v1.0
Brenden Eshbach 2023-07-18 15:43:35 -05:00
commit 8b96632313
10 changed files with 128 additions and 0 deletions

2
.gitignore vendored 100644
View File

@ -0,0 +1,2 @@
views/Odoo Invoice from Task Workspace.code-workspace
*.pyc

23
README.md 100644
View File

@ -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).

4
__init__.py 100644
View File

@ -0,0 +1,4 @@
# -*- coding: utf-8 -*-
from . import controllers
from . import models

33
__manifest__.py 100644
View File

@ -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,
}

View File

@ -0,0 +1,3 @@
# -*- coding: utf-8 -*-
from . import controllers

View File

@ -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/<model("invoice_from_task.invoice_from_task"):obj>', auth='public')
# def object(self, obj, **kw):
# return http.request.render('invoice_from_task.object', {
# 'object': obj
# })

View File

@ -0,0 +1,3 @@
# -*- coding: utf-8 -*-
from . import partner_contact

View File

@ -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"
)

View File

@ -0,0 +1 @@
id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink
1 id name model_id:id group_id:id perm_read perm_write perm_create perm_unlink

View File

@ -0,0 +1,14 @@
<odoo>
<record id="project_task_partner_info.task_form_inherit" model="ir.ui.view">
<field name="name">project.task.form.inherit</field>
<field name="model">project.task</field>
<field name="inherit_id" ref="project.view_task_form2"/>
<field name="arch" type="xml">
<xpath expr="//field[@name='partner_id']" position="after">
<field name="customer_phone_id" widget="phone" attrs="{'invisible': [('customer_phone_id', '=', False)]}"/>
<field name="customer_mobile_id" widget="phone" attrs="{'invisible': [('customer_mobile_id', '=', False)]}"/>
<field name="customer_email_id" widget="email" attrs="{'invisible': [('customer_email_id', '=', False)]}"/>
</xpath>
</field>
</record>
</odoo>