Skip to content

Commit

Permalink
remove start/end date as mandatory in Demographics report
Browse files Browse the repository at this point in the history
  • Loading branch information
yashodha committed Jul 26, 2022
1 parent 3d3fa36 commit 6f3f28d
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions CRM/Report/Form/Case/Demographics.php
Original file line number Diff line number Diff line change
Expand Up @@ -150,11 +150,11 @@ public function __construct() {
],
'start_date' => [
'title' => ts('Case Start'),
'required' => TRUE,
'default' => TRUE,
],
'end_date' => [
'title' => ts('Case End'),
'required' => TRUE,
'default' => TRUE,
],
],
'filters' => [
Expand Down Expand Up @@ -359,7 +359,6 @@ public function groupBy() {
public function postProcess() {

$this->beginPostProcess();

$sql = $this->buildQuery(TRUE);
$rows = $graphRows = [];
$this->buildRows($sql, $rows);
Expand Down

0 comments on commit 6f3f28d

Please sign in to comment.