Artifact c67ba4bc814c45cbd58033acb8f273048c8cda24:


<?php

namespace Garradin;
require_once __DIR__ . '/../_inc.php';

$exercices = new Compta_Exercices;

$exercice = $exercices->get((int)utils::get('id'));

if (!$exercice)
{
	throw new UserException('Exercice inconnu.');
}

$liste_comptes = $comptes->getListAll();

function get_nom_compte($compte)
{
	global $liste_comptes;
	return $liste_comptes[$compte];
}

$tpl->register_modifier('get_nom_compte', 'Garradin\get_nom_compte');

$get_resultat = $exercices->getCurrentId() == $exercice['id'] ? true : false;
$tpl->assign('bilan', $exercices->getBilan($exercice['id'], $get_resultat));

$tpl->assign('cloture', $exercice['cloture'] ? $exercice['fin'] : time());
$tpl->assign('exercice', $exercice);

$tpl->display('admin/compta/exercices/bilan.tpl');

?>