Newer
Older
ubFramework / Portal / docroot / templates / user / billing / invoice.html
@Christopher W. Olsen Christopher W. Olsen on 10 Dec 2017 1 KB Cleaning Up Making It A Sub Module
<h1>View Invoice</h1>
<hr />
<br />

<!-- Start Header -->
<div style="float:left;margin-bottom:25px;">
<img src="/images/ubix_logo.jpg"><br /><br />
10 Harbor Park Drive<br />
Port Washington, NY 11050<br />
</div>
<div style="float:right;" align="right">
<font style="font-size:24px;font-weight:bold;">Invoice</font><br /><br />
<div class="iTable">
  <div class="iRow">
    <div class="iCell_Center">Date</div>
    <div class="iCell_Center">Invoice #</div>
  </div>
  <div class="iRow">
    <div class="iCell_Center">{INV_DATE}</div>
    <div class="iCell_Center">{INV_NUMBER}</div>
  </div>
</div>
</div>
<!-- End Header -->

<!-- Bill To Box -->
<div style="clear: both;margin-left:25px;margin-bottom:10px;">
  <div class="iTable" style="width:350px;">
    <div class="iRow">
      <div class="iCell">Bill To</div>
    </div>
    <div class="iRow">
      <div class="iCell" style="height:75px;">{BILL_TO}</div>
    </div>
  </div>
</div>
<!-- End Bill To Box -->

<!-- Start Line Items Box -->
  <div class="iTable" style="width:100%;">
    <div class="iRow">
      <div class="iCell_Center" style="width:100px;">Quantity</div>
      <div class="iCell_Center">Description</div>
      <div class="iCell_Center" style="width:100px;">Rate</div>
      <div class="iCell_Center" style="width:100px;">Amount</div>
    </div>
{ROWS}
  </div>
<!-- End Line Items Box -->


<!-- Start Total Box -->
  <div class="iTable" style="width:100%;">
    <div class="iRow" style="height:50px;">
      <div class="iCell" style="border-top: 0px;vertical-align:top;">{NOTES}</div>
      <div class="iCell" style="width:101px;border-top: 0px;border-right: 0px;vertical-align:middle;"><font style="weight:bold;font-size:20px;">Total:</font></div>
      <div class="iCell_Right" style="width:100px;border-top: 0px;border-left: 0px;vertical-align:middle;">${INV_TOTAL}</div>
    </div>
  </div>
<!-- End Total Box -->