fmsystem-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Fmsystem-commits] [16377]


From: nelson . guerra
Subject: [Fmsystem-commits] [16377]
Date: Wed, 22 Feb 2017 09:20:13 -0500 (EST)

Revision: 16377
          http://svn.sv.gnu.org/viewvc/?view=rev&root=fmsystem&revision=16377
Author:   nelson224
Date:     2017-02-22 09:20:13 -0500 (Wed, 22 Feb 2017)
Log Message:
-----------


Modified Paths:
--------------
    branches/dev-syncromind-2/property/inc/class.uitts.inc.php

Modified: branches/dev-syncromind-2/property/inc/class.uitts.inc.php
===================================================================
--- branches/dev-syncromind-2/property/inc/class.uitts.inc.php  2017-02-22 
13:56:42 UTC (rev 16376)
+++ branches/dev-syncromind-2/property/inc/class.uitts.inc.php  2017-02-22 
14:20:13 UTC (rev 16377)
@@ -1213,18 +1213,19 @@
                
                function get_data_report()
                {
-                       $start_date = phpgw::get_var('start_date');
-                       $end_date = phpgw::get_var('end_date');
+                       $start_date = phpgw::get_var('start_date', 'date');
+                       $end_date = phpgw::get_var('end_date', 'date');
                        $type = phpgw::get_var('type');
                        
-                       $params = $this->get_params();
                        $params['start_date'] = $start_date;
                        $params['end_date'] = $end_date;
                        $params['results'] = -1;
+                       $params['type'] = $type;
 
-                       $values = $this->bo->read($params);
+                       $values = $this->bo->get_data_report($params);
+                       
                        $rand = array('0', '1', '2', '3', '4', '5', '6', '7', 
'8', '9', 'a', 'b', 'c', 'd', 'e', 'f');
-
+       
                        $list_categories = 
$this->cats->formatted_xslt_list(array('format' => 'filter',
                                'selected' => $this->cat_id, 'globals' => true, 
'use_acl' => $this->_category_acl));
                        
@@ -1240,8 +1241,8 @@
 
                                foreach ($values as $item) 
                                {
-                                       if (array_key_exists($item['cat_id'], 
$_categories)) {
-                                               
$_categories[$item['cat_id']]['count'] = $_categories[$item['cat_id']]['count'] 
+ 1;
+                                       if ($_categories[$item['cat_id']]) {
+                                               
$_categories[$item['cat_id']]['count'] = (int)$item['count_category'];
                                        }
                                }
 
@@ -1269,8 +1270,8 @@
 
                                foreach ($values as $item) 
                                {
-                                       if (array_key_exists($item['status'], 
$_status)) {
-                                               
$_status[$item['status']]['count'] = $_status[$item['status']]['count'] + 1;
+                                       if ($_status[$item['status']]) {
+                                               
$_status[$item['status']]['count']  = (int)$item['count_status'];
                                        }
                                }
 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]