latest commit 17-05-2025

This commit is contained in:
vadivelJ96 2025-05-17 17:47:14 +05:30
parent 57110ce462
commit e0dfc974f9
3 changed files with 32 additions and 28 deletions

View File

@ -154,7 +154,7 @@
</thead>
<tbody>
<?php if(!empty($hsnCreditNoteRegister)){
<?php
$totalQuantity = 0;
$totalTaxableAmount = 0;
$totalCgst = 0;
@ -163,6 +163,8 @@
$totalNetInvoiceAmount = 0;
?>
<?php if(!empty($hsnCreditNoteRegister)){ ?>
<?php foreach($hsnCreditNoteRegister as $index => $hcn) {
$totalQuantity += $hcn['quantity'];

View File

@ -151,17 +151,19 @@
</thead>
<tbody>
<?php if(!empty($hsnSalesRegister)){
<?php
$totalQuantity = 0;
$totalTaxableAmount = 0;
$totalCgst = 0;
$totalSgst = 0;
$totalIgst = 0;
$totalNetInvoiceAmount = 0;
?>
<?php ?>
<?php if(!empty($hsnSalesRegister)){ ?>
<?php foreach($hsnSalesRegister as $index => $hs) {
$totalQuantity += $hs['quantity'];

View File

@ -154,17 +154,17 @@
</thead>
<tbody>
<?php if(!empty($hsnSummaryRegister)){
<?php
$totalQuantity = 0;
$totalTaxableAmount = 0;
$totalCgst = 0;
$totalSgst = 0;
$totalIgst = 0;
$totalNetInvoiceAmount = 0;
?>
<?php if(!empty($hsnSummaryRegister)){ ?>
<?php foreach($hsnSummaryRegister as $index => $hsm) {
$totalQuantity += $hsm['quantity'];