commit
8b96632313
|
@ -0,0 +1,2 @@
|
|||
views/Odoo Invoice from Task Workspace.code-workspace
|
||||
*.pyc
|
|
@ -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).
|
|
@ -0,0 +1,4 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
|
||||
from . import controllers
|
||||
from . import models
|
|
@ -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,
|
||||
}
|
|
@ -0,0 +1,3 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
|
||||
from . import controllers
|
|
@ -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
|
||||
# })
|
|
@ -0,0 +1,3 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
|
||||
from . import partner_contact
|
|
@ -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"
|
||||
)
|
|
@ -0,0 +1 @@
|
|||
id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink
|
|
|
@ -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>
|
Loading…
Reference in New Issue