<!-- Show custom field country of origin and hs code -->
<data priority="50">
    <xpath expr="//span[@t-field='line.name']" position="after">
        <t t-if="line.product_id.country_of_origin.code"><br/>
      Country of Origin: <span t-field="line.product_id.country_of_origin.code"/>
    </t>
        <t t-if="line.product_id.hs_code"><br/>
      HS Code: <span t-field="line.product_id.hs_code"/>
    </t>
    </xpath>
</data>
