Skip to content

Commit

Permalink
Merge branch '17.0' into 17.0-t-34365-mav
Browse files Browse the repository at this point in the history
  • Loading branch information
mav-adhoc committed Mar 1, 2024
2 parents b074819 + df08836 commit c1de07b
Show file tree
Hide file tree
Showing 5 changed files with 34 additions and 6 deletions.
6 changes: 3 additions & 3 deletions project_my_tasks_by_stage/__manifest__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
'name': 'Project My Tasks By Stage',
'version': "16.0.1.0.0",
'version': "17.0.1.0.0",
'category': 'Services/Project',
'sequence': 14,
'sequence': 50,
'summary': '',
'author': 'ADHOC SA',
'website': 'www.adhoc.com.ar',
Expand All @@ -15,7 +15,7 @@
'data': [
'views/project_task_views.xml',
],
'installable': False,
'installable': True,
'auto_install': False,
'application': False,
}
15 changes: 15 additions & 0 deletions project_my_tasks_by_stage/i18n/es.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 17.0+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-01-04 12:29+0000\n"
"PO-Revision-Date: 2024-01-04 12:29+0000\n"
"Language-Team: Spanish (https://app.transifex.com/adhoc/teams/46451/es/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Language: es\n"
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
4 changes: 2 additions & 2 deletions project_my_tasks_by_stage/views/project_task_views.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<record id="project.action_view_all_task" model="ir.actions.act_window">
<field name="context">{'search_default_my_tasks': 1, 'search_default_open_tasks': 1, 'all_task': 0, 'default_user_ids': [(4, uid)], 'group_by': 'stage_id'}</field>
<record id="project.action_view_my_task" model="ir.actions.act_window">
<field name="context">{'search_default_open_tasks': 1, 'all_task': 0, 'default_user_ids': [(4, uid)], 'group_by': 'stage_id'}</field>
</record>
</odoo>
1 change: 0 additions & 1 deletion project_ux/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ Several improvements to project:
- 1 new agroupation: "Parent-Task"
#. Re-incorporates the wizard that allows to select an existing task to be converted as a sub-task in the sub-task tab (in the migration to 17, when you press on "Add line" in the sub-task tab, you could only create new sub-tasks, not convert the existing tasks to sub-tasks)


Installation
============

Expand Down
14 changes: 14 additions & 0 deletions project_ux/views/project_task_views.xml
Original file line number Diff line number Diff line change
Expand Up @@ -56,4 +56,18 @@
'search_default_is_task': 1,
}</field>
</record>

<record id="project_task_view_form" model="ir.ui.view">
<field name="name">project.task.view.form</field>
<field name="model">project.task</field>
<field name="inherit_id" ref="project_enterprise.project_task_view_form"/>
<field name="arch" type="xml">
<label for="planned_date_begin" position="attributes">
<attribute name="attrs">{'invisible': []}</attribute>
</label>
<xpath expr="//field[@name='planned_date_begin']/../.." position="attributes">
<attribute name="attrs">{'invisible': []}</attribute>
</xpath>
</field>
</record>
</odoo>

0 comments on commit c1de07b

Please sign in to comment.