<?php
/*
deletef.php
phpInvoice - is easy-to-use Web-based multilingual accounting software.
Copyright (C) 2001 - 2008 Edy Corak < phprechnung at ecorak dot net >
This program 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.
This program 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 this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
require_once("../include/phprechnung.inc.php");
require_once("../include/smarty.inc.php");
CheckUser();
CheckAdminGroup1();
CheckSession();
if(isset($_POST['methodpayID']))
{
$methodpayID = $_POST['methodpayID'];
}
if(isset($_POST['page']))
{
$page = $_POST['page'];
}
if(isset($_POST['infoID']))
{
$infoID = $_POST['infoID'];
}
if(isset($_POST['Description_1']))
{
$Description_1 = $_POST['Description_1'];
}
if(isset($_POST['Order']))
{
$Order = $_POST['Order'];
}
if(isset($_POST['Sort']))
{
$Sort = $_POST['Sort'];
}
function UserInput($mark)
{
global $smarty, $methodpayID, $page, $infoID, $Description_1, $Sort, $Order;
$smarty->assign("methodpayID","$methodpayID");
$smarty->assign("page",$page);
$smarty->assign("infoID","$infoID");
$smarty->assign("Description_1","$Description_1");
$smarty->assign("Order",$Order);
$smarty->assign("Sort",$Sort);
$smarty->assign("Mark",$mark);
}
if (empty($methodpayID))
{
$smarty->assign("FieldError","$a[method_of_payment] - $a[field_error]");
UserInput("");
$smarty->display('methodofpayment/deletef.tpl');
}
else if ($methodpayID == 2)
{
$smarty->assign("FieldError","$a[method_of_payment] - $a[entry_not_deleted]");
UserInput("");
$smarty->display('methodofpayment/deletef.tpl');
}
else
{
// Database connection
//
DBConnect();
$query1 = $db->Execute("SELECT METHODOFPAYID FROM {$TBLName}address WHERE METHODOFPAYID=$methodpayID");
$query2 = $db->Execute("SELECT METHODOFPAYID FROM {$TBLName}offer WHERE METHODOFPAYID=$methodpayID");
$query3 = $db->Execute("SELECT METHODOFPAYID FROM {$TBLName}invoice WHERE METHODOFPAYID=$methodpayID");
$query4 = $db->Execute("SELECT METHODOFPAYID FROM {$TBLName}payment WHERE METHODOFPAYID=$methodpayID");
$numrows1 = $query1->RowCount();
$numrows2 = $query2->RowCount();
$numrows3 = $query3->RowCount();
$numrows4 = $query4->RowCount();
if ($numrows1 || $numrows2 || $numrows3 || $numrows4)
{
$smarty->assign("FieldError","$a[method_of_payment] - $a[entry_not_deleted]");
UserInput("");
$smarty->display('methodofpayment/deletef.tpl');
}
else
{
$query4 = "DELETE FROM {$TBLName}methodofpay WHERE METHODOFPAYID=$methodpayID";
if ($db->Execute($query4) === false)
{
die($db->ErrorMsg());
}
$query5 = "INSERT INTO {$TBLName}syslog (SYSLOGID, CREATED, DESCRIPTION, CREATEDBY, USERGROUP1, USERGROUP2)";
$query5 .= "VALUES(NULL, '$CurrentDateTime', 'MethodOfPayment-No.: $methodpayID was DELETED by user $_SESSION[Username] (uid=$_SESSION[UserID]) from $IPAddress', 'admin', '1', '2')";
if ($db->Execute($query5) === false)
{
die($db->ErrorMsg());
}
$_SESSION['DeleteID'] = "1";
if($infoID == '9')
{
Header("Location: $web/methodofpayment/searchlist.php?methodpayID=$methodpayID&page=$page&Description_1=$Description_1&Order=$Order&Sort=$Sort&$sessname=$sessid");
}
else
{
Header("Location: $web/methodofpayment/list.php?methodpayID=$methodpayID&page=$page&Order=$Order&Sort=$Sort&$sessname=$sessid");
}
}
}
?>