Skip to content

Commit

Permalink
fix: RFQ description width
Browse files Browse the repository at this point in the history
  • Loading branch information
barredterra committed Dec 27, 2023
1 parent b720adc commit 1767449
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions print_format/request_for_quotation.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@
<thead class="black-border">
<tr>
<th style="width: 5%">{{ _("Sr") }}</th>
<th style="width: 35%">{{ _("Description") }}</th>
<th style="width: 75%">{{ _("Description") }}</th>
<th style="width: 10%">{{ _("Unit") if not print_settings.print_uom_after_quantity else '&nbsp;'}}</th>
<th style="width: 10%">{{ _("Qty") }}</th>
</tr>
Expand All @@ -105,7 +105,7 @@
</tr>
<tr>
<td></td>
<td colspan="3">
<td colspan="2">
{% if (n.description | striptags) != n.item_name %}
{{ n.description }}<br>
{% endif %}
Expand All @@ -116,6 +116,7 @@
{{ _("Your Part No.: {0}").format(n.supplier_part_no) }}
{% endif %}
</td>
<td></td>
</tr>
{% endfor %}
</tbody>
Expand Down

0 comments on commit 1767449

Please sign in to comment.