<?php
/*
info.php
phpRechnung - 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/company_settings.inc.php");
require_once("../include/smarty.inc.php");
CheckUser();
CheckSession();
if(isset($_REQUEST['paymentID']))
{
$paymentID = $_REQUEST['paymentID'];
$smarty->assign("paymentID","$paymentID");
}
if(isset($_REQUEST['page']))
{
$page = $_REQUEST['page'];
$smarty->assign("page","$page");
}
if(isset($_REQUEST['infoID']))
{
$infoID = $_REQUEST['infoID'];
$smarty->assign("infoID","$infoID");
}
if(isset($_REQUEST['CustomerNo_1']))
{
$CustomerNo_1 = $_REQUEST['CustomerNo_1'];
$smarty->assign("CustomerNo_1","$CustomerNo_1");
}
if(isset($_REQUEST['InvoiceNo_1']))
{
$InvoiceNo_1 = $_REQUEST['InvoiceNo_1'];
$smarty->assign("InvoiceNo_1","$InvoiceNo_1");
}
if(isset($_REQUEST['PaymentNo_1']))
{
$PaymentNo_1 = $_REQUEST['PaymentNo_1'];
$smarty->assign("PaymentNo_1","$PaymentNo_1");
}
if(isset($_REQUEST['SumPaid_1']))
{
$SumPaid_1 = $_REQUEST['SumPaid_1'];
$smarty->assign("SumPaid_1","$SumPaid_1");
}
if(isset($_REQUEST['DateFrom_1']))
{
$DateFrom_1 = $_REQUEST['DateFrom_1'];
$smarty->assign("DateFrom_1","$DateFrom_1");
}
if(isset($_REQUEST['DateTill_1']))
{
$DateTill_1 = $_REQUEST['DateTill_1'];
$smarty->assign("DateTill_1","$DateTill_1");
}
if(isset($_REQUEST['MethodOfPay_1']))
{
$MethodOfPay_1 = $_REQUEST['MethodOfPay_1'];
$smarty->assign("MethodOfPay_1","$MethodOfPay_1");
}
if(isset($_REQUEST['Order']))
{
$Order = $_REQUEST['Order'];
$smarty->assign("Order","$Order");
}
if(isset($_REQUEST['Sort']))
{
$Sort = $_REQUEST['Sort'];
$smarty->assign("Sort","$Sort");
}
if(isset($_REQUEST['Canceled']))
{
$Canceled = $_REQUEST['Canceled'];
$smarty->assign("Canceled","$Canceled");
}
$Searchstring = "CustomerNo_1=$CustomerNo_1&InvoiceNo_1=$InvoiceNo_1&PaymentNo_1=$PaymentNo_1&SumPaid_1=$SumPaid_1&DateFrom_1=$DateFrom_1&DateTill_1=$DateTill_1&MethodOfPay_1=$MethodOfPay_1";
$smarty->assign("Searchstring",$Searchstring);
$smarty->assign("Title","$a[payment] - $a[info]");
$smarty->assign("Payment_No","$a[payment_number]");
$smarty->assign("Customer","$a[customer]");
$smarty->assign("Customer_No","$a[customer_no]");
$smarty->assign("Choose_Customer","$a[choose_customer]");
$smarty->assign("CustMethodOfPayment","$a[cust_method_of_payment]");
$smarty->assign("Choose","$a[choose]");
$smarty->assign("Invoice_No","$a[invoice_number]");
$smarty->assign("Invoice_Amount","$a[invoice_amount]");
$smarty->assign("Open_Invoice","$a[open_invoice]");
$smarty->assign("Card_Number","$a[card_number]");
$smarty->assign("Valid_Thru","$a[valid_thru]");
$smarty->assign("Outstanding_Payment","$a[outstanding_payment]");
$smarty->assign("NoteMsg","$a[note]");
$smarty->assign("CloseWindow","$a[close_window]");
// Database connection
//
DBConnect();
// Get data from company_settings.inc.php
//
$smarty->assign("Payment_Currency",$CompanyCurrency);
// Get entrys from payment table
//
$query = $db->GetAll("SELECT A.MYID, A.FIRSTNAME, A.LASTNAME, A.COMPANY, P.PAYMENTID, P.MYID, P.INVOICEID, DATE_FORMAT(P.PAYMENT_DATE,'%d.%m.%Y') AS PAYMENT_DATE, P.SUM_PAID, P.METHODOFPAYID,
P.CARDNR, P.VALIDTHRU, P.SUM_PAID, P.NOTE, P.CANCELED, P.CREATEDBY, P.USERGROUP1, P.USERGROUP2, M.METHODOFPAYID, M.DESCRIPTION FROM {$TBLName}payment AS P, {$TBLName}addressbook AS A,
{$TBLName}methodofpay AS M WHERE A.MYID=P.MYID AND M.METHODOFPAYID=P.METHODOFPAYID AND P.PAYMENTID=$paymentID");
// If an error has occurred, display the error message
//
if (!$query)
print($db->ErrorMsg());
else
foreach($query as $f)
{
$CreatedBy = $f['CREATEDBY'];
$smarty->assign("MYID",$f['MYID']);
$smarty->assign("FIRSTNAME",$f['FIRSTNAME']);
$smarty->assign("LASTNAME",$f['LASTNAME']);
$smarty->assign("COMPANY",$f['COMPANY']);
$smarty->assign("INVOICEID",$f['INVOICEID']);
$smarty->assign("PAYMENTID",$f['PAYMENTID']);
$smarty->assign("PAYMENT_DATE",$f['PAYMENT_DATE']);
$smarty->assign("SUM_PAID",$f['SUM_PAID']);
$smarty->assign("METHODOFPAY",$f['DESCRIPTION']);
$smarty->assign("CARDNR",$f['CARDNR']);
$smarty->assign("VALIDTHRU",$f['VALIDTHRU']);
$smarty->assign("NOTE",$f['NOTE']);
$smarty->assign("USERGROUP1",$f['USERGROUP1']);
$smarty->assign("USERGROUP2",$f['USERGROUP2']);
$smarty->assign("CANCELED",$f['CANCELED']);
}
$smarty->assign("CurrentPaymentID","$paymentID");
// Get the first entry from table 'payment'
//
$query3 = $db->GetRow("SELECT MIN(PAYMENTID) AS MIN_PAYMENTID FROM {$TBLName}payment");
if (!$query3)
die($db->ErrorMsg());
else
$minPaymentID = $query3['MIN_PAYMENTID'];
$smarty->assign("MinPaymentID","$minPaymentID");
// Get the last entry from table 'payment'
//
$query4 = $db->GetRow("SELECT MAX(PAYMENTID) AS MAX_PAYMENTID FROM {$TBLName}payment");
if (!$query4)
die($db->ErrorMsg());
else
$maxPaymentID = $query4['MAX_PAYMENTID'];
$smarty->assign("MaxPaymentID","$maxPaymentID");
// If we are not on first page then display
// first page, previous page link
//
if ($paymentID > $minPaymentID)
{
$CurrentPaymentID = $paymentID - 1;
$smarty->assign('PrevPaymentID', "$CurrentPaymentID");
}
// If we are not on the last page then display
// next page, last page link
//
if ($paymentID < $maxPaymentID)
{
$CurrentPaymentID = $paymentID + 1;
$smarty->assign('NextPaymentID', "$CurrentPaymentID");
}
if(isset($_SESSION['Username']) && $_SESSION['Username'] != $root && $_SESSION['Usergroup1'] != $admingroup_1 && $_SESSION['Usergroup2'] != $admingroup_2 && $_SESSION['Username'] != $CreatedBy)
{
$_SESSION['LastSite'] = $_SERVER['PHP_SELF'].'?'.$_SERVER['argv'][0];
$_SESSION['logoutid'] = "5";
Header("Location: $web/login/sustart.php?$sessname=$sessid");
}
else
{
// Save last page visited by user
//
UserSite();
$smarty->display('payment/info.tpl');
}
?>