forked from verdnatura/hedera-web
Exchange rate actualizado
This commit is contained in:
parent
7359dcb69a
commit
e994cf0e38
|
@ -5,4 +5,3 @@ MAILTO=webmaster
|
|||
0 5 * * * root hedera-web.php -m edi/update
|
||||
*/1 * * * * root hedera-web.php -m misc/mail
|
||||
0 5 * * * root hedera-web.php -m misc/exchange-rate
|
||||
45 14 20 11 * root hedera-web.php -m misc/exchange-rate
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
/**
|
||||
* Ejemplo:
|
||||
* <Cube><Cube time="2010-12-10"><Cube currency="USD" rate="1.3244"/>
|
||||
**/
|
||||
*/
|
||||
class ExchangeRate extends Vn\Lib\Method
|
||||
{
|
||||
function run ($db)
|
||||
|
@ -22,9 +22,9 @@ class ExchangeRate extends Vn\Lib\Method
|
|||
{
|
||||
$xmlDate = new DateTime ($cube['time']);
|
||||
|
||||
// Si existen datos más recientes de la máxima fecha los añade
|
||||
// Si existen datos más recientes de la máxima fecha los añade
|
||||
|
||||
if ($maxDate < $xmlDate)
|
||||
if ($maxDate <= $xmlDate)
|
||||
foreach ($cube->Cube as $subCube)
|
||||
if ($subCube['currency'] == 'USD')
|
||||
{
|
||||
|
@ -37,11 +37,6 @@ class ExchangeRate extends Vn\Lib\Method
|
|||
VALUES (2, #date, #rate)',
|
||||
$params
|
||||
);
|
||||
$db->query (
|
||||
'REPLACE INTO reference_rate (moneda_id, date, rate)
|
||||
VALUES (2, TIMESTAMPADD(DAY, 1, #date), #rate)',
|
||||
$params
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -3,4 +3,4 @@ INSERT INTO reference_rate (moneda_id, date, rate)
|
|||
FROM reference_rate r1
|
||||
LEFT JOIN reference_rate r2
|
||||
ON TIMESTAMPADD(DAY, 1, r1.date) = r2.date
|
||||
WHERE r2.date IS NULL AND r1.date < TIMESTAMPADD (DAY, -1, CURDATE())
|
||||
WHERE r2.date IS NULL AND r1.date < TIMESTAMPADD (DAY, -2, CURDATE())
|
||||
|
|
Loading…
Reference in New Issue