setTimezone($timezone); return $carbon->toDateTimeString(); } return $date; } ?>

lang->line('Gestion des wallets') ; echo ' '.$network.' - '.$country; ?>

Erreur!

Success!

db->hostname . ';dbname=' . $this->db->database, $this->db->username, $this->db->password); $configuration = new PDOProviderConfiguration(); $configuration->tableName = 'exchange_rate'; $configuration->exchangeRateColumnName = 'exchange_rate'; $configuration->targetCurrencyColumnName = 'target_currency'; $configuration->sourceCurrencyCode = $baseCurrency; // this provider loads exchange rates from your database $provider = new PDOProvider($pdo, $configuration); // this provider calculates exchange rates relative to the base currency $provider = new BaseCurrencyProvider($provider, $baseCurrency); // this currency converter can now handle any currency pair $converter = new CurrencyConverter($provider); $context = new CustomContext(2); ?>
lang->line('Période') ?> Format : session->userdata('site_lang') === 'french' ? 'Jour - Mois - Année ' : 'Year - Month - Day'?>

lang->line('Historique des transactions') ?>

num_rows(); $num = 0; if ($numrows > 0) { $fmt = new NumberFormatter( 'fr_FR', NumberFormatter::DECIMAL ); ?> session->userdata('category') != 'super') { ?> first_row(); foreach ($transactions->result() as $row) { $num++; $type = $row->type_transaction == 'depot' ? $this->lang->line('DEPOT') : $this->lang->line('RETRAIT'); $net = 0; $banque = 0; if($row->type_transaction == 'depot'){ $net = $row->montant_depot; $banque = $row->montant * (1 - ($config->taux_com_client_depot / 100)); }else{ $net = $row->montant_retrait ; } $moneyNetInit = Money::of(round($net,2), $row->init_currency,$context); $moneyNetFinal = $converter->convert($moneyNetInit, $row->final_currency ? $row->final_currency : 'XAF', RoundingMode::DOWN); echo ""; ?> session->userdata('category') != 'super') { ?> lang->line('Aucune transaction'); } }else { echo $this->lang->line('Aucune transaction'); } ?>
ID Type Operation lang->line('cart_number') ?> lang->line('customer_net_amount_init') ?> lang->line('customer_net_amount_final') ?> lang->line('fees') ?> lang->line('tax') ?> lang->line('Commission de la banque') ?> lang->line('Commission de l\'hyperviseur') ?> lang->line('Commission du superviseur') ?> lang->line('Commission de l\'agent') ?> lang->line('agent_name') ?> lang->line('user_name') ?> Date Action
$row->id ".strtoupper($type)." ".strtoupper($row->acteur).' - '.$row->operation." ".join(" ", str_split($row->numero_carte, 4))." ".$moneyNetInit->formatTo('fr_FR')." ".$moneyNetFinal->formatTo('fr_FR')." ".Money::of(round($row->frais,2), $row->init_currency,$context)->formatTo('fr_FR')." ".Money::of(round($row->taxe, 2),$row->init_currency,$context)->formatTo('fr_FR')." ".Money::of(round($row->commission_banque ? $row->commission_banque : 0, 2),$row->init_currency,$context)->formatTo('fr_FR')." ".Money::of(round($row->commission_hyp ? $row->commission_hyp : 0, 2),$row->init_currency,$context)->formatTo('fr_FR')." ".Money::of(round($row->commission_sup ? $row->commission_sup : 0 , 2),$row->init_currency,$context)->formatTo('fr_FR')." ".Money::of(round($row->commission_ag ? $row->commission_ag : 0, 2),$row->init_currency,$context)->formatTo('fr_FR')." ".$row->agent." ".$row->user." ".toLocateDate($row->date,$this->session->userdata('timezone'))."