geer-builder 1.2.947 → 1.2.948
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -69,7 +69,7 @@
|
|
|
69
69
|
<div class="row">
|
|
70
70
|
<div class="col-6">
|
|
71
71
|
</div>
|
|
72
|
-
<div class="col-6 text-right q-mt-
|
|
72
|
+
<div class="col-6 text-right q-mt-sm">
|
|
73
73
|
<div class="row" v-if="total_merchant_discount > 0">
|
|
74
74
|
<div class="col-7 label">Merchant Discount</div>
|
|
75
75
|
<div class="col-5 value">{{ $_formatNumber(total_merchant_discount, { decimal: 2}) }}</div>
|
|
@@ -244,7 +244,7 @@ export default {
|
|
|
244
244
|
padding: 15px;
|
|
245
245
|
.desktop-only{
|
|
246
246
|
.title {
|
|
247
|
-
font-size:
|
|
247
|
+
font-size: 22px;
|
|
248
248
|
font-weight: bold;
|
|
249
249
|
text-transform: uppercase;
|
|
250
250
|
}
|
|
@@ -265,7 +265,7 @@ export default {
|
|
|
265
265
|
border-collapse: collapse;
|
|
266
266
|
}
|
|
267
267
|
table {
|
|
268
|
-
margin-top:
|
|
268
|
+
margin-top: 10px;
|
|
269
269
|
width: 100%;
|
|
270
270
|
border: 1px solid #eee;
|
|
271
271
|
|
|
@@ -275,7 +275,7 @@ export default {
|
|
|
275
275
|
}
|
|
276
276
|
|
|
277
277
|
td, th {
|
|
278
|
-
padding: 10px;
|
|
278
|
+
padding: 6px 10px;
|
|
279
279
|
|
|
280
280
|
}
|
|
281
281
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<q-card class="process-checkout-dialog refill form" style="width: 900px; max-width: 1000px;">
|
|
3
3
|
<q-form @submit="submit()">
|
|
4
|
-
<div v-if="sale" style="
|
|
4
|
+
<div v-if="sale" style="max-height: 70vh; overflow-y: auto;" class="product-list">
|
|
5
5
|
<printable title="Order Summary"
|
|
6
6
|
:orders="sale.orders"
|
|
7
7
|
:memo="sale.memo"
|
|
@@ -257,7 +257,6 @@ export default {
|
|
|
257
257
|
}
|
|
258
258
|
.product-list {
|
|
259
259
|
padding: 20px;
|
|
260
|
-
min-height: 200px;
|
|
261
260
|
}
|
|
262
261
|
.buttons {
|
|
263
262
|
background-color: #fff;
|