forked from Mapan/odoo17e
12 lines
539 B
Python
12 lines
539 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from odoo import _
|
|
from odoo.addons.project.controllers.portal import ProjectCustomerPortal
|
|
|
|
class ProjectPortal(ProjectCustomerPortal):
|
|
def _task_get_searchbar_sortings(self, milestones_allowed, project=False):
|
|
values = super()._task_get_searchbar_sortings(milestones_allowed, project)
|
|
values['planned_date_begin'] = {'label': _('Planned Date'), 'order': 'planned_date_begin asc', 'sequence': 7}
|
|
return values
|