altocompta/include/ajax/ajax_save_predf_op.php

83 lines
2.3 KiB
PHP

<?php
/*
* 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 save the new predefined operation
* included from ajax_misc
*/
if ( ! defined ('ALLOWED') ) die('Appel direct ne sont pas permis');
$http=new HttpInput();
try {
$table=$http->request('table');
$action=$http->request('action');
$p_id=$http->request('p_id', "number");
$ctl_id=$http->request('ctl');
} catch(Exception $e) {
echo $e->getMessage();
return;
}
if ( $g_user->check_module("PREDOP") == 0)
{
header('Content-type: text/xml; charset=UTF-8');
echo Manage_Table_SQL::ajax_error(_('Accès non autorisé'),)->saveXML();
record_log("security PREDOP");
return;
}
$prd_op=new Op_Predef_SQL($cn);
$prd_op->set_pk_value($p_id);
$prd_op->load();
$operation_predef_mtable=new Operation_Predef_MTable($prd_op);
$operation_predef_mtable->add_json_param("op","save_predf");
$operation_predef_mtable->set_object_name($ctl_id);
$operation_predef_mtable->set_callback("ajax_misc.php");
if ($action=="input")
{
if ($p_id < 0 ) {
$operation_predef_mtable->set_force_ledger_type($p_id);
}
// display existing operation for updating
header('Content-type: text/xml; charset=UTF-8');
echo $operation_predef_mtable->ajax_input()->saveXML();
return;
}
elseif ($action == "save")
{
$xml=$operation_predef_mtable->ajax_save();
header('Content-type: text/xml; charset=UTF-8');
echo $xml->saveXML();
}
elseif ($action == "delete")
{
$xml=$operation_predef_mtable->ajax_delete();
header('Content-type: text/xml; charset=UTF-8');
echo $xml->saveXML();
}