BambooInvoice Forums

Adjusting totals at bottom

 
Total Posts: 3

LOVE THIS PROGRAM!!!
Is there a way of getting the invoice total to show up at the right side under the item totals?
Currently the total is showing at the left side of the form not at the right side.

Thanks.

Total Posts: 3

I figured out how to adjust totals to right side under the item totals.
you need to adjust the file found here:/bamboo_system_files/application/views/invoices
Look for the following code
  (p)- I had to use paragraph since proper < > will not show.
     
      <?php echo $total_no_tax;?>
      <?php echo $tax_info;?>
      <?php echo $total_with_tax;?>
      <?php echo $total_paid;?>
      <?php echo $total_outstanding;?>
  </p>
add align=“right” inside (p)

So, the finished result will look like the code below.
  (p align=“right”)
     
      <?php echo $total_no_tax;?>
      <?php echo $tax_info;?>
      <?php echo $total_with_tax;?>
      <?php echo $total_paid;?>
      <?php echo $total_outstanding;?>
  </p>
Now I just want to adjust it so the numbers line up. Anyone know how I can achieve this?

Total Posts: 3

I also found how to adjust the PDF to reflect the online result for the invoice.
Need to adjust bamboo_system_files/application/views/invoices

Look for:
      <?php echo $total_no_tax;?>
      <?php echo $tax_info;?>
      <?php echo $total_with_tax;?>
      <?php echo $total_paid;?>
      <?php echo $total_outstanding;?>

do similar adjustment as required for the previous file from earlier reply post.