Don't use NumberFormatter because of PECL intl dependency

This commit is contained in:
Albert Santoni 2014-06-11 13:45:23 -04:00
parent 5df522f226
commit d984ec9b43
1 changed files with 7 additions and 3 deletions

View File

@ -425,12 +425,16 @@ class ShowbuilderController extends Zend_Controller_Action
$client = $arr->client;
$stats = $arr->stats;
$currencyCode = $client->currency_code;
$incomeCents = NumberFormatter::parseCurrency($stats->income, $currencyCode);
//$incomeCents = NumberFormatter::parseCurrency($stats->income, $currencyCode);
$isTrial = true;
if ($incomeCents > 0) {
if (strpos($stats->income, "0.00") === FALSE) {
$isTrial = false;
}
/*
if ($incomeCents > 0) {
$isTrial = false;
}*/
$plan = Application_Model_Preference::GetPlanLevel();
$country = $client->country;
$postcode = $client->postcode;
@ -456,7 +460,7 @@ class ShowbuilderController extends Zend_Controller_Action
'PlanType': '" . $plan . "',
'Trial': '" . $isTrial . "',
'Country': '" . $country . "',
'AccountDuration': '" . $accountDuration . "'
'AccountDuration': '" . strval($accountDuration) . "'
});";
}