fmsystem-commits
[Top][All Lists]
Advanced

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

[Fmsystem-commits] [12991]


From: Nelson Guerra
Subject: [Fmsystem-commits] [12991]
Date: Fri, 10 Apr 2015 22:04:10 +0000

Revision: 12991
          http://svn.sv.gnu.org/viewvc/?view=rev&root=fmsystem&revision=12991
Author:   nelson224
Date:     2015-04-10 22:04:09 +0000 (Fri, 10 Apr 2015)
Log Message:
-----------


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

Modified: branches/dev-syncromind/property/inc/class.uiinvoice.inc.php
===================================================================
--- branches/dev-syncromind/property/inc/class.uiinvoice.inc.php        
2015-04-10 16:16:14 UTC (rev 12990)
+++ branches/dev-syncromind/property/inc/class.uiinvoice.inc.php        
2015-04-10 22:04:09 UTC (rev 12991)
@@ -31,10 +31,12 @@
         * Description
         * @package property
         */
-       phpgw::import_class('phpgwapi.yui');
-       phpgw::import_class('phpgwapi.datetime');
-       class property_uiinvoice
+       phpgw::import_class('phpgwapi.uicommon_jquery');
+       phpgw::import_class('phpgwapi.jquery');
+       
+       class property_uiinvoice extends phpgwapi_uicommon_jquery
        {
+               private $receipt = array();
                var $grants;
                var $cat_id;
                var $start;
@@ -64,8 +66,10 @@
                                'forward'               => true
                        );
 
-               function property_uiinvoice()
+               function __construct()
                {
+                       parent::__construct();
+                       
                        $GLOBALS['phpgw_info']['flags']['xslt_app'] = true;
                        $GLOBALS['phpgw_info']['flags']['menu_selection'] = 
'property::invoice';
                        $this->account                  = 
$GLOBALS['phpgw_info']['user']['account_id'];
@@ -93,6 +97,49 @@
 
                }
 
+        private function _get_Filters()
+        {
+                       $b_account_class= phpgw::get_var('b_account_class', 
'int');
+                       
+            $values_combo_box = array();
+            $combos = array();
+            
+                       $values_combo_box[0]  = 
$this->bo->select_category('',$this->cat_id);
+                       array_unshift ($values_combo_box[0], 
array('id'=>'','name'=>lang('no category')));
+                       $combos[] = array
+                                                       (
+                                                               'type'   => 
'filter',
+                                                               'name'   => 
'cat_id',
+                                                               'text'   => 
lang('Category'),
+                                                               'list'   => 
$values_combo_box[0]
+                                                       );
+                       
+                       
+                       $values_combo_box[1]  = 
$this->bo->get_invoice_user_list('select',$this->user_lid,array('all'),$default='all');
+                       array_unshift ($values_combo_box[1],array('lid'=> 
$GLOBALS['phpgw']->accounts->get($this->account)->lid, 'firstname'=>lang('mine 
vouchers')));
+                       array_unshift ($values_combo_box[1], 
array('lid'=>'','firstname'=>lang('no user')));
+                       $combos[] = array
+                                                       (
+                                                               'type'   => 
'filter',
+                                                               'name'   => 
'user_lid',
+                                                               'text'   => 
lang('User'),
+                                                               'list'   => 
$values_combo_box[1]
+                                                       );
+                       
+                       
+                       /*$values_combo_box[2]  = 
$this->bo->select_account_class($b_account_class);
+                       array_unshift ($values_combo_box[2], array 
('id'=>'','name'=>lang('No account')));
+                       $combos[] = array
+                                                       (
+                                                               'type'   => 
'filter',
+                                                               'name'   => 
'filter',
+                                                               'text'   => 
lang('User'),
+                                                               'list'   => 
$values_combo_box[2]
+                                                       );*/
+            
+            return $combos;
+        }
+               
                function save_sessiondata()
                {
                        $data = array
@@ -1685,6 +1732,12 @@
 
                }
 
+        public function query()
+        {
+                       
+               }
+               
+               
                function list_sub()
                {
                        $paid           = phpgw::get_var('paid', 'bool');




reply via email to

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