phpgroupware-cvs
[Top][All Lists]
Advanced

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

[Phpgroupware-cvs] property/class.uiworkorder.php, 1.1.1.3


From: nomail
Subject: [Phpgroupware-cvs] property/class.uiworkorder.php, 1.1.1.3
Date: Fri, 21 May 2004 19:32:30 -0000

Update of /property
Modified Files:
        Branch: 
          class.uiworkorder.php

date: 2004/04/23 21:26:42;  author: sigurdne;  state: Exp;  lines: +1093 -1093

Log Message:
no message
=====================================================================
Index: property/class.uiworkorder.php
diff -u property/class.uiworkorder.php:1.1.1.2 
property/class.uiworkorder.php:1.1.1.3
--- property/class.uiworkorder.php:1.1.1.2      Fri Apr 23 20:27:12 2004
+++ property/class.uiworkorder.php      Fri Apr 23 21:26:42 2004
@@ -1,1093 +1,1093 @@
-<?php
-       
/**************************************************************************\
-       * phpGroupWare - property                                               
   *
-       * http://www.phpgroupware.org                                           
   *
-       *                                                                       
   *
-       * Facilities Management                                                 
   *
-       * Written by Sigurd Nes [sigurdne at online.no]                         
   *
-       * 
------------------------------------------------------------------------ *
-       * Copyright 2000 - 2003 Free Software Foundation, Inc                   
   *
-       * This program is part of the GNU project, see http://www.gnu.org/      
   *
-       * 
------------------------------------------------------------------------ *
-       * This program is free software; you can redistribute it and/or modify 
it  *
-       * under the terms of the GNU General Public License as published by the 
   *
-       * Free Software Foundation; either version 2 of the License, or (at 
your   *
-       * option) any later version.                                            
   *
-       
\**************************************************************************/
-
-       class property_uiworkorder
-       {
-               var $grants;
-               var $cat_id;
-               var $start;
-               var $query;
-               var $sort;
-               var $order;
-               var $filter;
-               var $part_of_town_id;
-               var $sub;
-               var $currentapp;
-
-               var $public_functions = array
-               (
-                       'excel'  => True,
-                       'index'  => True,
-                       'view'   => True,
-                       'add'   => True,
-                       'edit'   => True,
-                       'delete' => True
-               );
-
-               function property_uiworkorder()
-               {
-                       $GLOBALS['phpgw_info']['flags']['xslt_app'] = True;
-                       $this->currentapp                       = 'property'; 
//$GLOBALS['phpgw_info']['flags']['currentapp'];
-                       $this->account                          = 
$GLOBALS['phpgw_data']['user']['id'];
-
-                       $this->bo                                       = 
CreateObject($this->currentapp.'_boworkorder',True);
-                       $this->bocommon                         = 
CreateObject($this->currentapp.'_bocommon');
-                       $this->menu                                     = 
CreateObject($this->currentapp.'_menu');
-                       $this->fm_session       = 
CreateObject($this->currentapp.'_session');
-                       $this->acl2                             = 
$GLOBALS['phpgw']->acl;
-                       $this->acl2_location            = '.project';
-                       $this->acl_read                         = 
$this->acl2->check('.project',1);
-                       $this->acl_add                          = 
$this->acl2->check('.project',2);
-                       $this->acl_edit                         = 
$this->acl2->check('.project',4);
-                       $this->acl_delete                       = 
$this->acl2->check('.project',8);
-
-                       $this->start                            = 
$this->bo->start;
-                       $this->query                            = 
$this->bo->query;
-                       $this->sort                                     = 
$this->bo->sort;
-                       $this->order                            = 
$this->bo->order;
-                       $this->filter                           = 
$this->bo->filter;
-                       $this->cat_id                           = 
$this->bo->cat_id;
-                       $this->status_id                        = 
$this->bo->status_id;
-                       $this->search_vendor            = 
$this->bo->search_vendor;
-
-                       $this->menu->sub                        ='project';
-               }
-
-               function save_sessiondata()
-               {
-                       $data = array
-                       (
-                               'start'                         => $this->start,
-                               'query'                         => $this->query,
-                               'sort'                          => $this->sort,
-                               'order'                         => $this->order,
-                               'filter'                        => 
$this->filter,
-                               'cat_id'                        => $this->cat_id
-                       );
-                       $this->bo->save_sessiondata($data);
-               }
-
-               function excel()
-               {
-                       $GLOBALS['phpgw_info']['flags']['noframework'] = True;
-                       require('PEAR.php');
-                       $xls            = 
CreateObject($this->currentapp.'_excel');
-
-                       $start_date = 
urldecode(get_var('start_date',array('POST','GET')));
-                       $end_date       = 
urldecode(get_var('end_date',array('POST','GET')));
-                       $list           = 
$this->bo->read($start_date,$end_date,$allrows=True);
-
-                       $uicols = $this->bo->uicols;
-                       $count_uicols_name=count($uicols['name']);
-
-                       $j=0;
-                       if (isset($list) AND is_array($list))
-                       {
-                               $str=$xls->Begin();
-                               foreach($list as $entry)
-                               {
-                                       $m=0;
-                                       for ($k=0;$k<$count_uicols_name;$k++)
-                                       {
-                                               
if($uicols['input_type'][$k]!='hidden')
-                                               {
-                                                       $content[$j][$m]        
= $entry[$uicols['name'][$k]];
-                                                       
$str.=$xls->WriteLabel(0,$m,$uicols['descr'][$k]);
-                                                       $m++;
-                                               }
-                                       }
-
-                                       $j++;
-                               }
-
-                               foreach($content as $row)
-                               {
-                                       $line++;
-                                       for ($i=0; $i<count($row); $i++)
-                                       {
-                                               
$str.=$xls->WriteLabel($line,$i,$row[$i]);
-                                       }
-                               }
-
-                          $filename= 
$GLOBALS['phpgw_info']['user']['account_lid'].'.xls';
-
-                               $str.=$xls->EOF();
-                               $size=strlen($str);
-
-                               $browser = CreateObject('phpgwapi_browser');
-                               
$browser->content_header($filename,'application/vnd.ms-excel',$size);
-
-                               echo $str;
-                       }
-               }
-
-
-               function index()
-               {
-                       if(!$this->acl_read)
-                       {
-                               
$this->bocommon->redirect_link('/index.php','sid=cookie&op='.$this->currentapp.'.uilocation.stop&perm=1&acl_location='
 . $this->acl2_location);
-                       }
-
-                       
$this->bocommon->xsl_add_file(array('workorder','values','table_header',
-                                                                               
'menu',
-                                                                               
'nextmatchs'));
-
-                       $links = $this->menu->links('workorder');
-
-                       $start_date             = 
urldecode(get_var('start_date',array('POST','GET')));
-                       $end_date                       = 
urldecode(get_var('end_date',array('POST','GET')));
-                       $workorder_list = 
$this->bo->read($start_date,$end_date);
-
-                       $uicols = $this->bo->uicols;
-                       $count_uicols_name=count($uicols['name']);
-
-                       $j=0;
-                       if (isSet($workorder_list) AND 
is_array($workorder_list))
-                       {
-                               foreach($workorder_list as $workorder_entry)
-                               {
-                                       for ($k=0;$k<$count_uicols_name;$k++)
-                                       {
-                                               
if($uicols['input_type'][$k]!='hidden')
-                                               {
-                                                       
if($workorder_entry['query_location'][$uicols['name'][$k]])
-                                                       {
-                                                               
$content[$j]['row'][$k]['statustext']                   = lang('search');
-                                                               
$content[$j]['row'][$k]['text']                                 = 
$workorder_entry[$uicols['name'][$k]];
-                                                               
$content[$j]['row'][$k]['link']                         = 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiworkorder.index&query='
 . $workorder_entry['query_location'][$uicols['name'][$k]] . '&lookup=' . 
$lookup . '&filter=' . $this->filter);
-                                                       }
-                                                       else
-                                                       {
-                                                               
$content[$j]['row'][$k]['value']                        = 
$workorder_entry[$uicols['name'][$k]];
-                                                               
$content[$j]['row'][$k]['name']                         = $uicols['name'][$k];
-                                                               
if($uicols['name'][$k]=='vendor_id')
-                                                               {
-                                                                       
$content[$j]['row'][$k]['statustext']           = $workorder_entry['org_name'];
-                                                                       
$content[$j]['row'][$k]['overlib']                      = True;
-                                                                       
$content[$j]['row'][$k]['text']                         = 
$workorder_entry[$uicols['name'][$k]];
-                                                               }
-                                                       }
-                                               }
-                                               if($lookup && 
$k==($count_uicols_name - 2))
-                                               
$content[$j]['row'][$k]['lookup_action']                        = 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiworkorder.edit&workorder_id='
 . $workorder_entry['workorder_id']);
-                                       }
-                                       if(!$lookup)
-                                       {
-                                               if ($this->acl_read && 
$this->bocommon->check_perms($workorder_entry['grants'],PHPGW_ACL_READ))
-                                               if($this->acl_read)
-                                               {
-                                                       
$content[$j]['row'][$k]['statustext']                   = lang('view the 
workorder');
-                                                       
$content[$j]['row'][$k]['text']                                 = lang('view');
-                                                       
$content[$j]['row'][$k]['link']                                 = 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiworkorder.view&id='
 . $workorder_entry['workorder_id']);
-                                                       $k++;
-                                               }
-                                               else
-                                               {
-                                                       
$content[$j]['row'][$k++]['link']='dummy';
-                                               }
-
-                                               if ($this->acl_edit && 
$this->bocommon->check_perms($workorder_entry['grants'],PHPGW_ACL_EDIT))
-                                               {
-                                                       
$content[$j]['row'][$k]['statustext']                   = lang('edit the 
workorder');
-                                                       
$content[$j]['row'][$k]['text']                                 = lang('edit');
-                                                       
$content[$j]['row'][$k]['link']                                 = 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiworkorder.edit&id='
 . $workorder_entry['workorder_id']);
-                                                       $k++;
-
-                                                       
$content[$j]['row'][$k]['statustext']                   = lang('calculate the 
workorder');
-                                                       
$content[$j]['row'][$k]['text']                                 = 
lang('calculate');
-                                                       
$content[$j]['row'][$k]['link']                                 = 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiwo_hour.index&workorder_id='
 . $workorder_entry['workorder_id']);
-                                                       $k++;
-                                               }
-                                               else
-                                               {
-                                                       
$content[$j]['row'][$k++]['link']='dummy';
-                                                       
$content[$j]['row'][$k++]['link']='dummy';
-                                               }
-
-                                               if ($this->acl_delete && 
$this->bocommon->check_perms($workorder_entry['grants'],PHPGW_ACL_DELETE))
-                                               {
-                                                       
$content[$j]['row'][$k]['statustext']                   = lang('delete the 
workorder');
-                                                       
$content[$j]['row'][$k]['text']                                 = 
lang('delete');
-                                                       
$content[$j]['row'][$k]['link']                                 = 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiworkorder.delete&id='
 . $workorder_entry['workorder_id']);
-                                                       $k++;
-                                               }
-                                               else
-                                               {
-                                                       
$content[$j]['row'][$k++]['link']='dummy';
-                                               }
-                                       }
-                                       $j++;
-                               }
-                       }
-
-                       $count_uicols_descr=count($uicols['descr']);
-                       for ($i=0;$i<$count_uicols_descr;$i++)
-                       {
-                               if($uicols['input_type'][$i]!='hidden')
-                               {
-                                       $table_header[$i]['header']     = 
$uicols['descr'][$i];
-                                       $table_header[$i]['width']              
= '5%';
-                                       $table_header[$i]['align']              
= 'center';
-                                       if($uicols['name'][$i]=='loc1')
-                                       {
-                                               $table_header[$i]['sort_link']  
=true;
-                                               $table_header[$i]['sort']       
        = $this->bocommon->show_sort_order(array
-                                                                               
(
-                                                                               
        'sort'  => $this->sort,
-                                                                               
        'var'   =>      'fm_location1.loc1',
-                                                                               
        'order' =>      $this->order,
-                                                                               
        'extra'         => array('sid=cookie&op'        => 
$this->currentapp.'.uiworkorder.index',
-                                                                               
                                                        'type_id'       
=>$type_id,
-                                                                               
                                                        'query'         
=>$this->query,
-                                                                               
                                                        'lookup'        
=>$lookup,
-                                                                               
                                                        'district_id'   => 
$this->district_id,
-                                                                               
                                                        'search_vendor' 
=>$this->search_vendor,
-                                                                               
                                                        'cat_id'        
=>$this->cat_id,
-                                                                               
                                                        
'start_date'=>$start_date,
-                                                                               
                                                        'end_date'=>$end_date)
-                                                                               
));
-                                       }
-                                       if($uicols['name'][$i]=='project_id')
-                                       {
-                                               $table_header[$i]['sort_link']  
=true;
-                                               $table_header[$i]['sort']       
        = $this->bocommon->show_sort_order(array
-                                                                               
(
-                                                                               
        'sort'  => $this->sort,
-                                                                               
        'var'   =>      'project_id',
-                                                                               
        'order' =>      $this->order,
-                                                                               
        'extra'         => array('sid=cookie&op'        => 
$this->currentapp.'.uiworkorder.index',
-                                                                               
                                                        'type_id'       
=>$type_id,
-                                                                               
                                                        'query'         
=>$this->query,
-                                                                               
                                                        'lookup'        
=>$lookup,
-                                                                               
                                                        'district_id'   => 
$this->district_id,
-                                                                               
                                                        'search_vendor' 
=>$this->search_vendor,
-                                                                               
                                                        'cat_id'        
=>$this->cat_id,
-                                                                               
                                                        
'start_date'=>$start_date,
-                                                                               
                                                        'end_date'=>$end_date)
-                                                                               
));
-                                       }                                       
if($uicols['name'][$i]=='workorder_id')
-                                       {
-                                               $table_header[$i]['sort_link']  
=true;
-                                               $table_header[$i]['sort']       
        = $this->bocommon->show_sort_order(array
-                                                                               
(
-                                                                               
        'sort'  => $this->sort,
-                                                                               
        'var'   =>      'workorder_id',
-                                                                               
        'order' =>      $this->order,
-                                                                               
        'extra'         => array('sid=cookie&op'        => 
$this->currentapp.'.uiworkorder.index',
-                                                                               
                                                        'type_id'       
=>$type_id,
-                                                                               
                                                        'query'         
=>$this->query,
-                                                                               
                                                        'lookup'        
=>$lookup,
-                                                                               
                                                        'district_id'   => 
$this->district_id,
-                                                                               
                                                        'search_vendor' 
=>$this->search_vendor,
-                                                                               
                                                        'cat_id'        
=>$this->cat_id,
-                                                                               
                                                        
'start_date'=>$start_date,
-                                                                               
                                                        'end_date'=>$end_date)
-                                                                               
));
-                                       }
-                                       if($uicols['name'][$i]=='address')
-                                       {
-                                               $table_header[$i]['sort_link']  
=true;
-                                               $table_header[$i]['sort']       
        = $this->bocommon->show_sort_order(array
-                                                                               
(
-                                                                               
        'sort'  => $this->sort,
-                                                                               
        'var'   =>      'address',
-                                                                               
        'order' =>      $this->order,
-                                                                               
        'extra'         => array('sid=cookie&op'        => 
$this->currentapp.'.uiworkorder.index',
-                                                                               
                                                        'type_id'       
=>$type_id,
-                                                                               
                                                        'query'         
=>$this->query,
-                                                                               
                                                        'lookup'        
=>$lookup,
-                                                                               
                                                        'district_id'   => 
$this->district_id,
-                                                                               
                                                        'search_vendor' 
=>$this->search_vendor,
-                                                                               
                                                        'cat_id'        
=>$this->cat_id,
-                                                                               
                                                        
'start_date'=>$start_date,
-                                                                               
                                                        'end_date'=>$end_date)
-                                                                               
));
-                                       }
-
-                               }
-                       }
-
-                       if(!$lookup)
-                       {
-                               if($this->acl_read)
-                               {
-                                       $table_header[$i]['width']              
        = '5%';
-                                       $table_header[$i]['align']              
        = 'center';
-                                       $table_header[$i]['header']             
        = lang('view');
-                                       $i++;
-                               }
-                               if($this->acl_edit)
-                               {
-                                       $table_header[$i]['width']              
        = '5%';
-                                       $table_header[$i]['align']              
        = 'center';
-                                       $table_header[$i]['header']             
        = lang('edit');
-                                       $i++;
-
-                                       $table_header[$i]['width']              
        = '5%';
-                                       $table_header[$i]['align']              
        = 'center';
-                                       $table_header[$i]['header']             
        = lang('calculate');
-                                       $i++;
-                               }
-                               if($this->acl_delete)
-                               {
-                                       $table_header[$i]['width']              
        = '5%';
-                                       $table_header[$i]['align']              
        = 'center';
-                                       $table_header[$i]['header']             
        = lang('delete');
-                                       $i++;
-                               }
-                       }
-                       else
-                       {
-                               $table_header[$i]['width']                      
= '5%';
-                               $table_header[$i]['align']                      
= 'center';
-                               $table_header[$i]['header']             = 
lang('select');
-                       }
-
-//html_print_r($content);
-                       if($this->acl_add)
-                       {
-                               $table_add[] = array
-                               (
-                                       'lang_add'                              
=> lang('add'),
-                                       'lang_add_statustext'   => lang('add a 
workorder'),
-                                       'add_action'                    => 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiworkorder.add')
-                               );
-                       }
-
-                       $link_data = array
-                       (
-                               'sid=cookie&op' => 
$this->currentapp.'.uiworkorder.index',
-                                               'sort'                  
=>$this->sort,
-                                               'order'                 
=>$this->order,
-                                               'cat_id'                
=>$this->cat_id,
-                                               'district_id'   
=>$this->district_id,
-                                               'status_id'             
=>$this->status_id,
-                                               'filter'                
=>$this->filter,
-                                               'query'                 
=>$this->query,
-                                               'search_vendor' 
=>$this->search_vendor,
-                                               'start_date'    =>$start_date,
-                                               'end_date'              
=>$end_date
-                       );
-
-                       $link_date_search                                       
= 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiproject.date_search');
-
-                       $link_excel = array
-                       (
-                               'sid=cookie&op' => 
$this->currentapp.'.uiworkorder.excel',
-                                               'sort'                  
=>$this->sort,
-                                               'order'                 
=>$this->order,
-                                               'cat_id'                
=>$this->cat_id,
-                                               'district_id'   
=>$this->district_id,
-                                               'status_id'             
=>$this->status_id,
-                                               'filter'                
=>$this->filter,
-                                               'query'                 
=>$this->query,
-                                               'search_vendor' 
=>$this->search_vendor,
-                                               'start_date'    =>$start_date,
-                                               'end_date'              
=>$end_date,
-                                               'start' =>$this->start
-                       );
-
-                       $data = array
-                       (
-                               'lang_excel'                            => 
'excel',
-                               'link_excel'                            => 
$this->bocommon->link('/index.php',$link_excel),
-                               'lang_excel_help'                       => 
lang('Download table to MS Excel'),
-
-                               'start_date'                            
=>$start_date,
-                               'end_date'                                      
=>$end_date,
-                               'lang_none'                                     
=>lang('None'),
-                               'lang_date_search'                      => 
lang('Date search'),
-                               'lang_date_search_help'         => lang('Narrow 
the search by dates'),
-                               'link_date_search'                      => 
$link_date_search,
-                               'overlib_source'                        => 
'./'.$this->currentapp.'/inc/overlib.js',
-
-                               'link_history'                                  
=> 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiworkorder.index'),
-                               'lang_history_statustext'               => 
lang('search for history at this location'),
-                               'links'                                         
        => $links,
-                               'allow_allrows'                                 
=> false,
-                               'start_record'                                  
=> $this->start,
-                               'record_limit'                                  
=> 15, //$GLOBALS['phpgw_info']['user']['preferences']['common']['maxmatchs'],
-                               'num_records'                                   
=> count($workorder_list),
-                               'all_records'                                   
=> $this->bo->total_records,
-                               'link_url'                                      
        => $this->bocommon->link('/index.php',$link_data),
-                               'img_path'                                      
        => 
dirname($GLOBALS['HTTP_SERVER_VARS']['PHP_SELF']).'/api/skins/default/images',
-                               'lang_no_cat'                                   
=> lang('no category'),
-                               'lang_cat_statustext'                   => 
lang('Select the category the workorder belongs to. To do not use a category 
select NO CATEGORY'),
-                               'select_name'                                   
=> 'cat_id',
-                               'cat_list'                                      
        => $this->bo->select_category_workorder_list('filter',$this->cat_id),
-                               'select_action'                                 
=> $this->bocommon->link('/index.php',$link_data),
-
-                               'lang_status_statustext'                => 
lang('Select the status the agreement belongs to. To do not use a category 
select NO STATUS'),
-                               'status_name'                                   
=> 'status_id',
-                               'lang_no_status'                                
=> lang('No status'),
-                               'status_list'                                   
=> $this->bo->select_status_list('filter',$this->status_id),
-
-                               'lang_user_statustext'                  => 
lang('Select the user the workorder belongs to. To do not use a category select 
NO USER'),
-                               'select_user_name'                              
=> 'filter',
-                               'lang_no_user'                                  
=> lang('No user'),
-                               'user_list'                                     
        => 
$this->bocommon->get_user_list_right2('filter',4,$this->filter,$this->acl2_location,array('all'),$default=$this->account),
-
-                               'lang_searchvendor_statustext'  => lang('Enter 
the vendor name to search for'),
-                               'lang_searchfield_statustext'   => lang('Enter 
the search string. To show all entries, empty this field and press the SUBMIT 
button again'),
-                               'lang_searchbutton_statustext'  => lang('Submit 
the search string'),
-                               'query'                                         
        => $this->query,
-                               'search_vendor'                                 
=> $this->search_vendor,
-                               'lang_search'                                   
=> lang('search'),
-                               'table_header'                                  
=> $table_header,
-                               'values'                                        
        => $content,
-                               'table_add'                                     
        => $table_add
-                       );
-
-                       $appname                                                
= lang('Workorder');
-                       $function_msg                                   = 
lang('list workorder');
-
-                       $GLOBALS['phpgw_info']['flags']['app_header'] = 
lang($this->currentapp) . ' - ' . $appname . ': ' . $function_msg;
-                       //$this->save_sessiondata();
-                       return array('list_workorder' => $data);
-               }
-
-               function edit()
-               {
-                       if(!$this->acl_add && !$this->acl_edit)
-                       {
-                               
$this->bocommon->redirect_link('/index.php','sid=cookie&op='.$this->currentapp.'.uilocation.stop&perm=2&acl_location='
 . $this->acl2_location);
-                       }
-                       $boproject                      = 
CreateObject($this->currentapp.'_boproject');
-                       $bolocation                     = 
CreateObject($this->currentapp.'_bolocation');
-                       $config                         = 
CreateObject('phpgwapi_config');
-                       $id                             = 
get_var('id',array('POST','GET'));
-                       $project_id             = 
get_var('project_id',array('POST','GET'));
-                       $values                         = 
get_var('values',array('POST'));
-
-                       $this->bocommon->xsl_add_file(array('workorder'));
-
-                       $values['vendor_id']            = 
get_var('vendor_id',array('POST'));
-                       $values['vendor_name']          = 
get_var('vendor_name',array('POST'));
-                       $values['b_account_id']         = 
get_var('b_account_id',array('POST'));
-                       $values['b_account_name']       = 
get_var('b_account_name',array('POST'));
-
-
-                       $values['start_date']           = 
get_var('start_date',array('POST'));
-                       $values['end_date']                     = 
get_var('end_date',array('POST'));
-
-                       $config->read_repository();
-
-                       if ($values['save'])
-                       {
-                               if(!$values['title'])
-                               {
-                                       
$receipt['error'][]=array('msg'=>lang('Please enter a workorder title !'));
-                                       $error_id=true;
-                               }
-                               if(!$values['project_id'])
-                               {
-                                       
$receipt['error'][]=array('msg'=>lang('Please select a valid project !'));
-                                       $error_id=true;
-                               }
-
-                               if(!$values['status'])
-                               {
-                                       
$receipt['error'][]=array('msg'=>lang('Please select a status !'));
-                               }
-                               if(!$values['b_account_id'])
-                               {
-                                       
$receipt['error'][]=array('msg'=>lang('Please select a budget account !'));
-                               }
-
-                               if($id)
-                               {
-                                       $values['workorder_id']=$id;
-                                       $action='edit';
-                               }
-
-                               if(!$receipt['error'])
-                               {
-                                       if(!$id)
-                                       {
-                                               
$values['workorder_id']=$this->bo->next_id();
-                                               $id     = 
$values['workorder_id'];
-                                       }
-                                       if($values['copy_workorder'])
-                                       {
-                                               $action='add';
-                                               $values['workorder_id'] = 
$this->bo->next_id();
-                                               $id     = 
$values['workorder_id'];
-                                       }
-                                       $receipt = 
$this->bo->save($values,$action);
-                                       $id = $values['workorder_id'];
-                                       $function_msg = lang('Edit Workorder');
-
-                                       if ($values['approval'] && 
$values['mail_address'])
-                                       {
-                                               
$coordinator_name=$GLOBALS['phpgw_info']['user']['fullname'];
-                                               
$coordinator_email=$GLOBALS['phpgw_info']['user']['preferences'][$this->currentapp]['email'];
-                                               $headers = "Return-Path: <". 
$coordinator_email .">\r\n";
-                                               $headers .= "From: " . 
$coordinator_name . "<" . $coordinator_email .">\r\n";
-                                               $headers .= "Bcc: " . 
$coordinator_name . "<" . $coordinator_email .">\r\n";
-                                               $headers .= "Content-type: 
text/plain; charset=iso-8859-1\r\n";
-
-                                               $subject = lang(Approval).": ". 
$values['workorder_id'];
-                                               $message = lang('Workorder %1 
needs approval',$values['workorder_id']);
-
-                                               $mail_method= 
$config->config_data['fmwrkorder_mail'];
-                                               if ($mail_method=='smtp'):
-                                               {
-                                                       $bcc = 
$coordinator_email;
-                                                       $send = 
CreateObject('phpgwapi_send');
-                                                       $rcpt = 
$send->msg('email', $values['mail_address'], $subject, stripslashes($message), 
'', $cc, $bcc, $coordinator_email, $coordinator_name, 'plain');
-                                               }
-                                               elseif 
($mail_method=='sendmail'):
-                                               {
-                                                       
$rcpt=mail($values['mail_address'],$subject,$message, $headers);
-                                               }
-                                               else:
-                                               {
-                                                       
$receipt['error'][]=array('msg'=>lang('Mailing method is not chosen! (admin 
section)'));
-                                               }
-                                               endif;
-                                       }
-
-                                       if($rcpt)
-                                       {
-                                               
$receipt['message'][]=array('msg'=>lang('%1 is 
notified',$values['mail_address']));
-                                       }
-                               }
-                       }
-
-                       if(!$receipt['error'])
-                       {
-                               if($id)
-                               {
-                                       $values         = 
$this->bo->read_single($id);
-                               }
-                               if($project_id && !$values['project_id'])
-                               {
-                                       $values['project_id']=$project_id;
-                               }
-                               $project        = 
$boproject->read_single_mini($values['project_id']);
-
-                               if 
(!$this->bocommon->check_perms($project['grants'],PHPGW_ACL_EDIT))
-                               {
-                                       
$receipt['error'][]=array('msg'=>lang('You have no edit right for this 
project'));
-                                       
$this->fm_session->appsession('receipt',$this->currentapp,$receipt);
-                                       
$this->bocommon->redirect_link('/index.php','sid=cookie&op='.$this->currentapp.'.uiworkorder.view&id='
 . $id);
-                               }
-
-                               if( $project['key_fetch'] && 
!$values['key_fetch'])
-                               {
-                                       
$values['key_fetch']=$project['key_fetch'];
-                               }
-
-                               if( $project['key_deliver'] && 
!$values['key_deliver'])
-                               {
-                                       
$values['key_deliver']=$project['key_deliver'];
-                               }
-                               if( $project['charge_tenant'] && 
!$values['workorder_id'])
-                               {
-                                       
$values['charge_tenant']=$project['charge_tenant'];
-                               }
-                               if( $project['start_date'] && 
!$values['start_date'])
-                               {
-                                       
$values['start_date']=$project['start_date'];
-                               }
-                               if( $project['end_date'] && 
!$values['end_date'])
-                               {
-                                       
$values['end_date']=$project['end_date'];
-                               }
-                               if( $project['name'] && !$values['title'])
-                               {
-                                       $values['title']=$project['name'];
-                               }
-                               if( $project['descr'] && !$values['descr'])
-                               {
-                                       $values['descr']=$project['descr'];
-                               }
-                               if( $project['status'] && !$values['status'])
-                               {
-                                       $values['status']=$project['status'];
-                               }
-                       }
-
-                       if($id)
-                       {
-                               $record_history = 
$this->bo->read_record_history($id);
-                       }
-
-//html_print_r($hour_data);
-                       $table_header_history[] = array
-                       (
-                               'lang_date'                     => lang('Date'),
-                               'lang_user'                     => lang('User'),
-                               'lang_action'           => lang('Action'),
-                               'lang_new_value'        => lang('New value')
-                       );
-
-                       $table_header_workorder_budget[] = array
-                       (
-                               'lang_workorder_id'     => lang('Workorder'),
-                               'lang_sum'      => lang('Sum')
-                       );
-
-                       if ($id)
-                       {
-                               $function_msg = lang('Edit Workorder');
-                       }
-                       else
-                       {
-                               $function_msg = lang('Add Workorder');
-                       }
-
-                       if ($values['cat_id'])
-                       {
-                               $this->cat_id = $values['cat_id'];
-                       }
-
-
-                       $location_data=$bolocation->initiate_ui_location(array(
-                                               'values'                => 
$project['location_data'],
-                                               'type_id'               => 
count(explode('-',$project['location_data']['location_code'])),
-                                               'no_link'               => 
False, // disable lookup links for location type less than type_id
-                                               'tenant'                => 
$project['location_data']['tenant_id'],
-                                               'lookup_type'   => 'view'
-                                               ));
-
-                       
$vendor_data=$this->bocommon->initiate_ui_vendorlookup(array(
-                                               'vendor_id'             => 
$values['vendor_id'],
-                                               'vendor_name'   => 
$values['vendor_name']));
-
-                       
$b_account_data=$this->bocommon->initiate_ui_budget_account_lookup(array(
-                                               'b_account_id'          => 
$values['b_account_id'],
-                                               'b_account_name'        => 
$values['b_account_name']));
-
-
-                       $link_data = array
-                       (
-                               'sid=cookie&op' => 
$this->currentapp.'.uiworkorder.edit',
-                               'id'                    => $id
-                       );
-
-                       $dateformat = 
strtolower($GLOBALS['phpgw_info']['user']['preferences']['common']['dateformat']);
-                       $sep = '/';
-                       $dlarr[strpos($dateformat,'y')] = 'yyyy';
-                       $dlarr[strpos($dateformat,'m')] = 'MM';
-                       $dlarr[strpos($dateformat,'d')] = 'DD';
-                       ksort($dlarr);
-
-                       $dateformat= (implode($sep,$dlarr));
-
-
-                       
$supervisor_id=$GLOBALS['phpgw_info']['user']['preferences'][$this->currentapp]['approval_from'];
-
-                       $need_approval = 
$config->config_data['workorder_approval'];
-
-                       if ($supervisor_id && ($need_approval=='yes'))
-                       {
-                               $prefs = 
$this->bocommon->create_preferences($this->currentapp,$supervisor_id);
-                               $supervisor_email = $prefs['email'];
-                       }
-
-                       
$project_status=$GLOBALS['phpgw_info']['user']['preferences'][$this->currentapp]['project_status'];
-                       if(!$values['status'])
-                       {
-                               $values['status']=$project_status;
-                       }
-
-                       $cal_info       = $this->bocommon->jscalendar();
-                       $jsDateFormat=$cal_info['jsDateFormat'];
-
-                       $msgbox_data = $this->bocommon->msgbox_data($receipt);
-
-                       $data = array
-                       (
-                               'msgbox_data'                                   
=> $GLOBALS['phpgw']->common->msgbox($msgbox_data),
-                               'calculate_action'                              
=> 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiwo_hour.index'),
-                               'lang_calculate'                                
=> lang('Calculate Workorder'),
-                               'lang_calculate_statustext'             => 
lang('Calculate workorder by adding items from vendors prizebook or adding 
general hours'),
-
-                               'send_action'                                   
=> 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiwo_hour.view&from=index'),
-                               'lang_send'                                     
        => lang('Send Workorder'),
-                               'lang_send_statustext'                  => 
lang('send this workorder to vendor'),
-
-                               'project_link'                                  
=> 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiproject.edit'),
-                               'b_account_data'                                
=> $b_account_data,
-                               'table_header_workorder_budget' => 
$table_header_workorder_budget,
-                               'lang_no_workorders'                    => 
lang('No workorder bugdet'),
-                               'workorder_link'                                
=> 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiworkorder.w_edit'),
-                               'record_history'                                
=> $record_history,
-                               'table_header_history'                  => 
$table_header_history,
-                               'lang_history'                                  
=> lang('History'),
-                               'lang_no_history'                               
=> lang('No history'),
-
-                               'jsDateFormat'                                  
=> $jsDateFormat,
-                               'date_img'                                      
        => $cal_info['img'],
-                               'lang_datetitle'                                
=> lang('Select date'),
-                               'calendar_setup_start'                  => 
"Calendar.setup({inputField  : 'start_date',ifFormat  : '" . $jsDateFormat . 
"',button : 'start_date-trigger'});",
-                               'calendar_setup_end'                    => 
"Calendar.setup({inputField  : 'end_date',ifFormat  : '" . $jsDateFormat . 
"',button : 'end_date-trigger'});",
-
-                               'lang_start_date_statustext'    => lang('Select 
the estimated end date for the Project'),
-                               'lang_start_date'                               
=> lang('Workorder start date'),
-                               'value_start_date'                              
=> $values['start_date'],
-
-                               'lang_end_date_statustext'              => 
lang('Select the estimated end date for the Project'),
-                               'lang_end_date'                                 
=> lang('Workorder end date'),
-                               'value_end_date'                                
=> $values['end_date'],
-
-                               'lang_copy_workorder'                   => 
lang('Copy workorder ?'),
-                               'lang_copy_workorder_statustext'        => 
lang('Choose Copy Workorder to copy this workorder to a new workorder'),
-
-                               'lang_charge_tenant'                    => 
lang('Charge tenant'),
-                               'lang_charge_tenant_statustext' => lang('Choose 
charge tenant if the tenant i to pay for this project'),
-                               'charge_tenant'                                 
=> $values['charge_tenant'],
-
-                               'lang_power_meter'                              
=> lang('Power meter'),
-                               'lang_power_meter_statustext'   => lang('Enter 
the power_meter'),
-                               'value_power_meter'                             
=> $project['power_meter'],
-
-                               'lang_addition_rs'                              
=> lang('Rig addition'),
-                               'lang_addition_rs_statustext'   => lang('Enter 
any round sum addition per order'),
-                               'value_addition_rs'                             
=> $values['addition_rs'],
-
-                               'lang_addition_percentage'                      
=> lang('Percentage addition'),
-                               'lang_addition_percentage_statustext'   => 
lang('Enter any persentage addition per unit'),
-                               'value_addition_percentage'                     
        => $values['addition_percentage'],
-
-                               'lang_budget'                                   
=> lang('Budget'),
-                               'value_budget'                                  
=> $values['budget'],
-                               'lang_budget_statustext'                => 
lang('Enter the budget'),
-
-                               'lang_incl_tax'                                 
=> lang('incl tax'),
-                               'lang_calculation'                              
=> lang('Calculation'),
-                               'value_calculation'                             
=> $values['calculation'],
-
-                               'vendor_data'                                   
=> $vendor_data,
-                               'location_data'                                 
=> $location_data,
-                               'location_type'                                 
=> 'view',
-                               'form_action'                                   
=> $this->bocommon->link('/index.php',$link_data),
-                               'done_action'                                   
=> 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiworkorder.index'),
-                               'lang_year'                                     
        => lang('Year'),
-                               'lang_category'                                 
=> lang('category'),
-                               'lang_save'                                     
        => lang('save'),
-                               'lang_done'                                     
        => lang('done'),
-                               'lang_title'                                    
=> lang('Title'),
-                               'value_title'                                   
=> $values['title'],
-                               'lang_project_name'                             
=> lang('Project name'),
-                               'value_project_name'                    => 
$project['name'],
-
-                               'lang_project_id'                               
=> lang('Project ID'),
-                               'value_project_id'                              
=> $values['project_id'],
-
-                               'lang_workorder_id'                             
=> lang('Workorder ID'),
-                               'value_workorder_id'                    => 
$values['workorder_id'],
-
-                               'lang_title_statustext'                 => 
lang('Enter Workorder title'),
-
-                               'lang_other_branch'                             
        => lang('Other branch'),
-                               'lang_other_branch_statustext'          => 
lang('Enter other branch if not found in the list'),
-                               'value_other_branch'                            
=> $project['other_branch'],
-
-                               'lang_descr_statustext'                 => 
lang('Enter a short description of the workorder'),
-                               'lang_descr'                                    
=> lang('Description'),
-                               'value_descr'                                   
=> $values['descr'],
-                               'lang_done_statustext'                  => 
lang('Back to the list'),
-                               'lang_save_statustext'                  => 
lang('Save the workorder'),
-                               'lang_no_cat'                                   
=> lang('Select category'),
-                               'lang_cat_statustext'                   => 
lang('Select the category the project belongs to. To do not use a category 
select NO CATEGORY'),
-                               'select_name'                                   
=> 'values[cat_id]',
-                               'value_cat_id'                                  
=> $values['cat_id'],
-                               'cat_list'                                      
        => 
$this->bo->select_category_workorder_list('select',$project['cat_id']),
-
-                               'sum_workorder_budget'                  => 
$values['sum_workorder_budget'],
-                               'workorder_budget'                              
=> $values['workorder_budget'],
-
-                               'lang_coordinator'                              
=> lang('Coordinator'),
-                               'lang_sum'                                      
        => lang('Sum'),
-                               'select_user_name'                              
=> 'values[coordinator]',
-                               'user_list'                                     
        => $this->bocommon->get_user_list('select',$project['coordinator']),
-
-                               'status_list'                                   
=> $this->bo->select_status_list('select',$values['status']),
-                               'select_status_name'                    => 
'values[status]',
-                               'lang_no_status'                                
=> lang('Select status'),
-                               'lang_status'                                   
=> lang('Status'),
-                               'lang_status_statustext'                => 
lang('What is the current status of this workorder ?'),
-
-                               'branch_list'                                   
=> $boproject->select_branch_p_list($project['project_id']),
-                               'lang_branch'                                   
=> lang('branch'),
-                               'lang_branch_statustext'                => 
lang('Select the branches for this project'),
-
-                               'key_responsible_list'                          
=> $boproject->select_branch_list($project['key_responsible']),
-                               'lang_key_responsible'                          
=> lang('key responsible'),
-
-                               'key_fetch_list'                                
        => $this->bo->select_key_location_list($values['key_fetch']),
-                               'lang_no_key_fetch'                             
        => lang('Where to fetch the key'),
-                               'lang_key_fetch'                                
        => lang('key fetch location'),
-                               'lang_key_fetch_statustext'                     
=> lang('Select where to fetch the key'),
-
-                               'key_deliver_list'                              
        => $this->bo->select_key_location_list($values['key_deliver']),
-                               'lang_no_key_deliver'                           
=> lang('Where to deliver the key'),
-                               'lang_key_deliver'                              
        => lang('key deliver location'),
-                               'lang_key_deliver_statustext'           => 
lang('Select where to deliver the key'),
-
-                               'need_approval'                                 
        => $need_approval,
-                               'lang_ask_approval'                             
        => lang('Ask for approval'),
-                               'lang_ask_approval_statustext'          => 
lang('Check this to send a mail to your supervisor for approval'),
-                               'value_approval_mail_address'           => 
$supervisor_email,
-                               'currency'                                      
        => $GLOBALS['phpgw_info']['user']['preferences']['common']['currency']
-                       );
-
-                       $appname                                                
= lang('Workorder');
-
-                       $GLOBALS['phpgw_info']['flags']['app_header'] = 
lang($this->currentapp) . ' - ' . $appname . ': ' . $function_msg;
-
-                       return array('edit' => $data);
-               }
-
-               function add()
-               {
-                       if(!$this->acl_edit)
-                       {
-                               
$this->bocommon->redirect_link('/index.php','sid=cookie&op='.$this->currentapp.'.uilocation.stop&perm=2&acl_location='
 . $this->acl2_location);
-                       }
-
-                       $link_data = array
-                       (
-                               'sid=cookie&op' => 
$this->currentapp.'.uiworkorder.index'
-                       );
-
-                       $this->bocommon->xsl_add_file(array('workorder',
-                                                                               
'menu',
-                                                                               
'search_field'));
-
-                       $data = array
-                       (
-                               'done_action'                   => 
$this->bocommon->link('/index.php',$link_data),
-                               'add_action'                    => 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiproject.edit'),
-                               'search_action'                 => 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiproject.index&lookup=true'),
-
-                               'lang_done_statustext'                  => 
lang('Back to the workorder list'),
-                               'lang_add_statustext'                   => 
lang('Adds a new project - then a new workorder'),
-                               'lang_search_statustext'                => 
lang('Adds a new workorder to an existing project'),
-
-                               'lang_done'                             => 
lang('Done'),
-                               'lang_add'                              => 
lang('Add'),
-                               'lang_search'                   => 
lang('Search')
-                       );
-
-                       $appname                                                
= lang('Workorder');
-                       $function_msg                                   = 
lang('Add workorder');
-
-                       $GLOBALS['phpgw_info']['flags']['app_header'] = 
lang($this->currentapp) . ' - ' . $appname . ': ' . $function_msg;
-                       return array('add' => $data);
-               }
-
-               function delete()
-               {
-                       if(!$this->acl_delete)
-                       {
-                               
$this->bocommon->redirect_link('/index.php','sid=cookie&op='.$this->currentapp.'.uilocation.stop&perm=8&acl_location='
 . $this->acl2_location);
-                       }
-                       $id = get_var('id',array('POST','GET'));
-                       $confirm        = get_var('confirm',array('POST'));
-
-                       $link_data = array
-                       (
-                               'sid=cookie&op' => 
$this->currentapp.'.uiworkorder.index'
-                       );
-
-                       if (get_var('confirm',array('POST')))
-                       {
-                               $this->bo->delete($id);
-                               Header('Location: ' . 
$this->bocommon->link('/index.php',$link_data));
-                       }
-
-                       $this->bocommon->xsl_add_file(array('app_delete'));
-
-                       $data = array
-                       (
-                               'done_action'                   => 
$this->bocommon->link('/index.php',$link_data),
-                               'delete_action'                 => 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiworkorder.delete&id='
 . $id),
-                               'lang_confirm_msg'              => lang('do you 
really want to delete this entry'),
-                               'lang_yes'                              => 
lang('yes'),
-                               'lang_yes_statustext'   => lang('Delete the 
entry'),
-                               'lang_no_statustext'    => lang('Back to the 
list'),
-                               'lang_no'                               => 
lang('no')
-                       );
-
-                       $appname                                                
= lang('workorder');
-                       $function_msg                                   = 
lang('delete workorder');
-
-                       $GLOBALS['phpgw_info']['flags']['app_header'] = 
lang($this->currentapp) . ' - ' . $appname . ': ' . $function_msg;
-                       return array('delete' => $data);
-               }
-
-               function view()
-               {
-                       if(!$this->acl_read)
-                       {
-                               
$this->bocommon->redirect_link('/index.php','sid=cookie&op='.$this->currentapp.'.uilocation.stop&perm=1&acl_location='
 . $this->acl2_location);
-                       }
-
-                       $boproject                      = 
CreateObject($this->currentapp.'_boproject');
-                       $bolocation                     = 
CreateObject($this->currentapp.'_bolocation');
-
-                       $receipt = 
$this->fm_session->appsession('receipt',$this->currentapp);
-                       
$this->fm_session->appsession('receipt',$this->currentapp,'');
-
-                       $id     = get_var('id',array('POST','GET'));
-
-                       
$this->bocommon->xsl_add_file(array('workorder','hour_data_view'));
-
-                       $uiwo_hour      = 
CreateObject($this->currentapp.'_uiwo_hour');
-                       $hour_data      = 
$uiwo_hour->common_data($id,$view=True);
-                       $values         = $this->bo->read_single($id);
-                       $project        = 
$boproject->read_single($values['project_id']);
-                       $record_history = $this->bo->read_record_history($id);
-
-                       $table_header_history[] = array
-                       (
-                               'lang_date'                     => lang('Date'),
-                               'lang_user'                     => lang('User'),
-                               'lang_action'           => lang('Action'),
-                               'lang_new_value'        => lang('New value')
-                       );
-
-                       $table_header_workorder_budget[] = array
-                       (
-                               'lang_workorder_id'     => lang('Workorder'),
-                               'lang_sum'      => lang('Sum')
-                       );
-
-                       $function_msg = lang('View Workorder');
-
-                       $location_data=$bolocation->initiate_ui_location(array(
-                                               'values'                => 
$project['location_data'],
-                                               'type_id'               => 
count(explode('-',$project['location_data']['location_code'])),
-                                               'no_link'               => 
False, // disable lookup links for location type less than type_id
-                                               'tenant'                => 
$project['location_data']['tenant_id'],
-                                               'lookup_type'   => 'view'
-                                               ));
-
-                       $data = array
-                       (
-                               'project_link'                                  
=> 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiproject.view'),
-                               'table_header_workorder_budget' => 
$table_header_workorder_budget,
-                               'lang_no_workorders'                    => 
lang('No workorder bugdet'),
-                               'workorder_link'                                
=> 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiworkorder.view'),
-                               'record_history'                                
=> $record_history,
-                               'table_header_history'                  => 
$table_header_history,
-                               'lang_history'                                  
=> lang('History'),
-                               'lang_no_history'                               
=> lang('No history'),
-
-                               'lang_project_name'                             
=> lang('Project name'),
-                               'value_project_name'                    => 
$project['name'],
-
-                               'lang_vendor'                                   
=> lang('Vendor'),
-                               'value_vendor_id'                               
=> $values['vendor_id'],
-                               'value_vendor_name'                             
=> $values['vendor_name'],
-
-                               'lang_b_account'                                
=> lang('Budget account'),
-                               'value_b_account_id'                    => 
$values['b_account_id'],
-                               'value_b_account_name'                  => 
$values['b_account_name'],
-
-                               'lang_start_date'                               
=> lang('Project start date'),
-                               'value_start_date'                              
=> $values['start_date'],
-
-                               'lang_end_date'                                 
=> lang('Project end date'),
-                               'value_end_date'                                
=> $values['end_date'],
-
-                               'lang_charge_tenant'                    => 
lang('Charge tenant'),
-                               'charge_tenant'                                 
=> $values['charge_tenant'],
-
-                               'lang_power_meter'                              
=> lang('Power meter'),
-                               'value_power_meter'                             
=> $project['power_meter'],
-
-                               'lang_addition_rs'                              
=> lang('Rig addition'),
-                               'lang_addition_rs_statustext'   => lang('Enter 
any round sum addition per order'),
-                               'value_addition_rs'                             
=> $values['addition_rs'],
-
-                               'lang_addition_percentage'                      
=> lang('Percentage addition'),
-                               'lang_addition_percentage_statustext'   => 
lang('Enter any persentage addition per unit'),
-                               'value_addition_percentage'                     
        => $values['addition_percentage'],
-
-                               'lang_budget'                                   
=> lang('Budget'),
-                               'value_budget'                                  
=> $values['budget'],
-
-                               'location_data'                                 
=> $location_data,
-                               'location_type'                                 
=> 'view',
-                               'done_action'                                   
=> 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiworkorder.index'),
-                               'lang_year'                                     
        => lang('Year'),
-                               'lang_category'                                 
=> lang('category'),
-                               'lang_save'                                     
        => lang('save'),
-                               'lang_done'                                     
        => lang('done'),
-                               'lang_name'                                     
        => lang('Name'),
-
-                               'lang_title'                                    
=> lang('Title'),
-                               'value_title'                                   
=> $values['title'],
-
-                               'lang_project_id'                               
=> lang('Project ID'),
-                               'value_project_id'                              
=> $values['project_id'],
-                               'value_name'                                    
=> $values['name'],
-
-                               'lang_other_branch'                             
        => lang('Other branch'),
-                               'value_other_branch'                            
=> $project['other_branch'],
-
-                               'lang_descr'                                    
=> lang('Description'),
-                               'value_descr'                                   
=> $values['descr'],
-                               'lang_done_statustext'                  => 
lang('Back to the list'),
-                               'cat_list'                                      
        => 
$this->bo->select_category_workorder_list('select',$project['cat_id']),
-
-                               'lang_workorder_id'                             
=> lang('Workorder ID'),
-                               'value_workorder_id'                    => 
$values['workorder_id'],
-
-                               'lang_coordinator'                              
=> lang('Coordinator'),
-                               'lang_sum'                                      
        => lang('Sum'),
-                               'user_list'                                     
        => $this->bocommon->get_user_list('select',$project['coordinator']),
-
-                               'status_list'                                   
=> $this->bo->select_status_list('select',$values['status']),
-                               'lang_no_status'                                
=> lang('Select status'),
-                               'lang_status'                                   
=> lang('Status'),
-
-                               'branch_list'                                   
=> $this->bo->select_branch_p_list($values['project_id']),
-                               'lang_branch'                                   
=> lang('branch'),
-
-                               'key_responsible_list'                  => 
$this->bo->select_branch_list($project['key_responsible']),
-                               'lang_key_responsible'                  => 
lang('key responsible'),
-
-                               'key_fetch_list'                                
=> $this->bo->select_key_location_list($values['key_fetch']),
-                               'lang_key_fetch'                                
=> lang('key fetch location'),
-
-                               'key_deliver_list'                              
=> $this->bo->select_key_location_list($values['key_deliver']),
-                               'lang_key_deliver'                              
=> lang('key deliver location'),
-
-                               'edit_action'                                   
=> 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiworkorder.edit&id='
 . $id),
-                               'lang_edit_statustext'                  => 
lang('Edit this entry workorder'),
-                               'lang_edit'                                     
        => lang('Edit'),
-                               'currency'                                      
        => $GLOBALS['phpgw_info']['user']['preferences']['common']['currency'],
-                               'lang_total_records'                    => 
lang('Total records'),
-                               'total_hours_records'                   => 
$hour_data['total_hours_records'],
-                               'table_header_hour'                             
=> $hour_data['table_header'],
-                               'values_hour'                                   
=> $hour_data['content'],
-                               'table_sum'                                     
        => $hour_data['table_sum']
-                       );
-
-                       $appname                                                
= lang('Workorder');
-
-                       $GLOBALS['phpgw_info']['flags']['app_header'] = 
lang($this->currentapp) . ' - ' . $appname . ': ' . $function_msg;
-                       return array('view' => $data);
-               }
-       }
-?>
+<?php
+       
/**************************************************************************\
+       * phpGroupWare - property                                               
   *
+       * http://www.phpgroupware.org                                           
   *
+       *                                                                       
   *
+       * Facilities Management                                                 
   *
+       * Written by Sigurd Nes [sigurdne at online.no]                         
   *
+       * 
------------------------------------------------------------------------ *
+       * Copyright 2000 - 2003 Free Software Foundation, Inc                   
   *
+       * This program is part of the GNU project, see http://www.gnu.org/      
   *
+       * 
------------------------------------------------------------------------ *
+       * This program is free software; you can redistribute it and/or modify 
it  *
+       * under the terms of the GNU General Public License as published by the 
   *
+       * Free Software Foundation; either version 2 of the License, or (at 
your   *
+       * option) any later version.                                            
   *
+       
\**************************************************************************/
+
+       class property_uiworkorder
+       {
+               var $grants;
+               var $cat_id;
+               var $start;
+               var $query;
+               var $sort;
+               var $order;
+               var $filter;
+               var $part_of_town_id;
+               var $sub;
+               var $currentapp;
+
+               var $public_functions = array
+               (
+                       'excel'  => True,
+                       'index'  => True,
+                       'view'   => True,
+                       'add'   => True,
+                       'edit'   => True,
+                       'delete' => True
+               );
+
+               function property_uiworkorder()
+               {
+                       $GLOBALS['phpgw_info']['flags']['xslt_app'] = True;
+                       $this->currentapp                       = 'property'; 
//$GLOBALS['phpgw_info']['flags']['currentapp'];
+                       $this->account                          = 
$GLOBALS['phpgw_data']['user']['id'];
+
+                       $this->bo                                       = 
CreateObject($this->currentapp.'_boworkorder',True);
+                       $this->bocommon                         = 
CreateObject($this->currentapp.'_bocommon');
+                       $this->menu                                     = 
CreateObject($this->currentapp.'_menu');
+                       $this->fm_session       = 
CreateObject($this->currentapp.'_session');
+                       $this->acl2                             = 
$GLOBALS['phpgw']->acl;
+                       $this->acl2_location            = '.project';
+                       $this->acl_read                         = 
$this->acl2->check('.project',1);
+                       $this->acl_add                          = 
$this->acl2->check('.project',2);
+                       $this->acl_edit                         = 
$this->acl2->check('.project',4);
+                       $this->acl_delete                       = 
$this->acl2->check('.project',8);
+
+                       $this->start                            = 
$this->bo->start;
+                       $this->query                            = 
$this->bo->query;
+                       $this->sort                                     = 
$this->bo->sort;
+                       $this->order                            = 
$this->bo->order;
+                       $this->filter                           = 
$this->bo->filter;
+                       $this->cat_id                           = 
$this->bo->cat_id;
+                       $this->status_id                        = 
$this->bo->status_id;
+                       $this->search_vendor            = 
$this->bo->search_vendor;
+
+                       $this->menu->sub                        ='project';
+               }
+
+               function save_sessiondata()
+               {
+                       $data = array
+                       (
+                               'start'                         => $this->start,
+                               'query'                         => $this->query,
+                               'sort'                          => $this->sort,
+                               'order'                         => $this->order,
+                               'filter'                        => 
$this->filter,
+                               'cat_id'                        => $this->cat_id
+                       );
+                       $this->bo->save_sessiondata($data);
+               }
+
+               function excel()
+               {
+                       $GLOBALS['phpgw_info']['flags']['noframework'] = True;
+                       require('PEAR.php');
+                       $xls            = 
CreateObject($this->currentapp.'_excel');
+
+                       $start_date = 
urldecode(get_var('start_date',array('POST','GET')));
+                       $end_date       = 
urldecode(get_var('end_date',array('POST','GET')));
+                       $list           = 
$this->bo->read($start_date,$end_date,$allrows=True);
+
+                       $uicols = $this->bo->uicols;
+                       $count_uicols_name=count($uicols['name']);
+
+                       $j=0;
+                       if (isset($list) AND is_array($list))
+                       {
+                               $str=$xls->Begin();
+                               foreach($list as $entry)
+                               {
+                                       $m=0;
+                                       for ($k=0;$k<$count_uicols_name;$k++)
+                                       {
+                                               
if($uicols['input_type'][$k]!='hidden')
+                                               {
+                                                       $content[$j][$m]        
= $entry[$uicols['name'][$k]];
+                                                       
$str.=$xls->WriteLabel(0,$m,$uicols['descr'][$k]);
+                                                       $m++;
+                                               }
+                                       }
+
+                                       $j++;
+                               }
+
+                               foreach($content as $row)
+                               {
+                                       $line++;
+                                       for ($i=0; $i<count($row); $i++)
+                                       {
+                                               
$str.=$xls->WriteLabel($line,$i,$row[$i]);
+                                       }
+                               }
+
+                          $filename= 
$GLOBALS['phpgw_info']['user']['account_lid'].'.xls';
+
+                               $str.=$xls->EOF();
+                               $size=strlen($str);
+
+                               $browser = CreateObject('phpgwapi_browser');
+                               
$browser->content_header($filename,'application/vnd.ms-excel',$size);
+
+                               echo $str;
+                       }
+               }
+
+
+               function index()
+               {
+                       if(!$this->acl_read)
+                       {
+                               
$this->bocommon->redirect_link('/index.php','sid=cookie&op='.$this->currentapp.'.uilocation.stop&perm=1&acl_location='
 . $this->acl2_location);
+                       }
+
+                       
$this->bocommon->xsl_add_file(array('workorder','values','table_header',
+                                                                               
'menu',
+                                                                               
'nextmatchs'));
+
+                       $links = $this->menu->links('workorder');
+
+                       $start_date             = 
urldecode(get_var('start_date',array('POST','GET')));
+                       $end_date                       = 
urldecode(get_var('end_date',array('POST','GET')));
+                       $workorder_list = 
$this->bo->read($start_date,$end_date);
+
+                       $uicols = $this->bo->uicols;
+                       $count_uicols_name=count($uicols['name']);
+
+                       $j=0;
+                       if (isSet($workorder_list) AND 
is_array($workorder_list))
+                       {
+                               foreach($workorder_list as $workorder_entry)
+                               {
+                                       for ($k=0;$k<$count_uicols_name;$k++)
+                                       {
+                                               
if($uicols['input_type'][$k]!='hidden')
+                                               {
+                                                       
if($workorder_entry['query_location'][$uicols['name'][$k]])
+                                                       {
+                                                               
$content[$j]['row'][$k]['statustext']                   = lang('search');
+                                                               
$content[$j]['row'][$k]['text']                                 = 
$workorder_entry[$uicols['name'][$k]];
+                                                               
$content[$j]['row'][$k]['link']                         = 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiworkorder.index&query='
 . $workorder_entry['query_location'][$uicols['name'][$k]] . '&lookup=' . 
$lookup . '&filter=' . $this->filter);
+                                                       }
+                                                       else
+                                                       {
+                                                               
$content[$j]['row'][$k]['value']                        = 
$workorder_entry[$uicols['name'][$k]];
+                                                               
$content[$j]['row'][$k]['name']                         = $uicols['name'][$k];
+                                                               
if($uicols['name'][$k]=='vendor_id')
+                                                               {
+                                                                       
$content[$j]['row'][$k]['statustext']           = $workorder_entry['org_name'];
+                                                                       
$content[$j]['row'][$k]['overlib']                      = True;
+                                                                       
$content[$j]['row'][$k]['text']                         = 
$workorder_entry[$uicols['name'][$k]];
+                                                               }
+                                                       }
+                                               }
+                                               if($lookup && 
$k==($count_uicols_name - 2))
+                                               
$content[$j]['row'][$k]['lookup_action']                        = 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiworkorder.edit&workorder_id='
 . $workorder_entry['workorder_id']);
+                                       }
+                                       if(!$lookup)
+                                       {
+                                               if ($this->acl_read && 
$this->bocommon->check_perms($workorder_entry['grants'],PHPGW_ACL_READ))
+                                               if($this->acl_read)
+                                               {
+                                                       
$content[$j]['row'][$k]['statustext']                   = lang('view the 
workorder');
+                                                       
$content[$j]['row'][$k]['text']                                 = lang('view');
+                                                       
$content[$j]['row'][$k]['link']                                 = 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiworkorder.view&id='
 . $workorder_entry['workorder_id']);
+                                                       $k++;
+                                               }
+                                               else
+                                               {
+                                                       
$content[$j]['row'][$k++]['link']='dummy';
+                                               }
+
+                                               if ($this->acl_edit && 
$this->bocommon->check_perms($workorder_entry['grants'],PHPGW_ACL_EDIT))
+                                               {
+                                                       
$content[$j]['row'][$k]['statustext']                   = lang('edit the 
workorder');
+                                                       
$content[$j]['row'][$k]['text']                                 = lang('edit');
+                                                       
$content[$j]['row'][$k]['link']                                 = 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiworkorder.edit&id='
 . $workorder_entry['workorder_id']);
+                                                       $k++;
+
+                                                       
$content[$j]['row'][$k]['statustext']                   = lang('calculate the 
workorder');
+                                                       
$content[$j]['row'][$k]['text']                                 = 
lang('calculate');
+                                                       
$content[$j]['row'][$k]['link']                                 = 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiwo_hour.index&workorder_id='
 . $workorder_entry['workorder_id']);
+                                                       $k++;
+                                               }
+                                               else
+                                               {
+                                                       
$content[$j]['row'][$k++]['link']='dummy';
+                                                       
$content[$j]['row'][$k++]['link']='dummy';
+                                               }
+
+                                               if ($this->acl_delete && 
$this->bocommon->check_perms($workorder_entry['grants'],PHPGW_ACL_DELETE))
+                                               {
+                                                       
$content[$j]['row'][$k]['statustext']                   = lang('delete the 
workorder');
+                                                       
$content[$j]['row'][$k]['text']                                 = 
lang('delete');
+                                                       
$content[$j]['row'][$k]['link']                                 = 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiworkorder.delete&id='
 . $workorder_entry['workorder_id']);
+                                                       $k++;
+                                               }
+                                               else
+                                               {
+                                                       
$content[$j]['row'][$k++]['link']='dummy';
+                                               }
+                                       }
+                                       $j++;
+                               }
+                       }
+
+                       $count_uicols_descr=count($uicols['descr']);
+                       for ($i=0;$i<$count_uicols_descr;$i++)
+                       {
+                               if($uicols['input_type'][$i]!='hidden')
+                               {
+                                       $table_header[$i]['header']     = 
$uicols['descr'][$i];
+                                       $table_header[$i]['width']              
= '5%';
+                                       $table_header[$i]['align']              
= 'center';
+                                       if($uicols['name'][$i]=='loc1')
+                                       {
+                                               $table_header[$i]['sort_link']  
=true;
+                                               $table_header[$i]['sort']       
        = $this->bocommon->show_sort_order(array
+                                                                               
(
+                                                                               
        'sort'  => $this->sort,
+                                                                               
        'var'   =>      'fm_location1.loc1',
+                                                                               
        'order' =>      $this->order,
+                                                                               
        'extra'         => array('sid=cookie&op'        => 
$this->currentapp.'.uiworkorder.index',
+                                                                               
                                                        'type_id'       
=>$type_id,
+                                                                               
                                                        'query'         
=>$this->query,
+                                                                               
                                                        'lookup'        
=>$lookup,
+                                                                               
                                                        'district_id'   => 
$this->district_id,
+                                                                               
                                                        'search_vendor' 
=>$this->search_vendor,
+                                                                               
                                                        'cat_id'        
=>$this->cat_id,
+                                                                               
                                                        
'start_date'=>$start_date,
+                                                                               
                                                        'end_date'=>$end_date)
+                                                                               
));
+                                       }
+                                       if($uicols['name'][$i]=='project_id')
+                                       {
+                                               $table_header[$i]['sort_link']  
=true;
+                                               $table_header[$i]['sort']       
        = $this->bocommon->show_sort_order(array
+                                                                               
(
+                                                                               
        'sort'  => $this->sort,
+                                                                               
        'var'   =>      'project_id',
+                                                                               
        'order' =>      $this->order,
+                                                                               
        'extra'         => array('sid=cookie&op'        => 
$this->currentapp.'.uiworkorder.index',
+                                                                               
                                                        'type_id'       
=>$type_id,
+                                                                               
                                                        'query'         
=>$this->query,
+                                                                               
                                                        'lookup'        
=>$lookup,
+                                                                               
                                                        'district_id'   => 
$this->district_id,
+                                                                               
                                                        'search_vendor' 
=>$this->search_vendor,
+                                                                               
                                                        'cat_id'        
=>$this->cat_id,
+                                                                               
                                                        
'start_date'=>$start_date,
+                                                                               
                                                        'end_date'=>$end_date)
+                                                                               
));
+                                       }                                       
if($uicols['name'][$i]=='workorder_id')
+                                       {
+                                               $table_header[$i]['sort_link']  
=true;
+                                               $table_header[$i]['sort']       
        = $this->bocommon->show_sort_order(array
+                                                                               
(
+                                                                               
        'sort'  => $this->sort,
+                                                                               
        'var'   =>      'workorder_id',
+                                                                               
        'order' =>      $this->order,
+                                                                               
        'extra'         => array('sid=cookie&op'        => 
$this->currentapp.'.uiworkorder.index',
+                                                                               
                                                        'type_id'       
=>$type_id,
+                                                                               
                                                        'query'         
=>$this->query,
+                                                                               
                                                        'lookup'        
=>$lookup,
+                                                                               
                                                        'district_id'   => 
$this->district_id,
+                                                                               
                                                        'search_vendor' 
=>$this->search_vendor,
+                                                                               
                                                        'cat_id'        
=>$this->cat_id,
+                                                                               
                                                        
'start_date'=>$start_date,
+                                                                               
                                                        'end_date'=>$end_date)
+                                                                               
));
+                                       }
+                                       if($uicols['name'][$i]=='address')
+                                       {
+                                               $table_header[$i]['sort_link']  
=true;
+                                               $table_header[$i]['sort']       
        = $this->bocommon->show_sort_order(array
+                                                                               
(
+                                                                               
        'sort'  => $this->sort,
+                                                                               
        'var'   =>      'address',
+                                                                               
        'order' =>      $this->order,
+                                                                               
        'extra'         => array('sid=cookie&op'        => 
$this->currentapp.'.uiworkorder.index',
+                                                                               
                                                        'type_id'       
=>$type_id,
+                                                                               
                                                        'query'         
=>$this->query,
+                                                                               
                                                        'lookup'        
=>$lookup,
+                                                                               
                                                        'district_id'   => 
$this->district_id,
+                                                                               
                                                        'search_vendor' 
=>$this->search_vendor,
+                                                                               
                                                        'cat_id'        
=>$this->cat_id,
+                                                                               
                                                        
'start_date'=>$start_date,
+                                                                               
                                                        'end_date'=>$end_date)
+                                                                               
));
+                                       }
+
+                               }
+                       }
+
+                       if(!$lookup)
+                       {
+                               if($this->acl_read)
+                               {
+                                       $table_header[$i]['width']              
        = '5%';
+                                       $table_header[$i]['align']              
        = 'center';
+                                       $table_header[$i]['header']             
        = lang('view');
+                                       $i++;
+                               }
+                               if($this->acl_edit)
+                               {
+                                       $table_header[$i]['width']              
        = '5%';
+                                       $table_header[$i]['align']              
        = 'center';
+                                       $table_header[$i]['header']             
        = lang('edit');
+                                       $i++;
+
+                                       $table_header[$i]['width']              
        = '5%';
+                                       $table_header[$i]['align']              
        = 'center';
+                                       $table_header[$i]['header']             
        = lang('calculate');
+                                       $i++;
+                               }
+                               if($this->acl_delete)
+                               {
+                                       $table_header[$i]['width']              
        = '5%';
+                                       $table_header[$i]['align']              
        = 'center';
+                                       $table_header[$i]['header']             
        = lang('delete');
+                                       $i++;
+                               }
+                       }
+                       else
+                       {
+                               $table_header[$i]['width']                      
= '5%';
+                               $table_header[$i]['align']                      
= 'center';
+                               $table_header[$i]['header']             = 
lang('select');
+                       }
+
+//html_print_r($content);
+                       if($this->acl_add)
+                       {
+                               $table_add[] = array
+                               (
+                                       'lang_add'                              
=> lang('add'),
+                                       'lang_add_statustext'   => lang('add a 
workorder'),
+                                       'add_action'                    => 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiworkorder.add')
+                               );
+                       }
+
+                       $link_data = array
+                       (
+                               'sid=cookie&op' => 
$this->currentapp.'.uiworkorder.index',
+                                               'sort'                  
=>$this->sort,
+                                               'order'                 
=>$this->order,
+                                               'cat_id'                
=>$this->cat_id,
+                                               'district_id'   
=>$this->district_id,
+                                               'status_id'             
=>$this->status_id,
+                                               'filter'                
=>$this->filter,
+                                               'query'                 
=>$this->query,
+                                               'search_vendor' 
=>$this->search_vendor,
+                                               'start_date'    =>$start_date,
+                                               'end_date'              
=>$end_date
+                       );
+
+                       $link_date_search                                       
= 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiproject.date_search');
+
+                       $link_excel = array
+                       (
+                               'sid=cookie&op' => 
$this->currentapp.'.uiworkorder.excel',
+                                               'sort'                  
=>$this->sort,
+                                               'order'                 
=>$this->order,
+                                               'cat_id'                
=>$this->cat_id,
+                                               'district_id'   
=>$this->district_id,
+                                               'status_id'             
=>$this->status_id,
+                                               'filter'                
=>$this->filter,
+                                               'query'                 
=>$this->query,
+                                               'search_vendor' 
=>$this->search_vendor,
+                                               'start_date'    =>$start_date,
+                                               'end_date'              
=>$end_date,
+                                               'start' =>$this->start
+                       );
+
+                       $data = array
+                       (
+                               'lang_excel'                            => 
'excel',
+                               'link_excel'                            => 
$this->bocommon->link('/index.php',$link_excel),
+                               'lang_excel_help'                       => 
lang('Download table to MS Excel'),
+
+                               'start_date'                            
=>$start_date,
+                               'end_date'                                      
=>$end_date,
+                               'lang_none'                                     
=>lang('None'),
+                               'lang_date_search'                      => 
lang('Date search'),
+                               'lang_date_search_help'         => lang('Narrow 
the search by dates'),
+                               'link_date_search'                      => 
$link_date_search,
+                               'overlib_source'                        => 
'./'.$this->currentapp.'/inc/overlib.js',
+
+                               'link_history'                                  
=> 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiworkorder.index'),
+                               'lang_history_statustext'               => 
lang('search for history at this location'),
+                               'links'                                         
        => $links,
+                               'allow_allrows'                                 
=> false,
+                               'start_record'                                  
=> $this->start,
+                               'record_limit'                                  
=> 15, //$GLOBALS['phpgw_info']['user']['preferences']['common']['maxmatchs'],
+                               'num_records'                                   
=> count($workorder_list),
+                               'all_records'                                   
=> $this->bo->total_records,
+                               'link_url'                                      
        => $this->bocommon->link('/index.php',$link_data),
+                               'img_path'                                      
        => 
dirname($GLOBALS['HTTP_SERVER_VARS']['PHP_SELF']).'/api/skins/default/images',
+                               'lang_no_cat'                                   
=> lang('no category'),
+                               'lang_cat_statustext'                   => 
lang('Select the category the workorder belongs to. To do not use a category 
select NO CATEGORY'),
+                               'select_name'                                   
=> 'cat_id',
+                               'cat_list'                                      
        => $this->bo->select_category_workorder_list('filter',$this->cat_id),
+                               'select_action'                                 
=> $this->bocommon->link('/index.php',$link_data),
+
+                               'lang_status_statustext'                => 
lang('Select the status the agreement belongs to. To do not use a category 
select NO STATUS'),
+                               'status_name'                                   
=> 'status_id',
+                               'lang_no_status'                                
=> lang('No status'),
+                               'status_list'                                   
=> $this->bo->select_status_list('filter',$this->status_id),
+
+                               'lang_user_statustext'                  => 
lang('Select the user the workorder belongs to. To do not use a category select 
NO USER'),
+                               'select_user_name'                              
=> 'filter',
+                               'lang_no_user'                                  
=> lang('No user'),
+                               'user_list'                                     
        => 
$this->bocommon->get_user_list_right2('filter',4,$this->filter,$this->acl2_location,array('all'),$default=$this->account),
+
+                               'lang_searchvendor_statustext'  => lang('Enter 
the vendor name to search for'),
+                               'lang_searchfield_statustext'   => lang('Enter 
the search string. To show all entries, empty this field and press the SUBMIT 
button again'),
+                               'lang_searchbutton_statustext'  => lang('Submit 
the search string'),
+                               'query'                                         
        => $this->query,
+                               'search_vendor'                                 
=> $this->search_vendor,
+                               'lang_search'                                   
=> lang('search'),
+                               'table_header'                                  
=> $table_header,
+                               'values'                                        
        => $content,
+                               'table_add'                                     
        => $table_add
+                       );
+
+                       $appname                                                
= lang('Workorder');
+                       $function_msg                                   = 
lang('list workorder');
+
+                       $GLOBALS['phpgw_info']['flags']['app_header'] = 
lang($this->currentapp) . ' - ' . $appname . ': ' . $function_msg;
+                       //$this->save_sessiondata();
+                       return array('list_workorder' => $data);
+               }
+
+               function edit()
+               {
+                       if(!$this->acl_add && !$this->acl_edit)
+                       {
+                               
$this->bocommon->redirect_link('/index.php','sid=cookie&op='.$this->currentapp.'.uilocation.stop&perm=2&acl_location='
 . $this->acl2_location);
+                       }
+                       $boproject                      = 
CreateObject($this->currentapp.'_boproject');
+                       $bolocation                     = 
CreateObject($this->currentapp.'_bolocation');
+                       $config                         = 
CreateObject('phpgwapi_config');
+                       $id                             = 
get_var('id',array('POST','GET'));
+                       $project_id             = 
get_var('project_id',array('POST','GET'));
+                       $values                         = 
get_var('values',array('POST'));
+
+                       $this->bocommon->xsl_add_file(array('workorder'));
+
+                       $values['vendor_id']            = 
get_var('vendor_id',array('POST'));
+                       $values['vendor_name']          = 
get_var('vendor_name',array('POST'));
+                       $values['b_account_id']         = 
get_var('b_account_id',array('POST'));
+                       $values['b_account_name']       = 
get_var('b_account_name',array('POST'));
+
+
+                       $values['start_date']           = 
get_var('start_date',array('POST'));
+                       $values['end_date']                     = 
get_var('end_date',array('POST'));
+
+                       $config->read_repository();
+
+                       if ($values['save'])
+                       {
+                               if(!$values['title'])
+                               {
+                                       
$receipt['error'][]=array('msg'=>lang('Please enter a workorder title !'));
+                                       $error_id=true;
+                               }
+                               if(!$values['project_id'])
+                               {
+                                       
$receipt['error'][]=array('msg'=>lang('Please select a valid project !'));
+                                       $error_id=true;
+                               }
+
+                               if(!$values['status'])
+                               {
+                                       
$receipt['error'][]=array('msg'=>lang('Please select a status !'));
+                               }
+                               if(!$values['b_account_id'])
+                               {
+                                       
$receipt['error'][]=array('msg'=>lang('Please select a budget account !'));
+                               }
+
+                               if($id)
+                               {
+                                       $values['workorder_id']=$id;
+                                       $action='edit';
+                               }
+
+                               if(!$receipt['error'])
+                               {
+                                       if(!$id)
+                                       {
+                                               
$values['workorder_id']=$this->bo->next_id();
+                                               $id     = 
$values['workorder_id'];
+                                       }
+                                       if($values['copy_workorder'])
+                                       {
+                                               $action='add';
+                                               $values['workorder_id'] = 
$this->bo->next_id();
+                                               $id     = 
$values['workorder_id'];
+                                       }
+                                       $receipt = 
$this->bo->save($values,$action);
+                                       $id = $values['workorder_id'];
+                                       $function_msg = lang('Edit Workorder');
+
+                                       if ($values['approval'] && 
$values['mail_address'])
+                                       {
+                                               
$coordinator_name=$GLOBALS['phpgw_info']['user']['fullname'];
+                                               
$coordinator_email=$GLOBALS['phpgw_info']['user']['preferences'][$this->currentapp]['email'];
+                                               $headers = "Return-Path: <". 
$coordinator_email .">\r\n";
+                                               $headers .= "From: " . 
$coordinator_name . "<" . $coordinator_email .">\r\n";
+                                               $headers .= "Bcc: " . 
$coordinator_name . "<" . $coordinator_email .">\r\n";
+                                               $headers .= "Content-type: 
text/plain; charset=iso-8859-1\r\n";
+
+                                               $subject = lang(Approval).": ". 
$values['workorder_id'];
+                                               $message = lang('Workorder %1 
needs approval',$values['workorder_id']);
+
+                                               $mail_method= 
$config->config_data['fmwrkorder_mail'];
+                                               if ($mail_method=='smtp'):
+                                               {
+                                                       $bcc = 
$coordinator_email;
+                                                       $send = 
CreateObject('phpgwapi_send');
+                                                       $rcpt = 
$send->msg('email', $values['mail_address'], $subject, stripslashes($message), 
'', $cc, $bcc, $coordinator_email, $coordinator_name, 'plain');
+                                               }
+                                               elseif 
($mail_method=='sendmail'):
+                                               {
+                                                       
$rcpt=mail($values['mail_address'],$subject,$message, $headers);
+                                               }
+                                               else:
+                                               {
+                                                       
$receipt['error'][]=array('msg'=>lang('Mailing method is not chosen! (admin 
section)'));
+                                               }
+                                               endif;
+                                       }
+
+                                       if($rcpt)
+                                       {
+                                               
$receipt['message'][]=array('msg'=>lang('%1 is 
notified',$values['mail_address']));
+                                       }
+                               }
+                       }
+
+                       if(!$receipt['error'])
+                       {
+                               if($id)
+                               {
+                                       $values         = 
$this->bo->read_single($id);
+                               }
+                               if($project_id && !$values['project_id'])
+                               {
+                                       $values['project_id']=$project_id;
+                               }
+                               $project        = 
$boproject->read_single_mini($values['project_id']);
+
+                               if 
(!$this->bocommon->check_perms($project['grants'],PHPGW_ACL_EDIT))
+                               {
+                                       
$receipt['error'][]=array('msg'=>lang('You have no edit right for this 
project'));
+                                       
$this->fm_session->appsession('receipt',$this->currentapp,$receipt);
+                                       
$this->bocommon->redirect_link('/index.php','sid=cookie&op='.$this->currentapp.'.uiworkorder.view&id='
 . $id);
+                               }
+
+                               if( $project['key_fetch'] && 
!$values['key_fetch'])
+                               {
+                                       
$values['key_fetch']=$project['key_fetch'];
+                               }
+
+                               if( $project['key_deliver'] && 
!$values['key_deliver'])
+                               {
+                                       
$values['key_deliver']=$project['key_deliver'];
+                               }
+                               if( $project['charge_tenant'] && 
!$values['workorder_id'])
+                               {
+                                       
$values['charge_tenant']=$project['charge_tenant'];
+                               }
+                               if( $project['start_date'] && 
!$values['start_date'])
+                               {
+                                       
$values['start_date']=$project['start_date'];
+                               }
+                               if( $project['end_date'] && 
!$values['end_date'])
+                               {
+                                       
$values['end_date']=$project['end_date'];
+                               }
+                               if( $project['name'] && !$values['title'])
+                               {
+                                       $values['title']=$project['name'];
+                               }
+                               if( $project['descr'] && !$values['descr'])
+                               {
+                                       $values['descr']=$project['descr'];
+                               }
+                               if( $project['status'] && !$values['status'])
+                               {
+                                       $values['status']=$project['status'];
+                               }
+                       }
+
+                       if($id)
+                       {
+                               $record_history = 
$this->bo->read_record_history($id);
+                       }
+
+//html_print_r($hour_data);
+                       $table_header_history[] = array
+                       (
+                               'lang_date'                     => lang('Date'),
+                               'lang_user'                     => lang('User'),
+                               'lang_action'           => lang('Action'),
+                               'lang_new_value'        => lang('New value')
+                       );
+
+                       $table_header_workorder_budget[] = array
+                       (
+                               'lang_workorder_id'     => lang('Workorder'),
+                               'lang_sum'      => lang('Sum')
+                       );
+
+                       if ($id)
+                       {
+                               $function_msg = lang('Edit Workorder');
+                       }
+                       else
+                       {
+                               $function_msg = lang('Add Workorder');
+                       }
+
+                       if ($values['cat_id'])
+                       {
+                               $this->cat_id = $values['cat_id'];
+                       }
+
+
+                       $location_data=$bolocation->initiate_ui_location(array(
+                                               'values'                => 
$project['location_data'],
+                                               'type_id'               => 
count(explode('-',$project['location_data']['location_code'])),
+                                               'no_link'               => 
False, // disable lookup links for location type less than type_id
+                                               'tenant'                => 
$project['location_data']['tenant_id'],
+                                               'lookup_type'   => 'view'
+                                               ));
+
+                       
$vendor_data=$this->bocommon->initiate_ui_vendorlookup(array(
+                                               'vendor_id'             => 
$values['vendor_id'],
+                                               'vendor_name'   => 
$values['vendor_name']));
+
+                       
$b_account_data=$this->bocommon->initiate_ui_budget_account_lookup(array(
+                                               'b_account_id'          => 
$values['b_account_id'],
+                                               'b_account_name'        => 
$values['b_account_name']));
+
+
+                       $link_data = array
+                       (
+                               'sid=cookie&op' => 
$this->currentapp.'.uiworkorder.edit',
+                               'id'                    => $id
+                       );
+
+                       $dateformat = 
strtolower($GLOBALS['phpgw_info']['user']['preferences']['common']['dateformat']);
+                       $sep = '/';
+                       $dlarr[strpos($dateformat,'y')] = 'yyyy';
+                       $dlarr[strpos($dateformat,'m')] = 'MM';
+                       $dlarr[strpos($dateformat,'d')] = 'DD';
+                       ksort($dlarr);
+
+                       $dateformat= (implode($sep,$dlarr));
+
+
+                       
$supervisor_id=$GLOBALS['phpgw_info']['user']['preferences'][$this->currentapp]['approval_from'];
+
+                       $need_approval = 
$config->config_data['workorder_approval'];
+
+                       if ($supervisor_id && ($need_approval=='yes'))
+                       {
+                               $prefs = 
$this->bocommon->create_preferences($this->currentapp,$supervisor_id);
+                               $supervisor_email = $prefs['email'];
+                       }
+
+                       
$project_status=$GLOBALS['phpgw_info']['user']['preferences'][$this->currentapp]['project_status'];
+                       if(!$values['status'])
+                       {
+                               $values['status']=$project_status;
+                       }
+
+                       $cal_info       = $this->bocommon->jscalendar();
+                       $jsDateFormat=$cal_info['jsDateFormat'];
+
+                       $msgbox_data = $this->bocommon->msgbox_data($receipt);
+
+                       $data = array
+                       (
+                               'msgbox_data'                                   
=> $GLOBALS['phpgw']->common->msgbox($msgbox_data),
+                               'calculate_action'                              
=> 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiwo_hour.index'),
+                               'lang_calculate'                                
=> lang('Calculate Workorder'),
+                               'lang_calculate_statustext'             => 
lang('Calculate workorder by adding items from vendors prizebook or adding 
general hours'),
+
+                               'send_action'                                   
=> 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiwo_hour.view&from=index'),
+                               'lang_send'                                     
        => lang('Send Workorder'),
+                               'lang_send_statustext'                  => 
lang('send this workorder to vendor'),
+
+                               'project_link'                                  
=> 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiproject.edit'),
+                               'b_account_data'                                
=> $b_account_data,
+                               'table_header_workorder_budget' => 
$table_header_workorder_budget,
+                               'lang_no_workorders'                    => 
lang('No workorder bugdet'),
+                               'workorder_link'                                
=> 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiworkorder.w_edit'),
+                               'record_history'                                
=> $record_history,
+                               'table_header_history'                  => 
$table_header_history,
+                               'lang_history'                                  
=> lang('History'),
+                               'lang_no_history'                               
=> lang('No history'),
+
+                               'jsDateFormat'                                  
=> $jsDateFormat,
+                               'date_img'                                      
        => $cal_info['img'],
+                               'lang_datetitle'                                
=> lang('Select date'),
+                               'calendar_setup_start'                  => 
"Calendar.setup({inputField  : 'start_date',ifFormat  : '" . $jsDateFormat . 
"',button : 'start_date-trigger'});",
+                               'calendar_setup_end'                    => 
"Calendar.setup({inputField  : 'end_date',ifFormat  : '" . $jsDateFormat . 
"',button : 'end_date-trigger'});",
+
+                               'lang_start_date_statustext'    => lang('Select 
the estimated end date for the Project'),
+                               'lang_start_date'                               
=> lang('Workorder start date'),
+                               'value_start_date'                              
=> $values['start_date'],
+
+                               'lang_end_date_statustext'              => 
lang('Select the estimated end date for the Project'),
+                               'lang_end_date'                                 
=> lang('Workorder end date'),
+                               'value_end_date'                                
=> $values['end_date'],
+
+                               'lang_copy_workorder'                   => 
lang('Copy workorder ?'),
+                               'lang_copy_workorder_statustext'        => 
lang('Choose Copy Workorder to copy this workorder to a new workorder'),
+
+                               'lang_charge_tenant'                    => 
lang('Charge tenant'),
+                               'lang_charge_tenant_statustext' => lang('Choose 
charge tenant if the tenant i to pay for this project'),
+                               'charge_tenant'                                 
=> $values['charge_tenant'],
+
+                               'lang_power_meter'                              
=> lang('Power meter'),
+                               'lang_power_meter_statustext'   => lang('Enter 
the power_meter'),
+                               'value_power_meter'                             
=> $project['power_meter'],
+
+                               'lang_addition_rs'                              
=> lang('Rig addition'),
+                               'lang_addition_rs_statustext'   => lang('Enter 
any round sum addition per order'),
+                               'value_addition_rs'                             
=> $values['addition_rs'],
+
+                               'lang_addition_percentage'                      
=> lang('Percentage addition'),
+                               'lang_addition_percentage_statustext'   => 
lang('Enter any persentage addition per unit'),
+                               'value_addition_percentage'                     
        => $values['addition_percentage'],
+
+                               'lang_budget'                                   
=> lang('Budget'),
+                               'value_budget'                                  
=> $values['budget'],
+                               'lang_budget_statustext'                => 
lang('Enter the budget'),
+
+                               'lang_incl_tax'                                 
=> lang('incl tax'),
+                               'lang_calculation'                              
=> lang('Calculation'),
+                               'value_calculation'                             
=> $values['calculation'],
+
+                               'vendor_data'                                   
=> $vendor_data,
+                               'location_data'                                 
=> $location_data,
+                               'location_type'                                 
=> 'view',
+                               'form_action'                                   
=> $this->bocommon->link('/index.php',$link_data),
+                               'done_action'                                   
=> 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiworkorder.index'),
+                               'lang_year'                                     
        => lang('Year'),
+                               'lang_category'                                 
=> lang('category'),
+                               'lang_save'                                     
        => lang('save'),
+                               'lang_done'                                     
        => lang('done'),
+                               'lang_title'                                    
=> lang('Title'),
+                               'value_title'                                   
=> $values['title'],
+                               'lang_project_name'                             
=> lang('Project name'),
+                               'value_project_name'                    => 
$project['name'],
+
+                               'lang_project_id'                               
=> lang('Project ID'),
+                               'value_project_id'                              
=> $values['project_id'],
+
+                               'lang_workorder_id'                             
=> lang('Workorder ID'),
+                               'value_workorder_id'                    => 
$values['workorder_id'],
+
+                               'lang_title_statustext'                 => 
lang('Enter Workorder title'),
+
+                               'lang_other_branch'                             
        => lang('Other branch'),
+                               'lang_other_branch_statustext'          => 
lang('Enter other branch if not found in the list'),
+                               'value_other_branch'                            
=> $project['other_branch'],
+
+                               'lang_descr_statustext'                 => 
lang('Enter a short description of the workorder'),
+                               'lang_descr'                                    
=> lang('Description'),
+                               'value_descr'                                   
=> $values['descr'],
+                               'lang_done_statustext'                  => 
lang('Back to the list'),
+                               'lang_save_statustext'                  => 
lang('Save the workorder'),
+                               'lang_no_cat'                                   
=> lang('Select category'),
+                               'lang_cat_statustext'                   => 
lang('Select the category the project belongs to. To do not use a category 
select NO CATEGORY'),
+                               'select_name'                                   
=> 'values[cat_id]',
+                               'value_cat_id'                                  
=> $values['cat_id'],
+                               'cat_list'                                      
        => 
$this->bo->select_category_workorder_list('select',$project['cat_id']),
+
+                               'sum_workorder_budget'                  => 
$values['sum_workorder_budget'],
+                               'workorder_budget'                              
=> $values['workorder_budget'],
+
+                               'lang_coordinator'                              
=> lang('Coordinator'),
+                               'lang_sum'                                      
        => lang('Sum'),
+                               'select_user_name'                              
=> 'values[coordinator]',
+                               'user_list'                                     
        => $this->bocommon->get_user_list('select',$project['coordinator']),
+
+                               'status_list'                                   
=> $this->bo->select_status_list('select',$values['status']),
+                               'select_status_name'                    => 
'values[status]',
+                               'lang_no_status'                                
=> lang('Select status'),
+                               'lang_status'                                   
=> lang('Status'),
+                               'lang_status_statustext'                => 
lang('What is the current status of this workorder ?'),
+
+                               'branch_list'                                   
=> $boproject->select_branch_p_list($project['project_id']),
+                               'lang_branch'                                   
=> lang('branch'),
+                               'lang_branch_statustext'                => 
lang('Select the branches for this project'),
+
+                               'key_responsible_list'                          
=> $boproject->select_branch_list($project['key_responsible']),
+                               'lang_key_responsible'                          
=> lang('key responsible'),
+
+                               'key_fetch_list'                                
        => $this->bo->select_key_location_list($values['key_fetch']),
+                               'lang_no_key_fetch'                             
        => lang('Where to fetch the key'),
+                               'lang_key_fetch'                                
        => lang('key fetch location'),
+                               'lang_key_fetch_statustext'                     
=> lang('Select where to fetch the key'),
+
+                               'key_deliver_list'                              
        => $this->bo->select_key_location_list($values['key_deliver']),
+                               'lang_no_key_deliver'                           
=> lang('Where to deliver the key'),
+                               'lang_key_deliver'                              
        => lang('key deliver location'),
+                               'lang_key_deliver_statustext'           => 
lang('Select where to deliver the key'),
+
+                               'need_approval'                                 
        => $need_approval,
+                               'lang_ask_approval'                             
        => lang('Ask for approval'),
+                               'lang_ask_approval_statustext'          => 
lang('Check this to send a mail to your supervisor for approval'),
+                               'value_approval_mail_address'           => 
$supervisor_email,
+                               'currency'                                      
        => $GLOBALS['phpgw_info']['user']['preferences']['common']['currency']
+                       );
+
+                       $appname                                                
= lang('Workorder');
+
+                       $GLOBALS['phpgw_info']['flags']['app_header'] = 
lang($this->currentapp) . ' - ' . $appname . ': ' . $function_msg;
+
+                       return array('edit' => $data);
+               }
+
+               function add()
+               {
+                       if(!$this->acl_edit)
+                       {
+                               
$this->bocommon->redirect_link('/index.php','sid=cookie&op='.$this->currentapp.'.uilocation.stop&perm=2&acl_location='
 . $this->acl2_location);
+                       }
+
+                       $link_data = array
+                       (
+                               'sid=cookie&op' => 
$this->currentapp.'.uiworkorder.index'
+                       );
+
+                       $this->bocommon->xsl_add_file(array('workorder',
+                                                                               
'menu',
+                                                                               
'search_field'));
+
+                       $data = array
+                       (
+                               'done_action'                   => 
$this->bocommon->link('/index.php',$link_data),
+                               'add_action'                    => 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiproject.edit'),
+                               'search_action'                 => 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiproject.index&lookup=true'),
+
+                               'lang_done_statustext'                  => 
lang('Back to the workorder list'),
+                               'lang_add_statustext'                   => 
lang('Adds a new project - then a new workorder'),
+                               'lang_search_statustext'                => 
lang('Adds a new workorder to an existing project'),
+
+                               'lang_done'                             => 
lang('Done'),
+                               'lang_add'                              => 
lang('Add'),
+                               'lang_search'                   => 
lang('Search')
+                       );
+
+                       $appname                                                
= lang('Workorder');
+                       $function_msg                                   = 
lang('Add workorder');
+
+                       $GLOBALS['phpgw_info']['flags']['app_header'] = 
lang($this->currentapp) . ' - ' . $appname . ': ' . $function_msg;
+                       return array('add' => $data);
+               }
+
+               function delete()
+               {
+                       if(!$this->acl_delete)
+                       {
+                               
$this->bocommon->redirect_link('/index.php','sid=cookie&op='.$this->currentapp.'.uilocation.stop&perm=8&acl_location='
 . $this->acl2_location);
+                       }
+                       $id = get_var('id',array('POST','GET'));
+                       $confirm        = get_var('confirm',array('POST'));
+
+                       $link_data = array
+                       (
+                               'sid=cookie&op' => 
$this->currentapp.'.uiworkorder.index'
+                       );
+
+                       if (get_var('confirm',array('POST')))
+                       {
+                               $this->bo->delete($id);
+                               Header('Location: ' . 
$this->bocommon->link('/index.php',$link_data));
+                       }
+
+                       $this->bocommon->xsl_add_file(array('app_delete'));
+
+                       $data = array
+                       (
+                               'done_action'                   => 
$this->bocommon->link('/index.php',$link_data),
+                               'delete_action'                 => 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiworkorder.delete&id='
 . $id),
+                               'lang_confirm_msg'              => lang('do you 
really want to delete this entry'),
+                               'lang_yes'                              => 
lang('yes'),
+                               'lang_yes_statustext'   => lang('Delete the 
entry'),
+                               'lang_no_statustext'    => lang('Back to the 
list'),
+                               'lang_no'                               => 
lang('no')
+                       );
+
+                       $appname                                                
= lang('workorder');
+                       $function_msg                                   = 
lang('delete workorder');
+
+                       $GLOBALS['phpgw_info']['flags']['app_header'] = 
lang($this->currentapp) . ' - ' . $appname . ': ' . $function_msg;
+                       return array('delete' => $data);
+               }
+
+               function view()
+               {
+                       if(!$this->acl_read)
+                       {
+                               
$this->bocommon->redirect_link('/index.php','sid=cookie&op='.$this->currentapp.'.uilocation.stop&perm=1&acl_location='
 . $this->acl2_location);
+                       }
+
+                       $boproject                      = 
CreateObject($this->currentapp.'_boproject');
+                       $bolocation                     = 
CreateObject($this->currentapp.'_bolocation');
+
+                       $receipt = 
$this->fm_session->appsession('receipt',$this->currentapp);
+                       
$this->fm_session->appsession('receipt',$this->currentapp,'');
+
+                       $id     = get_var('id',array('POST','GET'));
+
+                       
$this->bocommon->xsl_add_file(array('workorder','hour_data_view'));
+
+                       $uiwo_hour      = 
CreateObject($this->currentapp.'_uiwo_hour');
+                       $hour_data      = 
$uiwo_hour->common_data($id,$view=True);
+                       $values         = $this->bo->read_single($id);
+                       $project        = 
$boproject->read_single($values['project_id']);
+                       $record_history = $this->bo->read_record_history($id);
+
+                       $table_header_history[] = array
+                       (
+                               'lang_date'                     => lang('Date'),
+                               'lang_user'                     => lang('User'),
+                               'lang_action'           => lang('Action'),
+                               'lang_new_value'        => lang('New value')
+                       );
+
+                       $table_header_workorder_budget[] = array
+                       (
+                               'lang_workorder_id'     => lang('Workorder'),
+                               'lang_sum'      => lang('Sum')
+                       );
+
+                       $function_msg = lang('View Workorder');
+
+                       $location_data=$bolocation->initiate_ui_location(array(
+                                               'values'                => 
$project['location_data'],
+                                               'type_id'               => 
count(explode('-',$project['location_data']['location_code'])),
+                                               'no_link'               => 
False, // disable lookup links for location type less than type_id
+                                               'tenant'                => 
$project['location_data']['tenant_id'],
+                                               'lookup_type'   => 'view'
+                                               ));
+
+                       $data = array
+                       (
+                               'project_link'                                  
=> 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiproject.view'),
+                               'table_header_workorder_budget' => 
$table_header_workorder_budget,
+                               'lang_no_workorders'                    => 
lang('No workorder bugdet'),
+                               'workorder_link'                                
=> 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiworkorder.view'),
+                               'record_history'                                
=> $record_history,
+                               'table_header_history'                  => 
$table_header_history,
+                               'lang_history'                                  
=> lang('History'),
+                               'lang_no_history'                               
=> lang('No history'),
+
+                               'lang_project_name'                             
=> lang('Project name'),
+                               'value_project_name'                    => 
$project['name'],
+
+                               'lang_vendor'                                   
=> lang('Vendor'),
+                               'value_vendor_id'                               
=> $values['vendor_id'],
+                               'value_vendor_name'                             
=> $values['vendor_name'],
+
+                               'lang_b_account'                                
=> lang('Budget account'),
+                               'value_b_account_id'                    => 
$values['b_account_id'],
+                               'value_b_account_name'                  => 
$values['b_account_name'],
+
+                               'lang_start_date'                               
=> lang('Project start date'),
+                               'value_start_date'                              
=> $values['start_date'],
+
+                               'lang_end_date'                                 
=> lang('Project end date'),
+                               'value_end_date'                                
=> $values['end_date'],
+
+                               'lang_charge_tenant'                    => 
lang('Charge tenant'),
+                               'charge_tenant'                                 
=> $values['charge_tenant'],
+
+                               'lang_power_meter'                              
=> lang('Power meter'),
+                               'value_power_meter'                             
=> $project['power_meter'],
+
+                               'lang_addition_rs'                              
=> lang('Rig addition'),
+                               'lang_addition_rs_statustext'   => lang('Enter 
any round sum addition per order'),
+                               'value_addition_rs'                             
=> $values['addition_rs'],
+
+                               'lang_addition_percentage'                      
=> lang('Percentage addition'),
+                               'lang_addition_percentage_statustext'   => 
lang('Enter any persentage addition per unit'),
+                               'value_addition_percentage'                     
        => $values['addition_percentage'],
+
+                               'lang_budget'                                   
=> lang('Budget'),
+                               'value_budget'                                  
=> $values['budget'],
+
+                               'location_data'                                 
=> $location_data,
+                               'location_type'                                 
=> 'view',
+                               'done_action'                                   
=> 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiworkorder.index'),
+                               'lang_year'                                     
        => lang('Year'),
+                               'lang_category'                                 
=> lang('category'),
+                               'lang_save'                                     
        => lang('save'),
+                               'lang_done'                                     
        => lang('done'),
+                               'lang_name'                                     
        => lang('Name'),
+
+                               'lang_title'                                    
=> lang('Title'),
+                               'value_title'                                   
=> $values['title'],
+
+                               'lang_project_id'                               
=> lang('Project ID'),
+                               'value_project_id'                              
=> $values['project_id'],
+                               'value_name'                                    
=> $values['name'],
+
+                               'lang_other_branch'                             
        => lang('Other branch'),
+                               'value_other_branch'                            
=> $project['other_branch'],
+
+                               'lang_descr'                                    
=> lang('Description'),
+                               'value_descr'                                   
=> $values['descr'],
+                               'lang_done_statustext'                  => 
lang('Back to the list'),
+                               'cat_list'                                      
        => 
$this->bo->select_category_workorder_list('select',$project['cat_id']),
+
+                               'lang_workorder_id'                             
=> lang('Workorder ID'),
+                               'value_workorder_id'                    => 
$values['workorder_id'],
+
+                               'lang_coordinator'                              
=> lang('Coordinator'),
+                               'lang_sum'                                      
        => lang('Sum'),
+                               'user_list'                                     
        => $this->bocommon->get_user_list('select',$project['coordinator']),
+
+                               'status_list'                                   
=> $this->bo->select_status_list('select',$values['status']),
+                               'lang_no_status'                                
=> lang('Select status'),
+                               'lang_status'                                   
=> lang('Status'),
+
+                               'branch_list'                                   
=> $this->bo->select_branch_p_list($values['project_id']),
+                               'lang_branch'                                   
=> lang('branch'),
+
+                               'key_responsible_list'                  => 
$this->bo->select_branch_list($project['key_responsible']),
+                               'lang_key_responsible'                  => 
lang('key responsible'),
+
+                               'key_fetch_list'                                
=> $this->bo->select_key_location_list($values['key_fetch']),
+                               'lang_key_fetch'                                
=> lang('key fetch location'),
+
+                               'key_deliver_list'                              
=> $this->bo->select_key_location_list($values['key_deliver']),
+                               'lang_key_deliver'                              
=> lang('key deliver location'),
+
+                               'edit_action'                                   
=> 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiworkorder.edit&id='
 . $id),
+                               'lang_edit_statustext'                  => 
lang('Edit this entry workorder'),
+                               'lang_edit'                                     
        => lang('Edit'),
+                               'currency'                                      
        => $GLOBALS['phpgw_info']['user']['preferences']['common']['currency'],
+                               'lang_total_records'                    => 
lang('Total records'),
+                               'total_hours_records'                   => 
$hour_data['total_hours_records'],
+                               'table_header_hour'                             
=> $hour_data['table_header'],
+                               'values_hour'                                   
=> $hour_data['content'],
+                               'table_sum'                                     
        => $hour_data['table_sum']
+                       );
+
+                       $appname                                                
= lang('Workorder');
+
+                       $GLOBALS['phpgw_info']['flags']['app_header'] = 
lang($this->currentapp) . ' - ' . $appname . ': ' . $function_msg;
+                       return array('view' => $data);
+               }
+       }
+?>




reply via email to

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