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>
<p>Customer Name: <strong><?php echo $customer['name']; ?></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>
</div>
<div>
@ -180,10 +180,10 @@
<table class="table table-striped table-bordered">
<thead class="text-white text-center" style="background-color: #374151;">
<tr>
<th>Number of EMI</th>
<th>EMI Amount</th>
<th>EMI Date</th>
<th>EMI Payment Date</th>
<th>Installment</th>
<th>Amount</th>
<th>Date</th>
<th>Payment Date</th>
<th>Payment Status</th>
<th>Action</th>
</tr>

View File

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