4 Commits

Author SHA1 Message Date
Stéphan Sainléger
0a7814ad1a [MIG] project_request_data: migrate to 18.0 2026-01-20 17:24:51 +01:00
Stéphan Sainléger
a97bd8ecca [MIG] project_only_current_project_tasks_as_parent: migrate to 18.0
migrates add-on project_parent_task to 18.0 and change the add-on name
for more understanding.
2026-01-20 17:19:47 +01:00
Stéphan Sainléger
8ab14340f1 [MIG] project_average_acceptable_time: migrate to 18.0 2026-01-20 17:09:37 +01:00
Stéphan Sainléger
9192465ca2 [MIG] project_user_default_project: migrate to 18.0 2026-01-20 15:28:22 +01:00
39 changed files with 899 additions and 0 deletions

View File

@@ -0,0 +1,45 @@
=================
project_assignees
=================
Add multiple assignees field to project task
Installation
============
Use Odoo normal procedure to install add-ons to install
``project_assignees``.
Known issues / Roadmap
======================
Bug Tracker
===========
Bugs are tracked on `our issues website
<https://github.com/elabore-coop/project-tools/issues>`_. In case of
trouble, please check there if your issue has already been
reported. If you spotted it first, help us smashing it by providing a
detailed and welcomed feedback.
Credits
=======
Images
------
* Elabore: `Icon <https://elabore.coop/web/image/res.company/1/logo?unique=f3db262>`_.
Contributors
------------
* Stéphan Sainléger <https://github.com/stephansainleger>
Funders
-------
The development of this module has been financially supported by:
* Elabore (https://elabore.coop)
Maintainer
----------
This module is maintained by Elabore.

View File

@@ -0,0 +1,2 @@
from . import models, controllers

View File

@@ -0,0 +1,39 @@
# Copyright 2022 Stéphan Sainléger (Elabore)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
{
"name": "project_average_acceptable_time",
"version": "18.0.1.0.0",
"author": "Elabore",
"website": "https://github.com/elabore-coop/project-tools",
"maintainer": "Clément Thomas",
"license": "AGPL-3",
"category": "Tools",
"summary": "Task validation without customer agreement",
# any module necessary for this one to work correctly
"depends": [
"base",
"project",
"project_user_default_project"
],
"qweb": [
# "static/src/xml/*.xml",
],
"external_dependencies": {
"python": [],
},
# always loaded
"data": [
"views/project_project.xml",
"views/portal_home_template.xml"
],
# only loaded in demonstration mode
"demo": [],
"js": [],
"css": [],
"installable": True,
# Install this module automatically if all dependency have been previously
# and independently installed. Used for synergetic or glue modules.
"auto_install": False,
"application": False,
}

View File

@@ -0,0 +1,2 @@
from . import custom_portal

View File

@@ -0,0 +1,21 @@
# Copyright 2020 Lokavaluto ()
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from odoo.http import request, route
from odoo.addons.portal.controllers.portal import CustomerPortal
class CustomCustomerPortal(CustomerPortal):
@route(["/my/account"], type="http", auth="user", website=True)
def account(self, redirect=None, **post):
self.OPTIONAL_BILLING_FIELDS.append("average_acceptable_time") #unecessary save in res partner, but necessary to avoid error on form post
response = super(CustomCustomerPortal, self).account(redirect, **post)
if post and request.httprequest.method == "POST":
error, error_message = self.details_form_validate(post)
if not error:
user = request.env.user
if user.default_project_id and post["average_acceptable_time"]:
user.default_project_id.average_acceptable_time = post["average_acceptable_time"]
return response

View File

@@ -0,0 +1 @@
This directory should contain the *.po for Odoo translation.

View File

@@ -0,0 +1,46 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * project_average_acceptable_time
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 12.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-03-31 09:33+0000\n"
"PO-Revision-Date: 2023-03-31 09:33+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: \n"
#. module: project_average_acceptable_time
#: model_terms:ir.ui.view,arch_db:project_average_acceptable_time.portal_my_home_average_acceptable_time
msgid "<b>Average acceptable time</b>:"
msgstr "<b>Temps moyen acceptable</b>:"
#. module: project_average_acceptable_time
#: model_terms:ir.ui.view,arch_db:project_average_acceptable_time.portal_my_home_average_acceptable_time
msgid "Average acceptable time"
msgstr "Temps moyen acceptable"
#. module: project_average_acceptable_time
#: model_terms:ir.ui.view,arch_db:project_average_acceptable_time.project_project_view_kanban_inherit_average_acceptable_time
msgid "<span>Average acceptable time:&amp;nbsp;</span>"
msgstr "<span>Temps moyen acceptable&amp;nbsp;:&amp;nbsp;</span>"
#. module: project_average_acceptable_time
#: model:ir.model.fields,field_description:project_average_acceptable_time.field_project_project__average_acceptable_time
msgid "Average acceptable time"
msgstr "Temps moyen acceptable"
#. module: project_average_acceptable_time
#: model_terms:ir.ui.view,arch_db:project_average_acceptable_time.portal_my_details_average_acceptable_time
msgid "Average acceptable time (h)"
msgstr "Temps moyen acceptable (h)"
#. module: project_average_acceptable_time
#: model:ir.model,name:project_average_acceptable_time.model_project_project
msgid "Project"
msgstr "Projet"

View File

@@ -0,0 +1,3 @@
from . import project_project
from . import res_partner

View File

@@ -0,0 +1,10 @@
from odoo import models, fields, _, api
class Project(models.Model):
_inherit = "project.project"
average_acceptable_time = fields.Float('Average acceptable time')

View File

@@ -0,0 +1,10 @@
from odoo import models, fields, _, api
class ResPartner(models.Model):
_inherit = "res.partner"
average_acceptable_time = fields.Float('Average acceptable time') # not used, but necessary to post custom field from /my/account

View File

@@ -0,0 +1,26 @@
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<!-- Template /my/home -->
<template id="portal_my_home_average_acceptable_time" name="Portal My Home: Average acceptable time" inherit_id="portal.side_content" priority="40">
<xpath expr="//div[@class='o_portal_my_details']" position="inside">
<hr class="mt-1 mb-0"/>
<b>Average acceptable time</b>: <t t-esc="user_id.default_project_id.average_acceptable_time" t-options="{'widget': 'float_time'}"/>
</xpath>
</template>
<!-- Template /my/account -->
<template id="portal_my_details_average_acceptable_time" name="Portal My details: Average acceptable time" inherit_id="portal.portal_my_details_fields">
<xpath expr="//input[@name='csrf_token']/.." position="inside">
<div t-attf-class="form-group #{error.get('average_acceptable_time') and 'o_has_error' or ''} col-xl-6">
<label class="col-form-label" for="average_acceptable_time">Average acceptable time (h)</label>
<input
type="text"
name="average_acceptable_time"
t-attf-class="form-control #{error.get('average_acceptable_time') and 'is-invalid' or ''}"
t-att-value="average_acceptable_time or user_id.default_project_id.average_acceptable_time"
t-options="{'widget': 'float_time'}"
/>
</div>
</xpath>
</template>
</odoo>

View File

@@ -0,0 +1,36 @@
<?xml version="1.0" encoding="UTF-8"?>
<odoo>
<!--Project KANBAN -->
<record id="project_project_view_kanban_inherit_average_acceptable_time" model="ir.ui.view">
<field name="name">project.project.kanban.inherit.average.acceptable.time</field>
<field name="model">project.project</field>
<field name="inherit_id" ref="project.view_project_kanban"/>
<field name="priority">999</field>
<field name="arch" type="xml">
<xpath expr="//div[hasclass('o_project_kanban_main')]" position="inside">
<div class="o_project_kanban_boxes">
<span>Average acceptable time:<![CDATA[&nbsp;]]></span>
<field name="average_acceptable_time" widget="float_time"/>
</div>
</xpath>
</field>
</record>
<!-- Project FORM -->
<record id="project_project_form_inherit_average_acceptable_time" model="ir.ui.view">
<field name="name">project.project.form.inherit.average.acceptable.time</field>
<field name="model">project.project</field>
<field name="inherit_id" ref="project.edit_project"/>
<field name="arch" type="xml">
<xpath expr="//group[@name='extra_settings']" position="inside">
<div class="o_settings_average_acceptable_time" style="margin-top:10px;">
<!-- <span>Average acceptable time:<![CDATA[&nbsp;]]></span> -->
<label for="average_acceptable_time"/>
<field name="average_acceptable_time" widget="float_time"/>
</div>
</xpath>
</field>
</record>
</odoo>

View File

@@ -0,0 +1,44 @@
============================================
project_only_current_project_tasks_as_parent
============================================
when selecting a parent task in a task, display only tasks from the current project
Installation
============
Use Odoo normal module installation procedure to install ``project_only_current_project_tasks_as_parent``.
Known issues / Roadmap
======================
None yet.
Bug Tracker
===========
Bugs are tracked on `our issues website <https://github.com/elabore-coop/project-tools/issues>`_. In case of
trouble, please check there if your issue has already been
reported. If you spotted it first, help us smashing it by providing a
detailed and welcomed feedback.
Credits
=======
Contributors
------------
* Laetitia Da Costa (https://github.com/LaetitiaElabore)
* Stéphan Sainléger (https://github.com/stephansainleger)
Funders
-------
The development of this module has been financially supported by:
* Elabore (https://elabore.coop)
Maintainer
----------
This module is maintained by Elabore.

View File

@@ -0,0 +1,37 @@
# Copyright 2022 Laetitia Da Costa (Elabore)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
{
"name": "project_only_current_project_tasks_as_parent",
"version": "18.0.1.0.0",
"author": "Elabore",
"website": "https://elabore.coop",
"maintainer": "Laetitia Da Costa",
"license": "AGPL-3",
"category": "Project",
"summary": "In parent's tasks dropdown field, show only tasks from the current projet",
# any module necessary for this one to work correctly
"depends": [
"base",
"project",
],
"qweb": [
# "static/src/xml/*.xml",
],
"external_dependencies": {
"python": [],
},
# always loaded
"data": [
"views/project_task.xml",
],
# only loaded in demonstration mode
"demo": [],
"js": [],
"css": [],
"installable": True,
# Install this module automatically if all dependency have been previously
# and independently installed. Used for synergetic or glue modules.
"auto_install": False,
"application": False,
}

View File

@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<odoo>
<record model="ir.ui.view" id="view_tasks_form2_parent_project_inherited">
<field name="name">view.tasks.form2.parent.project.inherited</field>
<field name="model">project.task</field>
<field name="inherit_id" ref="project.view_task_form2" />
<field name="arch" type="xml">
<xpath expr="//page[@name='extra_info']//field[@name='parent_id']" position="attributes">
<attribute name="domain">[('project_id','=', project_id), ('stage_id.fold', '=', False)]</attribute>
</xpath>
</field>
</record>
</odoo>

View File

@@ -0,0 +1,45 @@
====================
project_request_data
====================
Add several fields in tasks, that provide several data on the request
Installation
============
Use Odoo normal module installation procedure to install ``project_request_data``.
- To configure the services, go to Project > Configuration > Task Services
- To configure the request types, go to Project > Configuration > Request Types
Known issues / Roadmap
======================
None yet.
Bug Tracker
===========
Bugs are tracked on `our issues website <https://github.com/elabore-coop/project-tools/issues>`_. In case of
trouble, please check there if your issue has already been
reported. If you spotted it first, help us smashing it by providing a
detailed and welcomed feedback.
Credits
=======
Contributors
------------
* Stéphan Sainléger (https://github.com/stephansainleger)
Funders
-------
The development of this module has been financially supported by:
* Elabore (https://elabore.coop)
Maintainer
----------
This module is maintained by Elabore.

View File

@@ -0,0 +1 @@
from . import models

View File

@@ -0,0 +1,92 @@
# Copyright 2022 Stéphan Sainléger (Elabore)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
{
"name": "project_request_data",
"version": "18.0.1.0.0",
"author": "Elabore",
"website": "https://elabore.coop",
"maintainer": "Stéphan Sainléger",
"license": "AGPL-3",
"category": "Project",
"summary": "Add several fields in tasks, that provide several data on the request",
"description": """
:image: https://img.shields.io/badge/licence-AGPL--3-blue.svg
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
:alt: License: AGPL-3
====================
project_request_data
====================
Add several fields in tasks, that provide several data on the request
Installation
============
Use Odoo normal module installation procedure to install ``project_request_data``.
- To configure the services, go to Project > Configuration > Task Services
- To configure the request types, go to Project > Configuration > Request Types
Known issues / Roadmap
======================
None yet.
Bug Tracker
===========
Bugs are tracked on `our issues website <https://github.com/elabore-coop/project-tools/issues>`_. In case of
trouble, please check there if your issue has already been
reported. If you spotted it first, help us smashing it by providing a
detailed and welcomed feedback.
Credits
=======
Contributors
------------
* Stéphan Sainléger (https://github.com/stephansainleger)
Funders
-------
The development of this module has been financially supported by:
* Elabore (https://elabore.coop)
Maintainer
----------
This module is maintained by Elabore.
""",
# any module necessary for this one to work correctly
"depends": [
"base",
"project",
],
"qweb": [
# "static/src/xml/*.xml",
],
"external_dependencies": {
"python": [],
},
# always loaded
"data": [
"security/ir.model.access.csv",
"views/project_task.xml",
"views/request_type.xml",
"views/task_service.xml",
"views/portal_template.xml",
],
# only loaded in demonstration mode
"demo": [],
"js": [],
"css": [],
"installable": True,
# Install this module automatically if all dependency have been previously
# and independently installed. Used for synergetic or glue modules.
"auto_install": False,
"application": False,
}

View File

@@ -0,0 +1 @@
This directory should contain the *.po for Odoo translation.

View File

@@ -0,0 +1,116 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * project_request_data
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 14.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-08-26 12:51+0000\n"
"PO-Revision-Date: 2022-08-26 12:51+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: \n"
#. module: project_request_data
#: model_terms:ir.ui.view,arch_db:project_request_data.portal_my_task_request_data
msgid "<strong>Request type:</strong>"
msgstr "<strong>Type de demande :</strong>"
#. module: project_request_data
#: model_terms:ir.ui.view,arch_db:project_request_data.portal_my_task_request_data
msgid "<strong>Service:</strong>"
msgstr "<strong>Service :</strong>"
#. module: project_request_data
#: model:ir.model.fields,field_description:project_request_data.field_request_type__create_uid
#: model:ir.model.fields,field_description:project_request_data.field_task_service__create_uid
msgid "Created by"
msgstr "Créé par"
#. module: project_request_data
#: model:ir.model.fields,field_description:project_request_data.field_request_type__create_date
#: model:ir.model.fields,field_description:project_request_data.field_task_service__create_date
msgid "Created on"
msgstr "Créé le"
#. module: project_request_data
#: model:ir.model.fields,field_description:project_request_data.field_request_type__display_name
#: model:ir.model.fields,field_description:project_request_data.field_task_service__display_name
msgid "Display Name"
msgstr "Nom affiché"
#. module: project_request_data
#: model:ir.model.fields,field_description:project_request_data.field_request_type__id
#: model:ir.model.fields,field_description:project_request_data.field_task_service__id
msgid "ID"
msgstr ""
#. module: project_request_data
#: model:ir.model.fields,field_description:project_request_data.field_request_type____last_update
#: model:ir.model.fields,field_description:project_request_data.field_task_service____last_update
msgid "Last Modified on"
msgstr "Dernière modification le"
#. module: project_request_data
#: model:ir.model.fields,field_description:project_request_data.field_request_type__write_uid
#: model:ir.model.fields,field_description:project_request_data.field_task_service__write_uid
msgid "Last Updated by"
msgstr "Dernière mise à jour par"
#. module: project_request_data
#: model:ir.model.fields,field_description:project_request_data.field_request_type__write_date
#: model:ir.model.fields,field_description:project_request_data.field_task_service__write_date
msgid "Last Updated on"
msgstr "Dernière mise à jour le"
#. module: project_request_data
#: model:ir.model,name:project_request_data.model_request_type
#: model:ir.model.fields,field_description:project_request_data.field_project_task__request_type_id
msgid "Request Type"
msgstr "Type de demande"
#. module: project_request_data
#: model:ir.actions.act_window,name:project_request_data.act_request_types_list
#: model:ir.ui.menu,name:project_request_data.menu_request_types
#: model_terms:ir.ui.view,arch_db:project_request_data.request_type_view_tree
msgid "Request Types"
msgstr "Types de demande"
#. module: project_request_data
#: model:ir.model.fields,field_description:project_request_data.field_request_type__sequence
#: model:ir.model.fields,field_description:project_request_data.field_task_service__sequence
msgid "Sequence"
msgstr "Séquence"
#. module: project_request_data
#: model:ir.model.fields,field_description:project_request_data.field_project_task__service_id
msgid "Service"
msgstr "Service"
#. module: project_request_data
#: model:ir.model,name:project_request_data.model_project_task
msgid "Task"
msgstr "Tâche"
#. module: project_request_data
#: model:ir.actions.act_window,name:project_request_data.act_task_services_list
#: model:ir.ui.menu,name:project_request_data.menu_task_services
#: model_terms:ir.ui.view,arch_db:project_request_data.task_service_view_tree
msgid "Task Services"
msgstr "Services"
#. module: project_request_data
#: model:ir.model,name:project_request_data.model_task_service
msgid "Task service"
msgstr "Service"
#. module: project_request_data
#: model:ir.model.fields,field_description:project_request_data.field_request_type__name
#: model:ir.model.fields,field_description:project_request_data.field_task_service__name
msgid "name"
msgstr "nom"

View File

@@ -0,0 +1,3 @@
from . import task_service
from . import request_type
from . import project_task

View File

@@ -0,0 +1,9 @@
from odoo import models, fields
class Task(models.Model):
_inherit = "project.task"
service_id = fields.Many2one('task.service', string='Service')
request_type_id = fields.Many2one('request.type', string='Request Type')

View File

@@ -0,0 +1,9 @@
from odoo import models, fields
class RequestType(models.Model):
_name = "request.type"
_description = "Request Type"
name = fields.Char('name', required=True)
sequence = fields.Integer()

View File

@@ -0,0 +1,9 @@
from odoo import models, fields
class TaskService(models.Model):
_name = "task.service"
_description = "Task service"
name = fields.Char('name', required=True)
sequence = fields.Integer()

View File

@@ -0,0 +1,5 @@
id,name,model_id/id,group_id/id,perm_read,perm_write,perm_create,perm_unlink
access_task_service_user,project.task_service.user,model_task_service,,1,0,0,0
access_task_service_manager,project.task_service.manager,model_task_service,project.group_project_manager,1,1,1,1
access_request_type_user,project.request_type.user,model_request_type,,1,0,0,0
access_request_type_manager,project.request_type.manager,model_request_type,project.group_project_manager,1,1,1,1
1 id name model_id/id group_id/id perm_read perm_write perm_create perm_unlink
2 access_task_service_user project.task_service.user model_task_service 1 0 0 0
3 access_task_service_manager project.task_service.manager model_task_service project.group_project_manager 1 1 1 1
4 access_request_type_user project.request_type.user model_request_type 1 0 0 0
5 access_request_type_manager project.request_type.manager model_request_type project.group_project_manager 1 1 1 1

View File

@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<template id="portal_my_task_request_data" name="My Task: Request Data" inherit_id="project.portal_my_task" priority="40">
<xpath expr="//div[@id='card_body']/div[hasclass('row','mb-4','container')]" position="after">
<div id="request_data" class="row mb-4">
<div class="col-12 col-md-6" t-if="task.service_id">
<strong>Service:</strong>
<span t-field="task.service_id" />
</div>
<div class="col-12 col-md-6" t-if="task.request_type_id">
<strong>Request type:</strong>
<span t-field="task.request_type_id" />
</div>
</div>
</xpath>
</template>
</odoo>

View File

@@ -0,0 +1,29 @@
<?xml version="1.0" encoding="UTF-8"?>
<odoo>
<record id="view_task_form2_request_data" model="ir.ui.view">
<field name="name">project.task.form.request.data</field>
<field name="model">project.task</field>
<field name="inherit_id" ref="project.view_task_form2" />
<field name="priority" eval="99" />
<field name="arch" type="xml">
<xpath expr="//field[@name='tag_ids']" position="before">
<field name="service_id" widget="selection" />
<field name="request_type_id" widget="selection" />
</xpath>
</field>
</record>
<record id="view_task_kanban_request_data" model="ir.ui.view">
<field name="name">project.task.kanban.request.data</field>
<field name="inherit_id" ref="project.view_task_kanban" />
<field name="model">project.task</field>
<field name="arch" type="xml">
<xpath expr="//field[@name='name']" position="before">
<div style="font-size:11px; margin-bottom: 8px;"><field name="create_date" widget="date"/></div>
</xpath>
<xpath expr="//field[@name='tag_ids']" position="before">
<span style="background:lightblue; font-size:11px"><field name="service_id"/></span>
<span style="background:lightsteelblue; font-size:11px"><field name="request_type_id"/></span>
</xpath>
</field>
</record>
</odoo>

View File

@@ -0,0 +1,23 @@
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<record id="request_type_view_tree" model="ir.ui.view">
<field name="name">request.type.view.list</field>
<field name="model">request.type</field>
<field name="arch" type="xml">
<list editable="top" default_order="sequence">
<field name="sequence" widget="handle" />
<field name="name" />
</list>
</field>
</record>
<record id="act_request_types_list" model="ir.actions.act_window">
<field name="name">Request Types</field>
<field name="res_model">request.type</field>
<field name="view_mode">list</field>
</record>
<menuitem id="menu_request_types" action="act_request_types_list" parent="project.menu_project_config" sequence="99" name="Request Types" />
</odoo>

View File

@@ -0,0 +1,23 @@
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<record id="task_service_view_tree" model="ir.ui.view">
<field name="name">task.service.view.list</field>
<field name="model">task.service</field>
<field name="arch" type="xml">
<list editable="top" default_order="sequence">
<field name="sequence" widget="handle" />
<field name="name" />
</list>
</field>
</record>
<record id="act_task_services_list" model="ir.actions.act_window">
<field name="name">Task Services</field>
<field name="res_model">task.service</field>
<field name="view_mode">list</field>
</record>
<menuitem id="menu_task_services" action="act_task_services_list" parent="project.menu_project_config" sequence="99" name="Task Services" />
</odoo>

View File

@@ -0,0 +1,2 @@
*.*~
*pyc

View File

@@ -0,0 +1,44 @@
============================
project_user_default_project
============================
Add default project field in user model
Installation
============
Use Odoo normal module installation procedure to install
``project_user_default_project``.
Known issues / Roadmap
======================
None yet.
Bug Tracker
===========
Bugs are tracked on `our issues website <https://github.com/elabore-coop/project-tools/issues>`_. In case of
trouble, please check there if your issue has already been
reported. If you spotted it first, help us smashing it by providing a
detailed and welcomed feedback.
Credits
=======
Contributors
------------
* Stéphan Sainléger
Funders
-------
The development of this module has been financially supported by:
* Elabore (https://elabore.coop)
Maintainer
----------
This module is maintained by Elabore.

View File

@@ -0,0 +1,2 @@
from . import models

View File

@@ -0,0 +1,86 @@
# Copyright 2022 Stéphan Sainléger (Elabore)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
{
"name": "project_user_default_project",
"version": "18.0.1.0.0",
"author": "Elabore",
"website": "https://elabore.coop",
"maintainer": "Stéphan Sainléger",
"license": "AGPL-3",
"category": "Tools",
"summary": "Add default project field in user model",
"description": """
:image: https://img.shields.io/badge/licence-AGPL--3-blue.svg
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
:alt: License: AGPL-3
============================
project_user_default_project
============================
Add default project field in user model
Installation
============
Use Odoo normal module installation procedure to install
``project_user_default_project``.
Known issues / Roadmap
======================
None yet.
Bug Tracker
===========
Bugs are tracked on `our issues website <https://github.com/elabore-coop/project-tools/issues>`_. In case of
trouble, please check there if your issue has already been
reported. If you spotted it first, help us smashing it by providing a
detailed and welcomed feedback.
Credits
=======
Contributors
------------
* Stéphan Sainléger
Funders
-------
The development of this module has been financially supported by:
* Elabore (https://elabore.coop)
Maintainer
----------
This module is maintained by Elabore.
""",
# any module necessary for this one to work correctly
"depends": [
"base", "project",
],
"qweb": [
# "static/src/xml/*.xml",
],
"external_dependencies": {
"python": [],
},
# always loaded
"data": [
"views/res_users_views.xml",
],
# only loaded in demonstration mode
"demo": [],
"js": [],
"css": [],
"installable": True,
# Install this module automatically if all dependency have been previously
# and independently installed. Used for synergetic or glue modules.
"auto_install": False,
"application": False,
}

View File

@@ -0,0 +1 @@
This directory should contain the *.po for Odoo translation.

View File

@@ -0,0 +1,27 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * project_user_default_project
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 14.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-08-25 15:58+0000\n"
"PO-Revision-Date: 2022-08-25 15:58+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: \n"
#. module: project_user_default_project
#: model:ir.model.fields,field_description:project_user_default_project.field_res_users__default_project_id
msgid "Default Project"
msgstr "Projet par défaut"
#. module: project_user_default_project
#: model:ir.model,name:project_user_default_project.model_res_users
msgid "Users"
msgstr "Utilisateurs"

View File

@@ -0,0 +1 @@
from . import res_users

View File

@@ -0,0 +1,6 @@
from odoo import _, api, fields, models
class Users(models.Model):
_inherit = "res.users"
default_project_id = fields.Many2one('project.project', string='Default Project')

View File

@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<odoo>
<record id="view_users_form_inherit_default_project" model="ir.ui.view">
<field name="name">view.users.form.inherit.default.project</field>
<field name="model">res.users</field>
<field name="inherit_id" ref="base.view_users_form" />
<field name="arch" type="xml">
<xpath expr="//field[@name='action_id']" position="after">
<field name="default_project_id" />
</xpath>
</field>
</record>
</odoo>