fix: bugfix for view order item page template
This commit is contained in:
parent
b35c9bcdfa
commit
f8f745c243
|
@ -200,12 +200,12 @@
|
||||||
</b-field>
|
</b-field>
|
||||||
% if not item.product_id and item.local_product:
|
% if not item.product_id and item.local_product:
|
||||||
<b-field horizontal label="Local Product">
|
<b-field horizontal label="Local Product">
|
||||||
<span>${h.link_to(item.local_product, url('local_products.view', uuid=order.local_product.uuid))}</span>
|
<span>${h.link_to(item.local_product, url('local_products.view', uuid=item.local_product.uuid))}</span>
|
||||||
</b-field>
|
</b-field>
|
||||||
% endif
|
% endif
|
||||||
% if not item.product_id and item.pending_product:
|
% if not item.product_id and item.pending_product:
|
||||||
<b-field horizontal label="Pending Product">
|
<b-field horizontal label="Pending Product">
|
||||||
<span>${h.link_to(item.pending_product, url('pending_products.view', uuid=order.pending_product.uuid))}</span>
|
<span>${h.link_to(item.pending_product, url('pending_products.view', uuid=item.pending_product.uuid))}</span>
|
||||||
</b-field>
|
</b-field>
|
||||||
% endif
|
% endif
|
||||||
<b-field horizontal label="Scancode">
|
<b-field horizontal label="Scancode">
|
||||||
|
|
Loading…
Reference in a new issue