Suvodip 2025-03-22 12:47:46 +05:30
parent f4c9d21318
commit c20c9766ab
2 changed files with 10 additions and 10 deletions

View File

@ -164,7 +164,7 @@
<div> <div>
<p>Customer Name: <strong><?php echo $customer['name']; ?></strong></p> <p>Customer Name: <strong><?php echo $customer['name']; ?></strong></p>
<p>Mobile Number: <strong><?php echo $customer['mobile']; ?></strong></p> <p>Mobile Number: <strong><?php echo $customer['mobile']; ?></strong></p>
<p>EMI Booking Date: <strong><?php echo $bookingDate ? htmlspecialchars($bookingDate) : 'N/A'; ?></strong></p> <p>Booking Date: <strong><?php echo $bookingDate ? htmlspecialchars($bookingDate) : 'N/A'; ?></strong></p>
<p>Invoice Id: <strong><?php echo $emiPlans[0]['invoiceId']; ?></strong></p> <p>Invoice Id: <strong><?php echo $emiPlans[0]['invoiceId']; ?></strong></p>
</div> </div>
<div> <div>
@ -180,10 +180,10 @@
<table class="table table-striped table-bordered"> <table class="table table-striped table-bordered">
<thead class="text-white text-center" style="background-color: #374151;"> <thead class="text-white text-center" style="background-color: #374151;">
<tr> <tr>
<th>Number of EMI</th> <th>Installment</th>
<th>EMI Amount</th> <th>Amount</th>
<th>EMI Date</th> <th>Date</th>
<th>EMI Payment Date</th> <th>Payment Date</th>
<th>Payment Status</th> <th>Payment Status</th>
<th>Action</th> <th>Action</th>
</tr> </tr>

View File

@ -214,8 +214,8 @@
<th class="p-2">Description</th> <th class="p-2">Description</th>
<th class="p-2">Qty</th> <th class="p-2">Qty</th>
<th class="p-2">Rate</th> <th class="p-2">Rate</th>
<th class="p-2">Discount % </th> <th class="p-2">Discount&nbsp;% </th>
<th class="p-2">Discount Amount</th> <th class="p-2">Discount&nbsp;$</th>
<th class="p-2">Amount</th> <th class="p-2">Amount</th>
</tr> </tr>
</thead> </thead>
@ -225,7 +225,7 @@
<input type="text" class="form-control w-100" name="item" id="item" rows="3" /> <input type="text" class="form-control w-100" name="item" id="item" rows="3" />
</td> </td>
<td> <td>
<input type="text" class="form-control w-100" name="description" id="description" rows="3" /> <input type="text" class="form-control w-100" name="description" id="description" rows="3" />
</td> </td>
<td> <td>
<input class="form-control w-100" name="quantity" id="quantity" /> <input class="form-control w-100" name="quantity" id="quantity" />
@ -257,8 +257,8 @@
<div class="d-flex justify-content-end align-items-center mt-2"> <div class="d-flex justify-content-end align-items-center mt-2">
<div> <div>
<a href="/customers/list" class="btn btn-secondary">Discard</a> <a href="/customers/list" class="btn btn-secondary">Discard</a>
<button type="submit" class="btn btn-primary">Save</button> <button type="submit" class="btn text-white" style="background-color: #374151;">Save</button>
<a href="/customers/print-invoice/?customerId=<?= $_GET['customerId'] . '&invoiceId='. $lastInvoicePrint['invoiceId']; ?>" id="printBtn" class="btn btn-primary visually-">Print Invoice</a> <a href="/customers/print-invoice/?customerId=<?= $_GET['customerId'] . '&invoiceId='. $lastInvoicePrint['invoiceId']; ?>" id="printBtn" class="btn text-white" style="background-color: #374151;">Print Invoice</a>
</div> </div>
</div> </div>