12345678910111213141516171819202122 |
- <form>
- <input type="date" name="selectDateToFind">
- <input class="btn btn-primary" type="submit" value="Find">
- </form>
- <table id="example" class="table display table-striped table-bordered table-hover table-sm" cellspacing="0" width="100%">
- <?php include "api/v1/ShiftPumpReport/shiftPumpVw1.php" ?>
- <?php include "api/v1/ShiftPumpReport/shiftPumpReport1.php" ?><?php include "api/v1/ShiftPumpReport/shiftPumpVw2.php" ?>
- <?php include "api/v1/ShiftPumpReport/shiftPumpReport2.php" ?>
- <tfoot>
- <tr>
- <th>Pump Number</th>
- <th>Fuel Grade</th>
- <th>Pump Opening Volume</th>
- <th>Pump Closing Volume</th>
- <th>Sale Volume
- (Closing Volume - Opening Volume)</th>
- <th>Unit Price</th>
- <th>Money
- (Sale Volume x Unit Price)</th>
- </tr>
- </tfoot>
- </table>
|