| Current Path : /var/www/html/mmishra/iws8/html/iport/ |
| Current File : /var/www/html/mmishra/iws8/html/iport/billreceipt.inc |
<h3 align='left'><i class='fa fa-line-chart' aria-hidden='true'></i> Bill Receipt</h3>
<center>
<?php
$myTransport = new iTransport();
$myCommuter = new iCommuter();
$myCommuter->rowID = $_REQUEST['rowID'];
//get sysconfig
$myTransport->getSysconfig();
//get record
$myCommuter->getRequisition($myCommuter->rowID);
echo "<table width='80%'>
<tr><th>Bill Receipt</th></tr>
<tr><td>KM Rate: <i class='fa fa-inr' aria-hidden='true'></i> " .$myTransport->kmRate. "<br>";
if ($myCommuter->rowID) {
//get record
$myCommuter->getRequisition($myCommuter->rowID);
echo $myCommuter->requisitionListing($myCommuter->rowID, 0);
} else {
echo $myCommuter->billedRequisitions($myCommuter->rowID, $pg);
}
echo "</td></tr>
</table>";
?>
</center>
<br>
Km charge is the actual run of vehicle to performed the trip.<br>
Multiple trips on the same route may be shared by all commuters.<br>
Payable amount may also be shared by commuters depending on their trip purpose (official/personal).