<?php
/*
list.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();
UserSite();
if(isset($_REQUEST['myID']))
{
$myID = $_REQUEST['myID'];
$smarty->assign("myID","$myID");
}
if(isset($_REQUEST['invoiceID']))
{
$invoiceID = $_REQUEST['invoiceID'];
$smarty->assign("invoiceID","$invoiceID");
}
if(!empty($_REQUEST['page']))
{
$intCurrentPage = $_REQUEST['page'];
} else {
$intCurrentPage = 1;
}
if(!empty($_REQUEST['Order']))
{
$Order = $_REQUEST['Order'];
$smarty->assign("Order","$Order");
} else {
$Order = "I.INVOICE_DATE DESC, I.INVOICEID DESC";
$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");
}
$smarty->assign("Title","$a[invoice] - $a[list]");
$smarty->assign("First_Name","$a[firstname]");
$smarty->assign("Last_Name","$a[lastname]");
$smarty->assign("Company_Name","$a[company]");
$smarty->assign("Customer_No","$a[customer_no]");
$smarty->assign("Customer","$a[customer]");
$smarty->assign("EntryChanged","$a[entry_changed]");
$smarty->assign("EntryCanceled","$a[entry_canceled]");
$smarty->assign("NewEntry","$a[new_entry]");
$smarty->assign("Email_OK","$a[email_ok]");
$smarty->assign("Email_Error","$a[email_error]");
$smarty->assign("Invoice_No","$a[invoice_number]");
$smarty->assign("Delivery_Note_No","$a[delivery_note_number]");
$smarty->assign("Invoice_Amount","$a[invoice_amount]");
$smarty->assign("Invoice_Transaction","$a[invoice_transaction]");
$smarty->assign("Open_Account","$a[open_account]");
$smarty->assign("Print_Invoice","$a[print_invoice]");
$smarty->assign("Print_Delivery_Note","$a[print_delivery_note]");
// Database connection
//
DBConnect();
// Get data from company_settings.inc.php
//
$smarty->assign("Invoice_Currency",$CompanyCurrency);
$intCursor = ($intCurrentPage - 1) * $EntrysPerPage;
// Get Invoice Information
//
if($Canceled == 1)
{
$query = $db->GetAll("SELECT A.MYID, A.FIRSTNAME, A.LASTNAME, A.COMPANY, I.CREATEDBY, I.INVOICEID, I.MYID, DATE_FORMAT(I.INVOICE_DATE,'%d.%m.%Y') AS INVOICE_DATE, I.TOTAL_AMOUNT, I.PAID, I.SUM_PAID, I.CANCELED FROM {$TBLName}invoice AS I, {$TBLName}addressbook AS A WHERE CANCELED=1 AND A.MYID=I.MYID ORDER BY $Order $Sort LIMIT $intCursor, $EntrysPerPage");
}
else if($Canceled == 3)
{
$query = $db->GetAll("SELECT A.MYID, A.FIRSTNAME, A.LASTNAME, A.COMPANY, I.CREATEDBY, I.INVOICEID, I.MYID, DATE_FORMAT(I.INVOICE_DATE,'%d.%m.%Y') AS INVOICE_DATE, I.TOTAL_AMOUNT, I.PAID, I.SUM_PAID, I.CANCELED FROM {$TBLName}invoice AS I, {$TBLName}addressbook AS A WHERE A.MYID=I.MYID ORDER BY $Order $Sort LIMIT $intCursor, $EntrysPerPage");
}
else
{
$query = $db->GetAll("SELECT A.MYID, A.FIRSTNAME, A.LASTNAME, A.COMPANY, I.CREATEDBY, I.INVOICEID, I.MYID, DATE_FORMAT(I.INVOICE_DATE,'%d.%m.%Y') AS INVOICE_DATE, I.TOTAL_AMOUNT, I.PAID, I.SUM_PAID, I.CANCELED FROM {$TBLName}invoice AS I, {$TBLName}addressbook AS A WHERE CANCELED=2 AND A.MYID=I.MYID ORDER BY $Order $Sort LIMIT $intCursor, $EntrysPerPage");
}
// If an error has occurred, display the error message
//
if (!$query)
print($db->ErrorMsg());
else
// Count PageRows
//
$pagenumrows = count($query);
// Count MaxRows
//
if($Canceled == 1)
{
$query1 = $db->Execute("SELECT INVOICEID FROM {$TBLName}invoice WHERE CANCELED=1");
}
else if($Canceled == 3)
{
$query1 = $db->Execute("SELECT INVOICEID FROM {$TBLName}invoice");
}
else
{
$query1 = $db->Execute("SELECT INVOICEID FROM {$TBLName}invoice WHERE CANCELED=2");
}
foreach($query1 as $result1)
{
$numrows += count($query1);
}
// Save MaxPages
//
$intPages = ceil($numrows/$EntrysPerPage);
// Save all entrys in $InvoiceData array
//
foreach($query as $result)
{
$InvoiceData[] = $result;
// Save Total Page Entrys
//
$TotalPage += $result['TOTAL_AMOUNT'];
$smarty->assign("TOTAL_PAGE",$TotalPage);
}
$smarty->assign("PageRows","$pagenumrows");
$smarty->assign("MaxRows","$numrows");
$smarty->assign('InvoiceData', $InvoiceData);
// Get information from selected customer
//
$query3 = $db->Execute("SELECT LASTNAME, FIRSTNAME, COMPANY, MYID FROM {$TBLName}addressbook WHERE MYID='$myID'");
// If an error has occurred, display the error message
//
if (!$query3)
print($db->ErrorMsg());
else
foreach($query3 as $result3)
{
$smarty->assign("FIRSTNAME","$result3[FIRSTNAME]");
$smarty->assign("LASTNAME","$result3[LASTNAME]");
$smarty->assign("COMPANY","$result3[COMPANY]");
$smarty->assign("MYID","$result3[MYID]");
}
// Calculate total amount
//
$query4 = $db->Execute("SELECT SUM(TOTAL_AMOUNT) AS TOTAL_AMOUNT FROM {$TBLName}invoice WHERE CANCELED=2");
// If an error has occurred, display the error message
//
if (!$query4)
print($db->ErrorMsg());
else
foreach($query4 as $result4)
{
$Total_Amount += $result4['TOTAL_AMOUNT'];
$smarty->assign("TOTAL_AMOUNT",$Total_Amount);
}
// Calculate total sum paid
//
$query5 = $db->Execute("SELECT SUM(SUM_PAID) AS SUM_PAID FROM {$TBLName}invoice WHERE CANCELED=2");
// If an error has occurred, display the error message
//
if (!$query5)
print($db->ErrorMsg());
else
foreach($query5 as $result5)
{
$Sum_Paid += $result5['SUM_PAID'];
$smarty->assign("OPEN_ACCOUNT",$Total_Amount-$Sum_Paid);
}
// Display pager only if $numrows > $EntrysPerPage ( lines per page )
// from settings menu
//
if ($numrows > $EntrysPerPage)
{
$smarty->assign('CurrentPage', "$intCurrentPage");
$smarty->assign('MaxPages', "$intPages");
$smarty->assign('AddCurrentPage', "page=$intCurrentPage&");
// If we are not on first page then display
// first page, previous page link
//
if ($intCurrentPage > 1)
{
$Page = $intCurrentPage - 1;
$smarty->assign('PrevPage', "$Page");
}
// If we are not on the last page then display
// next page, last page link
//
if ($intCurrentPage < $intPages)
{
$Page = $intCurrentPage + 1;
$smarty->assign('NextPage', "$Page");
}
}
$smarty->display('invoice/list.tpl');
unset($_SESSION['EditID']);
unset($_SESSION['CancelID']);
unset($_SESSION['NewID']);
unset($_SESSION['emailID']);
unset($_SESSION['Type']);
?>