Skip to content

Commit

Permalink
RM-90121 Add the filter to allocation lines chart
Browse files Browse the repository at this point in the history
  • Loading branch information
mea-axelor committed Feb 3, 2025
1 parent 8608145 commit 7a8df8d
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions axelor-project/src/main/resources/views/Dashboard.xml
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@
<view name="project-task-dashboard-grid" type="grid"/>
<view name="project-task-form" type="form"/>
<view-param name="popup" value="true"/>
<domain> (date(self.taskDate) &lt;= date(:toDate) and date(self.taskDate) &lt;= date(:fromDate)
<domain> (date(self.taskDate) &lt;= date(:toDate) and date(self.taskDate) &gt;= date(:fromDate)
)
and
(self.project=:project OR :project IS NULL) and
Expand Down Expand Up @@ -401,6 +401,10 @@
date(self.period.toDate)
&gt;= date(:fromDate) ))
and
(self.project=:project OR :project IS NULL)</domain>
(self.project=:project OR :project IS NULL)
and
(self.employee
=:employee OR :employee IS
NULL)</domain>
</action-view>
</object-views>

0 comments on commit 7a8df8d

Please sign in to comment.