| Current Path : /var/www/html/mmishra/iws8/html/imaterial/ |
| Current File : /var/www/html/mmishra/iws8/html/imaterial/SupplierTransInquiry.php |
<?php
/* $Id: SupplierTransInquiry.php 7423 2015-12-24 10:12:57Z exsonqu $*/
include('includes/session.inc');
$Title = _('Supplier Transactions Inquiry');
include('includes/header.inc');
echo '<p class="page_title_text">
<img src="'.$RootPath.'/css/'.$Theme.'/images/supplier.png" title="' . _('Search') .
'" alt="" />' . ' ' . $Title . '
</p>';
echo '<form action="' . htmlspecialchars($_SERVER['PHP_SELF'],ENT_QUOTES,'UTF-8') . '" method="post">';
echo '<div>';
echo '<input type="hidden" name="FormID" value="' . $_SESSION['FormID'] . '" />';
echo '<table class="selection">
<tr>
<td>' . _('Type') . ':</td>
<td><select name="TransType">';
$sql = "SELECT typeid,
typename
FROM systypes
WHERE typeid >= 20
AND typeid <= 23";
$resultTypes = DB_query($sql);
echo '<option value="All">' ._('All') . '</option>';
while ($myrow=DB_fetch_array($resultTypes)){
if (isset($_POST['TransType'])){
if ($myrow['typeid'] == $_POST['TransType']){
echo '<option selected="selected" value="' . $myrow['typeid'] . '">' . $myrow['typename'] . '</option>';
} else {
echo '<option value="' . $myrow['typeid'] . '">' . $myrow['typename'] . '</option>';
}
} else {
echo '<option value="' . $myrow['typeid'] . '">' . $myrow['typename'] . '</option>';
}
}
echo '</select></td>';
if (!isset($_POST['FromDate'])){
$_POST['FromDate']=Date($_SESSION['DefaultDateFormat'], mktime(0,0,0,Date('m'),1,Date('Y')));
}
if (!isset($_POST['ToDate'])){
$_POST['ToDate'] = Date($_SESSION['DefaultDateFormat']);
}
if (!isset($_POST['SupplierNo'])) {
$_POST['SupplierNo'] = '';
}
echo '<td>' . _('From') . ':</td>
<td><input type="text" class="date" alt="' . $_SESSION['DefaultDateFormat'] . '" name="FromDate" maxlength="10" size="11" value="' . $_POST['FromDate'] . '" /></td>
<td>' . _('To') . ':</td>
<td><input type="text" class="date" alt="' . $_SESSION['DefaultDateFormat'] . '" name="ToDate" maxlength="10" size="11" value="' . $_POST['ToDate'] . '" /></td>
<td>' . _('Supplier No') . ':</td>
<td><input type="text" name="SupplierNo" size="11" maxlength="10" value="' . $_POST['SupplierNo'] . '" />
</td>
</tr>
</table>
<br />
<div class="centre">
<input type="submit" name="ShowResults" value="' . _('Show Transactions') . '" />
</div>
<br />
</div>
</form>';
if (isset($_POST['ShowResults']) && $_POST['TransType'] != ''){
$SQL_FromDate = FormatDateForSQL($_POST['FromDate']);
$SQL_ToDate = FormatDateForSQL($_POST['ToDate']);
$sql = "SELECT type,
transno,
trandate,
duedate,
supplierno,
suppname,
suppreference,
transtext,
supptrans.rate,
diffonexch,
alloc,
ovamount+ovgst as totalamt,
currcode,
typename,
decimalplaces AS currdecimalplaces
FROM supptrans
INNER JOIN suppliers ON supptrans.supplierno=suppliers.supplierid
INNER JOIN systypes ON supptrans.type = systypes.typeid
INNER JOIN currencies ON suppliers.currcode=currencies.currabrev
WHERE ";
$sql = $sql . "trandate >='" . $SQL_FromDate . "' AND trandate <= '" . $SQL_ToDate . "'";
if ($_POST['TransType']!='All') {
$sql .= " AND type = " . $_POST['TransType'];
}
$sql .= " ORDER BY id";
$TransResult = DB_query($sql);
$ErrMsg = _('The supplier transactions for the selected criteria could not be retrieved because') . ' - ' . DB_error_msg();
$DbgMsg = _('The SQL that failed was');
echo '<table class="selection">';
$tableheader = '<tr>
<th>' . _('Type') . '</th>
<th>' . _('Number') . '</th>
<th>' . _('Supp Ref') . '</th>
<th>' . _('Date') . '</th>
<th>' . _('Supplier') . '</th>
<th>' . _('Comments') . '</th>
<th>' . _('Due Date') . '</th>
<th>' . _('Ex Rate') . '</th>
<th>' . _('Amount') . '</th>
<th>' . _('Currency') . '</th>
</tr>';
echo $tableheader;
$RowCounter = 1;
$k = 0; //row colour counter
while ($myrow=DB_fetch_array($TransResult)) {
if ($k==1){
echo '<tr class="EvenTableRows">';
$k=0;
} else {
echo '<tr class="EvenTableRows">';;
$k++;
}
printf ('<td>%s</td>
<td>%s</td>
<td>%s</td>
<td>%s</td>
<td>%s</td>
<td>%s</td>
<td>%s</td>
<td class="number">%s</td>
<td class="number">%s</td>
<td>%s</td>
</tr>',
$myrow['typename'],
$myrow['transno'],
$myrow['suppreference'],
ConvertSQLDate($myrow['trandate']),
$myrow['supplierno'] . ' - ' . $myrow['suppname'],
$myrow['transtext'],
ConvertSQLDate($myrow['duedate']),
locale_number_format($myrow['rate'],'Variable'),
locale_number_format($myrow['totalamt'],$myrow['currdecimalplaces']),
$myrow['currcode']);
$GLTransResult = DB_query("SELECT account,
accountname,
narrative,
amount
FROM gltrans INNER JOIN chartmaster
ON gltrans.account=chartmaster.accountcode
WHERE type='" . $myrow['type'] . "'
AND typeno='" . $myrow['transno'] . "'",
_('Could not retrieve the GL transactions for this AP transaction'));
if (DB_num_rows($GLTransResult)==0){
echo '<tr>
<td colspan="10">' . _('There are no GL transactions created for the above AP transaction') . '</td>
</tr>';
} else {
echo '<tr>
<td colspan="2"></td>
<td colspan="8">
<table class="selection" width="100%">';
echo '<tr>
<th colspan="2"><b>' . _('GL Account') . '</b></th>
<th><b>' . _('Local Amount') . '</b></th>
<th><b>' . _('Narrative') . '</b></th>
</tr>';
$CheckGLTransBalance =0;
while ($GLTransRow = DB_fetch_array($GLTransResult)){
printf('<tr>
<td>%s</td>
<td>%s</td>
<td class="number">%s</td>
<td>%s</td>
</tr>',
$GLTransRow['account'],
$GLTransRow['accountname'],
locale_number_format($GLTransRow['amount'],$_SESSION['CompanyRecord']['decimalplaces']),
$GLTransRow['narrative']);
$CheckGLTransBalance += $GLTransRow['amount'];
}
if (round($CheckGLTransBalance,5)!= 0){
echo '<tr>
<td colspan="4" style="background-color:red"><b>' . _('The GL transactions for this AP transaction are out of balance by') . ' ' . $CheckGLTransBalance . '</b></td>
</tr>';
}
echo '</table></td></tr>';
}
$RowCounter++;
If ($RowCounter == 12){
$RowCounter=1;
echo $tableheader;
}
//end of page full new headings if
}
//end of while loop
echo '</table>';
}
include('includes/footer.inc');
?>