Skip to content

Commit a77b11e

Browse files
committed
fix: Inconsistancy in line items header in print receipt
1 parent 1fdb1e3 commit a77b11e

File tree

1 file changed

+38
-0
lines changed

1 file changed

+38
-0
lines changed

assets/src/frontend/components/PrintReceiptHtml.vue

+38
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,16 @@
88
</div>
99
<div class="content">
1010
<table class="sale-summary">
11+
<thead>
12+
<tr class="item-header">
13+
<th class="name">{{ __( 'Product', 'wepos' ) }}</th>
14+
<th class="quantity">{{ __( 'Quantity', 'wepos' ) }}</th>
15+
<th class="price">{{ __( 'Total', 'wepos' ) }}</th>
16+
</tr>
17+
<tr class="divider">
18+
<td colspan="3"></td>
19+
</tr>
20+
</thead>
1121
<tbody>
1222
<tr v-for="item in printdata.line_items">
1323
<td class="name">
@@ -165,6 +175,34 @@ export default {
165175
table.sale-summary {
166176
width: 100%;
167177
border-collapse: collapse;
178+
179+
thead {
180+
tr {
181+
th {
182+
padding: 0 10px 8px;
183+
184+
&.name {
185+
width: 60%;
186+
text-align: left;
187+
}
188+
189+
&.quantity {
190+
width: 12%;
191+
text-align: center;
192+
}
193+
194+
&.price {
195+
text-align: right;
196+
}
197+
}
198+
199+
&.divider {
200+
border-bottom: 1px dashed #b7b7b7;
201+
color: #b5b5b5;
202+
}
203+
}
204+
}
205+
168206
tbody {
169207
tr {
170208
td {

0 commit comments

Comments
 (0)