UpdateCurrencyRate.php
[Pman.Core] / UpdateCurrencyRate.php
index 433f07c..5f80276 100644 (file)
@@ -29,9 +29,7 @@ class Pman_Core_UpdateCurrencyRate extends Pman
     }
     
     function get()
-    {
-        echo "obtain the currency lists... \n";
-        
+    {   
         $currency = array();
         
         $response = $this->curl($this->actionUrl, array(), 'GET');
@@ -58,7 +56,12 @@ class Pman_Core_UpdateCurrencyRate extends Pman
         $fromDate = date('m/d/y', strtotime("-6 MONTH"));
         $toDate = date('m/d/y');
         
+        $total = count($currency);
+        
         foreach ($currency as $k => $c){
+            
+            echo "\nProcessing Currency : $c        ($k / $total) \n";
+            
             $params = array(
                 'lang'          => 'en',
                 'result'        => 1,
@@ -101,11 +104,14 @@ class Pman_Core_UpdateCurrencyRate extends Pman
                 'from'  => date('Y-m-d H:i:s', strtotime($fromDate)),
                 'to'    => date('Y-m-d H:i:s', strtotime($toDate))
             ));
-
+print_R($curr);exit;
             (empty($o)) ? $curr->insert() : $curr->update($o);
             
+            $this->jok("DONE");
         }
         
+        $this->jok("DONE");
+        
     }
     
     function curl($url, $request = array(), $method = 'GET')