Print Purhase Order PDF

Jira Code: HAR-3 PO PDF

An advance pdf for a purchase order. The following fields are shown in the print: Order To, order number, revision number, raised by,email, Phone, Fax, Attn, Order Date, Delivery date, Payment terms, Contact, Comments, Item table (name, description, job, cost, quantity, unit, unit price,total). Also, terms and conditions are given as static data which is added as a separate pdf in the same code, using pdf set.

<?xml version="1.0"?><!DOCTYPE pdf PUBLIC "-//big.faceless.org//report" "report-1.1.dtd">
<pdfset>
<pdf>
<head>
	<link name="NotoSans" type="font" subtype="truetype" src="${nsfont.NotoSans_Regular}" src-bold="${nsfont.NotoSans_Bold}" src-italic="${nsfont.NotoSans_Italic}" src-bolditalic="${nsfont.NotoSans_BoldItalic}" bytes="2" />
	<#if .locale == "zh_CN">
		<link name="NotoSansCJKsc" type="font" subtype="opentype" src="${nsfont.NotoSansCJKsc_Regular}" src-bold="${nsfont.NotoSansCJKsc_Bold}" bytes="2" />
	<#elseif .locale == "zh_TW">
		<link name="NotoSansCJKtc" type="font" subtype="opentype" src="${nsfont.NotoSansCJKtc_Regular}" src-bold="${nsfont.NotoSansCJKtc_Bold}" bytes="2" />
	<#elseif .locale == "ja_JP">
		<link name="NotoSansCJKjp" type="font" subtype="opentype" src="${nsfont.NotoSansCJKjp_Regular}" src-bold="${nsfont.NotoSansCJKjp_Bold}" bytes="2" />
	<#elseif .locale == "ko_KR">
		<link name="NotoSansCJKkr" type="font" subtype="opentype" src="${nsfont.NotoSansCJKkr_Regular}" src-bold="${nsfont.NotoSansCJKkr_Bold}" bytes="2" />
	<#elseif .locale == "th_TH">
		<link name="NotoSansThai" type="font" subtype="opentype" src="${nsfont.NotoSansThai_Regular}" src-bold="${nsfont.NotoSansThai_Bold}" bytes="2" />
	</#if>
    <macrolist>
        <macro id="nlheader">
           <table class="header" width="100%">
             <tr>
               <td width="50%"><img src="${companyInformation.logoUrl}" style="float: left; margin: 7px;width:197px;height:85px" /></td>
               <td align="right" width="50%"><strong>${companyInformation.companyName}</strong><br/>ABN: ${companyInformation.employerid}<br/>${companyInformation.shippingaddress_text}<br/>Phone: 1300 220 195</td>
             </tr>
           
          </table>
         <p align="center" style="font-size:18pt"><strong>PURCHASE ORDER</strong></p>
          <hr width="100%" style="border-top: 1px solid black;"></hr>
        </macro>
        <macro id="nlfooter">
            <table class="footer" style="width: 100%;"><tr>
	
	<td align="right"><pagenumber/> of <totalpages/></td>
	</tr></table>
        </macro>
    </macrolist>
    <style type="text/css">* {
		<#if .locale == "zh_CN">
			font-family: NotoSans, NotoSansCJKsc, sans-serif;
		<#elseif .locale == "zh_TW">
			font-family: NotoSans, NotoSansCJKtc, sans-serif;
		<#elseif .locale == "ja_JP">
			font-family: NotoSans, NotoSansCJKjp, sans-serif;
		<#elseif .locale == "ko_KR">
			font-family: NotoSans, NotoSansCJKkr, sans-serif;
		<#elseif .locale == "th_TH">
			font-family: NotoSans, NotoSansThai, sans-serif;
		<#else>
			font-family: NotoSans, sans-serif;
		</#if>
		}
		table {
			font-size: 9pt;
			table-layout: fixed;
		}
        th {
            font-weight: bold;
            font-size: 10pt;
            vertical-align: middle;
            padding: 5px 0px 3px;
            background-color: #ffffff;
            color: black;
        }
        td {
            padding: 4px 6px;
        }
		td p { align:left }
        b {
            font-weight: bold;
            color: #333333;
        }
        table.header td {
            padding: 0px;
            font-size: 10pt;
        }
        table.footer td {
            padding: 0px;
            font-size: 8pt;
        }
        table.itemtable th {
            padding-bottom: 10px;
            padding-top: 10px;
        }
        table.body td {
            padding-top: 2px;
        }
        table.total {
            page-break-inside: avoid;
        }
        tr.totalrow {
            background-color: #e3e3e3;
            line-height: 200%;
        }
        td.totalboxtop {
            font-size: 12pt;
            background-color: #e3e3e3;
        }
        td.addressheader {
            font-size: 8pt;
            padding-top: 6px;
            padding-bottom: 2px;
        }
        td.address {
            padding-top: 0px;
        }
        td.totalboxmid {
            font-size: 28pt;
            padding-top: 20px;
            background-color: #e3e3e3;
        }
        td.totalboxbot {
            background-color: #e3e3e3;
            font-weight: bold;
        }
        span.title {
            font-size: 28pt;
        }
        span.number {
            font-size: 16pt;
        }
        span.itemname {
            font-weight: bold;
            line-height: 150%;
        }
        hr {
            width: 100%;
            color: black;
            background-color: black;
            height: 1px;
        }
</style>
</head>
<body header="nlheader" header-height="19%" footer="nlfooter" footer-height="20pt" padding="0.5in 0.5in 0.5in 0.5in" size="Letter">
   <table width="100%" style="margin-left:10px;">
     <tr>
       <td><table>
         <tr><td><strong>Order To:</strong>${record.shipaddress.addresse}</td></tr>
         <tr><td>${record.shipaddress}</td></tr>
         </table></td>
       <td><table>
         <tr><td><strong>Order No</strong></td><td>:</td><td>${record.tranid}</td></tr>
         <tr><td>Revision No</td><td>:</td><td>${record.custbody_jj_revision_number}</td></tr>
          <tr><td>Raised By</td><td>:</td><td>${record.employee}</td></tr>
         </table></td>
     </tr>
     <tr><td> </td></tr>
     <tr><td>
       <table>
         <tr><td>Phone</td><td>:</td><td>${record.entity.phone}</td></tr>
         <tr><td>Fax</td><td>:</td><td>${record.entity.fax}</td></tr>
         <tr><td>Attn</td><td>:</td><td>${record.custbody_jj_attention}</td></tr>
         <tr><td>Email</td><td>:</td><td>${record.entity.email}</td></tr>
       </table>
       </td></tr>
  </table>
 <hr width="100%" style="border-top: 1px solid black;"></hr>
  <table  width="100%" style="margin-left:10px;">
    <tr><td><table>
      <tr><td><strong>Order Date</strong></td><td>:</td><td>${record.trandate}</td></tr>
      </table></td>
      <td><table>
      <tr><td><strong>Delivery date</strong></td><td>:</td><td>${record.custbody_jj_delivery_date}</td></tr>
      </table></td>
      <td><table>
      <tr><td><strong>Payment terms</strong></td><td>:</td><td>${record.entity.terms}</td></tr>
      </table></td>
    </tr>
    <tr><td><table>
      <tr><td><strong>Contact      </strong></td><td>:</td><td>${record.custbody_jj_contact}</td></tr>
      </table></td>
      <td> </td>
      <td> </td>
    </tr>
    <tr><td><table>
      <tr><td><strong>Comments</strong></td><td>:</td><td>${record.memo}</td></tr>
      </table></td>
      <td> </td>
      <td> </td>
    </tr>
      </table>
  <hr width="100%" style="border-top: 1px solid black;"></hr>  
     

<#if record.item?has_content>
<#assign n=1/>
<table  style="width: 100%; "><!-- start items --><#list record.item as item><#if item_index==0>
<thead>
	<tr style="border-bottom:1px solid black">
     <th colspan="2">ITEM</th>
	<th align="center" colspan="10">${item.description@label}</th>
	<th align="center" colspan="4">JOB</th>
     <th align="center" colspan="4">COST <br/>CENTER</th>
       <th align="center" colspan="4">QTY</th>
	<th align="center" colspan="4">UNIT</th>
      <th align="center" colspan="4">UNIT PRICE</th>
       <th align="center" colspan="4">ITEM <br/> TOTAL</th>
	</tr>
</thead>
</#if><tr>
	
	<td colspan="2"><p>${n}</p>
      <#assign n=n+1/></td>
  <td align="center" colspan="10" line-height="150%">${item.description}</td>
  <td align="center" colspan="4">${item.custcol_jj_project}</td>
  <td align="center" colspan="4">${item.projecttask}</td>
  <td align="center" colspan="4">${item.quantity}</td>
  <td align="center" colspan="4">${item.units}</td>
  <td align="center" colspan="4">${item.rate}</td>
	<td align="center" colspan="4">${item.amount}</td>
	</tr>
	</#list><!-- end items --></table>

<hr width="100%" style="border-top: 1px solid black;"></hr></#if>
<table class="total" style="width: 100%;"><tr>
	<td colspan="4"> </td>
	<td align="right" colspan="2"><b>Total (Excl. GST)</b></td>
    <td align="right"> </td>
	<td align="right"><strong>${record.subtotal}</strong></td>
	</tr>
	<tr>
	<td colspan="4"> </td>
	<td align="right" colspan="2"><b>GST</b></td>
     <td align="right"></td>
	<td align="right">${record.taxtotal}</td>
	</tr>
	<tr >
	<td background-color="#ffffff" colspan="4"> </td>
	<td align="right" colspan="2"><b>TOTAL</b></td>
     <td align="right"></td>
	<td align="right"><strong>${record.total}</strong></td>
	</tr>
 
      </table>
  <span style="font-size:9pt">Company Purchase Order standard terms and conditions.</span> 
  
  
</body>
</pdf>
  <pdf>
    <head>
	<link name="NotoSans" type="font" subtype="truetype" src="${nsfont.NotoSans_Regular}" src-bold="${nsfont.NotoSans_Bold}" src-italic="${nsfont.NotoSans_Italic}" src-bolditalic="${nsfont.NotoSans_BoldItalic}" bytes="2" />
	<#if .locale == "zh_CN">
		<link name="NotoSansCJKsc" type="font" subtype="opentype" src="${nsfont.NotoSansCJKsc_Regular}" src-bold="${nsfont.NotoSansCJKsc_Bold}" bytes="2" />
	<#elseif .locale == "zh_TW">
		<link name="NotoSansCJKtc" type="font" subtype="opentype" src="${nsfont.NotoSansCJKtc_Regular}" src-bold="${nsfont.NotoSansCJKtc_Bold}" bytes="2" />
	<#elseif .locale == "ja_JP">
		<link name="NotoSansCJKjp" type="font" subtype="opentype" src="${nsfont.NotoSansCJKjp_Regular}" src-bold="${nsfont.NotoSansCJKjp_Bold}" bytes="2" />
	<#elseif .locale == "ko_KR">
		<link name="NotoSansCJKkr" type="font" subtype="opentype" src="${nsfont.NotoSansCJKkr_Regular}" src-bold="${nsfont.NotoSansCJKkr_Bold}" bytes="2" />
	<#elseif .locale == "th_TH">
		<link name="NotoSansThai" type="font" subtype="opentype" src="${nsfont.NotoSansThai_Regular}" src-bold="${nsfont.NotoSansThai_Bold}" bytes="2" />
	</#if>
    <macrolist>
        <macro id="nlheader">
          <table class="header" width="100%" align="right">
             <tr>
               <td align="right"><img src="${companyInformation.logoUrl}" style="width:197px;height:85px" /></td>
            </tr>
         </table>
        </macro>
        <macro id="nlfooter">
            <table class="footer" style="width: 100%;"><tr>
	
	<td align="right"><pagenumber/> of <totalpages/></td>
	</tr></table>
        </macro>
    </macrolist>
    <style type="text/css">* {
		<#if .locale == "zh_CN">
			font-family: NotoSans, NotoSansCJKsc, sans-serif;
		<#elseif .locale == "zh_TW">
			font-family: NotoSans, NotoSansCJKtc, sans-serif;
		<#elseif .locale == "ja_JP">
			font-family: NotoSans, NotoSansCJKjp, sans-serif;
		<#elseif .locale == "ko_KR">
			font-family: NotoSans, NotoSansCJKkr, sans-serif;
		<#elseif .locale == "th_TH">
			font-family: NotoSans, NotoSansThai, sans-serif;
		<#else>
			font-family: NotoSans, sans-serif;
		</#if>
		}
		table {
			font-size: 9pt;
			table-layout: fixed;
		}
        th {
            font-weight: bold;
            font-size: 10pt;
            vertical-align: middle;
            padding: 5px 0px 3px;
            background-color: #ffffff;
            color: black;
        }
        td {
            padding: 4px 6px;
        }
		td p { align:left }
        b {
            font-weight: bold;
            color: #333333;
        }
        table.header td {
            padding: 0px;
            font-size: 10pt;
        }
        table.footer td {
            padding: 0px;
            font-size: 8pt;
        }
        table.itemtable th {
            padding-bottom: 10px;
            padding-top: 10px;
        }
        table.body td {
            padding-top: 2px;
        }
        table.total {
            page-break-inside: avoid;
        }
        tr.totalrow {
            background-color: #e3e3e3;
            line-height: 200%;
        }
        td.totalboxtop {
            font-size: 12pt;
            background-color: #e3e3e3;
        }
        td.addressheader {
            font-size: 8pt;
            padding-top: 6px;
            padding-bottom: 2px;
        }
        td.address {
            padding-top: 0px;
        }
        td.totalboxmid {
            font-size: 28pt;
            padding-top: 20px;
            background-color: #e3e3e3;
        }
        td.totalboxbot {
            background-color: #e3e3e3;
            font-weight: bold;
        }
        span.title {
            font-size: 28pt;
        }
        span.number {
            font-size: 16pt;
        }
        span.itemname {
            font-weight: bold;
            line-height: 150%;
        }
        hr {
            width: 100%;
            color: black;
            background-color: black;
            height: 1px;
        }
</style>
</head>
      <body header="nlheader" header-height="10%" footer="nlfooter" footer-height="20pt" padding="0.5in 0.5in 0.5in 0.5in" size="Letter">
         <span align="center" style="font-size:18pt"><strong><u>Purchase Order Terms and Conditions</u></strong></span>
        <table>
<tr><td><strong>1   DEFINITIIONS</strong></td></tr>
<tr><td style="padding-left:20px">
The following words shall, where the context permits, have the following meanings:<br/><br/>
“Business Day” means any day other than a Saturday, Sunday or public holiday in the state to which this Purchase Order
applies.<br/><br/>
“Change Order” means a written amendment by Purchaser to this Purchase Order upon terms mutually agreed by the
Parties.<br/><br/>
“Confidential Information” means anything which is not in the public domain and is information disclosed by a party to the
other party concerning its business and or its potential business, its intellectual property, its clients or potential clients, the
contents of this Purchase Order and anything deemed to be applicable.<br/><br/>
“Delivery” or “Delivered” means the delivery of Goods by Seller to the nominated Delivery Point specified in the Purchase
Order and the acceptance of Goods by Purchaser.<br/><br/>
“Delivery Date” means the first date (or dates) specified in the Purchase Order when Seller must deliver goods to
Purchaser.<br/><br/>
“Delivery Point” means the delivery point (or points) specified in the Purchase Order for Goods.<br/><br/>
“Delivery Terms” means the delivery terms specified in the Purchase Order including without limitation carriage, insurance,
loading and off loading requirements for Goods together with any Special Conditions appended to these Terms and
Conditions.<br/><br/>
“Day” means calendar day.<br/><br/>
“Final Delivery” means the last date specified in the Purchase Order for Delivery of Goods, or where there are multiple
delivery dates the date specified for the Delivery of the last lot of Goods.<br/><br/>
“Goods” means all materials, merchandise, equipment, machinery, plant, stores, spares, items, services, work and the
like required to be supplied or performed by Seller under this Purchase Order.<br/><br/>
“GST” has the meaning it bears in the A New Tax System (Goods and Services Tax) Act 1999 and terms which are defined
in the A New Tax System (Goods and Services Tax) Act 1999 have the same meaning as those terms have in that Act.<br/><br/>
“Month” means calendar month.<br/><br/>
“Party,” “Party’s” or “Parties” means a reference to Purchaser and Seller.<br/><br/>
“Purchase Order” means the document clearly stated as the Purchase Order together with all attachments, documents,
terms and conditions and data either attached to, or referenced within the Purchase Oder.<br/><br/>
“Purchaser” means the Company as indicated on the Purchase Order.<br/><br/>
“Seller” or “Supplier” means the person, company, or corporation referred to in this Purchase Order and to whom this
Purchase Order is issued, where two or more persons are named as Seller then the obligations on their part shall bind
and be observed and performed by them jointly and each of them severally.<br/><br/>
“Site” means Purchaser’s or another parties premises, buildings, plant, mine site, land, or other place as may be specified
in this Purchase Order where Goods are to be installed, erected, or commissioned with the assistance of Seller.<br/><br/>
  </td> </tr><tr><td>

In this Purchase Order and these Purchase Order Terms and Conditions, unless the context otherwise requires:<br/><br/>
a) the clause headings are for convenient reference only and have no effect in limiting or extending the language of the provisions to which they refer;
<ul>
<li> a cross reference to a clause number is a reference to that clause or sub-clause; </li>
<li> words in the singular include the plural and vice versa; </li>
<li> words importing a gender include any other gender; </li>
<li> a reference to a Party includes that Party’s successors, assigns and representatives;</li>
<li> a reference to a person includes a partnership and a body, whether corporate or otherwise; and </li>
<li> unless expressly specified to the contrary all monetary references are references to Australian currency</li>
</ul>
</td></tr>
</table>
        <table>
<tr>
<td><strong>2   CONTRACT</strong></td></tr>
<tr><td><table><tr><td style="padding-left:20px">2.1</td><td> </td>
<td>The Purchase Order when duly signed by Purchaser and bearing an order number is the only form which shall be
recognised by Purchaser as authority for charging Goods to its account and supersedes all previous
communications and negotiations</td>
</tr></table></td>
</tr>
    
    <tr><td><table><tr><td style="padding-left:20px">2.2</td><td> </td>
<td>The Purchase Order including all documents attached thereto or incorporated by reference constitutes the entire
agreement between Purchaser and Seller for the supply of Goods and shall not be modified except by written
Change Order. No terms stated by Seller in accepting or acknowledging, this Purchase Order shall be binding
unless Purchaser’s prior written consent has been given. The Purchase Order constitutes an offer to purchase and
not an acceptance of any offer to sell Goods. In the absence of any written acceptance or acknowledgment of this
Purchase Order by Seller, the commencement of any work by Seller in connection with this Purchase Order or the
making of any deliveries shall be deemed an acceptance of this Purchase Order and all terms and conditions
therein.</td>
</tr></table></td>
</tr>
    
    <tr><td><table><tr><td style="padding-left:20px">2.3</td><td> </td>
<td>If Seller discovers any inconsistency between documents comprising the Purchase Order, Seller must immediately
notify Purchaser in writing. In the event of any such inconsistency the agreed order of precedence of documents
shall be: the Purchase Order, these Purchase Order Terms and Conditions, then any attached or referenced Special
Conditions, bills of materials (or such similar document as would constitute a bill of materials) specifications,
drawings or other documents.</td>
</tr></table></td>
</tr>
    
    <tr><td><table><tr><td style="padding-left:20px">2.4</td><td> </td>
<td>Seller is an independent contractor and shall not act as, or be regarded as, an agent or employee of Purchaser.</td>
</tr></table></td>
</tr>
    
    <tr><td><table><tr><td style="padding-left:20px">2.5</td><td> </td>
<td>Seller must not assign or subcontract this Purchase Order or any part thereof without the prior written consent of
Purchaser. Any such permission granted shall not relieve Seller from any of its obligations under this Purchase
Order. Purchaser shall have the right to assign all or any part of this Purchase Order to its successors or other
company upon written notification to Seller. In the event of such assignment there shall be no other alteration to
Purchase Order terms and conditions unless otherwise mutually agreed to by the Parties.</td>
</tr></table></td>
</tr>
    
     <tr><td><table><tr><td style="padding-left:20px">2.5</td><td> </td>
<td>No waiver or breach of any provision of this Purchase Order shall constitute a waiver of any other breach or of any
other provision.</td>
</tr></table></td>
</tr>
</table>
        <table>
<tr>
<td><strong>3   AMENDMENTS TO PURCHASE ORDER</strong></td></tr>
<tr><td><table><tr><td style="padding-left:20px">3.1</td><td> </td>
<td>Subject to the provisions of this Purchase Order and these Purchase Order Terms and Conditions Purchaser shall
have the right to increase or decrease the quantity of Goods ordered up to the date of Final Delivery. Purchaser also
reserves the right to correct any errors or omissions in the Purchase Order including any changes to specifications,
drawings, or documents forming a part of the Purchase Order.
</td>
</tr></table></td>
</tr>
    
    <tr><td><table><tr><td style="padding-left:20px">3.2</td><td> </td>
<td>Seller must not depart from the requirements of this Purchase Order unless otherwise directed in writing by
Purchaser and Seller agrees to immediately comply with any such directions if given by Purchaser.
</td>
</tr></table></td>
</tr>
    
    <tr><td><table><tr><td style="padding-left:20px">3.3</td><td> </td>
<td>If any amendment made by Purchaser causes a change in cost or time required for Seller to perform its obligations
under this Purchase Order an equitable adjustment shall be made in accordance with the terms of this Purchase
Order. Seller agrees to immediately provide Purchaser with such substantiation as Purchaser may be reasonably
require in respect of any alleged claim for a change in cost or time in the performance of Purchase Order
obligations.</td>
</tr></table></td>
</tr>
</table>
      <p style="page-break-after: always;"> </p>  
         <table>
<tr>
<td><strong>4   PRICING</strong></td></tr>
<tr><td><table><tr><td style="padding-left:20px">4.1</td><td> </td>
<td>All prices, costs and charges specified in this Purchase Order shall be fixed and firm and not subject to variation
unless otherwise expressly stated in this Purchase Order
</td>
</tr></table></td>
</tr>
    
    <tr><td><table><tr><td style="padding-left:20px">4.2</td><td> </td>
<td>Seller is responsible for the payment of any tax, impost, or duty levied, charged, assessed or imposed in relation to
the Goods supplied under this Purchase Order. All custom duties and other like charges must be stated separately
in Seller’s pricing and any reduction in such charges shall be to the benefit of Purchaser.
</td>
</tr></table></td>
</tr>
</table>
    
     <table>
<tr>
<td><strong>5   DELIVERY AND TITLE</strong></td></tr>
<tr><td><table><tr><td style="padding-left:20px">5.1</td><td> </td>
<td>Seller must deliver Goods in accordance with the Delivery Terms and to the nominated Delivery Point specified in
this Purchase Order. Unless otherwise expressly stated in this Purchase Order Seller shall be responsible for the
cost of all packing, transport, freight, loading and unloading and insurances of Goods until the Delivery of Goods.

</td>
</tr></table></td>
</tr>
    
    <tr><td><table><tr><td style="padding-left:20px">5.2</td><td> </td>
<td>The quantity of Goods delivered must not be greater than the amount stated in this Purchase Order, unless quantity
amendments have been made to this Purchase Order by the issue of a Change Order. Purchaser shall have the
right to return any excess quantities of Goods to Seller at Seller’s risk and expense.
</td>
</tr></table></td>
</tr>
          <tr><td><table><tr><td style="padding-left:20px">5.3</td><td> </td>
<td>Title to property in Goods and risk in Goods shall pass from Seller to Purchaser upon receipt and the acceptance of
Goods by Purchaser at the nominated Delivery Point (Delivery). However, where Purchaser has made payment or
part payment to Seller for any Goods, whether Delivered or not, then title to and property in such Goods, or partly
completed Goods (including any materials to be used in its manufacture), shall pass to Purchaser. Where such
Goods are not yet Delivered Seller must appropriately mark items, materials and Goods as the property of
Purchaser and Seller must continue to bear the risk of loss or damage for these Goods until such time as the
Goods are Delivered.
</td>
</tr></table></td>
</tr>
         <tr><td><table><tr><td style="padding-left:20px">5.4</td><td> </td>
<td>Seller warrants that the Goods are, and at the time the property shall pass to Purchaser shall be, free and clear of
all liens and encumbrances and shall have a good marketable title.

</td>
</tr></table></td>
</tr>
</table>
        <table>
<tr>
<td><strong>6   SHIPMENT OF GOODSSHIPMENT OF GOODS</strong></td></tr>
<tr><td><table><tr><td style="padding-left:20px">6.1</td><td> </td>
<td>Seller must give Purchaser not less than three (3) days’ notice of the time when Goods shall be ready for dispatch
from Seller’s works.
</td>
</tr></table></td>
</tr>
    
    <tr><td><table><tr><td style="padding-left:20px">6.2</td><td> </td>
<td>A notice of shipment must be sent to Purchaser at the time of shipment of Goods which must as a minimum state
the purchase order number, type and quantity of Goods, method of transportation, route to be taken to Delivery Point
and estimated time of arrival of Goods. All Goods must be suitably packed, marked and shipped in accordance with
this Purchase Order and the proper requirements of the relevant carriers. Spare parts must be packed separately
from parent equipment and clearly labelled “Spare Parts”. Seller shall be liable for any additional costs as a result of
either failing to follow Purchaser’s shipping instructions specified in this Purchase Order, improperly describing the
Goods, or failing to properly pack and protect Goods.
</td>
</tr></table></td>
</tr>
</table>
    
<table>
<tr>
<td><strong>7   WARRANTY</strong></td></tr>
<tr><td><table><tr><td style="padding-left:20px">7.1</td><td> </td>
<td>Unless otherwise specified in this Purchase Order Seller warrants: a) that the Goods supplied under this Purchase
Order are new, of merchantable quality, fit for the purpose intended and free of defects in materials, workmanship
and design; b) that Delivered Goods shall remain free of any defects for a period of 12 months from commissioning,
or alternatively a period of 18 months from the date of Delivery of Goods, or 18 months from the date of notification
by Seller that the Goods are ready for dispatch from Seller’s works, whichever period is the lesser; and c) that where
Seller has manufactured any Goods as required by this Purchase Order to drawings or specifications supplied by
Purchaser that the Goods have been manufactured and supplied strictly in accordance with such drawings or
specifications.

</td>
</tr></table></td>
</tr>
    
    <tr><td><table><tr><td style="padding-left:20px">7.2</td><td> </td>
<td>At the option of Purchaser, Seller must promptly replace, repair, or make good any Goods or parts of Goods
supplied under this Purchase Order found to be defective, or in any way unsuitable for the purpose intended, or
otherwise not in compliance with the requirements of this Purchase Order (reasonable wear and tear excepted).
</td>
</tr></table></td>
</tr>
</table>
    <p style="page-break-after: always;"> </p>
    <table>
<tr>
<td><strong>8   INSPECTION AND EXPEDITING</strong></td></tr>
<tr><td><table><tr><td style="padding-left:20px">8.1</td><td> </td>
<td>Purchaser or its designated agents shall have the right to inspect and expedite all work under this Purchase Order
at any stage of design, engineering, manufacture or installation and Seller must make this a condition of any
subcontracted work. In addition to any other inspections made all Goods shall be subject to Purchaser’s inspection
within a reasonable time of arrival at the Delivery Point. Payment for any Goods prior to this inspection shall not be
construed as acceptance of Goods. Any inspections carried out by Purchaser or its designated agents shall not
relieve Seller from its obligations under this Purchase Order.

</td>
</tr></table></td>
</tr>
    
    <tr><td><table><tr><td style="padding-left:20px">8.2</td><td> </td>
<td>Purchaser or its designated agents shall have the power at any time to reject Goods which are found to be
unsatisfactory, defective, of inferior quality or workmanship, or otherwise failing to meet the requirements of this
Purchase Order. Rejected Goods must be replaced or made good to Purchaser’s satisfaction at no additional cost
to Purchaser. Purchaser may direct Seller, at Seller’s expense, to remove any Delivered Goods which have been
rejected and if after a reasonable period of time Seller fails to do so Purchaser may return such Goods to Seller.
Seller must reimburse Purchaser for any costs associated in returning rejected Goods to Seller, or for any
additional costs associated with purchasing substitute Goods, or for any prior payments made by Purchaser to
Seller for rejected Goods until made good and Delivered. Purchaser may deduct such costs from any payments to
be made to Seller.

</td>
</tr></table></td>
</tr>
</table>
         <table>
<tr>
<td><strong>9   PAYMENT AND INVOICING</strong></td></tr>
<tr><td><table><tr><td style="padding-left:20px">9.1</td><td> </td>
<td>Unless otherwise specified in this Purchase Order payment terms shall be one hundred percent (100%) of the
Purchase Order value payable in accordance with clause 9.4 following receipt by the Purchaser of an invoice
properly issued pursuant to clauses 9.2 and 9.3. However in addition to Purchaser’s rights under sub-clause 9.6,
Purchaser shall have the right, at its sole discretion, to withhold payment of up to five percent (5%) of the Purchase
Order value until the receipt and acceptance of all drawings, manuals and data (including electronic formats)
required by this Purchase Order.
</td>
</tr></table></td>
</tr>
    
    <tr><td><table><tr><td style="padding-left:20px">9.2</td><td> </td>
<td>Seller is entitled to and shall submit a Tax Invoice after the Delivery of the Goods to the Delivery Point and
Acceptance of the Goods by the Purchaser. Each invoice as a minimum must specify Seller’s Australian Business
Number, the correct purchase order number, the quantity, description, unit price and total value of Goods together
with any other verification required by this Purchase Order or reasonably requested by Purchaser. Seller must
provide Purchaser with all reasonable records and access to allow Purchaser to verify any cost, price and volume
records relating to Goods supplied under this Purchase Order. Purchaser shall not be responsible for delays in
receipt of Seller’s invoices and required supporting documents. Should delay occur, the time allowed for payment of
invoices shall commence on the date of receipt by Purchaser of all necessary invoice and supporting
documentation.
</td>
</tr></table></td>
</tr>
         <tr><td><table><tr><td style="padding-left:20px">9.3</td><td> </td>
<td>All Invoices shall be sent to: The “Company” as per the Purchase Order issued The “Company” ABN as per the
Purchase Order issued Att: Accounts Payable P.O. Box 3666 Red Hill, North Rockhampton, QLD, 4701 E-mail
Invoices: accounts@hartecs.com.au
</td>
</tr></table></td>
</tr>
         <tr><td><table><tr><td style="padding-left:20px">9.4</td><td> </td>
<td>Payment of approved invoices by Purchaser shall be made within forty five (45) business days of the end of the
month of receipt by the Company. Unless otherwise mutually agreed between the Parties, all payments shall be
made to Seller in Australian currency by electronic transfer into the bank account nominated by Seller.

</td>
</tr></table></td>
</tr>
         
         <tr><td><table><tr><td style="padding-left:20px">9.5</td><td> </td>
<td>In the event of a dispute as to the amount or the content of any invoice Purchaser shall notify Seller of such dispute
and the undisputed portion of the invoice shall be paid following clarification with Seller and issue of an appropriate
credit note from the Seller to the Purchase in relation to the disputed amount.
</td>
</tr></table></td>
</tr>
         <tr><td><table><tr><td style="padding-left:20px">9.6</td><td> </td>
<td>Purchaser shall have the right to deduct any monies owing to Purchaser, or to set off costs incurred by Purchaser as
a result of Seller failing to conform to Seller’s obligations in this Purchase Order. Payment of Seller’s invoices shall
be made net of such monies owed or Purchaser’s set off costs.
</td>
</tr></table></td>
</tr>
         <tr><td><table><tr><td style="padding-left:20px">9.7</td><td> </td>
<td>Each Party must comply with their respective obligations in relation to payment of GST. In settling Seller’s invoice,
Purchaser shall deduct and remit to the proper authorities any taxes or other charges as it is required by law to
deduct (if any), and payment of the invoice net of the amount so deducted shall constitute full and proper payment of
the amount due to Seller pursuant to this Purchase Order.
</td>
</tr></table></td>
</tr>
</table>
    
     <table>
<tr>
<td><strong>10   TIME FOR DELIVERY</strong></td></tr>
<tr><td><table><tr><td style="padding-left:20px">10.1</td><td> </td>
<td>The time(s) of Delivery specified in this Purchase Order is (are) of the essence of the Purchase Order. Seller must commence work immediately upon receipt of this Purchase Order and must complete Delivery of Goods within the
time(s) stated in this Purchase Order.


</td>
</tr></table></td>
</tr>
    </table>
    
     <table>
<tr>
<td><strong>11   EXTENSIONS OF TIME</strong>
</td></tr>
<tr><td><table><tr><td style="padding-left:20px">11.1</td><td> </td>
<td>In the event of a delay to Seller resulting from acts of omission or commission of Purchaser, or as a result of event
of Force Majeure, Seller shall be entitled to an extension of time for Delivery of Goods by the amount of time Seller is
actually delayed in the performance of work, provided that Seller has immediately notified Purchaser in writing of: the
commencement of each delay (together with supporting data) advising the cause for delay, the probable duration of
delay, probable impact on the Delivery of Goods and actions being taken to mitigate the delay; and termination of the
cause of delay and requests an extension of time.
</td>
</tr></table></td>
</tr>
    
    <tr><td><table><tr><td style="padding-left:20px">11.2</td><td> </td>
<td>Purchaser shall have no obligation to grant any extension of time claimed by Seller, irrespective of cause, unless
Seller has fully complied with the notification requirements set out in sub-clause 11.1 above.
</td>
</tr></table></td>
</tr>
         <tr><td><table><tr><td style="padding-left:20px">11.3</td><td> </td>
<td>If Seller’s claim for an extension of time is approved by Purchaser, Purchaser shall issue a Change Order to amend
the Delivery Date(s) for the period reasonably justified. Such extension of time shall be Seller’s sole remedy for
delay and Seller shall not be entitled to, and hereby waives any and all claims to increased compensation, costs, or
damages in respect of any delay howsoever caused.
</td>
</tr></table></td>
</tr>
</table>
        <table>
<tr>
<td><strong>12   FORCE MAJEURE</strong>
</td></tr>
<tr><td><table><tr><td style="padding-left:20px">12.1</td><td> </td>
<td>“Force Majeure” means a circumstance beyond the reasonable control of the Parties, which results in a Party, being
unable to observe or perform on time its obligations under this Purchase Order. Circumstances of that nature
include but are not limited to acts of God, lightning strikes, earthquakes, floods, storms, or other natural disasters,
acts of war, terrorism, civil commotion, malicious damage, stoppage or restraint of labour, or other industrial
disturbance, or acts by any governmental agency or authority.

</td>
</tr></table></td>
</tr>
    
    <tr><td><table><tr><td style="padding-left:20px">12.2</td><td> </td>
<td>Neither Party shall be liable for any delay or failure to perform its obligations under this Purchase Order if such a
delay is due to Force Majeure. If a delay or failure of a Party to perform its obligations is caused or anticipated due to
Force Majeure, the performance of that Party’s obligations shall be suspended. If a delay or failure by a Party to
perform its obligations due to Force Majeure exceeds sixty (60) days either Party may immediately terminate this
Purchase Order by notice in writing to the other Party
</td>
</tr></table></td>
</tr>
</table>
    
    <table>
<tr>
<td><strong>13   CANCELLATION</strong>
</td></tr>
<tr><td><table><tr><td style="padding-left:20px">13.1</td><td> </td>
<td>Purchaser at its option shall have the right to cancel any undelivered Goods by notice in writing to Seller. If this
Purchase Order includes any standard stock Goods Purchaser’s obligation shall be to pay for only those Goods
delivered prior to the cancellation. Where this Purchase Order includes manufactured or fabricated Goods prepared
to Purchaser’s specifications then Seller must immediately upon receipt of Purchaser’s notice of cancellation cease
manufacture, supply, or work in accordance with and to the extent specified in the notice, and must do everything
possible to minimise any further costs incurred by Seller prior to the date of cancellation.

</td>
</tr></table></td>
</tr>
    
    <tr><td><table><tr><td style="padding-left:20px">13.2</td><td> </td>
<td>Provided that Seller is not in default Purchaser shall pay Seller: a) for any Goods properly delivered prior to the date
of cancellation; b) actual out of pocket costs and expenses including expenses in connection with cancellation of
any subcontracts, all as reasonably determined by Purchaser which have been incurred by Seller prior to the date of
cancellation; and c) five percent (5%) of the cost in sub-clause 13.2b) above in lieu of profit, provided however that
the total cancellation payment shall not exceed the total price of this Purchase Order. Upon such payments title and
property in any Goods or incomplete Goods not Delivered to Purchaser shall pass to Purchaser.

</td>
</tr></table></td>
</tr>
</table>
    
    <table>
<tr>
<td><strong>14   TERMINATION FOR DEFAULT</strong>
</td></tr>
<tr><td><table><tr><td style="padding-left:20px">14.1</td><td> </td>
<td>In the event of any breach by Seller of any terms of this Purchase Order (including Seller’s warranties), Purchaser
may at its option and without prejudice to any of its other rights, cancel any undelivered Goods and shall have the
right to terminate this Purchase Order in whole or in part and may procure similar Goods elsewhere from other
suppliers.


</td>
</tr></table></td>
</tr>
    
    <tr><td><table><tr><td style="padding-left:20px">14.2</td><td> </td>
<td>Purchaser shall have no obligation to pay for any Goods which have not been Delivered after the date of Purchase
Order termination, including any partially completed Goods. Seller shall be liable for any costs for similar Goods
procured by Purchaser in excess of the price(s) specified in this Purchase Order. Seller must, however, continue the performance of this Purchase Order to the extent not terminated by Purchaser.
</td>
</tr></table></td>
</tr>
        <tr><td><table><tr><td style="padding-left:20px">14.3</td><td> </td>
<td>In addition to the rights provided above, Purchaser may exercise any other rights and remedies provided by law or
under this Purchase Order for such default or breach by Seller.

</td>
</tr></table></td>
</tr>
</table>
        <p style="page-break-after: always;"> </p>
        <table>
<tr>
<td><strong>15   SUSPENSION</strong>
</td></tr>
<tr><td><table><tr><td style="padding-left:20px">15.1</td><td> </td>
<td>Purchaser may at its option by written notification to Seller suspend performance of this Purchase Order for a period
of time up to but not exceeding sixty (60) days in the aggregate. Purchaser in its notification shall specify the
effective date of suspension and estimated duration of the suspension. Upon receipt of such notice of suspension,
Seller must promptly suspend performance of this Purchase Order to the extent specified in the notice of
suspension and must take all reasonable care and precautions to protect all work in progress, materials and the
like. Purchaser may at any time withdraw the notice of suspension by written notification upon receipt of which Seller
must immediately resume diligent performance of this Purchase Order to the extent specified in the notice of
withdrawal.
</td>
</tr></table></td>
</tr>
    
    <tr><td><table><tr><td style="padding-left:20px">15.2</td><td> </td>
<td>If Seller is of the opinion that any notice of suspension or withdrawal of suspension justifies an amendment to the
Purchase Order price, then Seller must immediately submit a written claim stating the details of price amendment
together with supporting documentation to substantiate the claim to the satisfaction of Purchaser.

</td>
</tr></table></td>
</tr>
    </table>
    
    <table>
<tr>
<td><strong>16   INSURANCE</strong>
</td></tr>
<tr><td><table><tr><td style="padding-left:20px">16.1</td><td> </td>
<td>Seller must insure Goods for their full replacement value against damage or destruction from commencement of
this Purchase Order until Delivery of the Goods to Purchaser, unless otherwise agreed in writing by Purchaser.
</td>
</tr></table></td>
</tr>
    
    <tr><td><table><tr><td style="padding-left:20px">16.2</td><td> </td>
<td>Seller must at all times be responsible for payment of all excesses and deductibles for insurances required under
this Purchase Order. If requested by Purchaser, Seller must immediately provide proof of all insurances effected in
relation to this Purchase Order. Seller shall be liable for all damages, losses, costs, or expenses arising from any
cause from Seller’s failure to insure Goods. If Seller fails to take out and maintain any insurance required by this
Purchase Order Purchaser shall have the right to: cancel this Purchase Order in whole or part in accordance with
Clause 14.0 above; or obtain and maintain any insurance required and deduct the costs of such insurance from
payments due to Seller.
</td>
</tr></table></td>
</tr>
        <tr><td><table><tr><td style="padding-left:20px">16.2</td><td> </td>
<td>If Seller (including its employees, subcontractors or agents) is required by this Purchase Order to perform any work
in connection with installation, erection, or commissioning of Goods at Site then Seller must, prior to arrival on Site,
effect and maintain adequate insurance cover for: 

</td>
</tr></table></td>
</tr>
         <tr><td><table><tr><td style="padding-left:60px">a)</td><td> </td>
<td> loss or damage resulting from any cause for Seller’s plant, equipment, tools and materials for not less than
replacement value;
</td>
</tr></table></td>
</tr>
        <tr><td><table><tr><td style="padding-left:60px">b)</td><td> </td>
<td> Employers Liability Insurance (Workers Compensation) in compliance with the laws of Queensland including
Common Law Liability cover. Insurance shall cover against any liability, loss, damages, claim or proceeding of
whatsoever nature including those arising from Statute or Common Law relating to workers compensation or
employers liability insurance from any accident or injury (including illness) to or death of any person employed
by Seller in connection with the work. These insurances shall be unlimited as to the number of claims and shall
provide cover in respect of each claim an unlimited amount;
</td>
</tr></table></td>
</tr>
         <tr><td><table><tr><td style="padding-left:60px">c)</td><td> </td>
<td> Third Party personal injury and property damage insurance in respect of all motor vehicles (including mobile
plant and equipment required to be licensed in accordance with motor vehicle statutes) bought to Site by Seller,
or on behalf of Seller whether owned or in Seller’s legal or physical custody to an amount of not less than Ten
Million Dollars ($10,000,000) each accident or occurrence. In addition the Contractor shall comply with all
Statutory requirements concerning compulsory third party motor vehicle insurance;
</td>
</tr></table></td>
</tr>
        <tr><td><table><tr><td style="padding-left:60px">d)</td><td> </td>
<td> Public Liability Insurance to cover death or injury (including illness) to any person arising out of performance of
the work; and destruction to, loss, or damage of property arising out of performance of the work. These
insurances shall be unlimited as to the number of claims and shall provide cover in respect of each claim an
amount of not less than Ten Million Dollars ($10,000,000);
</td>
</tr></table></td>
</tr>
        <tr><td><table><tr><td style="padding-left:60px">e)</td><td> </td>
<td> any other insurance, which is required by law for the time being in force in the State of Queensland.
</td>
</tr></table></td>
</tr>
        <tr><td><table><tr><td style="padding-left:20px">16.4</td><td> </td>
<td>Endorsements and cross liabilities: 
</td>
</tr></table></td>
</tr>
        <tr><td><table><tr><td style="padding-left:60px">a)</td><td> </td>
<td>Seller’s Public Liability Insurance shall:
</td>
</tr></table></td>
</tr>
         <tr><td><table><tr><td style="padding-left:80px">i)</td><td> </td>
<td>be endorsed to include Purchaser, its officers, employees and agents as co-insured’s and shall, with the
exception of the limits of liability, operate as if there were a separate policy of insurance covering each party
comprising the insured;
</td>
</tr></table></td>
</tr>
        <tr><td><table><tr><td style="padding-left:80px">ii)</td><td> </td>
<td> provide a waiver by insurers of all expressed or implied rights of subrogation against Purchaser, its officers,
employees, agents or parties comprising the insured; and

</td>
</tr></table></td>
</tr>
        <tr><td><table><tr><td style="padding-left:60px">b)</td><td> </td>
<td>Seller’s Employers Liability Insurance shall be endorsed to include a Principals Indemnity Clause in respect of
both Section 175 (Act) and Common Law Benefits.

</td>
</tr></table></td>
</tr>
        <tr><td><table><tr><td style="padding-left:20px">16.5</td><td> </td>
<td>Acts, omissions, nondisclosure, or misrepresentations by any insured shall not affect or prejudice the insurance in
regard to any other party. 
</td>
</tr></table></td>
</tr>
    </table>
         <table>
<tr>
<td><strong>17   INDEMNITY</strong>
</td></tr>
<tr><td><table><tr><td style="padding-left:20px">17.1</td><td> </td>
<td>To the extent of Seller’s negligence, Seller shall indemnify and keep indemnified Purchaser, its directors,
employees, agents and contractors (the “Indemnities”) from and against all losses, claims, liabilities and expenses
arising out of injury or death to any person or damage to or destruction of any property of the Indemnities caused
directly or indirectly out of performance of work under the Purchase Order by Seller, or Seller’s presence on or about
the Site, except where the of injury, death, damage, destruction or loss is the result of the negligence or actions of
the Indemnities.

</td>
</tr></table></td>
</tr>
    
    <tr><td><table><tr><td style="padding-left:20px">17.2</td><td> </td>
<td>Neither Party shall be liable to the other Party for any indirect or consequential loss or damage suffered or incurred
in connection with the performance of work under this Purchase Order.

</td>
</tr></table></td>
</tr>
    </table>
    
    <table>
<tr>
<td><strong>18   PROTECTED RIGHTS</strong>

</td></tr>
<tr><td><table><tr><td style="padding-left:20px">18.1</td><td> </td>
<td>Seller warrants that it has investigated all specifications, including any furnished by Purchaser, in connection with
the Goods under this Purchase Order and based on such investigation has determined that performance of any
work under this Purchase Order or use of the Goods, shall not infringe upon any patent, copyright, trademark, or
protected right. Seller shall defend, indemnify and hold Purchaser and its successors in interest harmless from and
against any and all claims, demands, costs, legal expenses and liabilities arising out of any such infringement or
claim of infringement. Purchaser is relying on Seller’s experience, skill and superior knowledge with respect to the
Goods and shall have no liability whatsoever for any such infringement.

</td>
</tr></table></td>
</tr>
    
    <tr><td><table><tr><td style="padding-left:20px">18.2</td><td> </td>
<td>In the event Purchaser and its successors in interest are prevented, due to infringement or alleged infringement,
from selling, using, or operating the Goods in whole or part Seller must immediately, at its sole expense, take all
reasonable steps to procure the rights to sell, or operate the Goods. If Seller is unable to procure the rights to sell or
operate the Goods within a reasonable period of time, then Seller must either modify or replace the Goods such that
they comply with the requirements of this Purchase Order to Purchaser’s satisfaction and avoid any patent,
copyright, trademark, or protected right infringement. Seller must reimburse Purchaser for any costs incurred by
Purchaser as a result of violation of any patent, copyright, trademark, or protected right.

</td>
</tr></table></td>
</tr>
        <tr><td><table><tr><td style="padding-left:20px">18.3</td><td> </td>
<td>Seller also acknowledges that all intellectual property belonging to Purchaser, or other parties including designs,
data, documents, information, electronic programs and code, electronic media, or other things provided to Seller by
Purchaser in connection with the Purchase Order may only be used by Seller for the purposes of fulfilling Seller’s
obligations under this Purchase Order, or otherwise with the express written consent of Purchaser. Upon the
completion or termination of this Purchase Order Seller must discontinue such use, without any right of
compensation for such discontinuance.

</td>
</tr></table></td>
</tr>
    </table>
        <table>
<tr>
<td><strong>19   CONFIDENTIALITY</strong>

</td></tr>
<tr><td><table><tr><td style="padding-left:20px">19.1</td><td> </td>
<td>Seller agrees, that as far as possible, it must keep confidential the award and terms of this Purchase Order. Seller
agrees not to disclose for publicity, or any other reasons other than is essential for the performance of the work, any
photographs, drawings, electronic data, materials, or other things given to it by Purchaser without obtaining the prior
written consent of Purchaser and must return all such materials to Purchaser upon completion of this Purchase Order

</td>
</tr></table></td>
</tr>
    
    <tr><td><table><tr><td style="padding-left:20px">19.2</td><td> </td>
<td>Each party to this Purchase Order acknowledges and agrees that any Confidential Information disclosed or made
available to it by or on behalf of another party is so disclosed and made available in confidence and is the
disclosing party's trade secret and shall be and remain the disclosing party's sole and exclusive Confidential
Information, and that the following provisions will apply and be binding upon it in respect to all Confidential
Information disclosed to it by or on behalf of another party to this Purchase Order and in its possession from time to
time:


</td>
</tr></table></td>
</tr>
        <tr><td><table><tr><td style="padding-left:10px">19.2.1</td><td> </td>
<td>the party receiving such Confidential Information will take all reasonable steps and otherwise use its best efforts to
protect and preserve the confidential nature and continued secrecy of such Confidential Information, and in
particular, will take all practical steps to ensure that the same is not disclosed to or obtained by persons except
those personnel employed by the receiving party who are reasonably required to have access thereto in order to
enable the receiving party to exercise exploit and enjoy its rights under this Purchase Order;

</td>
</tr></table></td>
</tr>
           <tr><td><table><tr><td style="padding-left:10px">19.2.2</td><td> </td>
<td>the receiving party shall ensure that all such personnel becoming possessed of such Confidential Information do
so in confidence and are bound not to make or permit any further disclosure thereof (save in confidence to other
similarly bound personnel of the receiving party);

</td>
</tr></table></td>
</tr>
    </table>
    
    <table>
<tr>
<td><strong>20   ENGINEERING DATA</strong>

</td></tr>
<tr><td><table><tr><td style="padding-left:20px">20.1</td><td> </td>
<td>Seller must provide to Purchaser engineering and other data required by this Purchase Order within the time(s)
specified. Any review or approval of Seller’s drawings or engineering data for general conformance with this
Purchase Order requirements shall not relieve Seller’s responsibility for full compliance with design criteria and
other Purchase Order requirements.
</td>
</tr></table></td>
</tr>
    </table>
         <table>
<tr>
    <td><strong>21   DOCUMENTATION SUBMISSIONS</strong>

</td></tr>
<tr><td><table><tr><td style="padding-left:20px">21.1</td><td> </td>
<td>Seller must provide to Purchaser all drawings, manuals, documents, or data (whether in written or electronic form)
required by this Purchase Order within the time(s) specified, or if no specific time is specified upon Delivery of the
Goods.
</td>
</tr></table></td>
</tr>
        <tr><td><table><tr><td style="padding-left:20px">21.2</td><td> </td>
<td>In the event that drawings, manuals, documents, or data (whether in written or electronic form) submitted by Seller
are incomplete or otherwise fail to meet Purchase Order requirements, Purchaser shall notify Seller of such
deficiencies. If Seller fails to promptly correct such deficiencies, Purchaser may make such corrections and any
costs associated with making these corrections shall be to the Seller’s account.
</td>
</tr></table></td>
</tr>
   </table>
        <table>
<tr>
<td><strong>22   INSTALLATION, ERECTION AND COMMISSIONING</strong>

</td></tr>
<tr><td><table><tr><td style="padding-left:20px">22.1</td><td> </td>
<td>The following conditions shall also apply if Seller provides work in connection with installation, erection, or
commissioning of Goods on Site, or where the presence of Seller, its employees, subcontractors, or agents is
implied by this Purchase Order.
</td>
</tr></table></td>
</tr>
        <tr><td><table><tr><td style="padding-left:60px">a)</td><td> </td>
<td>All works performed at Site by Seller must be performed with the highest regard for the safety of all personnel at
the Site and must, as a minimum, conform to the Site’s safety standards, regulations and procedures which
shall be made available by Purchaser.
</td>
</tr></table></td>
</tr>
    <tr><td><table><tr><td style="padding-left:60px">b)</td><td> </td>
<td>Seller its employees, subcontractors, or agents must comply with Purchaser’s safety, environmental, and Site
regulations and with all reasonable directions given by Purchaser’s authorised representatives.
</td>
</tr></table></td>
</tr>
         <tr><td><table><tr><td style="padding-left:60px">c)</td><td> </td>
<td>All works must be performed to the highest standards in a workmanlike manner.
</td>
</tr></table></td>
</tr>
         <tr><td><table><tr><td style="padding-left:60px">d)</td><td> </td>
<td>Seller must supply and provide the required details of all specialist labour, tools, equipment and materials
necessary to complete the work and prior to commencing work on Site Seller must confirm the labour,
equipment, materials and facilities to be provided by Purchaser.
</td>
</tr></table></td>
</tr>
           <tr><td><table><tr><td style="padding-left:60px">e)</td><td> </td>
<td>Seller must use its best endeavours not to interfere with, or impede the progress of work by others on Site. 
</td>
</tr></table></td>
</tr>
          <tr><td><table><tr><td style="padding-left:60px">f)</td><td> </td>
<td>Seller must, at its expense, obtain the necessary licenses and permits applicable to the performance of the work
and must comply with all applicable laws, regulations and local ordinances.
</td>
</tr></table></td>
</tr>
          <tr><td><table><tr><td style="padding-left:60px">g)</td><td> </td>
<td>Seller must perform the works in such a manner as to minimise pollution in and about the Site. Seller shall at its
own expense clean up any pollution caused by it or its employees, subcontractors and agents and shall
indemnify and hold harmless Purchaser, its directors, officers, employees and agents in that regard.
</td>
</tr></table></td>
</tr>
         <tr><td><table><tr><td style="padding-left:60px">h)</td><td> </td>
<td>Seller including its employees, subcontractors, or agents enters the Site at its own risk and shall be liable for
and indemnify Purchaser against any loss, damage, claims or liability arising out of the performance of the work
or Seller’s presence on Site including claims against Purchaser whether or not alleging negligence on the part
of the Purchaser.
             </td>
</tr></table></td>
</tr>
         <tr><td><table><tr><td style="padding-left:60px">i)</td><td> </td>
<td>If work or materials are found to be defective, unsuitable, or not in compliance with this Purchase Order by
Purchaser and Seller fails on Purchaser’s request to promptly remedy the defect to Purchaser’s satisfaction,
Purchaser may remedy the defect at Seller’s expense.
             </td>

</tr></table></td>
</tr>
 </table>
        <table>
<tr>
<td><strong>23   LAW APPLICABLE</strong>

</td></tr>
<tr><td><table><tr><td style="padding-left:20px">23.1</td><td> </td>
<td>This Purchase Order and rights and obligations of Purchaser and Seller shall be subject to and governed by the
laws of the State of Queensland. The Parties agree to submit to the jurisdiction of the courts of Queensland.
</td>
</tr></table></td>
</tr>
 </table>
      </body>
  </pdf>
  </pdfset>

Leave a comment

Your email address will not be published. Required fields are marked *