. * * Formulaire de resultat * * @packages vues */ $this->load->library('DataTable'); $this->load->view('header'); $this->load->view('banner'); $this->load->view('sidebar'); $this->load->view('menu'); echo '
'; echo heading($this->lang->line("gvv_comptes_title_cloture") . " $year", 2, ""); echo form_open(controller_url($controller) . "/cloture/" . VALIDATION, array ( 'name' => 'saisie' )); // hidden contrller url for java script access echo form_hidden('controller_url', controller_url($controller), '"id"="controller_url"'); echo br(); if ($error) { echo p($error, 'class="error"') . br(); } echo $this->lang->line("comptes_cloture_date_fin") . " = $date_fin" . br(); echo $this->lang->line("comptes_cloture_date_gel") . " = $date_gel" . br(); echo br(); echo heading($this->lang->line("comptes_cloture_title_result"), 4, ""); echo dropdown_field('capital', $capital, $capital_selector, "id='selector' "); echo heading($this->lang->line("comptes_cloture_title_previous"), 4, ""); $attrs = array( 'align' => array('left', 'left', 'right', 'right', 'right', 'right') ); echo br(); echo table_from_array($a_integrer, $attrs); echo br(); echo heading($this->lang->line("comptes_cloture_title_charges_a_integrer"), 4, ""); echo table_from_array($charges, $attrs); echo br(); echo heading($this->lang->line("comptes_cloture_title_produits_a_integrer"), 4, ""); echo table_from_array($produits, $attrs); echo br(); if ($action == MODIFICATION && !$error) { echo validation_button($action); } echo form_close(); echo '
'; ?>