X-Git-Url: http://git.roojs.org/?a=blobdiff_plain;f=DataObjects%2FCore_curr_rate.php;h=4258b82d5ea994a30f3f0555a9a78b3140966d87;hb=bc2cc52d7aa7ec4d14631b8eda7b5b2db15e9c42;hp=fe70cb7e40a687255effad6765c9e7a99958e5e9;hpb=19bf6a9e68f4658ce254aba3d3896cfc45692a23;p=Pman.Core diff --git a/DataObjects/Core_curr_rate.php b/DataObjects/Core_curr_rate.php index fe70cb7e..4258b82d 100644 --- a/DataObjects/Core_curr_rate.php +++ b/DataObjects/Core_curr_rate.php @@ -12,7 +12,7 @@ class Pman_Core_DataObjects_Core_curr_rate extends DB_DataObject public $__table = 'core_curr_rate'; // table name public $id; public $curr; - public $rate; + public $rate; // always to USD... public $from_dt; public $to_dt; @@ -24,6 +24,9 @@ class Pman_Core_DataObjects_Core_curr_rate extends DB_DataObject } + + + /** * current rate fetching * @@ -32,18 +35,23 @@ class Pman_Core_DataObjects_Core_curr_rate extends DB_DataObject * this just get's the current rates from the ecb.. * * - */ - - var $rates = array(); + */ function loadRates() { + static $checked = false; + if ($checked ) { + return true; + } + $checked = true; + // how often do we need to know this..? // let's assume we do it once a week.. $x = DB_DataObject::Factory('core_curr_rate'); $x->whereAdd('to_date > NOW()'); if ($x->count()) { // got some data for beyond today.. + return; } @@ -79,7 +87,17 @@ class Pman_Core_DataObjects_Core_curr_rate extends DB_DataObject } $rates['RMB'] = $rates['CNY'] ; - foreach($rates as $cur=>$rate) { + foreach($rates as $cur=>$euro) { + + + $rate = $this->rates['USD'] * $euro; + + + + + + + $ov = DB_DataObject::Factory('core_curr_rate'); $ov->curr = $cur; @@ -104,23 +122,53 @@ class Pman_Core_DataObjects_Core_curr_rate extends DB_DataObject $ov->update($oo); continue; } + } else { + // no previous record... + $nl->from_dt = '1970-01-01 00:00:00'; } - + $nl->rate = $rate; // create a new row. $nl->insert(); - - - } + } + function rate($cur, $when) + { + $this->loadRates(); // check if we have an rates. + $r = DB_DataObject::factory('core_curr_rate'); + $r->curr = $cur; + $r->whereAdd("from_dt < '" . date('Y-m-d H:i:s', strtotime($when)) . "'"); + $r->orderBy('to_dt ASC'); + $r->limit(1); + if ($r->find(true)) { + return $r->rate; + } + } + + function convert($val, $from, $to, $when = false) + { + if ($r === false) { + return false; + } + if (!isset($this->rates[$from]) || !isset($this->rates[$to]) ) { + return false; + } + //echo '
';print_R($this->rates);
+        $base = (1.0 / $this->rates[$from]) * $val;
+  
+        return $this->rates[$to] * $base;
+    
     }
+    
+    
+    
 }