po_pdf.php edited online with Bitbucket

This commit is contained in:
Venba 2025-12-12 12:22:35 +00:00
parent c85386f7d2
commit 9d7d72cd84

View File

@ -612,8 +612,13 @@
echo "xxx";
} ?>
</td>
<td class="text-right no-border"><?php echo number_alignment($item->Rate); ?></td>
<td class="text-right no-border"><?php echo number_alignment(abs($item->BasicValue)); ?></td>
<td class="text-right no-border"><?php
if ($POType == 'IMPORT') {
echo $item->Rate;
} else {
echo number_alignment($item->Rate);
}
?></td> <td class="text-right no-border"><?php echo number_alignment(abs($item->BasicValue)); ?></td>
<td class="text-right no-border"><?php if(isset($item->CGST) && $item->CGST != '' ){ _htmlsc($item->CGST); }else{ echo 0; } ?></td>
<td class="text-right no-border"><?php if (isset($item->AfterCGST) && $item->AfterCGST != '') {
echo number_alignment(abs($item->AfterCGST));