phpgroupware-cvs
[Top][All Lists]
Advanced

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

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


From: nomail
Subject: [Phpgroupware-cvs] property/class.uiwo_hour.php, 1.1.1.3
Date: Fri, 21 May 2004 16:27:14 -0000

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

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

Log Message:
no message
=====================================================================
Index: property/class.uiwo_hour.php
diff -u property/class.uiwo_hour.php:1.1.1.2 
property/class.uiwo_hour.php:1.1.1.3
--- property/class.uiwo_hour.php:1.1.1.2        Fri Apr 23 20:27:12 2004
+++ property/class.uiwo_hour.php        Fri Apr 23 21:26:42 2004
@@ -1,1636 +1,1636 @@
-<?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_uiwo_hour
-       {
-               var $grants;
-               var $cat_id;
-               var $start;
-               var $query;
-               var $sort;
-               var $order;
-               var $filter;
-               var $currentapp;
-
-               var $public_functions = array
-               (
-                       'index'                 => True,
-                       'tender'                => True,
-                       'view'                  => True,
-                       'template'              => True,
-                       'save_template' => True,
-                       'prizebook'             => True,
-                       'add'                   => True,
-                       'edit'                  => True,
-                       'delete'                => True,
-                       'deviation'             => True,
-                       'edit_deviation'=> True
-               );
-
-               function property_uiwo_hour()
-               {
-                       $GLOBALS['phpgw_info']['flags']['xslt_app'] = True;
-                       $this->currentapp                       = 'property'; 
//$GLOBALS['phpgw_info']['flags']['currentapp'];
-                       $this->create_html                      = 
CreateObject('phpgwapi_xslttemplates');
-                       $this->account                          = 
$GLOBALS['phpgw_data']['user']['id'];
-
-                       $this->bo                                       = 
CreateObject($this->currentapp.'_bowo_hour',True);
-                       $this->boworkorder                      = 
CreateObject($this->currentapp.'_boworkorder');
-                       $this->boproject                        = 
CreateObject($this->currentapp.'_boproject');
-                       $this->bopricebook                      = 
CreateObject($this->currentapp.'_bopricebook');
-
-                       $this->bocommon                         = 
CreateObject($this->currentapp.'_bocommon');
-                       $this->menu                                     = 
CreateObject($this->currentapp.'_menu');
-                       $this->config                           = 
CreateObject('phpgwapi_config');
-                       $this->fm_session       = 
CreateObject($this->currentapp.'_session');
-
-                       $this->config->read_repository();
-
-                       $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->chapter_id                       = 
$this->bo->chapter_id;
-                       $this->allrows                          = 
$this->bo->allrows;
-
-                       $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,
-                               'chapter_id'            => $this->chapter_id,
-                               'allrows'                       => 
$this->allrows
-                       );
-                       $this->bo->save_sessiondata($data);
-               }
-
-               function deviation()
-               {
-                       $workorder_id   = 
get_var('workorder_id',array('POST','GET'));
-                       $hour_id                = 
get_var('hour_id',array('POST','GET'));
-
-                       $this->bocommon->xsl_add_file(array('wo_hour'));
-                       $list = 
$this->bo->read_deviation(array('workorder_id'=>$workorder_id,'hour_id'=>$hour_id));
-
-                       $sum_deviation = 0;
-
-                       if (isset($list) AND is_array($list))
-                       {
-                               $dateformat                                     
        = $GLOBALS['phpgw_info']['user']['preferences']['common']['dateformat'];
-                               foreach($list as $entry)
-                               {
-                                       $sum_deviation = $sum_deviation + 
$entry['amount'];
-
-                                       $entry_date = 
(isset($entry['entry_date'])?$GLOBALS['phpgw']->common->show_date($entry['entry_date'],$dateformat):'');
-
-                                       $content[] = array
-                                       (
-                                               'id'                            
                => $entry['id'],
-                                               'amount'                        
                => $entry['amount'],
-                                               'descr'                         
                => $entry['descr'],
-                                               'entry_date'                    
        => $entry_date,
-                                               'link_edit'                     
                => 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiwo_hour.edit_deviation&workorder_id='
 . $workorder_id . '&hour_id=' . $hour_id . '&id=' . $entry['id']),
-                                               'lang_edit_statustext'          
=> lang('edit the deviation'),
-                                               'text_edit'                     
                => lang('edit'),
-                                               'link_delete'                   
        => 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiwo_hour.delete&workorder_id='
 . $workorder_id . '&hour_id=' . $hour_id . '&deviation_id=' . $entry['id']),
-                                               'lang_delete_statustext'        
=> lang('delete the deviation'),
-                                               'text_delete'                   
        => lang('delete'),
-                                       );
-                               }
-                       }
-
-
-                       $table_header[] = array
-                       (
-                               'lang_id'               => lang('ID'),
-                               'lang_amount'   => lang('amount'),
-                               'lang_descr'    => lang('Descr'),
-                               'lang_date'             => lang('date'),
-                               'lang_edit'             => lang('edit'),
-                               'lang_delete'   => lang('delete')
-                       );
-
-
-                       $link_data = array
-                       (
-                               'sid=cookie&op' => 
$this->currentapp.'.uiwo_hour.edit_deviation',
-                                               'workorder_id'  =>$workorder_id,
-                                               'hour_id'               
=>$hour_id
-                       );
-
-
-                       $data = array
-                       (
-                               'sum_deviation'                                 
=> $sum_deviation,
-                               'table_header_deviation'                => 
$table_header,
-                               'values_deviation'                              
=> $content,
-                               'lang_add'                                      
        => lang('add'),
-                               'lang_add_statustext'                   => 
lang('add a deviation'),
-                               'add_action'                                    
=> $this->bocommon->link('/index.php',$link_data),
-                               'lang_done'                                     
        => lang('done'),
-                               'done_action'                                   
=> 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiwo_hour.index&workorder_id='
 . $workorder_id)
-                       );
-
-                       $appname                                = 
lang('Workorder');
-                       $function_msg                   = lang('list 
deviation');
-
-                       $GLOBALS['phpgw_info']['flags']['app_header'] = 
lang($this->currentapp) . ' - ' . $appname . ': ' . $function_msg;
-                       return array('list_deviation' => $data);
-               }
-
-               function edit_deviation()
-               {
-                       $workorder_id   = 
get_var('workorder_id',array('POST','GET'));
-                       $hour_id                = 
get_var('hour_id',array('POST','GET'));
-                       $id                             = 
get_var('id',array('POST','GET'));
-                       $values                 = 
get_var('values',array('POST','GET'));
-                       $dateformat             = 
$GLOBALS['phpgw_info']['user']['preferences']['common']['dateformat'];
-
-                       $this->bocommon->xsl_add_file(array('wo_hour'));
-
-                       if ($values['save'])
-                       {
-                               $values['workorder_id']=$workorder_id;
-                               $values['hour_id']=$hour_id;
-                               if (!$values['amount'])
-                               {
-                                       $receipt['error'][] = 
array('msg'=>lang('amount not entered!'));
-                               }
-
-                               if($id)
-                               {
-                                       $values['id']=$id;
-                                       $action='edit';
-                               }
-
-                               if (!$receipt['error'])
-                               {
-                                       $receipt = 
$this->bo->save_deviation($values,$action);
-                                       if(!$id)
-                                       {
-                                               $id=$receipt['id'];
-                                       }
-                               }
-                               else
-                               {
-                                       $receipt['error'][] = array('msg'=> 
lang('Status has NOT been saved'));
-                               }
-
-                       }
-
-                       if ($id)
-                       {
-                               $values = 
$this->bo->read_single_deviation(array('workorder_id'=>$workorder_id,'hour_id'=>$hour_id,'id'=>$id));
-                               $function_msg = lang('edit deviation');
-                               $action='edit';
-                       }
-                       else
-                       {
-                               $function_msg = lang('add deviation');
-                               $action='add';
-                       }
-
-                       $link_data = array
-                       (
-                               'sid=cookie&op' => 
$this->currentapp.'.uiwo_hour.edit_deviation',
-                               'entity_id'             => $this->entity_id,
-                               'cat_id'                => $this->cat_id,
-                               'id'                    => $id
-                       );
-
-                       $hour = $this->bo->read_single_hour($hour_id);
-
-//html_print_r($workorder);
-//html_print_r($hour);
-
-                       $msgbox_data = $this->bocommon->msgbox_data($receipt);
-
-                       $entry_date = 
(isset($values['entry_date'])?$GLOBALS['phpgw']->common->show_date($values['entry_date'],$dateformat):'');
-
-                       $data = array
-                       (
-                               'lang_workorder'                                
=> lang('Workorder ID'),
-                               'lang_hour_id'                                  
=> lang('Post'),
-                               'msgbox_data'                                   
=> $GLOBALS['phpgw']->common->msgbox($msgbox_data),
-                               'form_action'                                   
=> $this->bocommon->link('/index.php',$link_data),
-                               'done_action'                                   
=> 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiwo_hour.deviation&workorder_id='
 . $workorder_id . '&hour_id=' . $hour_id),
-                               'lang_id'                                       
        => lang('deviation ID'),
-                               'lang_descr'                                    
=> lang('Descr'),
-                               'lang_save'                                     
        => lang('save'),
-                               'lang_done'                                     
        => lang('done'),
-                               'lang_date'                                     
        => lang('date'),
-                               'value_id'                                      
        => $id,
-                               'value_workorder_id'                    => 
$workorder_id,
-                               'value_hour_id'                                 
=> $hour_id,
-                               'entry_date'                                    
=> $entry_date,
-                               'value_id'                                      
        => $id,
-                               'lang_descr_standardtext'               => 
lang('Enter a description of the deviation'),
-                               'lang_done_standardtext'                => 
lang('Back to the list'),
-                               'lang_save_standardtext'                => 
lang('Save the deviation'),
-                               'lang_amount'                                   
=> lang('amount'),
-                               'value_amount'                                  
=> $values['amount'],
-                               'value_descr'                                   
=> $values['descr']
-                       );
-
-                       $appname                                                
= lang('workorder');
-
-                       $GLOBALS['phpgw_info']['flags']['app_header'] = 
lang($this->currentapp) . ' - ' . $appname . ': ' . $function_msg;
-                       return array('edit_deviation' => $data);
-               }
-
-               function common_data($workorder_id,$view='')
-               {
-
-                       $workorder      = 
$this->boworkorder->read_single($workorder_id);
-/*                     if 
(!$this->bocommon->check_perms($workorder['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='
 . $workorder_id);
-                       }
-*/
-                       $hour_list = $this->bo->read($workorder_id);
-//html_print_r($hour_list);
-                       $grouping_descr_old='';
-
-                       if (isset($hour_list) AND is_array($hour_list))
-                       {
-                               foreach($hour_list as $hour)
-                               {
-                                       $sum_hour       = $sum_hour + 
$hour['cost'];
-                                       $sum_deviation  = $sum_deviation + 
$hour['deviation'];
-
-                                       
if($hour['grouping_descr']!=$grouping_descr_old)
-                                       {
-                                               $new_grouping   = true;
-                                       }
-                                       else
-                                       {
-                                               $new_grouping   = false;
-                                       }
-
-                                       $grouping_descr_old     = 
$hour['grouping_descr'];
-
-                                       if($hour['activity_num'])
-                                       {
-                                               $code   = $hour['activity_num'];
-                                       }
-                                       else
-                                       {
-                                               $code   = 
str_replace("-",$hour['tolerance'],$hour['ns3420_id']);
-                                       }
-
-                                       if($hour['count_deviation'] || $view)
-                                       {
-                                               $deviation=$hour['deviation'];
-                                       }
-                                       else
-                                       {
-                                               $deviation=lang('edit');
-                                       }
-
-                                       $content[] = array
-                                       (
-
-                                               'post'                          
                => sprintf("%02s",$workorder['chapter_id']) . '.' . 
sprintf("%02s",$hour['building_part']) . '.' . 
sprintf("%02s",$hour['grouping_id']) . '.' . sprintf("%03s",$hour['record']),
-                                               'hour_id'                       
                => $hour['hour_id'],
-                                               'activity_num'                  
        => $hour['activity_num'],
-                                               'hours_descr'                   
        => $hour['hours_descr'],
-                                               'activity_descr'                
        => $hour['activity_descr'],
-                                               'new_grouping'                  
        => $new_grouping,
-                                               'grouping_id'                   
        => $hour['grouping_id'],
-                                               'grouping_descr'                
        => $hour['grouping_descr'],
-                                               'ns3420_id'                     
                => $hour['ns3420_id'],
-                                               'code'                          
                => $code,
-                                               'remark'                        
                => $hour['remark'],
-                                               'building_part'                 
        => $hour['building_part'],
-                                               'quantity'                      
                => $hour['quantity'],
-                                               'cost'                          
                => $hour['cost'],
-                                               'unit'                          
                => $hour['unit'],
-                                               'billperae'                     
                => $hour['billperae'],
-                                               'deviation'                     
                => $deviation,
-                                               'result'                        
                => ($hour['deviation']+$hour['cost']),
-                                               'link_deviation'                
        => 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiwo_hour.deviation&workorder_id='
 . $workorder_id . '&hour_id=' . $hour['hour_id']),
-                                               'link_edit'                     
                => 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiwo_hour.edit&workorder_id='
 . $workorder_id . '&hour_id=' . $hour['hour_id']),
-                                               'lang_edit_statustext'          
=> lang('edit/customise this hour'),
-                                               'lang_delete_statustext'        
=> lang('delete this hour'),
-                                               'text_edit'                     
                => lang('edit'),
-                                               'text_delete'                   
        => lang('delete')
-                                       );
-                               }
-                       }
-
-                       
$this->bo->update_deviation(array('workorder_id'=>$workorder_id,'sum_deviation'=>$sum_deviation));
-
-//html_print_r($content);
-
-                       $table_header[] = array
-                       (
-                               'lang_post'             => lang('Post'),
-                               'lang_code'             => lang('Code'),
-                               'lang_descr'    => lang('descr'),
-                               'lang_unit'             => lang('Unit'),
-                               'lang_billperae'        => lang('Bill per 
unit'),
-                               'lang_quantity'         => lang('Quantity'),
-                               'lang_cost'                     => lang('cost'),
-                               'lang_deviation '       => lang('deviation '),
-                               'lang_result'           => lang('result'),
-                               'lang_view'                     => lang('view'),
-                               'lang_edit'                     => lang('edit'),
-                               'lang_delete'           => lang('delete')
-                               );
-
-                       $tax = $this->config->config_data['fm_tax'];
-
-                       $sum_result     = $sum_hour+$sum_deviation;
-
-                       $addition_percentage = $sum_result * 
$workorder['addition_percentage']/100;
-                       $sum_tax        = ($sum_result + $addition_percentage + 
$workorder['addition_rs'])*$tax/100;
-                       $total_sum      = $sum_result + $addition_percentage + 
$workorder['addition_rs'] + $sum_tax;
-
-                       
$this->bo->update_calculation(array('workorder_id'=>$workorder_id,'calculation'=>($sum_result+$addition_percentage
 + $workorder['addition_rs'])));
-
-                       $table_sum[] = array
-                       (
-                               'lang_sum_calculation'                  => 
lang('Sum calculation'),
-                               'value_sum_calculation'                 => 
number_format($sum_hour, 2, ',', ''),
-                               'lang_addition_rs'                              
=> lang('Rig addition'),
-                               'value_addition_rs'                             
=> number_format($workorder['addition_rs'], 2, ',', ''),
-                               'lang_addition_percentage'              => 
lang('Percentage addition'),
-                               'value_addition_percentage'             => 
number_format($addition_percentage, 2, ',', ''),
-                               'lang_sum_tax'                                  
=> lang('Sum tax'),
-                               'value_sum_tax'                                 
=> number_format($sum_tax, 2, ',', ''),
-                               'lang_total_sum'                                
=> lang('Total sum'),
-                               'value_total_sum'                               
=> number_format($total_sum, 2, ',', ''),
-                               'lang_sum_deviation'                    => 
lang('Sum deviation'),
-                               'sum_deviation'                                 
=> number_format($sum_deviation, 2, ',', ''),
-                               'sum_result'                                    
=> number_format($sum_result, 2, ',', '')
-                       );
-
-                       $workorder_data = array(
-                               'link_workorder'                                
=> 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiworkorder.edit&id='
 . $workorder_id),
-                               'lang_vendor_name'                              
=> lang('Vendor'),
-                               'vendor_name'                                   
=> $workorder['vendor_name'],
-                               'vendor_email'                                  
=> $workorder['vendor_email'],
-                               'descr'                                         
        => $workorder['descr'],
-
-                               'lang_workorder_id'                             
=> lang('Workorder ID'),
-                               'workorder_id'                                  
=> $workorder['workorder_id'],
-                               'lang_project_id'                               
=> lang('Project ID'),
-                               'link_project'                                  
=> 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiproject.edit&id='
 . $workorder['project_id']),
-                               'project_id'                                    
=> $workorder['project_id'],
-
-                               'lang_workorder_title'                  => 
lang('Workorder title'),
-                               'workorder_title'                               
=> $workorder['title']
-                               );
-
-
-
-                       $common_data = array(
-                               'content'                               => 
$content,
-                               'total_hours_records'   => count($content),
-                               'table_header'                  => 
$table_header,
-                               'table_sum'                     => $table_sum,
-                               'workorder'                     => $workorder,
-                               'workorder_data'                => 
$workorder_data,
-                               );
-
-                       return $common_data;
-               }
-
-               function save_template()
-               {
-
-                       $this->bocommon->xsl_add_file(array('wo_hour',
-                                                                               
'menu'));
-
-                       $values                 = 
get_var('values',array('POST'));
-                       $workorder_id   = 
get_var('workorder_id',array('POST','GET'));
-
-                       if($values['name'])
-                       {
-                               $receipt        = 
$this->bo->add_template($values,$workorder_id);
-                       }
-
-                       $common_data=$this->common_data($workorder_id);
-
-                       $link_data = array
-                       (
-                               'sid=cookie&op'         => 
$this->currentapp.'.uiwo_hour.index',
-                               'workorder_id'  => $workorder_id
-                       );
-
-                       $msgbox_data = $this->bocommon->msgbox_data($receipt);
-
-                       $data = array
-                       (
-                               'msgbox_data'                                   
=> $GLOBALS['phpgw']->common->msgbox($msgbox_data),
-                               'done_action'                                   
=> $this->bocommon->link('/index.php',$link_data),
-                               'add_action'                                    
=> 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiwo_hour.save_template&workorder_id='
 . $workorder_id),
-
-                               'lang_done_statustext'                  => 
lang('Back to the workorder list'),
-                               'lang_add_statustext'                   => 
lang('Adds this workorders calculation as a template for later use'),
-                               'lang_search_statustext'                => 
lang('Adds a new workorder to an existing project'),
-
-                               'lang_done'                                     
        => lang('Done'),
-                               'lang_add'                                      
        => lang('Add'),
-                               'lang_search'                                   
=> lang('Search'),
-
-                               'lang_name'                                     
=> lang('name'),
-                               'lang_name_statustext'          => lang('Enter 
the name the template'),
-
-                               'lang_descr'                                    
=> lang('Description'),
-                               'lang_descr_statustext'         => lang('Enter 
a short description of this template'),
-
-                               'total_hours_records'                   => 
$common_data['total_hours_records'],
-                               'lang_total_records'                    => 
lang('Total records'),
-                               'table_header_hour'                             
=> $common_data['table_header'],
-                               'values_hour'                                   
=> $common_data['content'],
-                               'workorder_data'                                
=> $common_data['workorder_data']
-                       );
-
-                       $appname                                                
= lang('Workorder');
-                       $function_msg                                   = 
lang('Add template');
-
-                       $GLOBALS['phpgw_info']['flags']['app_header'] = 
lang($this->currentapp) . ' - ' . $appname . ': ' . $function_msg;
-                       return array('add_template' => $data);
-               }
-
-               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('wo_hour',
-                                                                               
'menu'));
-
-                       $delete = get_var('delete',array('POST','GET'));
-                       $hour_id = get_var('hour_id',array('POST','GET'));
-                       $workorder_id = 
get_var('workorder_id',array('POST','GET'));
-                       $links = $this->menu->links();
-
-                       if($delete && $hour_id)
-                       {
-                               $receipt = 
$this->bo->delete($hour_id,$workorder_id);
-                       }
-
-                       $common_data=$this->common_data($workorder_id);
-
-                       $table_add[] = array
-                       (
-                               'lang_add_prizebook'                            
=> lang('Add from prizebook'),
-                               'lang_add_prizebook_statustext'         => 
lang('add items from this vendors prizebook'),
-                               'add_prizebook_action'                          
=> 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiwo_hour.prizebook&workorder_id='
 . $workorder_id),
-
-                               'lang_add_template'                             
        => lang('Add from template'),
-                               'lang_add_template_statustext'          => 
lang('add items from a predefined template'),
-                               'add_template_action'                           
=> 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uitemplate.index&lookup=true&workorder_id='
 . $workorder_id),
-
-                               'lang_add_custom'                               
        => lang('Add custom'),
-                               'lang_add_custom_statustext'            => 
lang('Add single custom line'),
-                               'add_custom_action'                             
        => 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiwo_hour.edit&from=index&workorder_id='
 . $workorder_id),
-
-                               'lang_save_template'                            
=> lang('Save as template'),
-                               'lang_save_template_statustext'         => 
lang('Save this workorder as a template for later use'),
-                               'save_template_action'                          
=> 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiwo_hour.save_template&from=index&workorder_id='
 . $workorder_id),
-
-                               'lang_print_view'                               
        => lang('Print view'),
-                               'lang_print_view_statustext'            => 
lang('View the complete workorder'),
-                               'print_view_action'                             
        => 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiwo_hour.view&from=index&workorder_id='
 . $workorder_id),
-
-                               'lang_view_tender'                              
        => lang('View tender'),
-                               'lang_view_tender_statustext'           => 
lang('View the complete workorder as a tender for bidding'),
-                               'view_tender_action'                            
=> 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiwo_hour.tender&from=index&workorder_id='
 . $workorder_id),
-
-                               'lang_show_cost'                                
        => lang('Show calculated cost'),
-                               'lang_show_cost_statustext'                     
=> lang('Show calculated cost on the printview'),
-
-                               'lang_show_details'                             
        => lang('Show details'),
-                               'lang_show_details_statustext'          => 
lang('Show details'),
-
-                               'lang_mark_draft'                               
        => lang('Mark as DRAFT'),
-                               'lang_mark_draft_statustext'            => 
lang('Mark the tender as DRAFT')
-
-                       );
-
-                       $msgbox_data = $this->bocommon->msgbox_data($receipt);
-
-                       $data = array
-                       (
-                               'msgbox_data'                                   
=> $GLOBALS['phpgw']->common->msgbox($msgbox_data),
-                               'link_delete'                                   
=> 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiwo_hour.index&delete=true&workorder_id='
 . $workorder_id),
-                               'function'                                      
        => 'index',
-                               'links'                                         
        => $links,
-                               'num_records'                                   
=> count($hours_list),
-                               'total_hours_records'                   => 
$common_data['total_hours_records'],
-                               'lang_total_records'                    => 
lang('Total records'),
-                               'table_header_hour'                             
=> $common_data['table_header'],
-                               'values_hour'                                   
=> $common_data['content'],
-                               'workorder_data'                                
=> $common_data['workorder_data'],
-                               'table_add'                                     
        => $table_add,
-                               'table_sum'                                     
        => $common_data['table_sum']
-                       );
-
-//html_print_r($common_data['content']);
-
-                       $appname                                                
= lang('Workorder');
-                       $function_msg                                   = 
lang('list hours');
-
-                       $GLOBALS['phpgw_info']['flags']['app_header'] = 
lang($this->currentapp) . ' - ' . $appname . ': ' . $function_msg;
-                       //$this->save_sessiondata();
-                       return array('list_hour' => $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);
-                       }
-
-                       $this->bocommon->xsl_add_file(array('wo_hour',
-                                                                               
'menu'));
-
-                       $show_cost                              = 
get_var('show_cost',array('POST','GET'));
-                       $show_details                   = 
get_var('show_details',array('POST','GET'));
-                       $workorder_id                   = 
get_var('workorder_id',array('POST','GET'));
-                       $to_email                               = 
get_var('to_email',array('POST','GET'));
-                       $update_email                   = 
get_var('update_email',array('POST','GET'));
-                       $send_order                             = 
get_var('send_order',array('POST','GET'));
-                       $no_email                               = 
get_var('no_email',array('POST','GET'));
-
-                       if($update_email)
-                       {
-                               
$this->bo->update_email($to_email,$workorder_id);
-                       }
-                       $workorder = 
$this->boworkorder->read_single($workorder_id);
-
-                       $table_header_history[] = array
-                       (
-                               'lang_date'                     => lang('Date'),
-                               'lang_user'                     => lang('User'),
-                               'lang_action'           => lang('Action'),
-                               'lang_new_value'        => lang('New value')
-                       );
-
-
-                       $common_data            = 
$this->common_data($workorder_id);
-                       if($show_details)
-                       {
-                               $values_hour            = 
$common_data['content'];
-                       }
-                       $project                        = 
$this->boproject->read_single($common_data['workorder']['project_id']);
-
-                       $bolocation                     = 
CreateObject($this->currentapp.'_bolocation');
-
-                       $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'
-                                               ));
-
-
-                       if(!$show_cost)
-                       {
-                               $m      = count($values_hour);
-                               for ($i=0;$i<$m;$i++)
-                               {
-                                       unset($values_hour[$i]['cost']);
-                                       unset($values_hour[$i]['billperae']);
-                               }
-                               
unset($common_data['table_sum'][0]['value_total_sum']);
-                       }
-
-                       $table_header[] = array
-                       (
-                               'lang_post'                     => lang('Post'),
-                               'lang_code'                     => lang('Code'),
-                               'lang_descr'            => lang('descr'),
-                               'lang_unit'                     => lang('Unit'),
-                               'lang_billperae'        => lang('Bill per 
unit'),
-                               'lang_quantity'         => lang('Quantity'),
-                               'lang_cost'                     => lang('cost')
-                               );
-
-
-                       $table_send[] = array
-                       (
-                               'lang_send_order'                               
=> lang('Send Order'),
-                               'lang_send_order_statustext'    => lang('Send 
this order by email')
-                       );
-
-                       $table_done[] = array
-                       (
-                               'lang_done'                                     
        => lang('Done'),
-                               'lang_done_statustext'                  => 
lang('Back to calculation'),
-                               'done_action'                                   
=> 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiwo_hour.index&workorder_id='
 . $workorder_id)
-                       );
-
-                       $dateformat                                             
= $GLOBALS['phpgw_info']['user']['preferences']['common']['dateformat'];
-                       $date                                                   
= $GLOBALS['phpgw']->common->show_date(time(),$dateformat);
-
-                       $from_name      =       
$GLOBALS['phpgw_info']['user']['fullname'];
-                       $from_email     =       
$GLOBALS['phpgw_info']['user']['preferences'][$this->currentapp]['email'];
-
-                       $email_data = array
-                       (
-                               'location_data'                                 
=>      $location_data,
-                               'lang_workorder'                                
=>      lang('Workorder ID'),
-                               'workorder_id'                                  
=>      $workorder_id,
-
-                               'lang_date'                                     
        =>      lang('Date'),
-                               'date'                                          
        =>      $date,
-
-                               'lang_start_date'                               
=>      lang('Start date'),
-                               'start_date'                                    
=>      $workorder['start_date'],
-
-                               'lang_end_date'                                 
=>      lang('End date'),
-                               'end_date'                                      
        =>      $workorder['end_date'],
-
-                               'lang_from'                                     
        =>      lang('From'),
-                               'from_name'                                     
        =>      $from_name,
-                               'from_email'                                    
=>      $from_email,
-                               'from_phone'                                    
=>      
$GLOBALS['phpgw_info']['user']['preferences'][$this->currentapp]['cellphone'],
-                               'lang_district'                                 
=>      lang('District'),
-                               'district'                                      
        =>      $project['location_data']['district_id'],
-
-                               'lang_to'                                       
        =>      lang('To'),
-                               'to_name'                                       
        =>      $workorder['vendor_name'],
-
-                               'lang_title'                                    
=>      lang('Title'),
-                               'title'                                         
        =>      $workorder['title'],
-
-
-                               'lang_descr'                                    
=>      lang('Description'),
-                               'descr'                                         
        =>      $workorder['descr'],
-
-                               'lang_budget_account'                   =>      
lang('Budget account'),
-                               'budget_account'                                
=>      $workorder['b_account_id'],
-
-                               'lang_sum_calculation'                  =>      
lang('Sum of calculation'),
-                               'sum_calculation'                               
=>      $common_data['table_sum'][0]['value_total_sum'],
-
-
-//                             'lang_vendor'                                   
=>      lang('vendor'),
-
-                               'lang_branch'                                   
=> lang('branch'),
-                               'branch_list'                                   
=> $this->boproject->select_branch_p_list($project['project_id']),
-                               'other_branch'                                  
=> $project['other_branch'],
-
-                               'key_responsible_list'                  => 
$this->boproject->select_branch_list($project['key_responsible']),
-                               'lang_key_responsible'                  => 
lang('key responsible'),
-
-                               'key_fetch_list'                                
=> $this->boproject->select_key_location_list($workorder['key_fetch']),
-                               'lang_key_fetch'                                
=>      lang('Where to pick up the key'),
-
-                               'key_deliver_list'                              
=> $this->boproject->select_key_location_list($workorder['key_deliver']),
-                               'lang_key_deliver'                              
=>      lang('Where to deliver the key'),
-
-                               'currency'                                      
        => $GLOBALS['phpgw_info']['user']['preferences']['common']['currency'],
-
-                               'lang_cost_tax'                                 
=>      lang('Cost (incl tax):'),
-                               'lang_materials'                                
=>      lang('Materials:__________'),
-                               'lang_work'                                     
        =>      lang('work:____________'),
-
-                               'table_header_view_order'               => 
$table_header,
-                               'values_view_order'                             
=> $values_hour
-                       );
-
-
-                       if($send_order && !$to_email)
-                       {
-                                       
$receipt['error'][]=array('msg'=>lang('No mailaddress is selected'));
-                       }
-
-                       if($to_email)
-                       {
-                               
$this->create_html->add_file(array(PHPGW_SERVER_ROOT . SEP . $this->currentapp 
. SEP . 'templates' . SEP . 'default' . SEP . 'wo_hour'));
-                               
$this->create_html->add_file(array(PHPGW_SERVER_ROOT . SEP . $this->currentapp 
. SEP . 'templates' . SEP . 'default' . SEP . 'location_view'));
-
-                               
$this->create_html->set_var('phpgw',array('email_data' => $email_data));
-                               $html = $this->create_html->parse();
-//                             print $html;
-
-                               $headers = "Return-Path: <". $from_email 
.">\r\n";
-                               $headers .= "From: " . $from_name . "<" . 
$from_email .">\r\n";
-                               $headers .= "Bcc: " . $from_name . "<" . 
$from_email .">\r\n";
-                               $headers .= "Content-type: text/html; 
charset=iso-8859-1\r\n";
-                               $headers .= "MIME-Version: 1.0\r\n";
-                               $subject = lang('Workorder').": ".$workorder_id;
-
-                               $mail_method= 
$this->config->config_data['fmwrkorder_mail'];
-//                             echo 'mail_method: '.$mail_method .'<BR>';
-
-                               if ($mail_method=='smtp'):
-                               {
-                                       $bcc = $from_email;
-                                       $send = CreateObject('phpgwapi_send');
-                                       $rcpt = $send->msg('email', $to_email, 
$subject, $html, '', $cc, $bcc, $from_email, $from_name, 'html');
-                               }
-                               elseif ($mail_method=='sendmail'):
-                               {
-                                       $rcpt=mail($to_email,$subject,$html, 
$headers);
-                               }
-                               else:
-                               {
-                                       
$receipt['error'][]=array('msg'=>lang('Mailing method is not chosen! (admin 
section)'));
-                               }
-                               endif;
-
-                               if ($rcpt)
-                               {
-                                       $historylog     = 
CreateObject($this->currentapp.'_historylog','workorder');
-                                       
$historylog->add('M',$workorder_id,$to_email);
-                                       
$receipt['message'][]=array('msg'=>lang('Workorder is sent by email!'));
-                               }
-                               else
-                               {
-                                       
$receipt['error'][]=array('msg'=>lang('The recipient did not get the email:'));
-                                       
$receipt['error'][]=array('msg'=>lang('From') . ' ' . $from_email);
-                                       
$receipt['error'][]=array('msg'=>lang('To') . ' ' . $to_email);
-                               }
-                       }
-
-                       $workorder_history = 
$this->boworkorder->read_record_history($workorder_id);
-
-                       $msgbox_data = $this->bocommon->msgbox_data($receipt);
-
-                       $data = array
-                       (
-                               'msgbox_data'                                   
=> $GLOBALS['phpgw']->common->msgbox($msgbox_data),
-                               'lang_mail'                                     
        =>      lang('E-Mail'),
-                               'lang_update_email'                             
=>      lang('Update email'),
-                               'lang_update_email_statustext'  =>      
lang('Check to update the email-address for this vendor'),
-                               'lang_to_email_address_statustext'      =>      
lang('The address to which this order will be sendt'),
-                               'to_email'                                      
        =>      $workorder['vendor_email'],
-                               'email_list'                                    
=> 
$this->bo->get_extra_email($to_email,$workorder['vendor_email'],$workorder['vendor_id']),
-                               'lang_select_email'                             
=> lang('Select email'),
-
-                               'send_order_action'                             
=> 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiwo_hour.view&send=true&workorder_id='
 . $workorder_id . '&show_details=' . $show_details),
-
-                               'lang_no_history'                               
=>      lang('No history'),
-                               'lang_history'                                  
=>      lang('History'),
-                               'workorder_history'                             
=> $workorder_history,
-                               'table_header_history'                  => 
$table_header_history,
-                               'email_data'                                    
=> $email_data,
-                               'no_email'                                      
        => $no_email,
-                               'table_send'                                    
=> $table_send,
-                               'table_done'                                    
=> $table_done
-                       );
-
-//html_print_r($data);
-
-                       $appname                                                
= lang('Workorder');
-                       $function_msg                                   = 
lang('Send order');
-
-                       $GLOBALS['phpgw_info']['flags']['app_header'] = 
lang($this->currentapp) . ' - ' . $appname . ': ' . $function_msg;
-
-                       //$this->save_sessiondata();
-                       return array('view' => $data);
-               }
-
-
-               function tender()
-               {
-                       $pdf                                    = 
CreateObject($this->currentapp.'_pdf');
-                       if(!$this->acl_read)
-                       {
-                               
$this->bocommon->redirect_link('/index.php','sid=cookie&op='.$this->currentapp.'.uilocation.stop&perm=1&acl_location='
 . $this->acl2_location);
-                       }
-                       $GLOBALS['phpgw_info']['flags']['noframework'] = True;
-                       $show_cost = get_var('show_cost',array('POST','GET'));
-                       $mark_draft = get_var('mark_draft',array('POST','GET'));
-                       $workorder_id = 
get_var('workorder_id',array('POST','GET'));
-
-                       $common_data            = 
$this->common_data($workorder_id);
-                       $values_hour            = $common_data['content'];
-                       $project                        = 
$this->boproject->read_single($common_data['workorder']['project_id']);
-
-                       $grouping_descr_old     = '';
-
-                       if (isSet($values_hour) AND is_array($values_hour))
-                       {
-                               foreach($values_hour as $hour)
-                               {
-                                       $descr= $hour['hours_descr'];
-
-                                       if($hour['remark'])
-                                       {
-                                               $descr .= "\n" . 
$hour['remark'];
-                                       }
-
-                                       if(!$show_cost)
-                                       {
-                                               unset($hour['billperae']);
-                                               unset($hour['cost']);
-                                       }
-
-                                       
if($hour['grouping_descr']!=$grouping_descr_old)
-                                       {
-                                               $content[] = array
-                                               (
-                                                       lang('post')            
                => $hour['grouping_descr'],
-                                                       lang('code')            
                => '',
-                                                       lang('descr')           
                => '',
-                                                       lang('unit')            
                => '',
-                                                       lang('quantity')        
                => '',
-                                                       lang('bill per unit')   
        => '',
-                                                       lang('cost')            
                => ''
-                                               );
-                                       }
-
-                                       $grouping_descr_old     = 
$hour['grouping_descr'];
-
-                                       $content[] = array
-                                       (
-                                               lang('post')                    
        => $hour['post'],
-                                               lang('code')                    
        => $hour['code'],
-                                               lang('descr')                   
        => $descr,
-                                               lang('unit')                    
        => $hour['unit'],
-                                               lang('quantity')                
        => $hour['quantity'],
-                                               lang('bill per unit')           
=> $hour['billperae'],
-                                               lang('cost')                    
        => $hour['cost']
-                                       );
-                               }
-                       }
-
-                       $dateformat = 
$GLOBALS['phpgw_info']['user']['preferences']['common']['dateformat'];
-                       $date = 
$GLOBALS['phpgw']->common->show_date('',$dateformat);
-
-                       // don't want any warnings turning up in the pdf code 
if the server is set to 'anal' mode.
-                       //error_reporting(7);
-                       error_reporting(E_ALL);
-                       set_time_limit(1800);
-                       $pdf -> ezSetMargins(50,70,50,50);
-                       $pdf->selectFont(PHPGW_APP_INC . 
'/pdf/fonts/Helvetica.afm');
-
-                       // put a line top and bottom on all the pages
-                       $all = $pdf->openObject();
-                       $pdf->saveState();
-                       $pdf->setStrokeColor(0,0,0,1);
-                       $pdf->line(20,40,578,40);
-                       $pdf->line(20,822,578,822);
-                       $pdf->addText(50,823,6,lang('Chapter') . ' ' 
.$common_data['workorder']['chapter_id'] . ' ' . 
$common_data['workorder']['chapter'] );
-                       $pdf->addText(50,34,6,'BBB');
-                       $pdf->addText(300,34,6,$date);
-                       if($mark_draft)
-                       {
-                               $pdf->setColor(1,0,0);
-               //              $pdf->setColor(66,66,99);
-                               $pdf->addText(200,400,40,lang('DRAFT'),-10);
-                               $pdf->setColor(1,0,0);
-                       }
-                       $pdf->restoreState();
-                       $pdf->closeObject();
-                       // note that object can be told to appear on just odd 
or even pages by changing 'all' to 'odd'
-                       // or 'even'.
-                       $pdf->addObject($all,'all');
-
-                       $pdf->ezSetDy(-100);
-
-
-                       $pdf->ezStartPageNumbers(500,28,10,'right','{PAGENUM} ' 
. lang('of') . ' {TOTALPAGENUM}',1);
-
-                       $pdf->ezText($project['name'],20);
-                       $pdf->ezText($project['descr'],14);
-                       $pdf->ezSetDy(-50);
-                       $pdf->ezText(lang('Order') . ': ' . $workorder_id . ' ' 
.$common_data['workorder']['title'],14);
-                       $pdf->ezText(lang('Chapter') . ' ' 
.$common_data['workorder']['chapter_id'] . ' ' . 
$common_data['workorder']['chapter'] ,14);
-
-                       if(is_array($values_hour))
-                       {
-                               $pdf->ezNewPage();
-                               $pdf->ezTable($content,'',$project['name'],
-                                                       
array('xPos'=>70,'xOrientation'=>'right','width'=>500,0,'shaded'=>0,'fontSize' 
=> 8,'showLines'=> 2,'titleFontSize' => 12,'outerLineThickness'=>2
-                                                       ,'cols'=>array(
-                                                       lang('bill per 
unit')=>array('justification'=>'right','width'=>50)
-                                                       
,lang('quantity')=>array('justification'=>'right','width'=>50)
-                                                       
,lang('cost')=>array('justification'=>'right','width'=>50)
-                                                       
,lang('unit')=>array('width'=>40)
-                                                       
,lang('descr')=>array('width'=>120))
-                                                       ));
-                       }
-
-               //      $pdf->ezStream();
-                       $document= $pdf->ezOutput();
-                       $size=strlen($document);
-
-                       $browser = CreateObject('phpgwapi_browser');
-                       
$browser->content_header('Template.pdf','application/pdf',$size);
-
-                       echo $document;
-               }
-
-               function prizebook()
-               {
-                       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('wo_hour',
-                                                                               
'menu',
-                                                                               
'nextmatchs',
-                                                                               
'search_field'));
-
-                       $delete = get_var('delete',array('POST','GET'));
-                       $hour_id = get_var('hour_id',array('POST','GET'));
-
-                       $workorder_id = 
get_var('workorder_id',array('POST','GET'));
-                       $values = get_var('values',array('POST'));
-//html_print_r($values);
-
-                       if($delete && $hour_id)
-                       {
-                               $receipt = 
$this->bo->delete($hour_id,$workorder_id);
-                       }
-
-
-                       if($values['add'])
-                       {
-                               
$receipt=$this->bo->add_hour($values,$workorder_id);
-                       }
-
-                       $links = $this->menu->links();
-
-                       $common_data=$this->common_data($workorder_id);
-
-                       $workorder      = $common_data['workorder'];
-
-                       if($workorder['vendor_id'])
-                       {
-                               $this->bopricebook->cat_id = 
$workorder['vendor_id'];
-                               $this->bopricebook->start = $this->start;
-                               $this->bopricebook->query = $this->query;
-                               $pricebook_list = $this->bopricebook->read();
-                       }
-
-//html_print_r($pricebook_list);
-                       $i=0;
-                       while (is_array($pricebook_list) && list(,$pricebook) = 
each($pricebook_list))
-                       {
-                               $content_prizebook[] = array
-                               (
-                                       'counter'                               
=> $i,
-                                       'activity_id'                   => 
$pricebook['activity_id'],
-                                       'num'                                   
=> $pricebook['num'],
-                                       'branch'                                
=> $pricebook['branch'],
-                                       'vendor_id'                             
=> $pricebook['vendor_id'],
-                                       'm_cost'                                
=> $pricebook['m_cost'],
-                                       'w_cost'                                
=> $pricebook['w_cost'],
-                                       'total_cost'                    => 
$pricebook['total_cost'],
-                                       'this_index'                    => 
$pricebook['this_index'],
-                                       'unit'                                  
=> $pricebook['unit'],
-                                       'descr'                                 
=> $pricebook['descr'],
-                                       'base_descr'                    => 
$pricebook['base_descr']
-                               );
-
-                               $i++;
-                       }
-
-                       $table_header_prizebook[] = array
-                       (
-                               'sort_num'      => 
$this->bocommon->show_sort_order(array
-                                                                               
(
-                                                                               
        'sort'  => $this->sort,
-                                                                               
        'var'   =>      'num',
-                                                                               
        'order' =>      $this->order,
-                                                                               
        'extra'         => array('sid=cookie&op'        => 
$this->currentapp.'.uiwo_hour.prizebook',
-                                                                               
                                                        'workorder_id'  
=>$workorder_id,
-                                                                               
                                                        'allrows'       
=>$this->allrows)
-                                                                               
)),
-                               'lang_num'                      => 
lang('Activity Num'),
-                               'lang_branch'           => lang('Branch'),
-                               'lang_vendor'           => lang('Vendor'),
-                               'lang_select'           => lang('Select'),
-                               'lang_total_cost'       => lang('Total Cost'),
-                               'lang_descr'            => lang('Description'),
-                               'lang_base_descr'       => lang('Base'),
-                               'lang_m_cost'           => lang('Material 
cost'),
-                               'lang_w_cost'           => lang('Labour cost'),
-                               'lang_unit'                     => lang('Unit'),
-                               'lang_quantity'         => lang('Quantity'),
-
-                               'lang_view'                     => lang('view'),
-                               'lang_edit'                     => lang('edit'),
-                               'sort_total_cost'       => 
$this->bocommon->show_sort_order(array
-                                                                               
(
-                                                                               
        'sort'  => $this->sort,
-                                                                               
        'var'   =>      'total_cost',
-                                                                               
        'order' =>      $this->order,
-                                                                               
        'extra'         => array('sid=cookie&op'        => 
$this->currentapp.'.uiwo_hour.prizebook',
-                                                                               
                                                        'workorder_id'  
=>$workorder_id,
-                                                                               
                                                        'allrows'       
=>$this->allrows)
-                                                                               
))
-                       );
-
-
-                       $table_done[] = array
-                       (
-                               'lang_done'                             => 
lang('Done'),
-                               'lang_done_statustext'  => lang('Back to list'),
-                               'done_action'                   => 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiwo_hour.index&workorder_id='
 . $workorder_id)
-                       );
-
-                       $link_data = array
-                       (
-                               'sid=cookie&op' => 
$this->currentapp.'.uiwo_hour.prizebook',
-                                               'sort'                  
=>$this->sort,
-                                               'order'                 
=>$this->order,
-                                               'workorder_id'  =>$workorder_id,
-                                               'allrows'               
=>$this->allrows,
-                                               'query'                 
=>$this->query
-                       );
-
-                       $link_data_nextmatch = array
-                       (
-                               'sid=cookie&op' => 
$this->currentapp.'.uiwo_hour.prizebook',
-                                               'sort'                  
=>$this->sort,
-                                               'order'                 
=>$this->order,
-                                               'workorder_id'  =>$workorder_id,
-                                               'query'                 
=>$this->query
-                       );
-
-                       $link_data_delete = array
-                       (
-                               'sid=cookie&op' => 
$this->currentapp.'.uiwo_hour.prizebook',
-                                               'sort'                  
=>$this->sort,
-                                               'order'                 
=>$this->order,
-                                               'workorder_id'  =>$workorder_id,
-                                               'allrows'               
=>$this->allrows,
-                                               'delete'                =>true,
-                                               'query'                 
=>$this->query
-                       );
-
-
-                       if(!$this->allrows)
-                       {
-                               $record_limit   = 15; 
//$GLOBALS['phpgw_info']['user']['preferences']['common']['maxmatchs'];
-                       }
-                       else
-                       {
-                               $record_limit   = 
$this->bopricebook->total_records;
-                       }
-
-
-                       $msgbox_data = $this->bocommon->msgbox_data($receipt);
-
-                       $data = array
-                       (
-                               'msgbox_data'                                   
=> $GLOBALS['phpgw']->common->msgbox($msgbox_data),
-                               'form_action'                                   
=> $this->bocommon->link('/index.php',$link_data),
-                               'lang_add_statustext'                   => 
lang('Add the selected items'),
-                               'lang_add'                                      
        => lang('Add'),
-                               'link_delete'                                   
=> $this->bocommon->link('/index.php',$link_data_delete),
-
-                               'function'                                      
        => 'prizebook',
-                               'links'                                         
        => $links,
-                               'allrows'                                       
        => $this->allrows,
-                               'allow_allrows'                                 
=> true,
-                               'start_record'                                  
=> $this->start,
-                               'record_limit'                                  
=> $record_limit,
-                               'num_records'                                   
=> count($pricebook_list),
-                               'all_records'                                   
=> $this->bopricebook->total_records,
-                               'link_url'                                      
        => $this->bocommon->link('/index.php',$link_data_nextmatch),
-                               'img_path'                                      
        => 
dirname($GLOBALS['HTTP_SERVER_VARS']['PHP_SELF']).'/api/skins/default/images',
-                               'select_action'                                 
=> $this->bocommon->link('/index.php',$link_data),
-
-                               '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,
-                               'lang_search'                                   
=> lang('search'),
-                               'workorder_data'                                
=> $common_data['workorder_data'],
-                               'table_header_prizebook'                => 
$table_header_prizebook,
-                               'values_prizebook'                              
=> $content_prizebook,
-                               'total_hours_records'                   => 
$common_data['total_hours_records'],
-                               'lang_total_records'                    => 
lang('Total records'),
-                               'table_header_hour'                             
=> $common_data['table_header'],
-                               'values_hour'                                   
=> $common_data['content'],
-                               'table_sum'                                     
        => $common_data['table_sum'],
-                               'table_done'                                    
=> $table_done
-                       );
-
-                       $appname                                                
= lang('pricebook');
-                       $function_msg                                   = 
lang('list pricebook');
-
-                       $GLOBALS['phpgw_info']['flags']['app_header'] = 
lang($this->currentapp) . ' - ' . $appname . ': ' . $function_msg;
-                       //$this->save_sessiondata();
-                       return array('prizebook' => $data);
-               }
-
-
-               function template()
-               {
-                       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('wo_hour',
-                                                                               
'menu',
-                                                                               
'nextmatchs',
-                                                                               
'search_field'));
-
-                       $delete = get_var('delete',array('POST','GET'));
-                       $hour_id = get_var('hour_id',array('POST','GET'));
-
-                       $workorder_id = 
get_var('workorder_id',array('POST','GET'));
-                       $template_id = 
get_var('template_id',array('POST','GET'));
-
-                       $values = get_var('values',array('POST'));
-//html_print_r($values);
-
-                       if($delete && $hour_id)
-                       {
-                               $receipt = 
$this->bo->delete($hour_id,$workorder_id);
-                       }
-
-
-                       if($values['add'])
-                       {
-                               
$receipt=$this->bo->add_hour_from_template($values,$workorder_id);
-                       }
-
-                       $links = $this->menu->links();
-
-                       $common_data=$this->common_data($workorder_id);
-
-                       $workorder      = $common_data['workorder'];
-
-                       $botemplate             = 
CreateObject($this->currentapp.'_botemplate');
-                       $template_list  = 
$botemplate->read_template_hour($template_id);
-
-                       $i=0;
-                       $grouping_descr_old='';
-
-                       while (is_array($template_list) && list(,$template) = 
each($template_list))
-                       {
-
-                               
if($template['grouping_descr']!=$grouping_descr_old)
-                               {
-                                       $new_grouping   = true;
-                               }
-                               else
-                               {
-                                       $new_grouping   = false;
-                               }
-
-                               $grouping_descr_old     = 
$template['grouping_descr'];
-
-                               if($template['activity_num'])
-                               {
-                                       $code   = $template['activity_num'];
-                               }
-                               else
-                               {
-                                       $code   = 
str_replace("-",$template['tolerance'],$template['ns3420_id']);
-                               }
-
-
-                               $content_template_hour[] = array
-                               (
-                                       'counter'                               
=> $i,
-                                       'chapter_id'                    => 
$template['chapter_id'],
-                                       'grouping_descr'                => 
$template['grouping_descr'],
-                                       'building_part'                 => 
$template['building_part'],
-                                       'new_grouping'                  => 
$new_grouping,
-                                       'code'                                  
=> $code,
-                                       'activity_id'                   => 
$template['activity_id'],
-                                       'activity_num'                  => 
$template['activity_num'],
-                                       'hours_descr'                   => 
$template['hours_descr'],
-                                       'remark'                                
=> $template['remark'],
-                                       'ns3420_id'                             
=> $template['ns3420_id'],
-                                       'tolerance'                             
=> $template['tolerance'],
-                                       'cost'                                  
=> $template['cost'],
-                                       'unit'                                  
=> $template['unit'],
-                                       'billperae'                             
=> $template['billperae'],
-                                       'building_part'                 => 
$template['building_part'],
-                                       'dim_d'                                 
=> $template['dim_d']
-                               );
-
-                               $i++;
-                       }
-
-                       $table_header_template_hour[] = array
-                       (
-                               'lang_code'                     => lang('Code'),
-                               'lang_descr'            => lang('Description'),
-                               'lang_unit'                     => lang('Unit'),
-                               'lang_quantity'         => lang('Quantity'),
-                               'lang_billperae'        => lang('Bill per 
unit'),
-                               'lang_cost'     => lang('Cost'),
-
-                               'sort_billperae'        => 
$this->bocommon->show_sort_order(array
-                                                                               
(
-                                                                               
        'sort'  => $this->sort,
-                                                                               
        'var'   =>      'billperae',
-                                                                               
        'order' =>      $this->order,
-                                                                               
        'extra'         => array('sid=cookie&op'        => 
$this->currentapp.'.uiwo_hour.template',
-                                                                               
                                                        'workorder_id'  
=>$workorder_id,
-                                                                               
                                                        'template_id'   
=>$template_id,
-                                                                               
                                                        'query'                 
=>$this->query,
-                                                                               
                                                        'allrows'               
=>$this->allrows)
-                                                                               
)),
-                               'lang_select'           => lang('Select'),
-                               'sort_building_part'    => 
$this->bocommon->show_sort_order(array
-                                                                               
(
-                                                                               
        'sort'  => $this->sort,
-                                                                               
        'var'   =>      'building_part',
-                                                                               
        'order' =>      $this->order,
-                                                                               
        'extra'         => array('sid=cookie&op'        => 
$this->currentapp.'.uiwo_hour.template',
-                                                                               
                                                        'workorder_id'  
=>$workorder_id,
-                                                                               
                                                        'template_id'   
=>$template_id,
-                                                                               
                                                        'query'                 
=>$this->query,
-                                                                               
                                                        'allrows'               
=>$this->allrows)
-                                                                               
)),
-                               'lang_building_part'            => 
lang('Building part')
-                       );
-
-
-                       $table_done[] = array
-                       (
-                               'lang_done'                             => 
lang('Done'),
-                               'lang_done_statustext'  => lang('Back to list'),
-                               'done_action'                   => 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiwo_hour.index&workorder_id='
 . $workorder_id)
-                       );
-
-                       $link_data = array
-                       (
-                               'sid=cookie&op' => 
$this->currentapp.'.uiwo_hour.template',
-                                               'sort'                  
=>$this->sort,
-                                               'order'                 
=>$this->order,
-                                               'workorder_id'  =>$workorder_id,
-                                               'template_id'   =>$template_id,
-                                               'allrows'               
=>$this->allrows,
-                                               'query'                 
=>$this->query
-                       );
-
-                       $link_data_nextmatch = array
-                       (
-                               'sid=cookie&op' => 
$this->currentapp.'.uiwo_hour.template',
-                                               'sort'                  
=>$this->sort,
-                                               'order'                 
=>$this->order,
-                                               'workorder_id'  =>$workorder_id,
-                                               'template_id'   =>$template_id,
-                                               'query'                 
=>$this->query
-                       );
-
-                       $link_data_delete = array
-                       (
-                               'sid=cookie&op' => 
$this->currentapp.'.uiwo_hour.template',
-                                               'sort'                  
=>$this->sort,
-                                               'order'                 
=>$this->order,
-                                               'workorder_id'  =>$workorder_id,
-                                               'allrows'               
=>$this->allrows,
-                                               'delete'                =>true,
-                                               'query'                 
=>$this->query
-                       );
-
-
-                       if(!$this->allrows)
-                       {
-                               $record_limit   = 15; 
//$GLOBALS['phpgw_info']['user']['preferences']['common']['maxmatchs'];
-                       }
-                       else
-                       {
-                               $record_limit   = $this->bo->total_records;
-                       }
-
-
-                       $msgbox_data = $this->bocommon->msgbox_data($receipt);
-
-                       $data = array
-                       (
-                               'msgbox_data'                                   
=> $GLOBALS['phpgw']->common->msgbox($msgbox_data),
-                               'lang_select_all'                               
=> lang('Select All'),
-                               'img_check'                                     
        => 
$GLOBALS['phpgw']->common->get_image_path($this->currentapp).'/check.gif',
-                               'check_source'                                  
=> './'.$this->currentapp.'/inc/check.js',
-
-                               'template_id'                                   
=> $template_id,
-                               'form_action'                                   
=> $this->bocommon->link('/index.php',$link_data),
-                               'lang_add_statustext'                   => 
lang('Add the selected items'),
-                               'lang_add'                                      
        => lang('Add'),
-                               'link_delete'                                   
=> $this->bocommon->link('/index.php',$link_data_delete),
-
-                               'function'                                      
        => 'template',
-                               'links'                                         
        => $links,
-                               'allrows'                                       
        => $this->allrows,
-                               'allow_allrows'                                 
=> true,
-                               'start_record'                                  
=> $this->start,
-                               'record_limit'                                  
=> $record_limit,
-                               'num_records'                                   
=> count($template_list),
-                               'all_records'                                   
=> $this->bo->total_records,
-                               'link_url'                                      
        => $this->bocommon->link('/index.php',$link_data_nextmatch),
-                               'img_path'                                      
        => 
dirname($GLOBALS['HTTP_SERVER_VARS']['PHP_SELF']).'/api/skins/default/images',
-                               'select_action'                                 
=> $this->bocommon->link('/index.php',$link_data),
-
-                               '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,
-                               'lang_search'                                   
=> lang('search'),
-                               'workorder_data'                                
=> $common_data['workorder_data'],
-                               'table_header_template_hour'            => 
$table_header_template_hour,
-                               'values_template_hour'                          
=> $content_template_hour,
-                               'total_hours_records'                   => 
$common_data['total_hours_records'],
-                               'lang_total_records'                    => 
lang('Total records'),
-                               'table_header_hour'                             
=> $common_data['table_header'],
-                               'values_hour'                                   
=> $common_data['content'],
-                               'table_sum'                                     
        => $common_data['table_sum'],
-                               'table_done'                                    
=> $table_done
-                       );
-
-//html_print_r($data);
-                       $appname                                                
= lang('Template');
-                       $function_msg                                   = 
lang('list template');
-
-                       $GLOBALS['phpgw_info']['flags']['app_header'] = 
lang($this->currentapp) . ' - ' . $appname . ': ' . $function_msg;
-                       //$this->save_sessiondata();
-                       return array('list_template_hour' => $data);
-               }
-
-               function edit()
-               {
-                       if(!$this->acl_edit)
-                       {
-                               
$this->bocommon->redirect_link('/index.php','sid=cookie&op='.$this->currentapp.'.uilocation.stop&perm=2&acl_location='
 . $this->acl2_location);
-                       }
-                       $from                                   = 
get_var('from',array('POST','GET'));
-                       $template_id                    = 
get_var('template_id',array('POST','GET'));
-                       $workorder_id                   = 
get_var('workorder_id',array('POST','GET'));
-                       $activity_id                    = 
get_var('activity_id',array('POST','GET'));
-                       $hour_id                                = 
get_var('hour_id',array('POST','GET'));
-                       $values                                 = 
get_var('values',array('POST','GET'));
-                       $values['ns3420_id']    = 
get_var('ns3420_id',array('POST','GET'));
-                       $values['ns3420_descr'] = 
get_var('ns3420_descr',array('POST','GET'));
-
-
-//html_print_r($workorder);
-
-
-                       $this->bocommon->xsl_add_file(array('wo_hour'));
-
-                       if ($values['save'])
-                       {
-                               if($values['copy_hour'])
-                               {
-                                       unset($hour_id);
-                               }
-
-                               $values['hour_id'] = $hour_id;
-
-                               if(!$receipt['error'])
-                               {
-                                       $receipt = 
$this->bo->save_hour($values,$workorder_id);
-
-                                       $hour_id=$receipt['hour_id'];
-                               }
-                       }
-
-                       if ($hour_id)
-                       {
-                               $values = $this->bo->read_single_hour($hour_id);
-                               $function_msg = lang('Edit hour');
-                       }
-                       else
-                       {
-                               $function_msg = lang('Add hour');
-                       }
-
-                       $workorder      = 
$this->boworkorder->read_single($workorder_id);
-
-//html_print_r($values);
-
-                       if($error_id)
-                       {
-                               unset($values['hour_id']);
-                       }
-
-                       $link_data = array
-                       (
-                               'sid=cookie&op' => 
$this->currentapp.'.uiwo_hour.edit',
-                               'activity_id'   => $activity_id,
-                               'workorder_id'  => $workorder_id,
-                               'template_id'   => $template_id,
-                               'hour_id'               => $hour_id,
-                               'from'                  => $from
-                       );
-
-                       $msgbox_data = $this->bocommon->msgbox_data($receipt);
-
-                       $data = array
-                       (
-                               'msgbox_data'                                   
=> $GLOBALS['phpgw']->common->msgbox($msgbox_data),
-                               'form_action'                                   
=> $this->bocommon->link('/index.php',$link_data),
-                               'done_action'                                   
=> 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiwo_hour.'
 . $from . '&workorder_id=' . $workorder_id . '&template_id=' . $template_id),
-                               'lang_workorder'                                
=> lang('Workorder'),
-                               'value_workorder_id'                    => 
$workorder['workorder_id'],
-                               'value_workorder_title'                 => 
$workorder['title'],
-
-                               'lang_hour_id'                                  
=> lang('Hour ID'),
-                               'value_hour_id'                                 
=> $hour_id,
-
-                               'lang_copy_hour'                        => 
lang('Copy hour ?'),
-                               'lang_copy_hour_statustext'     => lang('Choose 
Copy Hour to copy this hour to a new hour'),
-
-                               'lang_activity_num'                             
=> lang('Activity code'),
-                               'value_activity_num'                    => 
$values['activity_num'],
-                               'value_activity_id'                             
=> $values['activity_id'],
-
-                               'lang_unit'                                     
        => lang('Unit'),
-                               'lang_save'                                     
        => lang('save'),
-                               'lang_done'                                     
        => lang('done'),
-                               'lang_descr'                                    
=> lang('description'),
-                               'value_descr'                                   
=> $values['hours_descr'],
-                               'lang_descr_statustext'                 => 
lang('Enter the description for this activity'),
-                               'lang_done_statustext'                  => 
lang('Back to the list'),
-                               'lang_save_statustext'                  => 
lang('Save the building'),
-
-                               'lang_remark'                                   
=> lang('Remark'),
-                               'value_remark'                                  
=> $values['remark'],
-                               'lang_remark_statustext'                => 
lang('Enter additional remarks to the description - if any'),
-
-                               'lang_quantity'                                 
=> lang('quantity'),
-                               'value_quantity'                                
=> $values['quantity'],
-                               'lang_quantity_statustext'              => 
lang('Enter quantity of unit'),
-
-                               'lang_billperae'                                
=> lang('Cost per unit'),
-                               'value_billperae'                               
=> $values['billperae'],
-                               'lang_billperae_statustext'             => 
lang('Enter the cost per unit'),
-
-                               'lang_total_cost'                               
=> lang('Total cost'),
-                               'value_total_cost'                              
=> $values['cost'],
-                               'lang_total_cost_statustext'    => lang('Enter 
the total cost of this activity - if not to be calculated from unit-cost'),
-
-
-                               'lang_vendor'                                   
=> lang('Vendor'),
-                               'value_vendor_id'                               
=> $workorder['vendor_id'],
-                               'value_vendor_name'                             
=> $workorder['vendor_name'],
-
-                               'lang_dim_d'                                    
=> lang('Dim D'),
-                               'dim_d_list'                                    
=> $this->bopricebook->get_dim_d_list($values['dim_d']),
-                               'select_dim_d'                                  
=> 'values[dim_d]',
-                               'lang_no_dim_d'                                 
=> lang('No Dim D'),
-                               'lang_dim_d_statustext'                 => 
lang('Select the Dim D for this activity. To do not use Dim D -  select NO DIM 
D'),
-
-                               'lang_unit'                                     
        => lang('Unit'),
-                               'unit_list'                                     
        => $this->bopricebook->get_unit_list($values['unit']),
-                               'select_unit'                                   
=> 'values[unit]',
-                               'lang_no_unit'                                  
=> lang('Select Unit'),
-                               'lang_unit_statustext'                  => 
lang('Select the unit for this activity.'),
-
-                               'lang_chapter'                                  
=> lang('chapter'),
-                               'chapter_list'                                  
=> $this->bo->get_chapter_list('select',$workorder['chapter_id']),
-                               'select_chapter'                                
=> 'values[chapter_id]',
-                               'lang_no_chapter'                               
=> lang('Select chapter'),
-                               'lang_chapter_statustext'               => 
lang('Select the chapter (for tender) for this activity.'),
-
-                               'lang_tolerance'                                
=> lang('tolerance'),
-                               'tolerance_list'                                
=> $this->bo->get_tolerance_list($values['tolerance_id']),
-                               'select_tolerance'                              
=> 'values[tolerance_id]',
-                               'lang_no_tolerance'                             
=> lang('Select tolerance'),
-                               'lang_tolerance_statustext'             => 
lang('Select the tolerance for this activity.'),
-
-                               'lang_grouping'                                 
=> lang('grouping'),
-                               'grouping_list'                                 
=> $this->bo->get_grouping_list($values['grouping_id'],$workorder_id),
-                               'select_grouping'                               
=> 'values[grouping_id]',
-                               'lang_no_grouping'                              
=> lang('Select grouping'),
-                               'lang_grouping_statustext'              => 
lang('Select the grouping for this activity.'),
-
-                               'lang_new_grouping'                             
        => lang('New grouping'),
-                               'lang_new_grouping_statustext'          => 
lang('Enter a new grouping for this activity if not found in the list'),
-
-                               'lang_building_part'                            
=> lang('building_part'),
-                               'building_part_list'                            
=> $this->bo->get_building_part_list($values['building_part_id']),
-                               'select_building_part'                          
=> 'values[building_part_id]',
-                               'lang_no_building_part'                         
=> lang('Select building part'),
-                               'lang_building_part_statustext'         => 
lang('Select the building part for this activity.'),
-
-
-                               'ns3420_link'                                   
=> 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uilookup.ns3420'),
-                               'lang_ns3420'                                   
=> lang('NS3420'),
-                               'value_ns3420_id'                               
=> $values['ns3420_id'],
-                               'lang_ns3420_statustext'                => 
lang('Select a standard-code from the norwegian standard'),
-                               '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_hour' => $data);
-               }
-
-               function delete()
-               {
-                       if(!$this->acl_edit)
-                       {
-                               
$this->bocommon->redirect_link('/index.php','sid=cookie&op='.$this->currentapp.'.uilocation.stop&perm=2&acl_location='
 . $this->acl2_location);
-                       }
-                       $id                     = 
get_var('id',array('POST','GET'));
-                       $workorder_id   = 
get_var('workorder_id',array('POST','GET'));
-                       $hour_id                = 
get_var('hour_id',array('POST','GET'));
-                       $deviation_id   = 
get_var('deviation_id',array('POST','GET'));
-                       $confirm                = 
get_var('confirm',array('POST'));
-
-
-                       if($deviation_id)
-                       {
-                               $link_data = array
-                               (
-                                       'sid=cookie&op' => 
$this->currentapp.'.uiwo_hour.deviation',
-                                       'workorder_id'=>$workorder_id,
-                                       'hour_id'=>$hour_id
-                               );
-                               $delete_link_data = array
-                               (
-                                       'sid=cookie&op' => 
$this->currentapp.'.uiwo_hour.delete',
-                                       'workorder_id'=>$workorder_id,
-                                       'hour_id'=>$hour_id,
-                                       'deviation_id'=>$deviation_id
-                               );
-
-                               $function_msg                                   
= lang('delete deviation');
-                       }
-                       else
-                       {
-                               $link_data = array
-                               (
-                                       'sid=cookie&op' => 
$this->currentapp.'.uiwo_hour.index'
-                               );
-                               $delete_link_data = array
-                               (
-                                       'sid=cookie&op' => 
$this->currentapp.'.uiwo_hour.delete',
-                                       'id'=>$id
-                               );
-                               $function_msg                                   
= lang('delete hour');
-                       }
-
-                       if (get_var('confirm',array('POST')))
-                       {
-                               if($deviation_id)
-                               {
-                                       
$this->bo->delete_deviation($workorder_id,$hour_id,$deviation_id);
-                               }
-                               else
-                               {
-                                       $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',$delete_link_data),
-                               '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');
-
-                       $GLOBALS['phpgw_info']['flags']['app_header'] = 
lang($this->currentapp) . ' - ' . $appname . ': ' . $function_msg;
-                       return array('delete' => $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_uiwo_hour
+       {
+               var $grants;
+               var $cat_id;
+               var $start;
+               var $query;
+               var $sort;
+               var $order;
+               var $filter;
+               var $currentapp;
+
+               var $public_functions = array
+               (
+                       'index'                 => True,
+                       'tender'                => True,
+                       'view'                  => True,
+                       'template'              => True,
+                       'save_template' => True,
+                       'prizebook'             => True,
+                       'add'                   => True,
+                       'edit'                  => True,
+                       'delete'                => True,
+                       'deviation'             => True,
+                       'edit_deviation'=> True
+               );
+
+               function property_uiwo_hour()
+               {
+                       $GLOBALS['phpgw_info']['flags']['xslt_app'] = True;
+                       $this->currentapp                       = 'property'; 
//$GLOBALS['phpgw_info']['flags']['currentapp'];
+                       $this->create_html                      = 
CreateObject('phpgwapi_xslttemplates');
+                       $this->account                          = 
$GLOBALS['phpgw_data']['user']['id'];
+
+                       $this->bo                                       = 
CreateObject($this->currentapp.'_bowo_hour',True);
+                       $this->boworkorder                      = 
CreateObject($this->currentapp.'_boworkorder');
+                       $this->boproject                        = 
CreateObject($this->currentapp.'_boproject');
+                       $this->bopricebook                      = 
CreateObject($this->currentapp.'_bopricebook');
+
+                       $this->bocommon                         = 
CreateObject($this->currentapp.'_bocommon');
+                       $this->menu                                     = 
CreateObject($this->currentapp.'_menu');
+                       $this->config                           = 
CreateObject('phpgwapi_config');
+                       $this->fm_session       = 
CreateObject($this->currentapp.'_session');
+
+                       $this->config->read_repository();
+
+                       $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->chapter_id                       = 
$this->bo->chapter_id;
+                       $this->allrows                          = 
$this->bo->allrows;
+
+                       $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,
+                               'chapter_id'            => $this->chapter_id,
+                               'allrows'                       => 
$this->allrows
+                       );
+                       $this->bo->save_sessiondata($data);
+               }
+
+               function deviation()
+               {
+                       $workorder_id   = 
get_var('workorder_id',array('POST','GET'));
+                       $hour_id                = 
get_var('hour_id',array('POST','GET'));
+
+                       $this->bocommon->xsl_add_file(array('wo_hour'));
+                       $list = 
$this->bo->read_deviation(array('workorder_id'=>$workorder_id,'hour_id'=>$hour_id));
+
+                       $sum_deviation = 0;
+
+                       if (isset($list) AND is_array($list))
+                       {
+                               $dateformat                                     
        = $GLOBALS['phpgw_info']['user']['preferences']['common']['dateformat'];
+                               foreach($list as $entry)
+                               {
+                                       $sum_deviation = $sum_deviation + 
$entry['amount'];
+
+                                       $entry_date = 
(isset($entry['entry_date'])?$GLOBALS['phpgw']->common->show_date($entry['entry_date'],$dateformat):'');
+
+                                       $content[] = array
+                                       (
+                                               'id'                            
                => $entry['id'],
+                                               'amount'                        
                => $entry['amount'],
+                                               'descr'                         
                => $entry['descr'],
+                                               'entry_date'                    
        => $entry_date,
+                                               'link_edit'                     
                => 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiwo_hour.edit_deviation&workorder_id='
 . $workorder_id . '&hour_id=' . $hour_id . '&id=' . $entry['id']),
+                                               'lang_edit_statustext'          
=> lang('edit the deviation'),
+                                               'text_edit'                     
                => lang('edit'),
+                                               'link_delete'                   
        => 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiwo_hour.delete&workorder_id='
 . $workorder_id . '&hour_id=' . $hour_id . '&deviation_id=' . $entry['id']),
+                                               'lang_delete_statustext'        
=> lang('delete the deviation'),
+                                               'text_delete'                   
        => lang('delete'),
+                                       );
+                               }
+                       }
+
+
+                       $table_header[] = array
+                       (
+                               'lang_id'               => lang('ID'),
+                               'lang_amount'   => lang('amount'),
+                               'lang_descr'    => lang('Descr'),
+                               'lang_date'             => lang('date'),
+                               'lang_edit'             => lang('edit'),
+                               'lang_delete'   => lang('delete')
+                       );
+
+
+                       $link_data = array
+                       (
+                               'sid=cookie&op' => 
$this->currentapp.'.uiwo_hour.edit_deviation',
+                                               'workorder_id'  =>$workorder_id,
+                                               'hour_id'               
=>$hour_id
+                       );
+
+
+                       $data = array
+                       (
+                               'sum_deviation'                                 
=> $sum_deviation,
+                               'table_header_deviation'                => 
$table_header,
+                               'values_deviation'                              
=> $content,
+                               'lang_add'                                      
        => lang('add'),
+                               'lang_add_statustext'                   => 
lang('add a deviation'),
+                               'add_action'                                    
=> $this->bocommon->link('/index.php',$link_data),
+                               'lang_done'                                     
        => lang('done'),
+                               'done_action'                                   
=> 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiwo_hour.index&workorder_id='
 . $workorder_id)
+                       );
+
+                       $appname                                = 
lang('Workorder');
+                       $function_msg                   = lang('list 
deviation');
+
+                       $GLOBALS['phpgw_info']['flags']['app_header'] = 
lang($this->currentapp) . ' - ' . $appname . ': ' . $function_msg;
+                       return array('list_deviation' => $data);
+               }
+
+               function edit_deviation()
+               {
+                       $workorder_id   = 
get_var('workorder_id',array('POST','GET'));
+                       $hour_id                = 
get_var('hour_id',array('POST','GET'));
+                       $id                             = 
get_var('id',array('POST','GET'));
+                       $values                 = 
get_var('values',array('POST','GET'));
+                       $dateformat             = 
$GLOBALS['phpgw_info']['user']['preferences']['common']['dateformat'];
+
+                       $this->bocommon->xsl_add_file(array('wo_hour'));
+
+                       if ($values['save'])
+                       {
+                               $values['workorder_id']=$workorder_id;
+                               $values['hour_id']=$hour_id;
+                               if (!$values['amount'])
+                               {
+                                       $receipt['error'][] = 
array('msg'=>lang('amount not entered!'));
+                               }
+
+                               if($id)
+                               {
+                                       $values['id']=$id;
+                                       $action='edit';
+                               }
+
+                               if (!$receipt['error'])
+                               {
+                                       $receipt = 
$this->bo->save_deviation($values,$action);
+                                       if(!$id)
+                                       {
+                                               $id=$receipt['id'];
+                                       }
+                               }
+                               else
+                               {
+                                       $receipt['error'][] = array('msg'=> 
lang('Status has NOT been saved'));
+                               }
+
+                       }
+
+                       if ($id)
+                       {
+                               $values = 
$this->bo->read_single_deviation(array('workorder_id'=>$workorder_id,'hour_id'=>$hour_id,'id'=>$id));
+                               $function_msg = lang('edit deviation');
+                               $action='edit';
+                       }
+                       else
+                       {
+                               $function_msg = lang('add deviation');
+                               $action='add';
+                       }
+
+                       $link_data = array
+                       (
+                               'sid=cookie&op' => 
$this->currentapp.'.uiwo_hour.edit_deviation',
+                               'entity_id'             => $this->entity_id,
+                               'cat_id'                => $this->cat_id,
+                               'id'                    => $id
+                       );
+
+                       $hour = $this->bo->read_single_hour($hour_id);
+
+//html_print_r($workorder);
+//html_print_r($hour);
+
+                       $msgbox_data = $this->bocommon->msgbox_data($receipt);
+
+                       $entry_date = 
(isset($values['entry_date'])?$GLOBALS['phpgw']->common->show_date($values['entry_date'],$dateformat):'');
+
+                       $data = array
+                       (
+                               'lang_workorder'                                
=> lang('Workorder ID'),
+                               'lang_hour_id'                                  
=> lang('Post'),
+                               'msgbox_data'                                   
=> $GLOBALS['phpgw']->common->msgbox($msgbox_data),
+                               'form_action'                                   
=> $this->bocommon->link('/index.php',$link_data),
+                               'done_action'                                   
=> 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiwo_hour.deviation&workorder_id='
 . $workorder_id . '&hour_id=' . $hour_id),
+                               'lang_id'                                       
        => lang('deviation ID'),
+                               'lang_descr'                                    
=> lang('Descr'),
+                               'lang_save'                                     
        => lang('save'),
+                               'lang_done'                                     
        => lang('done'),
+                               'lang_date'                                     
        => lang('date'),
+                               'value_id'                                      
        => $id,
+                               'value_workorder_id'                    => 
$workorder_id,
+                               'value_hour_id'                                 
=> $hour_id,
+                               'entry_date'                                    
=> $entry_date,
+                               'value_id'                                      
        => $id,
+                               'lang_descr_standardtext'               => 
lang('Enter a description of the deviation'),
+                               'lang_done_standardtext'                => 
lang('Back to the list'),
+                               'lang_save_standardtext'                => 
lang('Save the deviation'),
+                               'lang_amount'                                   
=> lang('amount'),
+                               'value_amount'                                  
=> $values['amount'],
+                               'value_descr'                                   
=> $values['descr']
+                       );
+
+                       $appname                                                
= lang('workorder');
+
+                       $GLOBALS['phpgw_info']['flags']['app_header'] = 
lang($this->currentapp) . ' - ' . $appname . ': ' . $function_msg;
+                       return array('edit_deviation' => $data);
+               }
+
+               function common_data($workorder_id,$view='')
+               {
+
+                       $workorder      = 
$this->boworkorder->read_single($workorder_id);
+/*                     if 
(!$this->bocommon->check_perms($workorder['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='
 . $workorder_id);
+                       }
+*/
+                       $hour_list = $this->bo->read($workorder_id);
+//html_print_r($hour_list);
+                       $grouping_descr_old='';
+
+                       if (isset($hour_list) AND is_array($hour_list))
+                       {
+                               foreach($hour_list as $hour)
+                               {
+                                       $sum_hour       = $sum_hour + 
$hour['cost'];
+                                       $sum_deviation  = $sum_deviation + 
$hour['deviation'];
+
+                                       
if($hour['grouping_descr']!=$grouping_descr_old)
+                                       {
+                                               $new_grouping   = true;
+                                       }
+                                       else
+                                       {
+                                               $new_grouping   = false;
+                                       }
+
+                                       $grouping_descr_old     = 
$hour['grouping_descr'];
+
+                                       if($hour['activity_num'])
+                                       {
+                                               $code   = $hour['activity_num'];
+                                       }
+                                       else
+                                       {
+                                               $code   = 
str_replace("-",$hour['tolerance'],$hour['ns3420_id']);
+                                       }
+
+                                       if($hour['count_deviation'] || $view)
+                                       {
+                                               $deviation=$hour['deviation'];
+                                       }
+                                       else
+                                       {
+                                               $deviation=lang('edit');
+                                       }
+
+                                       $content[] = array
+                                       (
+
+                                               'post'                          
                => sprintf("%02s",$workorder['chapter_id']) . '.' . 
sprintf("%02s",$hour['building_part']) . '.' . 
sprintf("%02s",$hour['grouping_id']) . '.' . sprintf("%03s",$hour['record']),
+                                               'hour_id'                       
                => $hour['hour_id'],
+                                               'activity_num'                  
        => $hour['activity_num'],
+                                               'hours_descr'                   
        => $hour['hours_descr'],
+                                               'activity_descr'                
        => $hour['activity_descr'],
+                                               'new_grouping'                  
        => $new_grouping,
+                                               'grouping_id'                   
        => $hour['grouping_id'],
+                                               'grouping_descr'                
        => $hour['grouping_descr'],
+                                               'ns3420_id'                     
                => $hour['ns3420_id'],
+                                               'code'                          
                => $code,
+                                               'remark'                        
                => $hour['remark'],
+                                               'building_part'                 
        => $hour['building_part'],
+                                               'quantity'                      
                => $hour['quantity'],
+                                               'cost'                          
                => $hour['cost'],
+                                               'unit'                          
                => $hour['unit'],
+                                               'billperae'                     
                => $hour['billperae'],
+                                               'deviation'                     
                => $deviation,
+                                               'result'                        
                => ($hour['deviation']+$hour['cost']),
+                                               'link_deviation'                
        => 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiwo_hour.deviation&workorder_id='
 . $workorder_id . '&hour_id=' . $hour['hour_id']),
+                                               'link_edit'                     
                => 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiwo_hour.edit&workorder_id='
 . $workorder_id . '&hour_id=' . $hour['hour_id']),
+                                               'lang_edit_statustext'          
=> lang('edit/customise this hour'),
+                                               'lang_delete_statustext'        
=> lang('delete this hour'),
+                                               'text_edit'                     
                => lang('edit'),
+                                               'text_delete'                   
        => lang('delete')
+                                       );
+                               }
+                       }
+
+                       
$this->bo->update_deviation(array('workorder_id'=>$workorder_id,'sum_deviation'=>$sum_deviation));
+
+//html_print_r($content);
+
+                       $table_header[] = array
+                       (
+                               'lang_post'             => lang('Post'),
+                               'lang_code'             => lang('Code'),
+                               'lang_descr'    => lang('descr'),
+                               'lang_unit'             => lang('Unit'),
+                               'lang_billperae'        => lang('Bill per 
unit'),
+                               'lang_quantity'         => lang('Quantity'),
+                               'lang_cost'                     => lang('cost'),
+                               'lang_deviation '       => lang('deviation '),
+                               'lang_result'           => lang('result'),
+                               'lang_view'                     => lang('view'),
+                               'lang_edit'                     => lang('edit'),
+                               'lang_delete'           => lang('delete')
+                               );
+
+                       $tax = $this->config->config_data['fm_tax'];
+
+                       $sum_result     = $sum_hour+$sum_deviation;
+
+                       $addition_percentage = $sum_result * 
$workorder['addition_percentage']/100;
+                       $sum_tax        = ($sum_result + $addition_percentage + 
$workorder['addition_rs'])*$tax/100;
+                       $total_sum      = $sum_result + $addition_percentage + 
$workorder['addition_rs'] + $sum_tax;
+
+                       
$this->bo->update_calculation(array('workorder_id'=>$workorder_id,'calculation'=>($sum_result+$addition_percentage
 + $workorder['addition_rs'])));
+
+                       $table_sum[] = array
+                       (
+                               'lang_sum_calculation'                  => 
lang('Sum calculation'),
+                               'value_sum_calculation'                 => 
number_format($sum_hour, 2, ',', ''),
+                               'lang_addition_rs'                              
=> lang('Rig addition'),
+                               'value_addition_rs'                             
=> number_format($workorder['addition_rs'], 2, ',', ''),
+                               'lang_addition_percentage'              => 
lang('Percentage addition'),
+                               'value_addition_percentage'             => 
number_format($addition_percentage, 2, ',', ''),
+                               'lang_sum_tax'                                  
=> lang('Sum tax'),
+                               'value_sum_tax'                                 
=> number_format($sum_tax, 2, ',', ''),
+                               'lang_total_sum'                                
=> lang('Total sum'),
+                               'value_total_sum'                               
=> number_format($total_sum, 2, ',', ''),
+                               'lang_sum_deviation'                    => 
lang('Sum deviation'),
+                               'sum_deviation'                                 
=> number_format($sum_deviation, 2, ',', ''),
+                               'sum_result'                                    
=> number_format($sum_result, 2, ',', '')
+                       );
+
+                       $workorder_data = array(
+                               'link_workorder'                                
=> 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiworkorder.edit&id='
 . $workorder_id),
+                               'lang_vendor_name'                              
=> lang('Vendor'),
+                               'vendor_name'                                   
=> $workorder['vendor_name'],
+                               'vendor_email'                                  
=> $workorder['vendor_email'],
+                               'descr'                                         
        => $workorder['descr'],
+
+                               'lang_workorder_id'                             
=> lang('Workorder ID'),
+                               'workorder_id'                                  
=> $workorder['workorder_id'],
+                               'lang_project_id'                               
=> lang('Project ID'),
+                               'link_project'                                  
=> 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiproject.edit&id='
 . $workorder['project_id']),
+                               'project_id'                                    
=> $workorder['project_id'],
+
+                               'lang_workorder_title'                  => 
lang('Workorder title'),
+                               'workorder_title'                               
=> $workorder['title']
+                               );
+
+
+
+                       $common_data = array(
+                               'content'                               => 
$content,
+                               'total_hours_records'   => count($content),
+                               'table_header'                  => 
$table_header,
+                               'table_sum'                     => $table_sum,
+                               'workorder'                     => $workorder,
+                               'workorder_data'                => 
$workorder_data,
+                               );
+
+                       return $common_data;
+               }
+
+               function save_template()
+               {
+
+                       $this->bocommon->xsl_add_file(array('wo_hour',
+                                                                               
'menu'));
+
+                       $values                 = 
get_var('values',array('POST'));
+                       $workorder_id   = 
get_var('workorder_id',array('POST','GET'));
+
+                       if($values['name'])
+                       {
+                               $receipt        = 
$this->bo->add_template($values,$workorder_id);
+                       }
+
+                       $common_data=$this->common_data($workorder_id);
+
+                       $link_data = array
+                       (
+                               'sid=cookie&op'         => 
$this->currentapp.'.uiwo_hour.index',
+                               'workorder_id'  => $workorder_id
+                       );
+
+                       $msgbox_data = $this->bocommon->msgbox_data($receipt);
+
+                       $data = array
+                       (
+                               'msgbox_data'                                   
=> $GLOBALS['phpgw']->common->msgbox($msgbox_data),
+                               'done_action'                                   
=> $this->bocommon->link('/index.php',$link_data),
+                               'add_action'                                    
=> 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiwo_hour.save_template&workorder_id='
 . $workorder_id),
+
+                               'lang_done_statustext'                  => 
lang('Back to the workorder list'),
+                               'lang_add_statustext'                   => 
lang('Adds this workorders calculation as a template for later use'),
+                               'lang_search_statustext'                => 
lang('Adds a new workorder to an existing project'),
+
+                               'lang_done'                                     
        => lang('Done'),
+                               'lang_add'                                      
        => lang('Add'),
+                               'lang_search'                                   
=> lang('Search'),
+
+                               'lang_name'                                     
=> lang('name'),
+                               'lang_name_statustext'          => lang('Enter 
the name the template'),
+
+                               'lang_descr'                                    
=> lang('Description'),
+                               'lang_descr_statustext'         => lang('Enter 
a short description of this template'),
+
+                               'total_hours_records'                   => 
$common_data['total_hours_records'],
+                               'lang_total_records'                    => 
lang('Total records'),
+                               'table_header_hour'                             
=> $common_data['table_header'],
+                               'values_hour'                                   
=> $common_data['content'],
+                               'workorder_data'                                
=> $common_data['workorder_data']
+                       );
+
+                       $appname                                                
= lang('Workorder');
+                       $function_msg                                   = 
lang('Add template');
+
+                       $GLOBALS['phpgw_info']['flags']['app_header'] = 
lang($this->currentapp) . ' - ' . $appname . ': ' . $function_msg;
+                       return array('add_template' => $data);
+               }
+
+               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('wo_hour',
+                                                                               
'menu'));
+
+                       $delete = get_var('delete',array('POST','GET'));
+                       $hour_id = get_var('hour_id',array('POST','GET'));
+                       $workorder_id = 
get_var('workorder_id',array('POST','GET'));
+                       $links = $this->menu->links();
+
+                       if($delete && $hour_id)
+                       {
+                               $receipt = 
$this->bo->delete($hour_id,$workorder_id);
+                       }
+
+                       $common_data=$this->common_data($workorder_id);
+
+                       $table_add[] = array
+                       (
+                               'lang_add_prizebook'                            
=> lang('Add from prizebook'),
+                               'lang_add_prizebook_statustext'         => 
lang('add items from this vendors prizebook'),
+                               'add_prizebook_action'                          
=> 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiwo_hour.prizebook&workorder_id='
 . $workorder_id),
+
+                               'lang_add_template'                             
        => lang('Add from template'),
+                               'lang_add_template_statustext'          => 
lang('add items from a predefined template'),
+                               'add_template_action'                           
=> 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uitemplate.index&lookup=true&workorder_id='
 . $workorder_id),
+
+                               'lang_add_custom'                               
        => lang('Add custom'),
+                               'lang_add_custom_statustext'            => 
lang('Add single custom line'),
+                               'add_custom_action'                             
        => 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiwo_hour.edit&from=index&workorder_id='
 . $workorder_id),
+
+                               'lang_save_template'                            
=> lang('Save as template'),
+                               'lang_save_template_statustext'         => 
lang('Save this workorder as a template for later use'),
+                               'save_template_action'                          
=> 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiwo_hour.save_template&from=index&workorder_id='
 . $workorder_id),
+
+                               'lang_print_view'                               
        => lang('Print view'),
+                               'lang_print_view_statustext'            => 
lang('View the complete workorder'),
+                               'print_view_action'                             
        => 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiwo_hour.view&from=index&workorder_id='
 . $workorder_id),
+
+                               'lang_view_tender'                              
        => lang('View tender'),
+                               'lang_view_tender_statustext'           => 
lang('View the complete workorder as a tender for bidding'),
+                               'view_tender_action'                            
=> 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiwo_hour.tender&from=index&workorder_id='
 . $workorder_id),
+
+                               'lang_show_cost'                                
        => lang('Show calculated cost'),
+                               'lang_show_cost_statustext'                     
=> lang('Show calculated cost on the printview'),
+
+                               'lang_show_details'                             
        => lang('Show details'),
+                               'lang_show_details_statustext'          => 
lang('Show details'),
+
+                               'lang_mark_draft'                               
        => lang('Mark as DRAFT'),
+                               'lang_mark_draft_statustext'            => 
lang('Mark the tender as DRAFT')
+
+                       );
+
+                       $msgbox_data = $this->bocommon->msgbox_data($receipt);
+
+                       $data = array
+                       (
+                               'msgbox_data'                                   
=> $GLOBALS['phpgw']->common->msgbox($msgbox_data),
+                               'link_delete'                                   
=> 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiwo_hour.index&delete=true&workorder_id='
 . $workorder_id),
+                               'function'                                      
        => 'index',
+                               'links'                                         
        => $links,
+                               'num_records'                                   
=> count($hours_list),
+                               'total_hours_records'                   => 
$common_data['total_hours_records'],
+                               'lang_total_records'                    => 
lang('Total records'),
+                               'table_header_hour'                             
=> $common_data['table_header'],
+                               'values_hour'                                   
=> $common_data['content'],
+                               'workorder_data'                                
=> $common_data['workorder_data'],
+                               'table_add'                                     
        => $table_add,
+                               'table_sum'                                     
        => $common_data['table_sum']
+                       );
+
+//html_print_r($common_data['content']);
+
+                       $appname                                                
= lang('Workorder');
+                       $function_msg                                   = 
lang('list hours');
+
+                       $GLOBALS['phpgw_info']['flags']['app_header'] = 
lang($this->currentapp) . ' - ' . $appname . ': ' . $function_msg;
+                       //$this->save_sessiondata();
+                       return array('list_hour' => $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);
+                       }
+
+                       $this->bocommon->xsl_add_file(array('wo_hour',
+                                                                               
'menu'));
+
+                       $show_cost                              = 
get_var('show_cost',array('POST','GET'));
+                       $show_details                   = 
get_var('show_details',array('POST','GET'));
+                       $workorder_id                   = 
get_var('workorder_id',array('POST','GET'));
+                       $to_email                               = 
get_var('to_email',array('POST','GET'));
+                       $update_email                   = 
get_var('update_email',array('POST','GET'));
+                       $send_order                             = 
get_var('send_order',array('POST','GET'));
+                       $no_email                               = 
get_var('no_email',array('POST','GET'));
+
+                       if($update_email)
+                       {
+                               
$this->bo->update_email($to_email,$workorder_id);
+                       }
+                       $workorder = 
$this->boworkorder->read_single($workorder_id);
+
+                       $table_header_history[] = array
+                       (
+                               'lang_date'                     => lang('Date'),
+                               'lang_user'                     => lang('User'),
+                               'lang_action'           => lang('Action'),
+                               'lang_new_value'        => lang('New value')
+                       );
+
+
+                       $common_data            = 
$this->common_data($workorder_id);
+                       if($show_details)
+                       {
+                               $values_hour            = 
$common_data['content'];
+                       }
+                       $project                        = 
$this->boproject->read_single($common_data['workorder']['project_id']);
+
+                       $bolocation                     = 
CreateObject($this->currentapp.'_bolocation');
+
+                       $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'
+                                               ));
+
+
+                       if(!$show_cost)
+                       {
+                               $m      = count($values_hour);
+                               for ($i=0;$i<$m;$i++)
+                               {
+                                       unset($values_hour[$i]['cost']);
+                                       unset($values_hour[$i]['billperae']);
+                               }
+                               
unset($common_data['table_sum'][0]['value_total_sum']);
+                       }
+
+                       $table_header[] = array
+                       (
+                               'lang_post'                     => lang('Post'),
+                               'lang_code'                     => lang('Code'),
+                               'lang_descr'            => lang('descr'),
+                               'lang_unit'                     => lang('Unit'),
+                               'lang_billperae'        => lang('Bill per 
unit'),
+                               'lang_quantity'         => lang('Quantity'),
+                               'lang_cost'                     => lang('cost')
+                               );
+
+
+                       $table_send[] = array
+                       (
+                               'lang_send_order'                               
=> lang('Send Order'),
+                               'lang_send_order_statustext'    => lang('Send 
this order by email')
+                       );
+
+                       $table_done[] = array
+                       (
+                               'lang_done'                                     
        => lang('Done'),
+                               'lang_done_statustext'                  => 
lang('Back to calculation'),
+                               'done_action'                                   
=> 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiwo_hour.index&workorder_id='
 . $workorder_id)
+                       );
+
+                       $dateformat                                             
= $GLOBALS['phpgw_info']['user']['preferences']['common']['dateformat'];
+                       $date                                                   
= $GLOBALS['phpgw']->common->show_date(time(),$dateformat);
+
+                       $from_name      =       
$GLOBALS['phpgw_info']['user']['fullname'];
+                       $from_email     =       
$GLOBALS['phpgw_info']['user']['preferences'][$this->currentapp]['email'];
+
+                       $email_data = array
+                       (
+                               'location_data'                                 
=>      $location_data,
+                               'lang_workorder'                                
=>      lang('Workorder ID'),
+                               'workorder_id'                                  
=>      $workorder_id,
+
+                               'lang_date'                                     
        =>      lang('Date'),
+                               'date'                                          
        =>      $date,
+
+                               'lang_start_date'                               
=>      lang('Start date'),
+                               'start_date'                                    
=>      $workorder['start_date'],
+
+                               'lang_end_date'                                 
=>      lang('End date'),
+                               'end_date'                                      
        =>      $workorder['end_date'],
+
+                               'lang_from'                                     
        =>      lang('From'),
+                               'from_name'                                     
        =>      $from_name,
+                               'from_email'                                    
=>      $from_email,
+                               'from_phone'                                    
=>      
$GLOBALS['phpgw_info']['user']['preferences'][$this->currentapp]['cellphone'],
+                               'lang_district'                                 
=>      lang('District'),
+                               'district'                                      
        =>      $project['location_data']['district_id'],
+
+                               'lang_to'                                       
        =>      lang('To'),
+                               'to_name'                                       
        =>      $workorder['vendor_name'],
+
+                               'lang_title'                                    
=>      lang('Title'),
+                               'title'                                         
        =>      $workorder['title'],
+
+
+                               'lang_descr'                                    
=>      lang('Description'),
+                               'descr'                                         
        =>      $workorder['descr'],
+
+                               'lang_budget_account'                   =>      
lang('Budget account'),
+                               'budget_account'                                
=>      $workorder['b_account_id'],
+
+                               'lang_sum_calculation'                  =>      
lang('Sum of calculation'),
+                               'sum_calculation'                               
=>      $common_data['table_sum'][0]['value_total_sum'],
+
+
+//                             'lang_vendor'                                   
=>      lang('vendor'),
+
+                               'lang_branch'                                   
=> lang('branch'),
+                               'branch_list'                                   
=> $this->boproject->select_branch_p_list($project['project_id']),
+                               'other_branch'                                  
=> $project['other_branch'],
+
+                               'key_responsible_list'                  => 
$this->boproject->select_branch_list($project['key_responsible']),
+                               'lang_key_responsible'                  => 
lang('key responsible'),
+
+                               'key_fetch_list'                                
=> $this->boproject->select_key_location_list($workorder['key_fetch']),
+                               'lang_key_fetch'                                
=>      lang('Where to pick up the key'),
+
+                               'key_deliver_list'                              
=> $this->boproject->select_key_location_list($workorder['key_deliver']),
+                               'lang_key_deliver'                              
=>      lang('Where to deliver the key'),
+
+                               'currency'                                      
        => $GLOBALS['phpgw_info']['user']['preferences']['common']['currency'],
+
+                               'lang_cost_tax'                                 
=>      lang('Cost (incl tax):'),
+                               'lang_materials'                                
=>      lang('Materials:__________'),
+                               'lang_work'                                     
        =>      lang('work:____________'),
+
+                               'table_header_view_order'               => 
$table_header,
+                               'values_view_order'                             
=> $values_hour
+                       );
+
+
+                       if($send_order && !$to_email)
+                       {
+                                       
$receipt['error'][]=array('msg'=>lang('No mailaddress is selected'));
+                       }
+
+                       if($to_email)
+                       {
+                               
$this->create_html->add_file(array(PHPGW_SERVER_ROOT . SEP . $this->currentapp 
. SEP . 'templates' . SEP . 'default' . SEP . 'wo_hour'));
+                               
$this->create_html->add_file(array(PHPGW_SERVER_ROOT . SEP . $this->currentapp 
. SEP . 'templates' . SEP . 'default' . SEP . 'location_view'));
+
+                               
$this->create_html->set_var('phpgw',array('email_data' => $email_data));
+                               $html = $this->create_html->parse();
+//                             print $html;
+
+                               $headers = "Return-Path: <". $from_email 
.">\r\n";
+                               $headers .= "From: " . $from_name . "<" . 
$from_email .">\r\n";
+                               $headers .= "Bcc: " . $from_name . "<" . 
$from_email .">\r\n";
+                               $headers .= "Content-type: text/html; 
charset=iso-8859-1\r\n";
+                               $headers .= "MIME-Version: 1.0\r\n";
+                               $subject = lang('Workorder').": ".$workorder_id;
+
+                               $mail_method= 
$this->config->config_data['fmwrkorder_mail'];
+//                             echo 'mail_method: '.$mail_method .'<BR>';
+
+                               if ($mail_method=='smtp'):
+                               {
+                                       $bcc = $from_email;
+                                       $send = CreateObject('phpgwapi_send');
+                                       $rcpt = $send->msg('email', $to_email, 
$subject, $html, '', $cc, $bcc, $from_email, $from_name, 'html');
+                               }
+                               elseif ($mail_method=='sendmail'):
+                               {
+                                       $rcpt=mail($to_email,$subject,$html, 
$headers);
+                               }
+                               else:
+                               {
+                                       
$receipt['error'][]=array('msg'=>lang('Mailing method is not chosen! (admin 
section)'));
+                               }
+                               endif;
+
+                               if ($rcpt)
+                               {
+                                       $historylog     = 
CreateObject($this->currentapp.'_historylog','workorder');
+                                       
$historylog->add('M',$workorder_id,$to_email);
+                                       
$receipt['message'][]=array('msg'=>lang('Workorder is sent by email!'));
+                               }
+                               else
+                               {
+                                       
$receipt['error'][]=array('msg'=>lang('The recipient did not get the email:'));
+                                       
$receipt['error'][]=array('msg'=>lang('From') . ' ' . $from_email);
+                                       
$receipt['error'][]=array('msg'=>lang('To') . ' ' . $to_email);
+                               }
+                       }
+
+                       $workorder_history = 
$this->boworkorder->read_record_history($workorder_id);
+
+                       $msgbox_data = $this->bocommon->msgbox_data($receipt);
+
+                       $data = array
+                       (
+                               'msgbox_data'                                   
=> $GLOBALS['phpgw']->common->msgbox($msgbox_data),
+                               'lang_mail'                                     
        =>      lang('E-Mail'),
+                               'lang_update_email'                             
=>      lang('Update email'),
+                               'lang_update_email_statustext'  =>      
lang('Check to update the email-address for this vendor'),
+                               'lang_to_email_address_statustext'      =>      
lang('The address to which this order will be sendt'),
+                               'to_email'                                      
        =>      $workorder['vendor_email'],
+                               'email_list'                                    
=> 
$this->bo->get_extra_email($to_email,$workorder['vendor_email'],$workorder['vendor_id']),
+                               'lang_select_email'                             
=> lang('Select email'),
+
+                               'send_order_action'                             
=> 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiwo_hour.view&send=true&workorder_id='
 . $workorder_id . '&show_details=' . $show_details),
+
+                               'lang_no_history'                               
=>      lang('No history'),
+                               'lang_history'                                  
=>      lang('History'),
+                               'workorder_history'                             
=> $workorder_history,
+                               'table_header_history'                  => 
$table_header_history,
+                               'email_data'                                    
=> $email_data,
+                               'no_email'                                      
        => $no_email,
+                               'table_send'                                    
=> $table_send,
+                               'table_done'                                    
=> $table_done
+                       );
+
+//html_print_r($data);
+
+                       $appname                                                
= lang('Workorder');
+                       $function_msg                                   = 
lang('Send order');
+
+                       $GLOBALS['phpgw_info']['flags']['app_header'] = 
lang($this->currentapp) . ' - ' . $appname . ': ' . $function_msg;
+
+                       //$this->save_sessiondata();
+                       return array('view' => $data);
+               }
+
+
+               function tender()
+               {
+                       $pdf                                    = 
CreateObject($this->currentapp.'_pdf');
+                       if(!$this->acl_read)
+                       {
+                               
$this->bocommon->redirect_link('/index.php','sid=cookie&op='.$this->currentapp.'.uilocation.stop&perm=1&acl_location='
 . $this->acl2_location);
+                       }
+                       $GLOBALS['phpgw_info']['flags']['noframework'] = True;
+                       $show_cost = get_var('show_cost',array('POST','GET'));
+                       $mark_draft = get_var('mark_draft',array('POST','GET'));
+                       $workorder_id = 
get_var('workorder_id',array('POST','GET'));
+
+                       $common_data            = 
$this->common_data($workorder_id);
+                       $values_hour            = $common_data['content'];
+                       $project                        = 
$this->boproject->read_single($common_data['workorder']['project_id']);
+
+                       $grouping_descr_old     = '';
+
+                       if (isSet($values_hour) AND is_array($values_hour))
+                       {
+                               foreach($values_hour as $hour)
+                               {
+                                       $descr= $hour['hours_descr'];
+
+                                       if($hour['remark'])
+                                       {
+                                               $descr .= "\n" . 
$hour['remark'];
+                                       }
+
+                                       if(!$show_cost)
+                                       {
+                                               unset($hour['billperae']);
+                                               unset($hour['cost']);
+                                       }
+
+                                       
if($hour['grouping_descr']!=$grouping_descr_old)
+                                       {
+                                               $content[] = array
+                                               (
+                                                       lang('post')            
                => $hour['grouping_descr'],
+                                                       lang('code')            
                => '',
+                                                       lang('descr')           
                => '',
+                                                       lang('unit')            
                => '',
+                                                       lang('quantity')        
                => '',
+                                                       lang('bill per unit')   
        => '',
+                                                       lang('cost')            
                => ''
+                                               );
+                                       }
+
+                                       $grouping_descr_old     = 
$hour['grouping_descr'];
+
+                                       $content[] = array
+                                       (
+                                               lang('post')                    
        => $hour['post'],
+                                               lang('code')                    
        => $hour['code'],
+                                               lang('descr')                   
        => $descr,
+                                               lang('unit')                    
        => $hour['unit'],
+                                               lang('quantity')                
        => $hour['quantity'],
+                                               lang('bill per unit')           
=> $hour['billperae'],
+                                               lang('cost')                    
        => $hour['cost']
+                                       );
+                               }
+                       }
+
+                       $dateformat = 
$GLOBALS['phpgw_info']['user']['preferences']['common']['dateformat'];
+                       $date = 
$GLOBALS['phpgw']->common->show_date('',$dateformat);
+
+                       // don't want any warnings turning up in the pdf code 
if the server is set to 'anal' mode.
+                       //error_reporting(7);
+                       error_reporting(E_ALL);
+                       set_time_limit(1800);
+                       $pdf -> ezSetMargins(50,70,50,50);
+                       $pdf->selectFont(PHPGW_APP_INC . 
'/pdf/fonts/Helvetica.afm');
+
+                       // put a line top and bottom on all the pages
+                       $all = $pdf->openObject();
+                       $pdf->saveState();
+                       $pdf->setStrokeColor(0,0,0,1);
+                       $pdf->line(20,40,578,40);
+                       $pdf->line(20,822,578,822);
+                       $pdf->addText(50,823,6,lang('Chapter') . ' ' 
.$common_data['workorder']['chapter_id'] . ' ' . 
$common_data['workorder']['chapter'] );
+                       $pdf->addText(50,34,6,'BBB');
+                       $pdf->addText(300,34,6,$date);
+                       if($mark_draft)
+                       {
+                               $pdf->setColor(1,0,0);
+               //              $pdf->setColor(66,66,99);
+                               $pdf->addText(200,400,40,lang('DRAFT'),-10);
+                               $pdf->setColor(1,0,0);
+                       }
+                       $pdf->restoreState();
+                       $pdf->closeObject();
+                       // note that object can be told to appear on just odd 
or even pages by changing 'all' to 'odd'
+                       // or 'even'.
+                       $pdf->addObject($all,'all');
+
+                       $pdf->ezSetDy(-100);
+
+
+                       $pdf->ezStartPageNumbers(500,28,10,'right','{PAGENUM} ' 
. lang('of') . ' {TOTALPAGENUM}',1);
+
+                       $pdf->ezText($project['name'],20);
+                       $pdf->ezText($project['descr'],14);
+                       $pdf->ezSetDy(-50);
+                       $pdf->ezText(lang('Order') . ': ' . $workorder_id . ' ' 
.$common_data['workorder']['title'],14);
+                       $pdf->ezText(lang('Chapter') . ' ' 
.$common_data['workorder']['chapter_id'] . ' ' . 
$common_data['workorder']['chapter'] ,14);
+
+                       if(is_array($values_hour))
+                       {
+                               $pdf->ezNewPage();
+                               $pdf->ezTable($content,'',$project['name'],
+                                                       
array('xPos'=>70,'xOrientation'=>'right','width'=>500,0,'shaded'=>0,'fontSize' 
=> 8,'showLines'=> 2,'titleFontSize' => 12,'outerLineThickness'=>2
+                                                       ,'cols'=>array(
+                                                       lang('bill per 
unit')=>array('justification'=>'right','width'=>50)
+                                                       
,lang('quantity')=>array('justification'=>'right','width'=>50)
+                                                       
,lang('cost')=>array('justification'=>'right','width'=>50)
+                                                       
,lang('unit')=>array('width'=>40)
+                                                       
,lang('descr')=>array('width'=>120))
+                                                       ));
+                       }
+
+               //      $pdf->ezStream();
+                       $document= $pdf->ezOutput();
+                       $size=strlen($document);
+
+                       $browser = CreateObject('phpgwapi_browser');
+                       
$browser->content_header('Template.pdf','application/pdf',$size);
+
+                       echo $document;
+               }
+
+               function prizebook()
+               {
+                       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('wo_hour',
+                                                                               
'menu',
+                                                                               
'nextmatchs',
+                                                                               
'search_field'));
+
+                       $delete = get_var('delete',array('POST','GET'));
+                       $hour_id = get_var('hour_id',array('POST','GET'));
+
+                       $workorder_id = 
get_var('workorder_id',array('POST','GET'));
+                       $values = get_var('values',array('POST'));
+//html_print_r($values);
+
+                       if($delete && $hour_id)
+                       {
+                               $receipt = 
$this->bo->delete($hour_id,$workorder_id);
+                       }
+
+
+                       if($values['add'])
+                       {
+                               
$receipt=$this->bo->add_hour($values,$workorder_id);
+                       }
+
+                       $links = $this->menu->links();
+
+                       $common_data=$this->common_data($workorder_id);
+
+                       $workorder      = $common_data['workorder'];
+
+                       if($workorder['vendor_id'])
+                       {
+                               $this->bopricebook->cat_id = 
$workorder['vendor_id'];
+                               $this->bopricebook->start = $this->start;
+                               $this->bopricebook->query = $this->query;
+                               $pricebook_list = $this->bopricebook->read();
+                       }
+
+//html_print_r($pricebook_list);
+                       $i=0;
+                       while (is_array($pricebook_list) && list(,$pricebook) = 
each($pricebook_list))
+                       {
+                               $content_prizebook[] = array
+                               (
+                                       'counter'                               
=> $i,
+                                       'activity_id'                   => 
$pricebook['activity_id'],
+                                       'num'                                   
=> $pricebook['num'],
+                                       'branch'                                
=> $pricebook['branch'],
+                                       'vendor_id'                             
=> $pricebook['vendor_id'],
+                                       'm_cost'                                
=> $pricebook['m_cost'],
+                                       'w_cost'                                
=> $pricebook['w_cost'],
+                                       'total_cost'                    => 
$pricebook['total_cost'],
+                                       'this_index'                    => 
$pricebook['this_index'],
+                                       'unit'                                  
=> $pricebook['unit'],
+                                       'descr'                                 
=> $pricebook['descr'],
+                                       'base_descr'                    => 
$pricebook['base_descr']
+                               );
+
+                               $i++;
+                       }
+
+                       $table_header_prizebook[] = array
+                       (
+                               'sort_num'      => 
$this->bocommon->show_sort_order(array
+                                                                               
(
+                                                                               
        'sort'  => $this->sort,
+                                                                               
        'var'   =>      'num',
+                                                                               
        'order' =>      $this->order,
+                                                                               
        'extra'         => array('sid=cookie&op'        => 
$this->currentapp.'.uiwo_hour.prizebook',
+                                                                               
                                                        'workorder_id'  
=>$workorder_id,
+                                                                               
                                                        'allrows'       
=>$this->allrows)
+                                                                               
)),
+                               'lang_num'                      => 
lang('Activity Num'),
+                               'lang_branch'           => lang('Branch'),
+                               'lang_vendor'           => lang('Vendor'),
+                               'lang_select'           => lang('Select'),
+                               'lang_total_cost'       => lang('Total Cost'),
+                               'lang_descr'            => lang('Description'),
+                               'lang_base_descr'       => lang('Base'),
+                               'lang_m_cost'           => lang('Material 
cost'),
+                               'lang_w_cost'           => lang('Labour cost'),
+                               'lang_unit'                     => lang('Unit'),
+                               'lang_quantity'         => lang('Quantity'),
+
+                               'lang_view'                     => lang('view'),
+                               'lang_edit'                     => lang('edit'),
+                               'sort_total_cost'       => 
$this->bocommon->show_sort_order(array
+                                                                               
(
+                                                                               
        'sort'  => $this->sort,
+                                                                               
        'var'   =>      'total_cost',
+                                                                               
        'order' =>      $this->order,
+                                                                               
        'extra'         => array('sid=cookie&op'        => 
$this->currentapp.'.uiwo_hour.prizebook',
+                                                                               
                                                        'workorder_id'  
=>$workorder_id,
+                                                                               
                                                        'allrows'       
=>$this->allrows)
+                                                                               
))
+                       );
+
+
+                       $table_done[] = array
+                       (
+                               'lang_done'                             => 
lang('Done'),
+                               'lang_done_statustext'  => lang('Back to list'),
+                               'done_action'                   => 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiwo_hour.index&workorder_id='
 . $workorder_id)
+                       );
+
+                       $link_data = array
+                       (
+                               'sid=cookie&op' => 
$this->currentapp.'.uiwo_hour.prizebook',
+                                               'sort'                  
=>$this->sort,
+                                               'order'                 
=>$this->order,
+                                               'workorder_id'  =>$workorder_id,
+                                               'allrows'               
=>$this->allrows,
+                                               'query'                 
=>$this->query
+                       );
+
+                       $link_data_nextmatch = array
+                       (
+                               'sid=cookie&op' => 
$this->currentapp.'.uiwo_hour.prizebook',
+                                               'sort'                  
=>$this->sort,
+                                               'order'                 
=>$this->order,
+                                               'workorder_id'  =>$workorder_id,
+                                               'query'                 
=>$this->query
+                       );
+
+                       $link_data_delete = array
+                       (
+                               'sid=cookie&op' => 
$this->currentapp.'.uiwo_hour.prizebook',
+                                               'sort'                  
=>$this->sort,
+                                               'order'                 
=>$this->order,
+                                               'workorder_id'  =>$workorder_id,
+                                               'allrows'               
=>$this->allrows,
+                                               'delete'                =>true,
+                                               'query'                 
=>$this->query
+                       );
+
+
+                       if(!$this->allrows)
+                       {
+                               $record_limit   = 15; 
//$GLOBALS['phpgw_info']['user']['preferences']['common']['maxmatchs'];
+                       }
+                       else
+                       {
+                               $record_limit   = 
$this->bopricebook->total_records;
+                       }
+
+
+                       $msgbox_data = $this->bocommon->msgbox_data($receipt);
+
+                       $data = array
+                       (
+                               'msgbox_data'                                   
=> $GLOBALS['phpgw']->common->msgbox($msgbox_data),
+                               'form_action'                                   
=> $this->bocommon->link('/index.php',$link_data),
+                               'lang_add_statustext'                   => 
lang('Add the selected items'),
+                               'lang_add'                                      
        => lang('Add'),
+                               'link_delete'                                   
=> $this->bocommon->link('/index.php',$link_data_delete),
+
+                               'function'                                      
        => 'prizebook',
+                               'links'                                         
        => $links,
+                               'allrows'                                       
        => $this->allrows,
+                               'allow_allrows'                                 
=> true,
+                               'start_record'                                  
=> $this->start,
+                               'record_limit'                                  
=> $record_limit,
+                               'num_records'                                   
=> count($pricebook_list),
+                               'all_records'                                   
=> $this->bopricebook->total_records,
+                               'link_url'                                      
        => $this->bocommon->link('/index.php',$link_data_nextmatch),
+                               'img_path'                                      
        => 
dirname($GLOBALS['HTTP_SERVER_VARS']['PHP_SELF']).'/api/skins/default/images',
+                               'select_action'                                 
=> $this->bocommon->link('/index.php',$link_data),
+
+                               '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,
+                               'lang_search'                                   
=> lang('search'),
+                               'workorder_data'                                
=> $common_data['workorder_data'],
+                               'table_header_prizebook'                => 
$table_header_prizebook,
+                               'values_prizebook'                              
=> $content_prizebook,
+                               'total_hours_records'                   => 
$common_data['total_hours_records'],
+                               'lang_total_records'                    => 
lang('Total records'),
+                               'table_header_hour'                             
=> $common_data['table_header'],
+                               'values_hour'                                   
=> $common_data['content'],
+                               'table_sum'                                     
        => $common_data['table_sum'],
+                               'table_done'                                    
=> $table_done
+                       );
+
+                       $appname                                                
= lang('pricebook');
+                       $function_msg                                   = 
lang('list pricebook');
+
+                       $GLOBALS['phpgw_info']['flags']['app_header'] = 
lang($this->currentapp) . ' - ' . $appname . ': ' . $function_msg;
+                       //$this->save_sessiondata();
+                       return array('prizebook' => $data);
+               }
+
+
+               function template()
+               {
+                       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('wo_hour',
+                                                                               
'menu',
+                                                                               
'nextmatchs',
+                                                                               
'search_field'));
+
+                       $delete = get_var('delete',array('POST','GET'));
+                       $hour_id = get_var('hour_id',array('POST','GET'));
+
+                       $workorder_id = 
get_var('workorder_id',array('POST','GET'));
+                       $template_id = 
get_var('template_id',array('POST','GET'));
+
+                       $values = get_var('values',array('POST'));
+//html_print_r($values);
+
+                       if($delete && $hour_id)
+                       {
+                               $receipt = 
$this->bo->delete($hour_id,$workorder_id);
+                       }
+
+
+                       if($values['add'])
+                       {
+                               
$receipt=$this->bo->add_hour_from_template($values,$workorder_id);
+                       }
+
+                       $links = $this->menu->links();
+
+                       $common_data=$this->common_data($workorder_id);
+
+                       $workorder      = $common_data['workorder'];
+
+                       $botemplate             = 
CreateObject($this->currentapp.'_botemplate');
+                       $template_list  = 
$botemplate->read_template_hour($template_id);
+
+                       $i=0;
+                       $grouping_descr_old='';
+
+                       while (is_array($template_list) && list(,$template) = 
each($template_list))
+                       {
+
+                               
if($template['grouping_descr']!=$grouping_descr_old)
+                               {
+                                       $new_grouping   = true;
+                               }
+                               else
+                               {
+                                       $new_grouping   = false;
+                               }
+
+                               $grouping_descr_old     = 
$template['grouping_descr'];
+
+                               if($template['activity_num'])
+                               {
+                                       $code   = $template['activity_num'];
+                               }
+                               else
+                               {
+                                       $code   = 
str_replace("-",$template['tolerance'],$template['ns3420_id']);
+                               }
+
+
+                               $content_template_hour[] = array
+                               (
+                                       'counter'                               
=> $i,
+                                       'chapter_id'                    => 
$template['chapter_id'],
+                                       'grouping_descr'                => 
$template['grouping_descr'],
+                                       'building_part'                 => 
$template['building_part'],
+                                       'new_grouping'                  => 
$new_grouping,
+                                       'code'                                  
=> $code,
+                                       'activity_id'                   => 
$template['activity_id'],
+                                       'activity_num'                  => 
$template['activity_num'],
+                                       'hours_descr'                   => 
$template['hours_descr'],
+                                       'remark'                                
=> $template['remark'],
+                                       'ns3420_id'                             
=> $template['ns3420_id'],
+                                       'tolerance'                             
=> $template['tolerance'],
+                                       'cost'                                  
=> $template['cost'],
+                                       'unit'                                  
=> $template['unit'],
+                                       'billperae'                             
=> $template['billperae'],
+                                       'building_part'                 => 
$template['building_part'],
+                                       'dim_d'                                 
=> $template['dim_d']
+                               );
+
+                               $i++;
+                       }
+
+                       $table_header_template_hour[] = array
+                       (
+                               'lang_code'                     => lang('Code'),
+                               'lang_descr'            => lang('Description'),
+                               'lang_unit'                     => lang('Unit'),
+                               'lang_quantity'         => lang('Quantity'),
+                               'lang_billperae'        => lang('Bill per 
unit'),
+                               'lang_cost'     => lang('Cost'),
+
+                               'sort_billperae'        => 
$this->bocommon->show_sort_order(array
+                                                                               
(
+                                                                               
        'sort'  => $this->sort,
+                                                                               
        'var'   =>      'billperae',
+                                                                               
        'order' =>      $this->order,
+                                                                               
        'extra'         => array('sid=cookie&op'        => 
$this->currentapp.'.uiwo_hour.template',
+                                                                               
                                                        'workorder_id'  
=>$workorder_id,
+                                                                               
                                                        'template_id'   
=>$template_id,
+                                                                               
                                                        'query'                 
=>$this->query,
+                                                                               
                                                        'allrows'               
=>$this->allrows)
+                                                                               
)),
+                               'lang_select'           => lang('Select'),
+                               'sort_building_part'    => 
$this->bocommon->show_sort_order(array
+                                                                               
(
+                                                                               
        'sort'  => $this->sort,
+                                                                               
        'var'   =>      'building_part',
+                                                                               
        'order' =>      $this->order,
+                                                                               
        'extra'         => array('sid=cookie&op'        => 
$this->currentapp.'.uiwo_hour.template',
+                                                                               
                                                        'workorder_id'  
=>$workorder_id,
+                                                                               
                                                        'template_id'   
=>$template_id,
+                                                                               
                                                        'query'                 
=>$this->query,
+                                                                               
                                                        'allrows'               
=>$this->allrows)
+                                                                               
)),
+                               'lang_building_part'            => 
lang('Building part')
+                       );
+
+
+                       $table_done[] = array
+                       (
+                               'lang_done'                             => 
lang('Done'),
+                               'lang_done_statustext'  => lang('Back to list'),
+                               'done_action'                   => 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiwo_hour.index&workorder_id='
 . $workorder_id)
+                       );
+
+                       $link_data = array
+                       (
+                               'sid=cookie&op' => 
$this->currentapp.'.uiwo_hour.template',
+                                               'sort'                  
=>$this->sort,
+                                               'order'                 
=>$this->order,
+                                               'workorder_id'  =>$workorder_id,
+                                               'template_id'   =>$template_id,
+                                               'allrows'               
=>$this->allrows,
+                                               'query'                 
=>$this->query
+                       );
+
+                       $link_data_nextmatch = array
+                       (
+                               'sid=cookie&op' => 
$this->currentapp.'.uiwo_hour.template',
+                                               'sort'                  
=>$this->sort,
+                                               'order'                 
=>$this->order,
+                                               'workorder_id'  =>$workorder_id,
+                                               'template_id'   =>$template_id,
+                                               'query'                 
=>$this->query
+                       );
+
+                       $link_data_delete = array
+                       (
+                               'sid=cookie&op' => 
$this->currentapp.'.uiwo_hour.template',
+                                               'sort'                  
=>$this->sort,
+                                               'order'                 
=>$this->order,
+                                               'workorder_id'  =>$workorder_id,
+                                               'allrows'               
=>$this->allrows,
+                                               'delete'                =>true,
+                                               'query'                 
=>$this->query
+                       );
+
+
+                       if(!$this->allrows)
+                       {
+                               $record_limit   = 15; 
//$GLOBALS['phpgw_info']['user']['preferences']['common']['maxmatchs'];
+                       }
+                       else
+                       {
+                               $record_limit   = $this->bo->total_records;
+                       }
+
+
+                       $msgbox_data = $this->bocommon->msgbox_data($receipt);
+
+                       $data = array
+                       (
+                               'msgbox_data'                                   
=> $GLOBALS['phpgw']->common->msgbox($msgbox_data),
+                               'lang_select_all'                               
=> lang('Select All'),
+                               'img_check'                                     
        => 
$GLOBALS['phpgw']->common->get_image_path($this->currentapp).'/check.gif',
+                               'check_source'                                  
=> './'.$this->currentapp.'/inc/check.js',
+
+                               'template_id'                                   
=> $template_id,
+                               'form_action'                                   
=> $this->bocommon->link('/index.php',$link_data),
+                               'lang_add_statustext'                   => 
lang('Add the selected items'),
+                               'lang_add'                                      
        => lang('Add'),
+                               'link_delete'                                   
=> $this->bocommon->link('/index.php',$link_data_delete),
+
+                               'function'                                      
        => 'template',
+                               'links'                                         
        => $links,
+                               'allrows'                                       
        => $this->allrows,
+                               'allow_allrows'                                 
=> true,
+                               'start_record'                                  
=> $this->start,
+                               'record_limit'                                  
=> $record_limit,
+                               'num_records'                                   
=> count($template_list),
+                               'all_records'                                   
=> $this->bo->total_records,
+                               'link_url'                                      
        => $this->bocommon->link('/index.php',$link_data_nextmatch),
+                               'img_path'                                      
        => 
dirname($GLOBALS['HTTP_SERVER_VARS']['PHP_SELF']).'/api/skins/default/images',
+                               'select_action'                                 
=> $this->bocommon->link('/index.php',$link_data),
+
+                               '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,
+                               'lang_search'                                   
=> lang('search'),
+                               'workorder_data'                                
=> $common_data['workorder_data'],
+                               'table_header_template_hour'            => 
$table_header_template_hour,
+                               'values_template_hour'                          
=> $content_template_hour,
+                               'total_hours_records'                   => 
$common_data['total_hours_records'],
+                               'lang_total_records'                    => 
lang('Total records'),
+                               'table_header_hour'                             
=> $common_data['table_header'],
+                               'values_hour'                                   
=> $common_data['content'],
+                               'table_sum'                                     
        => $common_data['table_sum'],
+                               'table_done'                                    
=> $table_done
+                       );
+
+//html_print_r($data);
+                       $appname                                                
= lang('Template');
+                       $function_msg                                   = 
lang('list template');
+
+                       $GLOBALS['phpgw_info']['flags']['app_header'] = 
lang($this->currentapp) . ' - ' . $appname . ': ' . $function_msg;
+                       //$this->save_sessiondata();
+                       return array('list_template_hour' => $data);
+               }
+
+               function edit()
+               {
+                       if(!$this->acl_edit)
+                       {
+                               
$this->bocommon->redirect_link('/index.php','sid=cookie&op='.$this->currentapp.'.uilocation.stop&perm=2&acl_location='
 . $this->acl2_location);
+                       }
+                       $from                                   = 
get_var('from',array('POST','GET'));
+                       $template_id                    = 
get_var('template_id',array('POST','GET'));
+                       $workorder_id                   = 
get_var('workorder_id',array('POST','GET'));
+                       $activity_id                    = 
get_var('activity_id',array('POST','GET'));
+                       $hour_id                                = 
get_var('hour_id',array('POST','GET'));
+                       $values                                 = 
get_var('values',array('POST','GET'));
+                       $values['ns3420_id']    = 
get_var('ns3420_id',array('POST','GET'));
+                       $values['ns3420_descr'] = 
get_var('ns3420_descr',array('POST','GET'));
+
+
+//html_print_r($workorder);
+
+
+                       $this->bocommon->xsl_add_file(array('wo_hour'));
+
+                       if ($values['save'])
+                       {
+                               if($values['copy_hour'])
+                               {
+                                       unset($hour_id);
+                               }
+
+                               $values['hour_id'] = $hour_id;
+
+                               if(!$receipt['error'])
+                               {
+                                       $receipt = 
$this->bo->save_hour($values,$workorder_id);
+
+                                       $hour_id=$receipt['hour_id'];
+                               }
+                       }
+
+                       if ($hour_id)
+                       {
+                               $values = $this->bo->read_single_hour($hour_id);
+                               $function_msg = lang('Edit hour');
+                       }
+                       else
+                       {
+                               $function_msg = lang('Add hour');
+                       }
+
+                       $workorder      = 
$this->boworkorder->read_single($workorder_id);
+
+//html_print_r($values);
+
+                       if($error_id)
+                       {
+                               unset($values['hour_id']);
+                       }
+
+                       $link_data = array
+                       (
+                               'sid=cookie&op' => 
$this->currentapp.'.uiwo_hour.edit',
+                               'activity_id'   => $activity_id,
+                               'workorder_id'  => $workorder_id,
+                               'template_id'   => $template_id,
+                               'hour_id'               => $hour_id,
+                               'from'                  => $from
+                       );
+
+                       $msgbox_data = $this->bocommon->msgbox_data($receipt);
+
+                       $data = array
+                       (
+                               'msgbox_data'                                   
=> $GLOBALS['phpgw']->common->msgbox($msgbox_data),
+                               'form_action'                                   
=> $this->bocommon->link('/index.php',$link_data),
+                               'done_action'                                   
=> 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uiwo_hour.'
 . $from . '&workorder_id=' . $workorder_id . '&template_id=' . $template_id),
+                               'lang_workorder'                                
=> lang('Workorder'),
+                               'value_workorder_id'                    => 
$workorder['workorder_id'],
+                               'value_workorder_title'                 => 
$workorder['title'],
+
+                               'lang_hour_id'                                  
=> lang('Hour ID'),
+                               'value_hour_id'                                 
=> $hour_id,
+
+                               'lang_copy_hour'                        => 
lang('Copy hour ?'),
+                               'lang_copy_hour_statustext'     => lang('Choose 
Copy Hour to copy this hour to a new hour'),
+
+                               'lang_activity_num'                             
=> lang('Activity code'),
+                               'value_activity_num'                    => 
$values['activity_num'],
+                               'value_activity_id'                             
=> $values['activity_id'],
+
+                               'lang_unit'                                     
        => lang('Unit'),
+                               'lang_save'                                     
        => lang('save'),
+                               'lang_done'                                     
        => lang('done'),
+                               'lang_descr'                                    
=> lang('description'),
+                               'value_descr'                                   
=> $values['hours_descr'],
+                               'lang_descr_statustext'                 => 
lang('Enter the description for this activity'),
+                               'lang_done_statustext'                  => 
lang('Back to the list'),
+                               'lang_save_statustext'                  => 
lang('Save the building'),
+
+                               'lang_remark'                                   
=> lang('Remark'),
+                               'value_remark'                                  
=> $values['remark'],
+                               'lang_remark_statustext'                => 
lang('Enter additional remarks to the description - if any'),
+
+                               'lang_quantity'                                 
=> lang('quantity'),
+                               'value_quantity'                                
=> $values['quantity'],
+                               'lang_quantity_statustext'              => 
lang('Enter quantity of unit'),
+
+                               'lang_billperae'                                
=> lang('Cost per unit'),
+                               'value_billperae'                               
=> $values['billperae'],
+                               'lang_billperae_statustext'             => 
lang('Enter the cost per unit'),
+
+                               'lang_total_cost'                               
=> lang('Total cost'),
+                               'value_total_cost'                              
=> $values['cost'],
+                               'lang_total_cost_statustext'    => lang('Enter 
the total cost of this activity - if not to be calculated from unit-cost'),
+
+
+                               'lang_vendor'                                   
=> lang('Vendor'),
+                               'value_vendor_id'                               
=> $workorder['vendor_id'],
+                               'value_vendor_name'                             
=> $workorder['vendor_name'],
+
+                               'lang_dim_d'                                    
=> lang('Dim D'),
+                               'dim_d_list'                                    
=> $this->bopricebook->get_dim_d_list($values['dim_d']),
+                               'select_dim_d'                                  
=> 'values[dim_d]',
+                               'lang_no_dim_d'                                 
=> lang('No Dim D'),
+                               'lang_dim_d_statustext'                 => 
lang('Select the Dim D for this activity. To do not use Dim D -  select NO DIM 
D'),
+
+                               'lang_unit'                                     
        => lang('Unit'),
+                               'unit_list'                                     
        => $this->bopricebook->get_unit_list($values['unit']),
+                               'select_unit'                                   
=> 'values[unit]',
+                               'lang_no_unit'                                  
=> lang('Select Unit'),
+                               'lang_unit_statustext'                  => 
lang('Select the unit for this activity.'),
+
+                               'lang_chapter'                                  
=> lang('chapter'),
+                               'chapter_list'                                  
=> $this->bo->get_chapter_list('select',$workorder['chapter_id']),
+                               'select_chapter'                                
=> 'values[chapter_id]',
+                               'lang_no_chapter'                               
=> lang('Select chapter'),
+                               'lang_chapter_statustext'               => 
lang('Select the chapter (for tender) for this activity.'),
+
+                               'lang_tolerance'                                
=> lang('tolerance'),
+                               'tolerance_list'                                
=> $this->bo->get_tolerance_list($values['tolerance_id']),
+                               'select_tolerance'                              
=> 'values[tolerance_id]',
+                               'lang_no_tolerance'                             
=> lang('Select tolerance'),
+                               'lang_tolerance_statustext'             => 
lang('Select the tolerance for this activity.'),
+
+                               'lang_grouping'                                 
=> lang('grouping'),
+                               'grouping_list'                                 
=> $this->bo->get_grouping_list($values['grouping_id'],$workorder_id),
+                               'select_grouping'                               
=> 'values[grouping_id]',
+                               'lang_no_grouping'                              
=> lang('Select grouping'),
+                               'lang_grouping_statustext'              => 
lang('Select the grouping for this activity.'),
+
+                               'lang_new_grouping'                             
        => lang('New grouping'),
+                               'lang_new_grouping_statustext'          => 
lang('Enter a new grouping for this activity if not found in the list'),
+
+                               'lang_building_part'                            
=> lang('building_part'),
+                               'building_part_list'                            
=> $this->bo->get_building_part_list($values['building_part_id']),
+                               'select_building_part'                          
=> 'values[building_part_id]',
+                               'lang_no_building_part'                         
=> lang('Select building part'),
+                               'lang_building_part_statustext'         => 
lang('Select the building part for this activity.'),
+
+
+                               'ns3420_link'                                   
=> 
$this->bocommon->link('/index.php','sid=cookie&op='.$this->currentapp.'.uilookup.ns3420'),
+                               'lang_ns3420'                                   
=> lang('NS3420'),
+                               'value_ns3420_id'                               
=> $values['ns3420_id'],
+                               'lang_ns3420_statustext'                => 
lang('Select a standard-code from the norwegian standard'),
+                               '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_hour' => $data);
+               }
+
+               function delete()
+               {
+                       if(!$this->acl_edit)
+                       {
+                               
$this->bocommon->redirect_link('/index.php','sid=cookie&op='.$this->currentapp.'.uilocation.stop&perm=2&acl_location='
 . $this->acl2_location);
+                       }
+                       $id                     = 
get_var('id',array('POST','GET'));
+                       $workorder_id   = 
get_var('workorder_id',array('POST','GET'));
+                       $hour_id                = 
get_var('hour_id',array('POST','GET'));
+                       $deviation_id   = 
get_var('deviation_id',array('POST','GET'));
+                       $confirm                = 
get_var('confirm',array('POST'));
+
+
+                       if($deviation_id)
+                       {
+                               $link_data = array
+                               (
+                                       'sid=cookie&op' => 
$this->currentapp.'.uiwo_hour.deviation',
+                                       'workorder_id'=>$workorder_id,
+                                       'hour_id'=>$hour_id
+                               );
+                               $delete_link_data = array
+                               (
+                                       'sid=cookie&op' => 
$this->currentapp.'.uiwo_hour.delete',
+                                       'workorder_id'=>$workorder_id,
+                                       'hour_id'=>$hour_id,
+                                       'deviation_id'=>$deviation_id
+                               );
+
+                               $function_msg                                   
= lang('delete deviation');
+                       }
+                       else
+                       {
+                               $link_data = array
+                               (
+                                       'sid=cookie&op' => 
$this->currentapp.'.uiwo_hour.index'
+                               );
+                               $delete_link_data = array
+                               (
+                                       'sid=cookie&op' => 
$this->currentapp.'.uiwo_hour.delete',
+                                       'id'=>$id
+                               );
+                               $function_msg                                   
= lang('delete hour');
+                       }
+
+                       if (get_var('confirm',array('POST')))
+                       {
+                               if($deviation_id)
+                               {
+                                       
$this->bo->delete_deviation($workorder_id,$hour_id,$deviation_id);
+                               }
+                               else
+                               {
+                                       $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',$delete_link_data),
+                               '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');
+
+                       $GLOBALS['phpgw_info']['flags']['app_header'] = 
lang($this->currentapp) . ' - ' . $appname . ': ' . $function_msg;
+                       return array('delete' => $data);
+               }
+
+       }
+?>




reply via email to

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