Skip to content

Commit

Permalink
refactor: remove empty class declarations
Browse files Browse the repository at this point in the history
  • Loading branch information
barredterra committed Dec 27, 2023
1 parent fd106a2 commit ad2dd1b
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion print_format/purchase_order.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
<div id="faltmarke-2" class="din-mark"></div>

<!-- CONTENT -->
<div id="text" class="">
<div id="text">
<div id="subject">
<strong>{{ _("Purchase Order") }} {{ doc.name }}</strong>
</div>
Expand Down
2 changes: 1 addition & 1 deletion print_format/request_for_quotation.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
<div id="faltmarke-2" class="din-mark"></div>

<!-- CONTENT -->
<div id="text" class="">
<div id="text">
<div id="subject">
<strong>{{ _("Request for Quotation") }} {{ doc.name }}</strong>
</div>
Expand Down
10 changes: 5 additions & 5 deletions print_format/sales_invoice.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@
<div id="faltmarke-2" class="din-mark"></div>

<!-- CONTENT -->
<div id="text" class="">
<div id="text">
<div id="subject">
{% if doc.is_return %}
<p><strong>{{ _("Correction Invoice") }} {{ doc.name }}</strong></p>
Expand Down Expand Up @@ -280,9 +280,9 @@
<thead>
<tr>
<th style="width: 40px" class="table-sr">{{ _("Sr") }}</th>
<th style="width: 150px;" class="" data-fieldname="timesheets" data-fieldtype="Table">
<th style="width: 150px;" data-fieldname="timesheets" data-fieldtype="Table">
{{_("Date")}}</th>
<th style="width: 300px;" class="" data-fieldname="timesheets" data-fieldtype="Table">
<th style="width: 300px;" data-fieldname="timesheets" data-fieldtype="Table">
{{_("Note")}}</th>
<th style="width: 80px;" class="text-right" data-fieldname="timesheets" data-fieldtype="Table">
{{_("Hours")}}</th>
Expand All @@ -294,12 +294,12 @@
{% if timesheet.total_billable_amount > 0 and timesheet.customer_note %}
<tr style="page-break-inside: avoid;">
<td class="table-sr">{{ loop.index }}</td>
<td class="" data-fieldname="timesheets" data-fieldtype="Table">
<td data-fieldname="timesheets" data-fieldtype="Table">
<div class="value">
{{ timesheet.get_formatted('start_date') }}
</div>
</td>
<td class="" data-fieldname="timesheets" data-fieldtype="Table">
<td data-fieldname="timesheets" data-fieldtype="Table">
<div class="value">
{{ timesheet.note }}
</div>
Expand Down
2 changes: 1 addition & 1 deletion print_format/sales_order.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
<div id="faltmarke-2" class="din-mark"></div>

<!-- CONTENT -->
<div id="text" class="">
<div id="text">
<div id="subject">
<strong>{{ _("Order Confirmation") }} {{ doc.name }}</strong>
</div>
Expand Down

0 comments on commit ad2dd1b

Please sign in to comment.