Merge branch 'new_theme' of bitbucket.org:venbainformationtechnology/ria into new_theme

This commit is contained in:
vadivel J 2024-10-07 09:52:44 +05:30
commit 30d7e51649
2 changed files with 7 additions and 6 deletions

View File

@ -189,6 +189,8 @@ if (!empty($emppay)) {
<input type="hidden" class="form-control required" id="Created_Time" name="Created_Time" value="<?php echo $Created_Time; ?>">
<input type="hidden" class="form-control required" id="CreatedBy" name="CreatedBy" value="<?php echo $Created_By; ?>">
<input type="hidden" readonly id="Pay_Data_ID" name="Pay_Data_ID" value="<?php echo $Pay_Data_ID; ?>">
<input type="hidden" class="form-control num" id="Old_Loan_Amount" value="<?php echo $Loan_Amount; ?>" >
<input type="hidden" class="form-control num" id="Old_monthly_due" value="<?php echo $Monthly_due; ?>" >
<div class="row">
<div class="col-md-3">
<div class="form-group">
@ -264,8 +266,7 @@ if (!empty($emppay)) {
</div>
</div>
<!-- <input type="hidden" id="remaining_due" name="remaining_due" value="<?php echo $Remaining_Due; ?>">
<input type="hidden" id="paid_due" name="paid_due" value="<?php echo $Paid_Due; ?>"> -->
</div>
</div>
<div class="col-md-12 text-right">

View File

@ -464,16 +464,16 @@
<th colspan="20"></th>
<th>Total</th>
<th id="monthloan" style="text-align:right;">
<?php echo isset($totalmonthloan) ? array_sum($totalmonthloan) : ''; ?>
<?php echo isset($totalmonthloan) ? number_format(array_sum($totalmonthloan), 2) : ''; ?>
</th>
<th id="other" style="text-align:right;">
<?php echo isset($totalotherDet) ? array_sum($totalotherDet) : ''; ?>
<?php echo isset($totalotherDet) ? number_format(array_sum($totalotherDet), 2) : ''; ?>
</th>
<th id="fest" style="text-align:right;">
<?php echo isset($totalfestival) ? array_sum($totalfestival) : ''; ?>
<?php echo isset($totalfestival) ? number_format(array_sum($totalfestival), 2) : ''; ?>
</th>
<th id="estsal" style="text-align:right;">
<?php echo isset($estTotal) ? array_sum($estTotal) : ''; ?>
<?php echo isset($estTotal) ? number_format(array_sum($estTotal), 2) : ''; ?>
</th>
</tr>
</tfoot>