. * * Vue table pour les achats * * @package vues */ $this->load->view('header'); $this->load->view('banner'); $this->load->view('sidebar'); $this->load->view('menu'); echo '
'; echo heading("Rapport DGAC", 3); echo year_selector($controller, $year, $year_selector); echo br(2); $list = array( "Association = $association", "code d'identification = $code", ); echo ul($list); $list = array( "Heures de remorquage = $total_towing", ); echo ul($list); echo table_from_array ($activity, array( 'fields' => array('', 'Heures Planeur', 'Nbre Remorqués', 'Nbre Treuillées', 'Lachés solo', 'BPP théoriques', 'BPP homolgués', 'Nbre Lachés campagne', 'Km campagne'), 'align' => array('left', 'right', 'right', 'right', 'right', 'right', 'right', 'right', 'right'), 'class' => 'fixed_datatable' )); $list = array( "Heures de remorquage = $total_towing", "Heures total = $total_glider", ); echo ul($list); echo table_from_array ($machine_activity, array('fields' => array('Modèle', 'Fabrication', 'Immat', 'Heures remorquage', 'Heures planeur'), 'align' => array('left', 'right', 'left', 'right', 'right'), 'class' => 'fixed_datatable')); /* $bar = array( array('label' => "Excel", 'url' =>"$controller/ventes_csv/$year", 'role' => 'ca'), array('label' => "Pdf", 'url' => controller_url("rapports/ventes"), 'role' => 'ca'), ); echo button_bar4($bar); */ echo '
'; ?>