DataObjects/Core_curr_rate.php
[Pman.Core] / UpdateCurrencyRate.php
index 834f368..fc37c1f 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,
@@ -106,7 +109,7 @@ class Pman_Core_UpdateCurrencyRate extends Pman
             
         }
         
-        
+        $this->jok("DONE");
         
     }