Skip to content

Commit

Permalink
Merge branch '16.0' of github.com:onesteinbv/addons-oca into 16.0
Browse files Browse the repository at this point in the history
ByteMeAsap committed Dec 18, 2024
2 parents 067e200 + 72ce5e5 commit fdfd5a6
Showing 3 changed files with 2 additions and 7 deletions.
2 changes: 1 addition & 1 deletion project_timeline/__manifest__.py
Original file line number Diff line number Diff line change
@@ -6,7 +6,7 @@
{
"name": "Project timeline",
"summary": "Timeline view for projects",
"version": "16.0.2.0.1",
"version": "16.0.2.2.0",
"category": "Project Management",
"website": "https://github.com/OCA/project",
"author": "Tecnativa, Onestein, Odoo Community Association (OCA)",
5 changes: 0 additions & 5 deletions project_timeline/models/project_task.py
Original file line number Diff line number Diff line change
@@ -57,11 +57,6 @@ def _check_planned_dates(self):
_("The end date must be after the start date.")
)

def update_date_end(self, stage_id):
res = super().update_date_end(stage_id)
res.pop("date_end", None)
return res

def _auto_init(self):
# Pre-create and fill planned_date_start and planned_date_end columns for
# avoiding a costly computation and possible conflicts with the constraint
2 changes: 1 addition & 1 deletion project_timeline/views/project_task_view.xml
Original file line number Diff line number Diff line change
@@ -108,7 +108,7 @@
<field name="model">project.task</field>
<field name="inherit_id" ref="project.view_task_form2" />
<field name="arch" type="xml">
<xpath expr="//field[@name='date_assign']" position="after">
<xpath expr="//field[@name='date_deadline']" position="before">
<label for="planned_date_start" string="Planned Dates" />
<div class="o_row">
<field

0 comments on commit fdfd5a6

Please sign in to comment.