Merge branch 'master' of https://github.com/brkcvn/akaunting into new-plans
This commit is contained in:
@@ -12,22 +12,17 @@
|
||||
ref="focusElement"
|
||||
></div>
|
||||
<div class="absolute w-full h-full bg-black left-0 top-0 rounded-lg overflow-hidden" style="background-image: linear-gradient(147deg, #354fce 0%, #0c296b 74%);">
|
||||
<img
|
||||
v-if="currentCardBackground"
|
||||
:src="currentCardBackground"
|
||||
class="w-full h-full block object-cover"
|
||||
/>
|
||||
</div>
|
||||
<div class="relative h-full py-6 px-4 select-none">
|
||||
<div class="flex items-start justify-between px-4">
|
||||
<img
|
||||
src="https://raw.githubusercontent.com/muhammederdem/credit-card-form/master/src/assets/images/chip.png"
|
||||
:src="chip_src"
|
||||
class="w-12"
|
||||
/>
|
||||
<div class="relative w-full h-12 flex flex-end">
|
||||
<transition name="slide-fade-up">
|
||||
<img
|
||||
:src="'https://raw.githubusercontent.com/muhammederdem/credit-card-form/master/src/assets/images/' + cardType + '.png'"
|
||||
:src="card_type_src + cardType + '.png'"
|
||||
v-if="cardType"
|
||||
:key="cardType"
|
||||
alt
|
||||
@@ -94,11 +89,6 @@
|
||||
</div>
|
||||
<div class="card-item__side -back absolute top-0 left-0 w-full p-0 h-full">
|
||||
<div class="absolute w-full h-full bg-black left-0 top-0 rounded-lg overflow-hidden" style="background-image: linear-gradient(147deg, #354fce 0%, #0c296b 74%);">
|
||||
<img
|
||||
v-if="currentCardBackground"
|
||||
:src="currentCardBackground"
|
||||
class="w-full h-full block object-cover"
|
||||
/>
|
||||
</div>
|
||||
<div class="absolute w-full h-32 mt-12 bg-black"></div>
|
||||
<div class="relative p-4 text-right">
|
||||
@@ -108,9 +98,9 @@
|
||||
</div>
|
||||
<div class="relative w-24 h-12 flex justify-end">
|
||||
<img
|
||||
:src="'https://raw.githubusercontent.com/muhammederdem/credit-card-form/master/src/assets/images/' + cardType + '.png'"
|
||||
:src="card_type_src + cardType + '.png'"
|
||||
v-if="cardType"
|
||||
class="w-full h-full object-right-top object-contain"
|
||||
class="w-full h-full object-right-top object-contain"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
@@ -140,7 +130,9 @@ export default {
|
||||
amexCardPlaceholder: '#### ###### #####',
|
||||
dinersCardPlaceholder: '#### ###### ####',
|
||||
defaultCardPlaceholder: '#### #### #### ####',
|
||||
currentPlaceholder: ''
|
||||
currentPlaceholder: '',
|
||||
chip_src: app_url + '/public/img/credit_card/chip.png',
|
||||
card_type_src: app_url + '/public/img/credit_card/',
|
||||
}
|
||||
},
|
||||
watch: {
|
||||
|
||||
12
resources/assets/sass/app.css
vendored
12
resources/assets/sass/app.css
vendored
@@ -220,6 +220,12 @@
|
||||
width: 1px;
|
||||
}
|
||||
|
||||
.menu__submenu details.relative:before {
|
||||
@apply h-full absolute bg-gray-200 -left-4;
|
||||
content: '';
|
||||
width: 1px;
|
||||
}
|
||||
|
||||
.menu__submenu li:last-child::before {
|
||||
height: 20px;
|
||||
}
|
||||
@@ -548,6 +554,12 @@ html[dir="rtl"] .lines-radius-border thead td:last-child {
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (min-width: 480px) {
|
||||
.large-overflow-unset {
|
||||
overflow-x: unset;
|
||||
}
|
||||
}
|
||||
|
||||
#nprogress .bar {
|
||||
background: #A6A8C9 !important;
|
||||
height: 5px !important;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<div class="relative sm:col-span-6">
|
||||
<div class="relative sm:col-span-6 overflow-x-scroll large-overflow-unset">
|
||||
<div style="table-layout: fixed;">
|
||||
<div class="overflow-x-visible overflow-y-hidden">
|
||||
<table class="small-table-width" id="items">
|
||||
|
||||
@@ -221,7 +221,7 @@
|
||||
</span>
|
||||
|
||||
<span class="float-right spacing">
|
||||
@money($total->amount - $document->paid, $document->currency_code, true)
|
||||
<x-money :amount="$total->amount - $document->paid" :currency="$document->currency_code" convert />
|
||||
</span>
|
||||
</p>
|
||||
@endif
|
||||
@@ -338,7 +338,7 @@
|
||||
</strong>
|
||||
|
||||
<span>
|
||||
@money($total->amount, $document->currency_code, true)
|
||||
<x-money :amount="$total->amount" :currency="$document->currency_code" convert />
|
||||
</span>
|
||||
</div>
|
||||
@stack($total->code . '_total_tr_end')
|
||||
@@ -351,7 +351,7 @@
|
||||
</span>
|
||||
|
||||
<span>
|
||||
- @money($document->paid, $document->currency_code, true)
|
||||
- <x-money :amount="$document->paid" :currency="$document->currency_code" convert />
|
||||
</span>
|
||||
</div>
|
||||
@stack('paid_total_tr_end')
|
||||
@@ -364,7 +364,7 @@
|
||||
</span>
|
||||
|
||||
<span>
|
||||
@money($document->amount_due, $document->currency_code, true)
|
||||
<x-money :amount="$document->amount_due" :currency="$document->currency_code" convert />
|
||||
</span>
|
||||
</div>
|
||||
@stack('grand_total_tr_end')
|
||||
|
||||
@@ -307,7 +307,7 @@
|
||||
</span>
|
||||
|
||||
<span>
|
||||
@money($total->amount, $document->currency_code, true)
|
||||
<x-money :amount="$total->amount" :currency="$document->currency_code" convert />
|
||||
</span>
|
||||
</div>
|
||||
@stack($total->code . '_total_tr_end')
|
||||
@@ -320,7 +320,7 @@
|
||||
</span>
|
||||
|
||||
<span>
|
||||
- @money($document->paid, $document->currency_code, true)
|
||||
- <x-money :amount="$document->paid" :currency="$document->currency_code" convert />
|
||||
</span>
|
||||
</div>
|
||||
@stack('paid_total_tr_end')
|
||||
@@ -333,7 +333,7 @@
|
||||
</span>
|
||||
|
||||
<span>
|
||||
@money($document->amount_due, $document->currency_code, true)
|
||||
<x-money :amount="$document->amount_due" :currency="$document->currency_code" convert />
|
||||
</span>
|
||||
</div>
|
||||
@stack('grand_total_tr_end')
|
||||
|
||||
@@ -22,13 +22,17 @@
|
||||
|
||||
@stack('quantity_td_start')
|
||||
@if (! $hideQuantity)
|
||||
<td class="quantity text text-alignment-right text-right">{{ $item->quantity }}</td>
|
||||
<td class="quantity text text-alignment-right text-right">
|
||||
{{ $item->quantity }}
|
||||
</td>
|
||||
@endif
|
||||
@stack('quantity_td_end')
|
||||
|
||||
@stack('price_td_start')
|
||||
@if (! $hidePrice)
|
||||
<td class="price text text-alignment-right text-right">@money($item->price, $document->currency_code, true)</td>
|
||||
<td class="price text text-alignment-right text-right">
|
||||
<x-money :amount="$item->price" :currency="$document->currency_code" convert />
|
||||
</td>
|
||||
@endif
|
||||
@stack('price_td_end')
|
||||
|
||||
@@ -54,7 +58,9 @@
|
||||
{{ $text_discount }}
|
||||
</td>
|
||||
@else
|
||||
<td class="discount text text-alignment-right text-right">@money($item->discount, $document->currency_code, true)</td>
|
||||
<td class="discount text text-alignment-right text-right">
|
||||
<x-money :amount="$item->discount" :currency="$document->currency_code" convert />
|
||||
</td>
|
||||
@endif
|
||||
@stack('discount_td_end')
|
||||
@endif
|
||||
@@ -62,7 +68,9 @@
|
||||
|
||||
@stack('total_td_start')
|
||||
@if (! $hideAmount)
|
||||
<td class="total text text-alignment-right text-right">@money($item->total, $document->currency_code, true)</td>
|
||||
<td class="total text text-alignment-right text-right">
|
||||
<x-money :amount="$item->total" :currency="$document->currency_code" convert />
|
||||
</td>
|
||||
@endif
|
||||
@stack('total_td_end')
|
||||
</tr>
|
||||
|
||||
@@ -308,7 +308,7 @@
|
||||
</span>
|
||||
|
||||
<span>
|
||||
@money($total->amount, $document->currency_code, true)
|
||||
<x-money :amount="$total->amount" :currency="$document->currency_code" convert />
|
||||
</span>
|
||||
</div>
|
||||
@stack($total->code . '_total_tr_end')
|
||||
@@ -321,7 +321,7 @@
|
||||
</span>
|
||||
|
||||
<span>
|
||||
- @money($document->paid, $document->currency_code, true)
|
||||
- <x-money :amount="$document->paid" :currency="$document->currency_code" convert />
|
||||
</span>
|
||||
</div>
|
||||
@stack('paid_total_tr_end')
|
||||
@@ -334,7 +334,7 @@
|
||||
</span>
|
||||
|
||||
<span>
|
||||
@money($document->amount_due, $document->currency_code, true)
|
||||
<x-money :amount="$document->amount_due" :currency="$document->currency_code" convert />
|
||||
</span>
|
||||
</div>
|
||||
@stack('grand_total_tr_end')
|
||||
|
||||
@@ -347,12 +347,12 @@
|
||||
|
||||
<td class="price text-alignment-right text-right" style="color:#424242; font-size:12px; padding-right:0;">
|
||||
@if (! $hideRelatedDocumentAmount)
|
||||
@money($transaction->document->amount, $transaction->document->currency_code, true) <br />
|
||||
<x-money :amount="$transaction->document->amount" :currency="$transaction->document->currency_code" convert /> <br />
|
||||
@endif
|
||||
|
||||
@if (! $hideRelatedAmount)
|
||||
<span style="color: #6E6E6E">
|
||||
@money($transaction->amount, $transaction->currency_code, true)
|
||||
<x-money :amount="$transaction->amount" :currency="$transaction->currency_code" convert />
|
||||
</span>
|
||||
@endif
|
||||
</td>
|
||||
@@ -369,8 +369,10 @@
|
||||
<table>
|
||||
<tr>
|
||||
<td valign="center" style="font-size: 14px; color: #ffffff; padding: 0;">
|
||||
<span class="ml-2 font-semibold">{{ trans($textAmount) }}</span>
|
||||
@money($transaction->amount, $transaction->currency_code, true)
|
||||
<span class="ml-2 font-semibold">
|
||||
{{ trans($textAmount) }}
|
||||
</span>
|
||||
<x-money :amount="$transaction->amount" :currency="$transaction->currency_code" convert />
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
Reference in New Issue
Block a user