DataObjects/Core_curr_rate.php
[Pman.Core] / DataObjects / Core_curr_rate.php
index 3aa2058..5d48f9d 100644 (file)
@@ -79,36 +79,47 @@ class Pman_Core_DataObjects_Core_curr_rate extends DB_DataObject
         }
         $rates['RMB'] = $rates['CNY'] ;
         
-        foreach($rates as $r=>$v) {
+        foreach($rates as $cur=>$rate) {
             
-            $x = DB_DataObject::Factory('core_curr_rate');
-            $x->curr = $c;
+            $ov = DB_DataObject::Factory('core_curr_rate');
+            $ov->curr = $cur;
             $nl = clone($x);
-            $x->orderBy('to_date DESC');
-            $x->limit(1);
+            $ov->orderBy('to_date DESC');
+            $ov->limit(1);
             
             
-            
-            $$nl->from_dt = DB_DataObject::sqlValue("NOW()");
-            if ($x->find(true)) {
-                if (strtotime($x->to_date) > time()) {
+            $nl->from_dt = DB_DataObject::sqlValue("NOW()");
+            $nl->to_dt = DB_DataObject::sqlValue("NOW() + INTERVAL 7 DAY");
+            if ($ov->find(true)) {
+                if (strtotime($ov->to_date) > time()) {
                     continue;
                 }
-                $from_date = $x->to_date;
+                $nl->from_dt = $ov->to_date;
                 
+            
+                if ($ov->rate == $rate) {
+                    // modify the old one to expire
+                    $oo = clone($ov);
+                    $ov->to_date = $nv->to_from_dt;
+                    $ov->update($oo);
+                    continue;
+                }
+            } else {
+                // no previous record...
+                $nl->from_dt = '1970-01-01 00:00:00';
             }
             
-            $x->whereAdd('to_date > NOW()');
+            // create a new row.
+            $nl->insert();
             
             
             
         }
         
         
-        
-        
-        
-        
-        
     }
+    
+    
+    
+    
 }