mirror of
https://github.com/itflow-org/itflow
synced 2026-03-06 22:04:51 +00:00
Fixed total tax not displaying for quote
This commit is contained in:
@@ -71,7 +71,7 @@ $total_pages = ceil($total_found_rows / 10);
|
|||||||
<tr>
|
<tr>
|
||||||
<th class="text-center"><a class="text-secondary" href="?<?php echo $url_query_strings_sb; ?>&sb=contact_name&o=<?php echo $disp; ?>">Name</a></th>
|
<th class="text-center"><a class="text-secondary" href="?<?php echo $url_query_strings_sb; ?>&sb=contact_name&o=<?php echo $disp; ?>">Name</a></th>
|
||||||
<th><a class="text-secondary" href="?<?php echo $url_query_strings_sb; ?>&sb=contact_title&o=<?php echo $disp; ?>">Title</a></th>
|
<th><a class="text-secondary" href="?<?php echo $url_query_strings_sb; ?>&sb=contact_title&o=<?php echo $disp; ?>">Title</a></th>
|
||||||
<th>Email</th>
|
<th><a class="text-secondary" href="?<?php echo $url_query_strings_sb; ?>&sb=contact_email&o=<?php echo $disp; ?>">Email</a></th>
|
||||||
<th>Phone</th>
|
<th>Phone</th>
|
||||||
<th class="text-center">Action</th>
|
<th class="text-center">Action</th>
|
||||||
</tr>
|
</tr>
|
||||||
@@ -118,7 +118,25 @@ $total_pages = ceil($total_found_rows / 10);
|
|||||||
|
|
||||||
<td><?php echo $contact_title; ?></td>
|
<td><?php echo $contact_title; ?></td>
|
||||||
<td><a href="mailto:<?php echo $contact_email; ?>"><?php echo $contact_email; ?></a></td>
|
<td><a href="mailto:<?php echo $contact_email; ?>"><?php echo $contact_email; ?></a></td>
|
||||||
<td><?php echo $contact_phone; ?><br><?php echo $contact_mobile; ?><br></td>
|
<td>
|
||||||
|
<?php
|
||||||
|
if(!empty($contact_phone)){
|
||||||
|
?>
|
||||||
|
<i class="fa fa-fw fa-phone text-secondary mr-2 mb-2"></i><?php echo $contact_phone; ?>
|
||||||
|
<br>
|
||||||
|
<?php
|
||||||
|
}
|
||||||
|
?>
|
||||||
|
<?php
|
||||||
|
if(!empty($contact_mobile)){
|
||||||
|
?>
|
||||||
|
<i class="fa fa-fw fa-mobile-alt text-secondary mr-2 mb-2"></i><?php echo $contact_mobile; ?>
|
||||||
|
<br>
|
||||||
|
<?php
|
||||||
|
}
|
||||||
|
?>
|
||||||
|
</td>
|
||||||
|
|
||||||
|
|
||||||
<td>
|
<td>
|
||||||
<div class="dropdown dropleft text-center">
|
<div class="dropdown dropleft text-center">
|
||||||
|
|||||||
@@ -169,7 +169,7 @@ if(isset($_GET['quote_id'])){
|
|||||||
$item_subtotal = $row['item_price'];
|
$item_subtotal = $row['item_price'];
|
||||||
$item_tax = $row['item_tax'];
|
$item_tax = $row['item_tax'];
|
||||||
$item_total = $row['item_total'];
|
$item_total = $row['item_total'];
|
||||||
$total_tax = $item_tax + $invoice_tax;
|
$total_tax = $item_tax + $total_tax;
|
||||||
$sub_total = $item_price * $item_quantity + $sub_total;
|
$sub_total = $item_price * $item_quantity + $sub_total;
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
|||||||
Reference in New Issue
Block a user