This commit is contained in:
Suvodip
2025-03-07 16:49:09 +05:30
parent a6522f589d
commit 881c48d5bb
13 changed files with 800 additions and 189 deletions

View File

@@ -55,8 +55,8 @@ if ($invoiceInfo['tenure'] > 1) {
<td><?= $invoiceInfo['qty'] ?></td>
<td><?= $invoiceInfo['rate'] ?></td>
<td><?= $invoiceInfo['tax'] ?>%</td>
<td><?= $invoiceInfo['taxAmount'] ?></td>
<td><?= number_format($invoiceInfo['totalAmount'], 2) ?></td>
<td>$<?= $invoiceInfo['taxAmount'] ?></td>
<td>$<?= number_format($invoiceInfo['totalAmount'], 2) ?></td>
</tr>
</tbody>
</table>
@@ -79,8 +79,8 @@ if ($invoiceInfo['tenure'] > 1) {
<tr>
<td><?= $emi['emiNumber'] ?></td>
<td><?= $emi['emiDate'] ?></td>
<td><?= number_format($emi['emiAmount'], 2) ?></td>
<td><?= number_format($emi['outstanding'], 2) ?></td>
<td>$<?= number_format($emi['emiAmount'], 2) ?></td>
<td>$<?= number_format($emi['outstanding'], 2) ?></td>
<td>
<?= ($emi['payStatus'] == 1) ? '<span class="badge bg-success">Paid</span>' : '<span class="badge bg-danger">Pending</span>' ?>
</td>