master module changes-2 vadivel J 19-12-2024

This commit is contained in:
vadivelJ96 2024-12-19 17:15:33 +05:30
parent 498713b8e6
commit 4df1ff8885

View File

@ -214,9 +214,15 @@
<th>Supplier Name</th>
<th>Invoice No</th>
<th>Invoice Date </th>
<th>Item Count</th>
<th>Rec Qty</th>
<th>Net Weight</th>
<!--!!!!!..... Don't remove the comment ..!!!!!!!!!!!! -->
<!-- temporarily removed as per client requirement to remove item count -->
<th style="display:none;">Item Count</th>
<!-- Rec qty changed to invoice qty -->
<th>Invoice Qty</th>
<!-- net weight changed to received qty -->
<th>Recieved Qty</th>
<th>Vechicle No</th>
<th>Driver</th>
<th>Transporter</th>
@ -247,9 +253,15 @@
<td align="right"><?php
$date = new DateTime($record->DeliveryChellanDate);
echo $date->format('d-m-Y'); ?></td>
<td align="center"><?php echo $record->itemCount ?></td>
<td align="right"><?php echo $record->ReceivedQuantity ?></td>
<td align="center"><?php echo $record->NetWeight ?></td>
<td align="center"
style=" display : none ;"><?php echo $record->itemCount ?></td>
<!-- below one is currently shown as invoice qty -->
<td align="right"><?php echo (int)$record->ReceivedQuantity ?></td>
<!-- below one is currently shown as received qty -->
<td align="right"><?php echo $record->NetWeight ?></td>
<td><?php echo $record->VehicleNo ?></td>
<td><?php echo $record->DriverName ?></td>
<td><?php echo $record->TransporterName ?></td>