mirror of https://github.com/itflow-org/itflow
Update Invoice, Quote, Recurring Invoice Hyperlinks to take you directly to the client view instead of keeping you in global view. We also did this with tickets in the previous commit
This commit is contained in:
parent
cea7d61481
commit
69253385c5
|
|
@ -362,7 +362,7 @@ $num_rows = mysqli_fetch_row(mysqli_query($mysqli, "SELECT FOUND_ROWS()"));
|
|||
</div>
|
||||
</td>
|
||||
<td class="text-bold">
|
||||
<a href="invoice.php?<?php echo $client_url; ?>invoice_id=<?php echo $invoice_id; ?>">
|
||||
<a href="invoice.php?client_id=<?= $client_id ?>&invoice_id=<?= $invoice_id ?>">
|
||||
<?php echo "$invoice_prefix$invoice_number"; ?>
|
||||
</a>
|
||||
</td>
|
||||
|
|
|
|||
|
|
@ -187,7 +187,7 @@ $num_rows = mysqli_fetch_row(mysqli_query($mysqli, "SELECT FOUND_ROWS()"));
|
|||
|
||||
<tr>
|
||||
<td class="text-bold">
|
||||
<a href="quote.php?<?php echo $client_url; ?>quote_id=<?php echo $quote_id; ?>">
|
||||
<a href="quote.php?client_id=<?= $client_id ?>"e_id=<?= $quote_id ?>">
|
||||
<?php echo "$quote_prefix$quote_number"; ?>
|
||||
</a>
|
||||
</td>
|
||||
|
|
|
|||
|
|
@ -189,7 +189,7 @@ $num_rows = mysqli_fetch_row(mysqli_query($mysqli, "SELECT FOUND_ROWS()"));
|
|||
|
||||
<tr>
|
||||
<td class="text-bold">
|
||||
<a href="recurring_invoice.php?<?php echo $client_url; ?>recurring_invoice_id=<?php echo $recurring_invoice_id; ?>">
|
||||
<a href="recurring_invoice.php?client_id=<?= $client_id ?>&recurring_invoice_id=<?= $recurring_invoice_id ?>">
|
||||
<?php echo "$recurring_invoice_prefix$recurring_invoice_number"; ?>
|
||||
</a>
|
||||
</td>
|
||||
|
|
|
|||
Loading…
Reference in New Issue