/*
 *   This file is part of NOALYSS.
 *
 *   NOALYSS is free software; you can redistribute it and/or modify
 *   it under the terms of the GNU General Public License as published by
 *   the Free Software Foundation; either version 2 of the License, or
 *   (at your option) any later version.
 *
 *   NOALYSS is distributed in the hope that it will be useful,
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *   GNU General Public License for more details.
 *
 *   You should have received a copy of the GNU General Public License
 *   along with NOALYSS; if not, write to the Free Software
 *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
*/
// Copyright Author Dany De Bontridder danydb@aevalys.eu
/*!\file
 * \brief export balance by group
 */
if (!defined('ALLOWED')) {
    die('Appel direct ne sont pas permis');
}
require_once NOALYSS_INCLUDE . '/class_anc_group.php';
header('Pragma: public');
header('Content-type: application/csv');
header('Content-Disposition: attachment;filename="anc-balance-group-export.csv"', FALSE);
$a = new Anc_Group($cn);
$a->get_request();
$a->export_csv();
예제 #2
0
$r = new Anc_Group($cn);
//----------------------------------------------------------------------
// REMOVE
if (isset($_POST['remove'])) {
    if (isset($_POST['ck'])) {
        foreach ($_POST['ck'] as $m) {
            $obj = new Anc_Group($cn);
            $obj->ga_id = $m;
            $obj->remove();
        }
    }
}
//----------------------------------------------------------------------
// INSERT
if (isset($_POST['add'])) {
    $obj = new Anc_Group($cn);
    $obj->get_from_array($_POST);
    echo $obj->insert();
}
$array = $r->myList();
echo '<div class="content" >';
echo '<form method="post">';
echo dossier::hidden();
echo '<table class="result"  >';
echo '<tr> <th>' . _("Code") . " </th><th>" . _("Plan") . " </td><th>" . _("Description") . '</th></tr>';
foreach ($array as $idx => $m) {
    echo '<tr>';
    echo '<td>' . h($m->ga_id) . '</td>';
    echo '<td>' . h($m->pa_name) . '</td>';
    echo '<td>' . h($m->ga_description) . '</td>';
    echo '<td> Effacer <input type="Checkbox" name="ck[]" value="' . $m->ga_id . '">' . '</td>';
예제 #3
0
 static function test_me()
 {
     $cn = new Database(dossier::id());
     print_r($cn);
     $o = new Anc_Group($cn);
     $r = $o->myList();
     print_r($r);
     echo '<hr>';
     print_r($o);
     $o->ga_id = "DD' dd dDD";
     $o->ga_description = "Test 1";
     $o->remove();
     //    $o->insert();
     $o->ga_id = "DD";
     $o->ga_description = "Test 1";
     $o->remove();
     $r = $o->myList();
     print_r($r);
 }
예제 #4
0
<?php

//This file is part of NOALYSS and is under GPL
//see licence.txt
if (!defined('ALLOWED')) {
    die('Appel direct ne sont pas permis');
}
require_once NOALYSS_INCLUDE . '/class_anc_group.php';
$gr = new Anc_Group($cn);
$gr->get_request();
echo '<form method="get">';
echo $gr->display_form();
echo '<p>' . HtmlInput::submit('Recherche', _('Recherche')) . '</p>';
echo '</form>';
if (isset($_GET['result'])) {
    echo $gr->show_button();
    echo $gr->display_html();
}