fmsystem-commits
[Top][All Lists]
Advanced

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

[Fmsystem-commits] [8789] changed location_code from int to varchar


From: Erik Holm-Larsen
Subject: [Fmsystem-commits] [8789] changed location_code from int to varchar
Date: Mon, 06 Feb 2012 06:38:02 +0000

Revision: 8789
          http://svn.sv.gnu.org/viewvc/?view=rev&root=fmsystem&revision=8789
Author:   erikhl
Date:     2012-02-06 06:38:01 +0000 (Mon, 06 Feb 2012)
Log Message:
-----------
changed location_code from int to varchar

Modified Paths:
--------------
    trunk/controller/inc/class.socheck_list.inc.php

Modified: trunk/controller/inc/class.socheck_list.inc.php
===================================================================
--- trunk/controller/inc/class.socheck_list.inc.php     2012-02-06 06:36:52 UTC 
(rev 8788)
+++ trunk/controller/inc/class.socheck_list.inc.php     2012-02-06 06:38:01 UTC 
(rev 8789)
@@ -306,7 +306,7 @@
                
                $sql =  "SELECT c.id as c_id, title, start_date, end_date, 
cl.id as cl_id, c.repeat_type, c.repeat_interval, cl.deadline, count(ci.id) ";
                $sql .= "FROM controller_check_list cl, controller_control c, 
controller_check_item ci ";
-               $sql .= "WHERE cl.location_code = $location_code ";
+               $sql .= "WHERE cl.location_code = '{$location_code}' ";
                $sql .= "AND c.repeat_type < 2 ";
                $sql .= "AND cl.control_id = c.id ";
                $sql .= "AND cl.id = ci.check_list_id ";
@@ -360,7 +360,7 @@
                
                $sql =  "SELECT c.id as c_id, sum(cl.num_open_cases) as count ";
                $sql .= "FROM controller_check_list cl, controller_control c ";
-               $sql .= "WHERE cl.location_code = $location_code ";
+               $sql .= "WHERE cl.location_code = '{$location_code}' ";
                $sql .= "AND c.id = $control_id ";
                $sql .= "AND c.repeat_type < 2 ";
                $sql .= "AND cl.control_id = c.id ";
@@ -448,7 +448,7 @@
                $sql .= "cl.component_id as cl_component_id, cl.location_code 
as cl_location_code, num_open_cases "; 
                $sql .= "FROM controller_control c ";
                $sql .= "LEFT JOIN controller_check_list cl on cl.control_id = 
c.id ";
-               $sql .= "WHERE cl.location_code = '{$location_code} ";
+               $sql .= "WHERE cl.location_code = '{$location_code}' ";
                
                if( is_numeric($repeat_type) )
                        $sql .= "AND c.repeat_type = $repeat_type ";




reply via email to

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