fmsystem-commits
[Top][All Lists]
Advanced

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

[Fmsystem-commits] [17222] prepare for custom code outside tree


From: sigurdne
Subject: [Fmsystem-commits] [17222] prepare for custom code outside tree
Date: Wed, 1 Nov 2017 14:47:25 -0400 (EDT)

Revision: 17222
          http://svn.sv.gnu.org/viewvc/?view=rev&root=fmsystem&revision=17222
Author:   sigurdne
Date:     2017-11-01 14:47:25 -0400 (Wed, 01 Nov 2017)
Log Message:
-----------
prepare for custom code outside tree

Added Paths:
-----------
    
thirdparty/PE_custom/BK_EBF/property/inc/cron/default/oppdater_antall_leieobjekt.php

Copied: 
thirdparty/PE_custom/BK_EBF/property/inc/cron/default/oppdater_antall_leieobjekt.php
 (from rev 17218, 
trunk/property/inc/cron/default/oppdater_antall_leieobjekt.php)
===================================================================
--- 
thirdparty/PE_custom/BK_EBF/property/inc/cron/default/oppdater_antall_leieobjekt.php
                                (rev 0)
+++ 
thirdparty/PE_custom/BK_EBF/property/inc/cron/default/oppdater_antall_leieobjekt.php
        2017-11-01 18:47:25 UTC (rev 17222)
@@ -0,0 +1,86 @@
+<?php
+       /**
+        * phpGroupWare - property: a Facilities Management System.
+        *
+        * @author Sigurd Nes <address@hidden>
+        * @copyright Copyright (C) 2003,2004,2005,2006,2007 Free Software 
Foundation, Inc. http://www.fsf.org/
+        * This file is part of phpGroupWare.
+        *
+        * phpGroupWare 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.
+        *
+        * phpGroupWare is distributed in the hope that it will be useful,
+        * but WITHOUT ANY WARRANTY; without even the implied warranty of
+        * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+        * GNU General Public License for more details.
+        *
+        * You should have received a copy of the GNU General Public License
+        * along with phpGroupWare; if not, write to the Free Software
+        * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  
02110-1301  USA
+        *
+        * @license http://www.gnu.org/licenses/gpl.html GNU General Public 
License
+        * @internal Development of this application was funded by 
http://www.bergen.kommune.no/bbb_/ekstern/
+        * @package property
+        * @subpackage custom
+        * @version $Id$
+        */
+       /**
+        * Description
+        * @package property
+        */
+       include_class('property', 'cron_parent', 'inc/cron/');
+
+       class oppdater_antall_leieobjekt extends property_cron_parent
+       {
+
+               public function __construct()
+               {
+                       parent::__construct();
+
+                       $this->function_name = get_class($this);
+                       $this->sub_location = lang('location');
+                       $this->function_msg = 'Oppdater antall leieobjekter for 
tv-anlegg';
+               }
+
+               function execute()
+               {
+                       return;
+                       
+                       //konverter til eav-modell.
+
+                       $this->db->transaction_begin();
+
+                       $sql = "SELECT kunde_nr_lev, fm_entity_1_3.loc1, 
fm_entity_1_3.loc2, Count(fm_location4.location_code) AS antall_leieobjekt, 
fm_entity_1_3.location_code
+                                       FROM fm_entity_1_3 INNER JOIN 
fm_location4 ON (fm_entity_1_3.loc1 = fm_location4.loc1) AND 
(fm_entity_1_3.loc2 = fm_location4.loc2)
+                                       WHERE fm_location4.category IN 
(1,2,3,4,6,10,14,15,17,22,23,24,25)
+                                       GROUP BY kunde_nr_lev, 
fm_entity_1_3.loc1, fm_entity_1_3.loc2, fm_entity_1_3.location_code";
+
+                       $this->db->query($sql, __LINE__, __FILE__);
+
+                       while ($this->db->next_record())
+                       {
+                               if ($this->db->f('kunde_nr_lev'))
+                               {
+                                       $update[] = array(
+                                               'kunde_nr_lev' => 
$this->db->f('kunde_nr_lev'),
+                                               'antall_leieobjekt' => 
$this->db->f('antall_leieobjekt'),
+                                       );
+                               }
+                       }
+
+//_debug_array($update);
+
+                       for ($i = 0; $i < count($update); $i++)
+                       {
+                               $this->db->query("UPDATE fm_entity_1_3 set 
ant_leil_pt =" . $update[$i]['antall_leieobjekt'] . " WHERE kunde_nr_lev= '" . 
$update[$i]['kunde_nr_lev'] . "'", __LINE__, __FILE__);
+                       }
+
+                       $this->receipt['message'][] = array('msg' => 'antall 
leieobjekter er oppdatert for tv-anlegg');
+
+                       unset($update);
+
+                       $this->db->transaction_commit();
+               }
+       }
\ No newline at end of file


Property changes on: 
thirdparty/PE_custom/BK_EBF/property/inc/cron/default/oppdater_antall_leieobjekt.php
___________________________________________________________________
Added: svn:keywords
## -0,0 +1 ##
+Revision Author Id
\ No newline at end of property
Added: svn:mergeinfo
## -0,0 +1,3 ##
+/branches/dev-syncromind/property/inc/cron/default/oppdater_antall_leieobjekt.php:13653
+/branches/dev-syncromind-2/property/inc/cron/default/oppdater_antall_leieobjekt.php:14933-16846
+/branches/stavangerkommune/property/inc/cron/default/oppdater_antall_leieobjekt.php:12743-12875,12986
\ No newline at end of property



reply via email to

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