Show red background for mobile receiving if product not found
This commit is contained in:
parent
6fb78c5dde
commit
2939b53467
|
@ -8,7 +8,7 @@
|
||||||
|
|
||||||
|
|
||||||
<div${' class="ui-grid-a"' if product_image_url else ''|n}>
|
<div${' class="ui-grid-a"' if product_image_url else ''|n}>
|
||||||
<div class="ui-block-a">
|
<div class="ui-block-a"${'' if instance.product else ' style="background-color: red;"'|n}>
|
||||||
% if instance.product:
|
% if instance.product:
|
||||||
<h3>${instance.brand_name or ""}</h3>
|
<h3>${instance.brand_name or ""}</h3>
|
||||||
<h3>${instance.description} ${instance.size or ''}</h3>
|
<h3>${instance.description} ${instance.size or ''}</h3>
|
||||||
|
@ -26,7 +26,7 @@
|
||||||
% endif
|
% endif
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<table>
|
<table${'' if instance.product else ' style="background-color: red;"'|n}>
|
||||||
<tbody>
|
<tbody>
|
||||||
% if batch.order_quantities_known:
|
% if batch.order_quantities_known:
|
||||||
<tr>
|
<tr>
|
||||||
|
|
Loading…
Reference in a new issue