diff --git a/admin/.hta_slug/stat.php b/admin/.hta_slug/stat.php
index 7e25372..b34be0b 100644
--- a/admin/.hta_slug/stat.php
+++ b/admin/.hta_slug/stat.php
@@ -88,7 +88,7 @@ try {
|
$ |
- |
+ |
Pending
diff --git a/customers/.hta_slug/billing-details.php b/customers/.hta_slug/billing-details.php
index f00462f..b5542e7 100644
--- a/customers/.hta_slug/billing-details.php
+++ b/customers/.hta_slug/billing-details.php
@@ -169,7 +169,7 @@
Customer Name:
Mobile Number:
- Installment Start Date:
+ Installment Start Date:
Invoice Id:
Email:
@@ -200,10 +200,10 @@
|
= $emi['emiNumber']; ?> |
$= number_format($emi['emiAmount'], 2); ?> |
- = date('d-m-Y', strtotime($emi['emiDate'])); ?> |
+ = date("m/d/Y", strtotime($emi['emiDate'])); ?> |
- = date('d-m-Y', strtotime($emi['paymentDate'])); ?>
+ = date("m/d/Y", strtotime($emi['paymentDate'])); ?>
@@ -237,7 +237,7 @@
|
$= $emi['adPaymentAmount']; ?> |
- = $emi['adPaymentDate']; ?> |
+ = date("m/d/Y", strtotime($emi['adPaymentDate'])); ?> |
= $emi['adPaymentTran']; ?> |
= $emi['adPaymentRemarks']; ?> |
diff --git a/customers/.hta_slug/list.php b/customers/.hta_slug/list.php
index 9837eb4..bea5d7c 100644
--- a/customers/.hta_slug/list.php
+++ b/customers/.hta_slug/list.php
@@ -57,8 +57,8 @@
Start Date |
End Date |
Installments |
- Monthly Payment Date |
- Monthly Payment Amount |
+ Payment Date |
+ Installment Amount |
Total Amount |
Action |
@@ -118,22 +118,22 @@
- |
- modify('+'.$emi['tenure']-'1'.'months')->format('d-m-Y') : 'N/A'; ?> |
+ |
+ modify('+'.$emi['tenure']-'1'.'months')->format("m/d/Y") : 'N/A'; ?> |
|
|
$ |
$ |
- New
- Edit
- Print
- Password
+ New
+ Edit
+ Print
+ Password
|
@@ -147,12 +147,12 @@
|
No EMI or Invoice Data |
- New
- Password
+ New
+ Password
|
diff --git a/customers/.hta_slug/print-invoice.php b/customers/.hta_slug/print-invoice.php
index 65921dc..912f70a 100644
--- a/customers/.hta_slug/print-invoice.php
+++ b/customers/.hta_slug/print-invoice.php
@@ -36,7 +36,7 @@ if ($invoiceInfo['tenure'] > 1) {
= $invoiceInfo['customerName'] ?>
= $invoiceInfo['address'] ?>
- Invoice Date: = $invoiceInfo['invoiceDate'] ?>
+ Invoice Date: = date('m/d/Y', strtotime($invoiceInfo['invoiceDate'])) ?>
CLASSBOXES TECHNOLOGY
@@ -90,8 +90,8 @@ if ($invoiceInfo['tenure'] > 1) {
= $emi['emiNumber'] ?> |
- = $emi['emiDate'] ?> |
- = $emi['payStatus'] == 1 ? $emi['paymentDate'] : 'Unpaid' ?> |
+ = date('m/d/Y', strtotime($emi['emiDate'])) ?> |
+ = $emi['payStatus'] == 1 ? date('m/d/Y', strtotime($emi['paymentDate'])) : 'Unpaid' ?> |
$= number_format($emi['emiAmount'], 2) ?> |
$= number_format($emi['outstanding'], 2) ?> |
@@ -121,7 +121,7 @@ if ($invoiceInfo['tenure'] > 1) {
?>
|
= number_format($emiAdditional['adPaymentAmount'], 2) ?> |
- = !empty($emiAdditional['adPaymentDate']) ? $emiAdditional['adPaymentDate'] : '-' ?> |
+ = !empty($emiAdditional['adPaymentDate']) ? date('m/d/Y', strtotime($emiAdditional['adPaymentDate'])) : '-' ?> |
= !empty($emiAdditional['adPaymentSource']) ? $emiAdditional['adPaymentSource'] : '-' ?> |
= !empty($emiAdditional['adPaymentTran']) ? $emiAdditional['adPaymentTran'] : '-' ?> |
= !empty($emiAdditional['adPaymentRemarks']) ? $emiAdditional['adPaymentRemarks'] : '-' ?> |
@@ -143,7 +143,7 @@ if ($invoiceInfo['tenure'] > 1) {