X-Git-Url: http://git.roojs.org/?a=blobdiff_plain;f=DataObjects%2FCore_curr_rate.php;h=3aa2058a8418ef298cde6ec7a2afb8e5a915f07d;hb=5ce913066288e69478a52cfd0887861027865e3c;hp=2d2bb1e7de63a6b7028e3aa716620140b236fa64;hpb=170c91c61ccae00c06e3e624f8be6f39a188c9fa;p=Pman.Core diff --git a/DataObjects/Core_curr_rate.php b/DataObjects/Core_curr_rate.php index 2d2bb1e7..3aa2058a 100644 --- a/DataObjects/Core_curr_rate.php +++ b/DataObjects/Core_curr_rate.php @@ -49,37 +49,66 @@ class Pman_Core_DataObjects_Core_curr_rate extends DB_DataObject // load our default rates to start with.. $dom = simplexml_load_file(dirname(__FILE__).'/../eurofxref-daily.xml'); - $this->rates['EUR'] = 1.0; - $this->rates['TWD'] = 46.7008412; - $this->rates['VND'] = 26405.3; + $rates['EUR'] = 1.0; + $rates['TWD'] = 46.7008412; // taiwan dorlar + $rates['VND'] = 25282.24; // veitnam dong? foreach($dom->Cube->Cube->Cube as $c) { //echo '
';print_r($c );
-            $this->rates[(string)$c['currency']] = (string)$c['rate'];
+            $rates[(string)$c['currency']] = (string)$c['rate'];
         }
-        $this->rates['RMB'] = $this->rates['CNY'] ;
-        // now try loading from latest..
-        $target = ini_get('session.save_path').'/eurofxref-daily.xml';
+        $rates['RMB'] = $rates['CNY'] ;
         
-        if (!file_exists($target) || filemtime($target) < (time() - 60*60*24)) {
-            // this may fail...
-            $f = @file_get_contents('http://www.ecb.europa.eu/stats/eurofxref/eurofxref-daily.xml');
-            if (!strlen($f)) {
-                return;
-            } 
-            file_put_contents($target,$f);
         
-        } 
-        $dom = simplexml_load_file($target);
-        $this->rates['EUR'] = 1.0;
-        $this->rates['TWD'] = 46.7008412;
-        $this->rates['VND'] = 26405.3;
+        
+        // now try loading from latest..
        
+             // this may fail...
+        $f = @file_get_contents('http://www.ecb.europa.eu/stats/eurofxref/eurofxref-daily.xml');
+        if (!strlen($f)) {
+            return false;
+        }
+        
+        $dom = simplexml_load_file($target);
+        $rates['EUR'] = 1.0;
+        
         foreach($dom->Cube->Cube->Cube as $c) {
            //echo '
';print_r($c );
-            $this->rates[(string)$c['currency']] = (string)$c['rate'];
+            $rates[(string)$c['currency']] = (string)$c['rate'];
         }
-        $this->rates['RMB'] = $this->rates['CNY'] ;
+        $rates['RMB'] = $rates['CNY'] ;
+        
+        foreach($rates as $r=>$v) {
+            
+            $x = DB_DataObject::Factory('core_curr_rate');
+            $x->curr = $c;
+            $nl = clone($x);
+            $x->orderBy('to_date DESC');
+            $x->limit(1);
+            
+            
+            
+            $$nl->from_dt = DB_DataObject::sqlValue("NOW()");
+            if ($x->find(true)) {
+                if (strtotime($x->to_date) > time()) {
+                    continue;
+                }
+                $from_date = $x->to_date;
+                
+            }
+            
+            $x->whereAdd('to_date > NOW()');
+            
+            
+            
+        }
+        
+        
+        
+        
+        
+        
+        
     }
 }