mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-05-22 21:14:42 +00:00
changeable frontend invoicing currency
This commit is contained in:
@@ -587,7 +587,7 @@
|
||||
return new Intl
|
||||
.NumberFormat('cs-CS', {
|
||||
style: 'currency',
|
||||
currency: 'CZK'
|
||||
currency: this.config.invoicingCurrency
|
||||
})
|
||||
.format(value)
|
||||
},
|
||||
@@ -735,6 +735,10 @@
|
||||
max-width: 1100px;
|
||||
}
|
||||
|
||||
.total-wrapper {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.content-page {
|
||||
display: grid;
|
||||
grid-template-columns: 2fr 1fr;
|
||||
|
||||
@@ -462,7 +462,7 @@
|
||||
return new Intl
|
||||
.NumberFormat('cs-CS', {
|
||||
style: 'currency',
|
||||
currency: 'CZK'
|
||||
currency: this.config.invoicingCurrency
|
||||
})
|
||||
.format(value)
|
||||
},
|
||||
|
||||
@@ -72,6 +72,9 @@
|
||||
legal: {!! $legal ?? 'undefined' !!},
|
||||
|
||||
installation: '{{ $installation ?? 'initial' }}',
|
||||
|
||||
// oasis
|
||||
invoicingCurrency: '{{ config('vuefilemanager-invoicing.currency') ?? 'EUR' }}',
|
||||
}
|
||||
</script>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user