ExcelToJson.php
[Pman.Core] / ExcelToJson.php
index e14e1ab..3072cb4 100644 (file)
@@ -43,10 +43,10 @@ class Pman_Core_ExcelToJson extends Pman_Roo
         }
         
         $req = array(
-            'LINE', 'ITEM CODE', 'DESCRIPTION', 'QUANTITY', 'AA'
+            'LINE', 'ITEM CODE', 'DESCRIPTION', 'QUANTITY'
         );
         
-        $cols[] = false;
+        $cols = false;
         $rows = array();
         $header = false;
         
@@ -60,20 +60,19 @@ class Pman_Core_ExcelToJson extends Pman_Roo
                $rows[$n[0]] = $n[1];
                continue;
             }
-            print_r($n);exit;
+            
             if(!$cols){
                 $cols = array();
                 foreach($n as $k) {
                     $cols[] = strtoupper(trim($k));
                 }
-                print_r($cols);exit;
+                
                 if (empty($cols)) {
                     continue;
                 }
-                print_r($cols);exit;
+               
                 foreach($req as $r) {
                     if (!in_array($r,$cols)) {
-                        print_r($r);
                         $cols = false;
                         break;
                     }
@@ -87,11 +86,11 @@ class Pman_Core_ExcelToJson extends Pman_Roo
             $rows[] = $row;
             
         }
-         exit;
+        
         if (empty($cols)) {
             $this->jerr("could not find a row with " . implode(' / ', $req));
         }
-        
+        print_r($cols);
         fclose($fh);
         
         exit;