mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
Rebuild frontend
This commit is contained in:
parent
c34a5ed3e4
commit
20c45aa0e0
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,6 +1,7 @@
|
|||||||
/node_modules
|
/node_modules
|
||||||
/frontend/node_modules
|
/frontend/node_modules
|
||||||
/frontend/fonts
|
/frontend/fonts
|
||||||
|
/frontend/images
|
||||||
/public/hot
|
/public/hot
|
||||||
/public/storage
|
/public/storage
|
||||||
/storage/*.key
|
/storage/*.key
|
||||||
|
@ -28,6 +28,7 @@ php /sites/FF3/dev/tools/cli.php ff3:json-translations v2
|
|||||||
# remove old stuff
|
# remove old stuff
|
||||||
rm -rf public/
|
rm -rf public/
|
||||||
rm -rf ../public/fonts
|
rm -rf ../public/fonts
|
||||||
|
rm -rf ../public/images
|
||||||
rm -rf ../public/v2/js
|
rm -rf ../public/v2/js
|
||||||
rm -rf ../public/v2/css
|
rm -rf ../public/v2/css
|
||||||
mkdir -p public/js
|
mkdir -p public/js
|
||||||
|
@ -33,6 +33,7 @@
|
|||||||
"icheck-bootstrap": "^3.0.1",
|
"icheck-bootstrap": "^3.0.1",
|
||||||
"jquery": "^3.5.1",
|
"jquery": "^3.5.1",
|
||||||
"jquery-ui": "^1.12.1",
|
"jquery-ui": "^1.12.1",
|
||||||
|
"leaflet": "^1.7.1",
|
||||||
"overlayscrollbars": "^1.13.1",
|
"overlayscrollbars": "^1.13.1",
|
||||||
"popper.js": "^1.16.1",
|
"popper.js": "^1.16.1",
|
||||||
"tempusdominus": "^5.16.0",
|
"tempusdominus": "^5.16.0",
|
||||||
@ -41,6 +42,7 @@
|
|||||||
"vue-router": "^3.4.9",
|
"vue-router": "^3.4.9",
|
||||||
"vue-simple-suggest": "^1.10.3",
|
"vue-simple-suggest": "^1.10.3",
|
||||||
"vue-typeahead-bootstrap": "^2.5.5",
|
"vue-typeahead-bootstrap": "^2.5.5",
|
||||||
|
"vue2-leaflet": "^2.6.0",
|
||||||
"vuex": "^3.6.0"
|
"vuex": "^3.6.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -95,7 +95,10 @@ export default {
|
|||||||
]
|
]
|
||||||
),
|
),
|
||||||
getACURL: function (types, query) {
|
getACURL: function (types, query) {
|
||||||
return document.getElementsByTagName('base')[0].href + 'api/v1/autocomplete/accounts?types=' + types.join(',') + '&query=' + query;
|
|
||||||
|
let URL = './api/v1/autocomplete/accounts?types=' + types.join(',') + '&query=' + query;
|
||||||
|
//console.log('AC URL is ' + URL);
|
||||||
|
return URL;
|
||||||
},
|
},
|
||||||
clearAccount: function () {
|
clearAccount: function () {
|
||||||
this.accounts = this.initialSet;
|
this.accounts = this.initialSet;
|
||||||
@ -103,15 +106,18 @@ export default {
|
|||||||
this.accountName = '';
|
this.accountName = '';
|
||||||
},
|
},
|
||||||
lookupAccount: debounce(function () {
|
lookupAccount: debounce(function () {
|
||||||
|
//console.log('In lookupAccount()');
|
||||||
if (0 === this.accountTypes.length) {
|
if (0 === this.accountTypes.length) {
|
||||||
// set the types from the default types for this direction:
|
// set the types from the default types for this direction:
|
||||||
this.accountTypes = 'source' === this.direction ? this.sourceAllowedTypes : this.destinationAllowedTypes;
|
this.accountTypes = 'source' === this.direction ? this.sourceAllowedTypes : this.destinationAllowedTypes;
|
||||||
}
|
}
|
||||||
|
|
||||||
// update autocomplete URL:
|
// update autocomplete URL:
|
||||||
axios.get(this.getACURL(this.accountTypes, this.account.name))
|
axios.get(this.getACURL(this.accountTypes, this.accountName))
|
||||||
.then(response => {
|
.then(response => {
|
||||||
|
//console.log('Got a response!');
|
||||||
this.accounts = response.data;
|
this.accounts = response.data;
|
||||||
|
//console.log(response.data);
|
||||||
})
|
})
|
||||||
}, 300),
|
}, 300),
|
||||||
|
|
||||||
@ -130,8 +136,10 @@ export default {
|
|||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
selectedAccount: function (value) {
|
selectedAccount: function (value) {
|
||||||
this.accountName = this.account.name_with_balance;
|
//console.log('Now in selectedAccount');
|
||||||
|
//console.log(value);
|
||||||
this.account = value;
|
this.account = value;
|
||||||
|
this.accountName = this.account.name_with_balance;
|
||||||
},
|
},
|
||||||
account: function (value) {
|
account: function (value) {
|
||||||
this.updateField({field: this.accountKey, index: this.index, value: value});
|
this.updateField({field: this.accountKey, index: this.index, value: value});
|
||||||
|
@ -56,6 +56,7 @@
|
|||||||
"account_role_defaultAsset": "\u0421\u043c\u0435\u0442\u043a\u0430 \u0437\u0430 \u0430\u043a\u0442\u0438\u0432\u0438 \u043f\u043e \u043f\u043e\u0434\u0440\u0430\u0437\u0431\u0438\u0440\u0430\u043d\u0435",
|
"account_role_defaultAsset": "\u0421\u043c\u0435\u0442\u043a\u0430 \u0437\u0430 \u0430\u043a\u0442\u0438\u0432\u0438 \u043f\u043e \u043f\u043e\u0434\u0440\u0430\u0437\u0431\u0438\u0440\u0430\u043d\u0435",
|
||||||
"account_role_savingAsset": "\u0421\u043f\u0435\u0441\u0442\u043e\u0432\u043d\u0430 \u0441\u043c\u0435\u0442\u043a\u0430",
|
"account_role_savingAsset": "\u0421\u043f\u0435\u0441\u0442\u043e\u0432\u043d\u0430 \u0441\u043c\u0435\u0442\u043a\u0430",
|
||||||
"account_role_sharedAsset": "\u0421\u043c\u0435\u0442\u043a\u0430 \u0437\u0430 \u0441\u043f\u043e\u0434\u0435\u043b\u0435\u043d\u0438 \u0430\u043a\u0442\u0438\u0432\u0438",
|
"account_role_sharedAsset": "\u0421\u043c\u0435\u0442\u043a\u0430 \u0437\u0430 \u0441\u043f\u043e\u0434\u0435\u043b\u0435\u043d\u0438 \u0430\u043a\u0442\u0438\u0432\u0438",
|
||||||
|
"clear_location": "\u0418\u0437\u0447\u0438\u0441\u0442\u0438 \u043c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435\u0442\u043e",
|
||||||
"account_role_ccAsset": "\u041a\u0440\u0435\u0434\u0438\u0442\u043d\u0430 \u043a\u0430\u0440\u0442\u0430",
|
"account_role_ccAsset": "\u041a\u0440\u0435\u0434\u0438\u0442\u043d\u0430 \u043a\u0430\u0440\u0442\u0430",
|
||||||
"account_role_cashWalletAsset": "\u041f\u0430\u0440\u0438\u0447\u0435\u043d \u043f\u043e\u0440\u0442\u0444\u0435\u0439\u043b",
|
"account_role_cashWalletAsset": "\u041f\u0430\u0440\u0438\u0447\u0435\u043d \u043f\u043e\u0440\u0442\u0444\u0435\u0439\u043b",
|
||||||
"daily_budgets": "\u0414\u043d\u0435\u0432\u043d\u0438 \u0431\u044e\u0434\u0436\u0435\u0442\u0438",
|
"daily_budgets": "\u0414\u043d\u0435\u0432\u043d\u0438 \u0431\u044e\u0434\u0436\u0435\u0442\u0438",
|
||||||
|
@ -56,6 +56,7 @@
|
|||||||
"account_role_defaultAsset": "V\u00fdchoz\u00ed \u00fa\u010det aktiv",
|
"account_role_defaultAsset": "V\u00fdchoz\u00ed \u00fa\u010det aktiv",
|
||||||
"account_role_savingAsset": "Spo\u0159ic\u00ed \u00fa\u010det",
|
"account_role_savingAsset": "Spo\u0159ic\u00ed \u00fa\u010det",
|
||||||
"account_role_sharedAsset": "Sd\u00edlen\u00fd \u00fa\u010det aktiv",
|
"account_role_sharedAsset": "Sd\u00edlen\u00fd \u00fa\u010det aktiv",
|
||||||
|
"clear_location": "Vymazat um\u00edst\u011bn\u00ed",
|
||||||
"account_role_ccAsset": "Kreditn\u00ed karta",
|
"account_role_ccAsset": "Kreditn\u00ed karta",
|
||||||
"account_role_cashWalletAsset": "Pen\u011b\u017eenka",
|
"account_role_cashWalletAsset": "Pen\u011b\u017eenka",
|
||||||
"daily_budgets": "Daily budgets",
|
"daily_budgets": "Daily budgets",
|
||||||
|
@ -56,6 +56,7 @@
|
|||||||
"account_role_defaultAsset": "Standard-Bestandskonto",
|
"account_role_defaultAsset": "Standard-Bestandskonto",
|
||||||
"account_role_savingAsset": "Sparkonto",
|
"account_role_savingAsset": "Sparkonto",
|
||||||
"account_role_sharedAsset": "Gemeinsames Bestandskonto",
|
"account_role_sharedAsset": "Gemeinsames Bestandskonto",
|
||||||
|
"clear_location": "Ort leeren",
|
||||||
"account_role_ccAsset": "Kreditkarte",
|
"account_role_ccAsset": "Kreditkarte",
|
||||||
"account_role_cashWalletAsset": "Geldb\u00f6rse",
|
"account_role_cashWalletAsset": "Geldb\u00f6rse",
|
||||||
"daily_budgets": "Tagesbudgets",
|
"daily_budgets": "Tagesbudgets",
|
||||||
|
@ -56,6 +56,7 @@
|
|||||||
"account_role_defaultAsset": "\u0392\u03b1\u03c3\u03b9\u03ba\u03cc\u03c2 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc\u03c2 \u03ba\u03b5\u03c6\u03b1\u03bb\u03b1\u03af\u03bf\u03c5",
|
"account_role_defaultAsset": "\u0392\u03b1\u03c3\u03b9\u03ba\u03cc\u03c2 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc\u03c2 \u03ba\u03b5\u03c6\u03b1\u03bb\u03b1\u03af\u03bf\u03c5",
|
||||||
"account_role_savingAsset": "\u039b\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc\u03c2 \u03b1\u03c0\u03bf\u03c4\u03b1\u03bc\u03af\u03b5\u03c5\u03c3\u03b7\u03c2",
|
"account_role_savingAsset": "\u039b\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc\u03c2 \u03b1\u03c0\u03bf\u03c4\u03b1\u03bc\u03af\u03b5\u03c5\u03c3\u03b7\u03c2",
|
||||||
"account_role_sharedAsset": "\u039a\u03bf\u03b9\u03bd\u03cc\u03c2 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc\u03c2 \u03ba\u03b5\u03c6\u03b1\u03bb\u03b1\u03af\u03bf\u03c5",
|
"account_role_sharedAsset": "\u039a\u03bf\u03b9\u03bd\u03cc\u03c2 \u03bb\u03bf\u03b3\u03b1\u03c1\u03b9\u03b1\u03c3\u03bc\u03cc\u03c2 \u03ba\u03b5\u03c6\u03b1\u03bb\u03b1\u03af\u03bf\u03c5",
|
||||||
|
"clear_location": "\u0395\u03ba\u03ba\u03b1\u03b8\u03ac\u03c1\u03b9\u03c3\u03b7 \u03c4\u03bf\u03c0\u03bf\u03b8\u03b5\u03c3\u03af\u03b1\u03c2",
|
||||||
"account_role_ccAsset": "\u03a0\u03b9\u03c3\u03c4\u03c9\u03c4\u03b9\u03ba\u03ae \u03ba\u03ac\u03c1\u03c4\u03b1",
|
"account_role_ccAsset": "\u03a0\u03b9\u03c3\u03c4\u03c9\u03c4\u03b9\u03ba\u03ae \u03ba\u03ac\u03c1\u03c4\u03b1",
|
||||||
"account_role_cashWalletAsset": "\u03a0\u03bf\u03c1\u03c4\u03bf\u03c6\u03cc\u03bb\u03b9 \u03bc\u03b5\u03c4\u03c1\u03b7\u03c4\u03ce\u03bd",
|
"account_role_cashWalletAsset": "\u03a0\u03bf\u03c1\u03c4\u03bf\u03c6\u03cc\u03bb\u03b9 \u03bc\u03b5\u03c4\u03c1\u03b7\u03c4\u03ce\u03bd",
|
||||||
"daily_budgets": "\u0397\u03bc\u03b5\u03c1\u03ae\u03c3\u03b9\u03bf\u03b9 \u03c0\u03c1\u03bf\u03cb\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03bf\u03af",
|
"daily_budgets": "\u0397\u03bc\u03b5\u03c1\u03ae\u03c3\u03b9\u03bf\u03b9 \u03c0\u03c1\u03bf\u03cb\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03bf\u03af",
|
||||||
|
@ -56,6 +56,7 @@
|
|||||||
"account_role_defaultAsset": "Default asset account",
|
"account_role_defaultAsset": "Default asset account",
|
||||||
"account_role_savingAsset": "Savings account",
|
"account_role_savingAsset": "Savings account",
|
||||||
"account_role_sharedAsset": "Shared asset account",
|
"account_role_sharedAsset": "Shared asset account",
|
||||||
|
"clear_location": "Clear location",
|
||||||
"account_role_ccAsset": "Credit card",
|
"account_role_ccAsset": "Credit card",
|
||||||
"account_role_cashWalletAsset": "Cash wallet",
|
"account_role_cashWalletAsset": "Cash wallet",
|
||||||
"daily_budgets": "Daily budgets",
|
"daily_budgets": "Daily budgets",
|
||||||
|
@ -56,6 +56,7 @@
|
|||||||
"account_role_defaultAsset": "Default asset account",
|
"account_role_defaultAsset": "Default asset account",
|
||||||
"account_role_savingAsset": "Savings account",
|
"account_role_savingAsset": "Savings account",
|
||||||
"account_role_sharedAsset": "Shared asset account",
|
"account_role_sharedAsset": "Shared asset account",
|
||||||
|
"clear_location": "Clear location",
|
||||||
"account_role_ccAsset": "Credit card",
|
"account_role_ccAsset": "Credit card",
|
||||||
"account_role_cashWalletAsset": "Cash wallet",
|
"account_role_cashWalletAsset": "Cash wallet",
|
||||||
"daily_budgets": "Daily budgets",
|
"daily_budgets": "Daily budgets",
|
||||||
|
@ -56,6 +56,7 @@
|
|||||||
"account_role_defaultAsset": "Cuentas de ingresos por defecto",
|
"account_role_defaultAsset": "Cuentas de ingresos por defecto",
|
||||||
"account_role_savingAsset": "Cuentas de ahorros",
|
"account_role_savingAsset": "Cuentas de ahorros",
|
||||||
"account_role_sharedAsset": "Cuenta de ingresos compartida",
|
"account_role_sharedAsset": "Cuenta de ingresos compartida",
|
||||||
|
"clear_location": "Eliminar ubicaci\u00f3n",
|
||||||
"account_role_ccAsset": "Tarjeta de Cr\u00e9dito",
|
"account_role_ccAsset": "Tarjeta de Cr\u00e9dito",
|
||||||
"account_role_cashWalletAsset": "Billetera de efectivo",
|
"account_role_cashWalletAsset": "Billetera de efectivo",
|
||||||
"daily_budgets": "Presupuestos diarios",
|
"daily_budgets": "Presupuestos diarios",
|
||||||
|
@ -56,6 +56,7 @@
|
|||||||
"account_role_defaultAsset": "Oletusk\u00e4ytt\u00f6tili",
|
"account_role_defaultAsset": "Oletusk\u00e4ytt\u00f6tili",
|
||||||
"account_role_savingAsset": "S\u00e4\u00e4st\u00f6tili",
|
"account_role_savingAsset": "S\u00e4\u00e4st\u00f6tili",
|
||||||
"account_role_sharedAsset": "Jaettu k\u00e4ytt\u00f6tili",
|
"account_role_sharedAsset": "Jaettu k\u00e4ytt\u00f6tili",
|
||||||
|
"clear_location": "Tyhjenn\u00e4 sijainti",
|
||||||
"account_role_ccAsset": "Luottokortti",
|
"account_role_ccAsset": "Luottokortti",
|
||||||
"account_role_cashWalletAsset": "K\u00e4teinen",
|
"account_role_cashWalletAsset": "K\u00e4teinen",
|
||||||
"daily_budgets": "Daily budgets",
|
"daily_budgets": "Daily budgets",
|
||||||
|
@ -56,6 +56,7 @@
|
|||||||
"account_role_defaultAsset": "Compte d'actif par d\u00e9faut",
|
"account_role_defaultAsset": "Compte d'actif par d\u00e9faut",
|
||||||
"account_role_savingAsset": "Compte d\u2019\u00e9pargne",
|
"account_role_savingAsset": "Compte d\u2019\u00e9pargne",
|
||||||
"account_role_sharedAsset": "Compte d'actif partag\u00e9",
|
"account_role_sharedAsset": "Compte d'actif partag\u00e9",
|
||||||
|
"clear_location": "Effacer la localisation",
|
||||||
"account_role_ccAsset": "Carte de cr\u00e9dit",
|
"account_role_ccAsset": "Carte de cr\u00e9dit",
|
||||||
"account_role_cashWalletAsset": "Porte-monnaie",
|
"account_role_cashWalletAsset": "Porte-monnaie",
|
||||||
"daily_budgets": "Budgets quotidiens",
|
"daily_budgets": "Budgets quotidiens",
|
||||||
|
@ -56,6 +56,7 @@
|
|||||||
"account_role_defaultAsset": "Alap\u00e9rtelmezett eszk\u00f6zsz\u00e1mla",
|
"account_role_defaultAsset": "Alap\u00e9rtelmezett eszk\u00f6zsz\u00e1mla",
|
||||||
"account_role_savingAsset": "Megtakar\u00edt\u00e1si sz\u00e1mla",
|
"account_role_savingAsset": "Megtakar\u00edt\u00e1si sz\u00e1mla",
|
||||||
"account_role_sharedAsset": "Megosztott eszk\u00f6zsz\u00e1mla",
|
"account_role_sharedAsset": "Megosztott eszk\u00f6zsz\u00e1mla",
|
||||||
|
"clear_location": "Hely t\u00f6rl\u00e9se",
|
||||||
"account_role_ccAsset": "Hitelk\u00e1rtya",
|
"account_role_ccAsset": "Hitelk\u00e1rtya",
|
||||||
"account_role_cashWalletAsset": "K\u00e9szp\u00e9nz",
|
"account_role_cashWalletAsset": "K\u00e9szp\u00e9nz",
|
||||||
"daily_budgets": "Daily budgets",
|
"daily_budgets": "Daily budgets",
|
||||||
|
@ -56,6 +56,7 @@
|
|||||||
"account_role_defaultAsset": "Conto attivit\u00e0 predefinito",
|
"account_role_defaultAsset": "Conto attivit\u00e0 predefinito",
|
||||||
"account_role_savingAsset": "Conto risparmio",
|
"account_role_savingAsset": "Conto risparmio",
|
||||||
"account_role_sharedAsset": "Conto attivit\u00e0 condiviso",
|
"account_role_sharedAsset": "Conto attivit\u00e0 condiviso",
|
||||||
|
"clear_location": "Rimuovi dalla posizione",
|
||||||
"account_role_ccAsset": "Carta di credito",
|
"account_role_ccAsset": "Carta di credito",
|
||||||
"account_role_cashWalletAsset": "Portafoglio",
|
"account_role_cashWalletAsset": "Portafoglio",
|
||||||
"daily_budgets": "Budget giornalieri",
|
"daily_budgets": "Budget giornalieri",
|
||||||
|
@ -56,6 +56,7 @@
|
|||||||
"account_role_defaultAsset": "Standard aktivakonto",
|
"account_role_defaultAsset": "Standard aktivakonto",
|
||||||
"account_role_savingAsset": "Sparekonto",
|
"account_role_savingAsset": "Sparekonto",
|
||||||
"account_role_sharedAsset": "Delt aktivakonto",
|
"account_role_sharedAsset": "Delt aktivakonto",
|
||||||
|
"clear_location": "T\u00f8m lokasjon",
|
||||||
"account_role_ccAsset": "Kredittkort",
|
"account_role_ccAsset": "Kredittkort",
|
||||||
"account_role_cashWalletAsset": "Kontant lommebok",
|
"account_role_cashWalletAsset": "Kontant lommebok",
|
||||||
"daily_budgets": "Daily budgets",
|
"daily_budgets": "Daily budgets",
|
||||||
|
@ -56,6 +56,7 @@
|
|||||||
"account_role_defaultAsset": "Standaard betaalrekening",
|
"account_role_defaultAsset": "Standaard betaalrekening",
|
||||||
"account_role_savingAsset": "Spaarrekening",
|
"account_role_savingAsset": "Spaarrekening",
|
||||||
"account_role_sharedAsset": "Gedeelde betaalrekening",
|
"account_role_sharedAsset": "Gedeelde betaalrekening",
|
||||||
|
"clear_location": "Wis locatie",
|
||||||
"account_role_ccAsset": "Credit card",
|
"account_role_ccAsset": "Credit card",
|
||||||
"account_role_cashWalletAsset": "Cash",
|
"account_role_cashWalletAsset": "Cash",
|
||||||
"daily_budgets": "Dagelijkse budgetten",
|
"daily_budgets": "Dagelijkse budgetten",
|
||||||
|
@ -56,6 +56,7 @@
|
|||||||
"account_role_defaultAsset": "Domy\u015blne konto aktyw\u00f3w",
|
"account_role_defaultAsset": "Domy\u015blne konto aktyw\u00f3w",
|
||||||
"account_role_savingAsset": "Konto oszcz\u0119dno\u015bciowe",
|
"account_role_savingAsset": "Konto oszcz\u0119dno\u015bciowe",
|
||||||
"account_role_sharedAsset": "Wsp\u00f3\u0142dzielone konto aktyw\u00f3w",
|
"account_role_sharedAsset": "Wsp\u00f3\u0142dzielone konto aktyw\u00f3w",
|
||||||
|
"clear_location": "Wyczy\u015b\u0107 lokalizacj\u0119",
|
||||||
"account_role_ccAsset": "Karta kredytowa",
|
"account_role_ccAsset": "Karta kredytowa",
|
||||||
"account_role_cashWalletAsset": "Portfel got\u00f3wkowy",
|
"account_role_cashWalletAsset": "Portfel got\u00f3wkowy",
|
||||||
"daily_budgets": "Bud\u017cety dzienne",
|
"daily_budgets": "Bud\u017cety dzienne",
|
||||||
|
@ -56,6 +56,7 @@
|
|||||||
"account_role_defaultAsset": "Conta padr\u00e3o",
|
"account_role_defaultAsset": "Conta padr\u00e3o",
|
||||||
"account_role_savingAsset": "Conta poupan\u00e7a",
|
"account_role_savingAsset": "Conta poupan\u00e7a",
|
||||||
"account_role_sharedAsset": "Contas de ativos compartilhadas",
|
"account_role_sharedAsset": "Contas de ativos compartilhadas",
|
||||||
|
"clear_location": "Limpar localiza\u00e7\u00e3o",
|
||||||
"account_role_ccAsset": "Cart\u00e3o de cr\u00e9dito",
|
"account_role_ccAsset": "Cart\u00e3o de cr\u00e9dito",
|
||||||
"account_role_cashWalletAsset": "Carteira de dinheiro",
|
"account_role_cashWalletAsset": "Carteira de dinheiro",
|
||||||
"daily_budgets": "Or\u00e7amentos di\u00e1rios",
|
"daily_budgets": "Or\u00e7amentos di\u00e1rios",
|
||||||
|
@ -56,6 +56,7 @@
|
|||||||
"account_role_defaultAsset": "Conta de activos padr\u00e3o",
|
"account_role_defaultAsset": "Conta de activos padr\u00e3o",
|
||||||
"account_role_savingAsset": "Contas poupan\u00e7a",
|
"account_role_savingAsset": "Contas poupan\u00e7a",
|
||||||
"account_role_sharedAsset": "Conta de activos partilhados",
|
"account_role_sharedAsset": "Conta de activos partilhados",
|
||||||
|
"clear_location": "Limpar localiza\u00e7\u00e3o",
|
||||||
"account_role_ccAsset": "Cart\u00e3o de credito",
|
"account_role_ccAsset": "Cart\u00e3o de credito",
|
||||||
"account_role_cashWalletAsset": "Carteira de dinheiro",
|
"account_role_cashWalletAsset": "Carteira de dinheiro",
|
||||||
"daily_budgets": "Or\u00e7amento di\u00e1rio",
|
"daily_budgets": "Or\u00e7amento di\u00e1rio",
|
||||||
|
@ -56,6 +56,7 @@
|
|||||||
"account_role_defaultAsset": "Contul implicit activ",
|
"account_role_defaultAsset": "Contul implicit activ",
|
||||||
"account_role_savingAsset": "Cont de economii",
|
"account_role_savingAsset": "Cont de economii",
|
||||||
"account_role_sharedAsset": "Contul de active partajat",
|
"account_role_sharedAsset": "Contul de active partajat",
|
||||||
|
"clear_location": "\u0218terge\u021bi loca\u021bia",
|
||||||
"account_role_ccAsset": "Card de credit",
|
"account_role_ccAsset": "Card de credit",
|
||||||
"account_role_cashWalletAsset": "Cash - Numerar",
|
"account_role_cashWalletAsset": "Cash - Numerar",
|
||||||
"daily_budgets": "Daily budgets",
|
"daily_budgets": "Daily budgets",
|
||||||
|
@ -56,6 +56,7 @@
|
|||||||
"account_role_defaultAsset": "\u0421\u0447\u0451\u0442 \u043f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e",
|
"account_role_defaultAsset": "\u0421\u0447\u0451\u0442 \u043f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e",
|
||||||
"account_role_savingAsset": "\u0421\u0431\u0435\u0440\u0435\u0433\u0430\u0442\u0435\u043b\u044c\u043d\u044b\u0439 \u0441\u0447\u0435\u0442",
|
"account_role_savingAsset": "\u0421\u0431\u0435\u0440\u0435\u0433\u0430\u0442\u0435\u043b\u044c\u043d\u044b\u0439 \u0441\u0447\u0435\u0442",
|
||||||
"account_role_sharedAsset": "\u041e\u0431\u0449\u0438\u0439 \u043e\u0441\u043d\u043e\u0432\u043d\u043e\u0439 \u0441\u0447\u0451\u0442",
|
"account_role_sharedAsset": "\u041e\u0431\u0449\u0438\u0439 \u043e\u0441\u043d\u043e\u0432\u043d\u043e\u0439 \u0441\u0447\u0451\u0442",
|
||||||
|
"clear_location": "\u041e\u0447\u0438\u0441\u0442\u0438\u0442\u044c \u043c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435",
|
||||||
"account_role_ccAsset": "\u041a\u0440\u0435\u0434\u0438\u0442\u043d\u0430\u044f \u043a\u0430\u0440\u0442\u0430",
|
"account_role_ccAsset": "\u041a\u0440\u0435\u0434\u0438\u0442\u043d\u0430\u044f \u043a\u0430\u0440\u0442\u0430",
|
||||||
"account_role_cashWalletAsset": "\u041d\u0430\u043b\u0438\u0447\u043d\u044b\u0435",
|
"account_role_cashWalletAsset": "\u041d\u0430\u043b\u0438\u0447\u043d\u044b\u0435",
|
||||||
"daily_budgets": "\u0411\u044e\u0434\u0436\u0435\u0442\u044b \u043d\u0430 \u0434\u0435\u043d\u044c",
|
"daily_budgets": "\u0411\u044e\u0434\u0436\u0435\u0442\u044b \u043d\u0430 \u0434\u0435\u043d\u044c",
|
||||||
|
@ -56,6 +56,7 @@
|
|||||||
"account_role_defaultAsset": "Predvolen\u00fd \u00fa\u010det akt\u00edv",
|
"account_role_defaultAsset": "Predvolen\u00fd \u00fa\u010det akt\u00edv",
|
||||||
"account_role_savingAsset": "\u0160etriaci \u00fa\u010det",
|
"account_role_savingAsset": "\u0160etriaci \u00fa\u010det",
|
||||||
"account_role_sharedAsset": "Zdie\u013ean\u00fd \u00fa\u010det akt\u00edv",
|
"account_role_sharedAsset": "Zdie\u013ean\u00fd \u00fa\u010det akt\u00edv",
|
||||||
|
"clear_location": "Odstr\u00e1ni\u0165 poz\u00edciu",
|
||||||
"account_role_ccAsset": "Kreditn\u00e1 karta",
|
"account_role_ccAsset": "Kreditn\u00e1 karta",
|
||||||
"account_role_cashWalletAsset": "Pe\u0148a\u017eenka",
|
"account_role_cashWalletAsset": "Pe\u0148a\u017eenka",
|
||||||
"daily_budgets": "Denn\u00e9 rozpo\u010dty",
|
"daily_budgets": "Denn\u00e9 rozpo\u010dty",
|
||||||
|
@ -56,6 +56,7 @@
|
|||||||
"account_role_defaultAsset": "F\u00f6rvalt tillg\u00e5ngskonto",
|
"account_role_defaultAsset": "F\u00f6rvalt tillg\u00e5ngskonto",
|
||||||
"account_role_savingAsset": "Sparkonto",
|
"account_role_savingAsset": "Sparkonto",
|
||||||
"account_role_sharedAsset": "Delat tillg\u00e5ngskonto",
|
"account_role_sharedAsset": "Delat tillg\u00e5ngskonto",
|
||||||
|
"clear_location": "Rena plats",
|
||||||
"account_role_ccAsset": "Kreditkort",
|
"account_role_ccAsset": "Kreditkort",
|
||||||
"account_role_cashWalletAsset": "Pl\u00e5nbok",
|
"account_role_cashWalletAsset": "Pl\u00e5nbok",
|
||||||
"daily_budgets": "Dagliga budgetar",
|
"daily_budgets": "Dagliga budgetar",
|
||||||
|
@ -56,6 +56,7 @@
|
|||||||
"account_role_defaultAsset": "t\u00e0i kho\u1ea3n m\u1eb7c \u0111\u1ecbnh",
|
"account_role_defaultAsset": "t\u00e0i kho\u1ea3n m\u1eb7c \u0111\u1ecbnh",
|
||||||
"account_role_savingAsset": "T\u00e0i kho\u1ea3n ti\u1ebft ki\u1ec7m",
|
"account_role_savingAsset": "T\u00e0i kho\u1ea3n ti\u1ebft ki\u1ec7m",
|
||||||
"account_role_sharedAsset": "t\u00e0i kho\u1ea3n d\u00f9ng chung",
|
"account_role_sharedAsset": "t\u00e0i kho\u1ea3n d\u00f9ng chung",
|
||||||
|
"clear_location": "X\u00f3a v\u1ecb tr\u00ed",
|
||||||
"account_role_ccAsset": "Th\u1ebb t\u00edn d\u1ee5ng",
|
"account_role_ccAsset": "Th\u1ebb t\u00edn d\u1ee5ng",
|
||||||
"account_role_cashWalletAsset": "V\u00ed ti\u1ec1n m\u1eb7t",
|
"account_role_cashWalletAsset": "V\u00ed ti\u1ec1n m\u1eb7t",
|
||||||
"daily_budgets": "Daily budgets",
|
"daily_budgets": "Daily budgets",
|
||||||
|
@ -56,6 +56,7 @@
|
|||||||
"account_role_defaultAsset": "\u9884\u8bbe\u8d44\u4ea7\u5e10\u6237",
|
"account_role_defaultAsset": "\u9884\u8bbe\u8d44\u4ea7\u5e10\u6237",
|
||||||
"account_role_savingAsset": "\u50a8\u84c4\u5e10\u6237",
|
"account_role_savingAsset": "\u50a8\u84c4\u5e10\u6237",
|
||||||
"account_role_sharedAsset": "\u5171\u7528\u8d44\u4ea7\u5e10\u6237",
|
"account_role_sharedAsset": "\u5171\u7528\u8d44\u4ea7\u5e10\u6237",
|
||||||
|
"clear_location": "\u6e05\u9664\u4f4d\u7f6e",
|
||||||
"account_role_ccAsset": "\u4fe1\u7528\u5361",
|
"account_role_ccAsset": "\u4fe1\u7528\u5361",
|
||||||
"account_role_cashWalletAsset": "\u73b0\u91d1\u94b1\u5305",
|
"account_role_cashWalletAsset": "\u73b0\u91d1\u94b1\u5305",
|
||||||
"daily_budgets": "Daily budgets",
|
"daily_budgets": "Daily budgets",
|
||||||
|
@ -56,6 +56,7 @@
|
|||||||
"account_role_defaultAsset": "\u9810\u8a2d\u8cc7\u7522\u5e33\u6236",
|
"account_role_defaultAsset": "\u9810\u8a2d\u8cc7\u7522\u5e33\u6236",
|
||||||
"account_role_savingAsset": "\u5132\u84c4\u5e33\u6236",
|
"account_role_savingAsset": "\u5132\u84c4\u5e33\u6236",
|
||||||
"account_role_sharedAsset": "\u5171\u7528\u8cc7\u7522\u5e33\u6236",
|
"account_role_sharedAsset": "\u5171\u7528\u8cc7\u7522\u5e33\u6236",
|
||||||
|
"clear_location": "\u6e05\u9664\u4f4d\u7f6e",
|
||||||
"account_role_ccAsset": "\u4fe1\u7528\u5361",
|
"account_role_ccAsset": "\u4fe1\u7528\u5361",
|
||||||
"account_role_cashWalletAsset": "\u73fe\u91d1\u9322\u5305",
|
"account_role_cashWalletAsset": "\u73fe\u91d1\u9322\u5305",
|
||||||
"daily_budgets": "Daily budgets",
|
"daily_budgets": "Daily budgets",
|
||||||
|
2
frontend/webpack.mix.js
vendored
2
frontend/webpack.mix.js
vendored
@ -22,6 +22,7 @@ const mix = require('laravel-mix');
|
|||||||
require('laravel-mix-bundle-analyzer');
|
require('laravel-mix-bundle-analyzer');
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// production
|
// production
|
||||||
mix.webpackConfig({
|
mix.webpackConfig({
|
||||||
resolve: {
|
resolve: {
|
||||||
@ -74,6 +75,7 @@ mix
|
|||||||
// move to right dir
|
// move to right dir
|
||||||
.copy('public/js','../public/v2/js')
|
.copy('public/js','../public/v2/js')
|
||||||
.copy('fonts','../public/fonts')
|
.copy('fonts','../public/fonts')
|
||||||
|
.copy('images','../public/images')
|
||||||
.copy('public/css','../public/v2/css')
|
.copy('public/css','../public/v2/css')
|
||||||
;
|
;
|
||||||
|
|
||||||
|
@ -839,9 +839,9 @@
|
|||||||
integrity sha512-shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw==
|
integrity sha512-shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw==
|
||||||
|
|
||||||
"@popperjs/core@^2.6.0":
|
"@popperjs/core@^2.6.0":
|
||||||
version "2.6.0"
|
version "2.7.0"
|
||||||
resolved "https://registry.yarnpkg.com/@popperjs/core/-/core-2.6.0.tgz#f022195afdfc942e088ee2101285a1d31c7d727f"
|
resolved "https://registry.yarnpkg.com/@popperjs/core/-/core-2.7.0.tgz#5f7760965170f7f1e2910d2498c5be88b47a2a8c"
|
||||||
integrity sha512-cPqjjzuFWNK3BSKLm0abspP0sp/IGOli4p5I5fKFAzdS8fvjdOwDCfZqAaIiXd9lPkOWi3SUUfZof3hEb7J/uw==
|
integrity sha512-V3WyEc8ZyAuOQ2fpFuTuYYOd2tV4NePeSdxaHYgYAOs7ERLxlcFi2XsmgI5LJFdAUmJKXsg8jaIiVTkTHQygQw==
|
||||||
|
|
||||||
"@types/chart.js@^2.7.55":
|
"@types/chart.js@^2.7.55":
|
||||||
version "2.9.30"
|
version "2.9.30"
|
||||||
@ -2626,9 +2626,9 @@ ejs@^2.6.1:
|
|||||||
integrity sha512-7vmuyh5+kuUyJKePhQfRQBhXV5Ce+RnaeeQArKu1EAMpL3WbgMt5WG6uQZpEVvYSSsxMXRKOewtDk9RaTKXRlA==
|
integrity sha512-7vmuyh5+kuUyJKePhQfRQBhXV5Ce+RnaeeQArKu1EAMpL3WbgMt5WG6uQZpEVvYSSsxMXRKOewtDk9RaTKXRlA==
|
||||||
|
|
||||||
electron-to-chromium@^1.3.649:
|
electron-to-chromium@^1.3.649:
|
||||||
version "1.3.665"
|
version "1.3.666"
|
||||||
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.665.tgz#6d0937376f6a919c0f289202c4be77790a6175e5"
|
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.666.tgz#59f3ce1e45b860a0ebe439b72664354efbb8bc62"
|
||||||
integrity sha512-LIjx1JheOz7LM8DMEQ2tPnbBzJ4nVG1MKutsbEMLnJfwfVdPIsyagqfLp56bOWhdBrYGXWHaTayYkllIU2TauA==
|
integrity sha512-/mP4HFQ0fKIX4sXltG6kfcoGrfNDZwCIyWbH2SIcVaa9u7Rm0HKjambiHNg5OEruicTl9s1EwbERLwxZwk19aw==
|
||||||
|
|
||||||
elliptic@^6.5.3:
|
elliptic@^6.5.3:
|
||||||
version "6.5.4"
|
version "6.5.4"
|
||||||
@ -4233,6 +4233,11 @@ last-call-webpack-plugin@^3.0.0:
|
|||||||
lodash "^4.17.5"
|
lodash "^4.17.5"
|
||||||
webpack-sources "^1.1.0"
|
webpack-sources "^1.1.0"
|
||||||
|
|
||||||
|
leaflet@^1.7.1:
|
||||||
|
version "1.7.1"
|
||||||
|
resolved "https://registry.yarnpkg.com/leaflet/-/leaflet-1.7.1.tgz#10d684916edfe1bf41d688a3b97127c0322a2a19"
|
||||||
|
integrity sha512-/xwPEBidtg69Q3HlqPdU3DnrXQOvQU/CCHA1tcDQVzOwm91YMYaILjNp7L4Eaw5Z4sOYdbBz6koWyibppd8Zqw==
|
||||||
|
|
||||||
loader-runner@^2.4.0:
|
loader-runner@^2.4.0:
|
||||||
version "2.4.0"
|
version "2.4.0"
|
||||||
resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.4.0.tgz#ed47066bfe534d7e84c4c7b9998c2a75607d9357"
|
resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.4.0.tgz#ed47066bfe534d7e84c4c7b9998c2a75607d9357"
|
||||||
@ -6682,9 +6687,9 @@ type@^1.0.1:
|
|||||||
integrity sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg==
|
integrity sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg==
|
||||||
|
|
||||||
type@^2.0.0:
|
type@^2.0.0:
|
||||||
version "2.2.0"
|
version "2.3.0"
|
||||||
resolved "https://registry.yarnpkg.com/type/-/type-2.2.0.tgz#3edd448793f517d8b9dd108b486a043f5befd91f"
|
resolved "https://registry.yarnpkg.com/type/-/type-2.3.0.tgz#ada7c045f07ead08abf9e2edd29be1a0c0661132"
|
||||||
integrity sha512-M/u37b4oSGlusaU8ZB96BfFPWQ8MbsZYXB+kXGMiDj6IKinkcNaQvmirBuWj8mAXqP6LYn1rQvbTYum3yPhaOA==
|
integrity sha512-rgPIqOdfK/4J9FhiVrZ3cveAjRRo5rsQBAIhnylX874y1DX/kEKSVdLsnuHB6l1KTjHyU01VjiMBHgU2adejyg==
|
||||||
|
|
||||||
typedarray@^0.0.6:
|
typedarray@^0.0.6:
|
||||||
version "0.0.6"
|
version "0.0.6"
|
||||||
@ -6964,6 +6969,11 @@ vue-typeahead-bootstrap@^2.5.5:
|
|||||||
resize-observer-polyfill "^1.5.0"
|
resize-observer-polyfill "^1.5.0"
|
||||||
vue "^2.5.17"
|
vue "^2.5.17"
|
||||||
|
|
||||||
|
vue2-leaflet@^2.6.0:
|
||||||
|
version "2.6.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/vue2-leaflet/-/vue2-leaflet-2.6.0.tgz#c83c60a745fbc2a74d9dbd0f75b2a5ae07d220a9"
|
||||||
|
integrity sha512-JG+w9TtNuk1yRpPta+RjzH6J+opdRUPzSo8UuBnwk+a/6XD0f2tsaB6g3D6ZpBgIE4wZA2dbZ0dZFz2ulYMj3A==
|
||||||
|
|
||||||
vue@^2.5.17, vue@^2.6.10, vue@^2.6.12:
|
vue@^2.5.17, vue@^2.6.10, vue@^2.6.12:
|
||||||
version "2.6.12"
|
version "2.6.12"
|
||||||
resolved "https://registry.yarnpkg.com/vue/-/vue-2.6.12.tgz#f5ebd4fa6bd2869403e29a896aed4904456c9123"
|
resolved "https://registry.yarnpkg.com/vue/-/vue-2.6.12.tgz#f5ebd4fa6bd2869403e29a896aed4904456c9123"
|
||||||
|
BIN
public/images/vendor/leaflet/dist/layers-2x.png
vendored
Executable file
BIN
public/images/vendor/leaflet/dist/layers-2x.png
vendored
Executable file
Binary file not shown.
After Width: | Height: | Size: 1.2 KiB |
BIN
public/images/vendor/leaflet/dist/layers.png
vendored
Executable file
BIN
public/images/vendor/leaflet/dist/layers.png
vendored
Executable file
Binary file not shown.
After Width: | Height: | Size: 696 B |
BIN
public/images/vendor/leaflet/dist/marker-icon-2x.png
vendored
Executable file
BIN
public/images/vendor/leaflet/dist/marker-icon-2x.png
vendored
Executable file
Binary file not shown.
After Width: | Height: | Size: 2.4 KiB |
BIN
public/images/vendor/leaflet/dist/marker-icon.png
vendored
Executable file
BIN
public/images/vendor/leaflet/dist/marker-icon.png
vendored
Executable file
Binary file not shown.
After Width: | Height: | Size: 1.4 KiB |
BIN
public/images/vendor/leaflet/dist/marker-shadow.png
vendored
Executable file
BIN
public/images/vendor/leaflet/dist/marker-shadow.png
vendored
Executable file
Binary file not shown.
After Width: | Height: | Size: 618 B |
2
public/v2/js/accounts/index.js
vendored
2
public/v2/js/accounts/index.js
vendored
@ -1,2 +1,2 @@
|
|||||||
(window.webpackJsonp=window.webpackJsonp||[]).push([[2],{294:function(t,s,a){t.exports=a(413)},413:function(t,s,a){"use strict";a.r(s);var e={name:"Index",props:{accountTypes:String},data:function(){return{accounts:[]}},created:function(){var t=this;axios.get("./api/v1/accounts?type="+this.$props.accountTypes).then((function(s){t.loadAccounts(s.data.data)}))},methods:{loadAccounts:function(t){for(var s in t)if(t.hasOwnProperty(s)&&/^0$|^[1-9]\d*$/.test(s)&&s<=4294967294){var a=t[s];"asset"===a.attributes.type&&null!==a.attributes.account_role&&(a.attributes.account_role=this.$t("firefly.account_role_"+a.attributes.account_role)),"asset"===a.attributes.type&&null===a.attributes.account_role&&(a.attributes.account_role=this.$t("firefly.Default asset account")),null===a.attributes.iban&&(a.attributes.iban=a.attributes.account_number),this.accounts.push(a)}}}},c=a(1),n=Object(c.a)(e,(function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",{staticClass:"row"},[a("div",{staticClass:"col-lg-12 col-md-12 col-sm-12 col-xs-12"},[a("div",{staticClass:"card"},[t._m(0),t._v(" "),a("div",{staticClass:"card-body p-0"},[a("table",{staticClass:"table table-sm table-striped"},[a("caption",{staticStyle:{display:"none"}},[t._v(t._s(t.$t("list.name")))]),t._v(" "),a("thead",[a("tr",[a("th",{attrs:{scope:"col"}},[t._v(" ")]),t._v(" "),a("th",{attrs:{scope:"col"}},[t._v(t._s(t.$t("list.name")))]),t._v(" "),"asset"===t.$props.accountTypes?a("th",{attrs:{scope:"col"}},[t._v(t._s(t.$t("list.role")))]):t._e(),t._v(" "),a("th",{attrs:{scope:"col"}},[t._v(t._s(t.$t("list.iban")))]),t._v(" "),a("th",{staticStyle:{"text-align":"right"},attrs:{scope:"col"}},[t._v(t._s(t.$t("list.currentBalance")))]),t._v(" "),a("th",{attrs:{scope:"col"}},[t._v(t._s(t.$t("list.balanceDiff")))])])]),t._v(" "),a("tbody",t._l(t.accounts,(function(s){return a("tr",[a("td",[a("div",{staticClass:"btn-group btn-group-xs"},[a("a",{staticClass:"btn btn-xs btn-default",attrs:{href:"./accounts/edit/"+s.id}},[a("i",{staticClass:"fa fas fa-pencil-alt"})]),t._v(" "),a("a",{staticClass:"btn btn-xs btn-danger",attrs:{href:"./accounts/delete/"+s.id}},[a("i",{staticClass:"fa far fa-trash"})])])]),t._v(" "),a("td",[t._v(t._s(s.attributes.name)+"\n ")]),t._v(" "),"asset"===t.$props.accountTypes?a("td",[t._v("\n "+t._s(s.attributes.account_role)+"\n ")]):t._e(),t._v(" "),a("td",[t._v("\n "+t._s(s.attributes.iban)+"\n ")]),t._v(" "),a("td",{staticStyle:{"text-align":"right"}},[t._v("\n "+t._s(Intl.NumberFormat("en-US",{style:"currency",currency:s.attributes.currency_code}).format(s.attributes.current_balance))+"\n ")]),t._v(" "),a("td",[t._v("diff")])])})),0)])]),t._v(" "),a("div",{staticClass:"card-footer"},[t._v("\n Footer stuff.\n ")])])])])}),[function(){var t=this.$createElement,s=this._self._c||t;return s("div",{staticClass:"card-header"},[s("h3",{staticClass:"card-title"},[this._v("Title thing")]),this._v(" "),s("div",{staticClass:"card-tools"},[s("div",{staticClass:"input-group input-group-sm",staticStyle:{width:"150px"}},[s("input",{staticClass:"form-control float-right",attrs:{type:"text",name:"table_search",placeholder:"Search"}}),this._v(" "),s("div",{staticClass:"input-group-append"},[s("button",{staticClass:"btn btn-default",attrs:{type:"submit"}},[s("i",{staticClass:"fas fa-search"})])])])])])}],!1,null,"d668ce46",null).exports;a(14);var i=a(17),r={};new Vue({i18n:i,render:function(t){return t(n,{props:r})}}).$mount("#accounts")}},[[294,0,1]]]);
|
(window.webpackJsonp=window.webpackJsonp||[]).push([[2],{297:function(t,s,a){t.exports=a(422)},422:function(t,s,a){"use strict";a.r(s);var e={name:"Index",props:{accountTypes:String},data:function(){return{accounts:[]}},created:function(){var t=this;axios.get("./api/v1/accounts?type="+this.$props.accountTypes).then((function(s){t.loadAccounts(s.data.data)}))},methods:{loadAccounts:function(t){for(var s in t)if(t.hasOwnProperty(s)&&/^0$|^[1-9]\d*$/.test(s)&&s<=4294967294){var a=t[s];"asset"===a.attributes.type&&null!==a.attributes.account_role&&(a.attributes.account_role=this.$t("firefly.account_role_"+a.attributes.account_role)),"asset"===a.attributes.type&&null===a.attributes.account_role&&(a.attributes.account_role=this.$t("firefly.Default asset account")),null===a.attributes.iban&&(a.attributes.iban=a.attributes.account_number),this.accounts.push(a)}}}},c=a(1),n=Object(c.a)(e,(function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",{staticClass:"row"},[a("div",{staticClass:"col-lg-12 col-md-12 col-sm-12 col-xs-12"},[a("div",{staticClass:"card"},[t._m(0),t._v(" "),a("div",{staticClass:"card-body p-0"},[a("table",{staticClass:"table table-sm table-striped"},[a("caption",{staticStyle:{display:"none"}},[t._v(t._s(t.$t("list.name")))]),t._v(" "),a("thead",[a("tr",[a("th",{attrs:{scope:"col"}},[t._v(" ")]),t._v(" "),a("th",{attrs:{scope:"col"}},[t._v(t._s(t.$t("list.name")))]),t._v(" "),"asset"===t.$props.accountTypes?a("th",{attrs:{scope:"col"}},[t._v(t._s(t.$t("list.role")))]):t._e(),t._v(" "),a("th",{attrs:{scope:"col"}},[t._v(t._s(t.$t("list.iban")))]),t._v(" "),a("th",{staticStyle:{"text-align":"right"},attrs:{scope:"col"}},[t._v(t._s(t.$t("list.currentBalance")))]),t._v(" "),a("th",{attrs:{scope:"col"}},[t._v(t._s(t.$t("list.balanceDiff")))])])]),t._v(" "),a("tbody",t._l(t.accounts,(function(s){return a("tr",[a("td",[a("div",{staticClass:"btn-group btn-group-xs"},[a("a",{staticClass:"btn btn-xs btn-default",attrs:{href:"./accounts/edit/"+s.id}},[a("i",{staticClass:"fa fas fa-pencil-alt"})]),t._v(" "),a("a",{staticClass:"btn btn-xs btn-danger",attrs:{href:"./accounts/delete/"+s.id}},[a("i",{staticClass:"fa far fa-trash"})])])]),t._v(" "),a("td",[t._v(t._s(s.attributes.name)+"\n ")]),t._v(" "),"asset"===t.$props.accountTypes?a("td",[t._v("\n "+t._s(s.attributes.account_role)+"\n ")]):t._e(),t._v(" "),a("td",[t._v("\n "+t._s(s.attributes.iban)+"\n ")]),t._v(" "),a("td",{staticStyle:{"text-align":"right"}},[t._v("\n "+t._s(Intl.NumberFormat("en-US",{style:"currency",currency:s.attributes.currency_code}).format(s.attributes.current_balance))+"\n ")]),t._v(" "),a("td",[t._v("diff")])])})),0)])]),t._v(" "),a("div",{staticClass:"card-footer"},[t._v("\n Footer stuff.\n ")])])])])}),[function(){var t=this.$createElement,s=this._self._c||t;return s("div",{staticClass:"card-header"},[s("h3",{staticClass:"card-title"},[this._v("Title thing")]),this._v(" "),s("div",{staticClass:"card-tools"},[s("div",{staticClass:"input-group input-group-sm",staticStyle:{width:"150px"}},[s("input",{staticClass:"form-control float-right",attrs:{type:"text",name:"table_search",placeholder:"Search"}}),this._v(" "),s("div",{staticClass:"input-group-append"},[s("button",{staticClass:"btn btn-default",attrs:{type:"submit"}},[s("i",{staticClass:"fas fa-search"})])])])])])}],!1,null,"d668ce46",null).exports;a(15);var i=a(18),r={};new Vue({i18n:i,render:function(t){return t(n,{props:r})}}).$mount("#accounts")}},[[297,0,1]]]);
|
||||||
//# sourceMappingURL=index.js.map
|
//# sourceMappingURL=index.js.map
|
2
public/v2/js/accounts/show.js
vendored
2
public/v2/js/accounts/show.js
vendored
@ -1,2 +1,2 @@
|
|||||||
(window.webpackJsonp=window.webpackJsonp||[]).push([[3],{295:function(n,e,t){n.exports=t(414)},414:function(n,e,t){"use strict";t.r(e);var o={name:"Show"},r=t(1),s=Object(r.a)(o,(function(){var n=this.$createElement;return(this._self._c||n)("div",[this._v("\n I am a show\n")])}),[],!1,null,"dcd61a50",null).exports;t(14);var c=t(17),u={};new Vue({i18n:c,render:function(n){return n(s,{props:u})}}).$mount("#accounts_show")}},[[295,0,1]]]);
|
(window.webpackJsonp=window.webpackJsonp||[]).push([[3],{298:function(n,e,t){n.exports=t(423)},423:function(n,e,t){"use strict";t.r(e);var o={name:"Show"},r=t(1),s=Object(r.a)(o,(function(){var n=this.$createElement;return(this._self._c||n)("div",[this._v("\n I am a show\n")])}),[],!1,null,"dcd61a50",null).exports;t(15);var c=t(18),u={};new Vue({i18n:c,render:function(n){return n(s,{props:u})}}).$mount("#accounts_show")}},[[298,0,1]]]);
|
||||||
//# sourceMappingURL=show.js.map
|
//# sourceMappingURL=show.js.map
|
2
public/v2/js/dashboard.js
vendored
2
public/v2/js/dashboard.js
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
2
public/v2/js/empty.js
vendored
2
public/v2/js/empty.js
vendored
@ -1,2 +1,2 @@
|
|||||||
(window.webpackJsonp=window.webpackJsonp||[]).push([[5],{291:function(n,o,p){n.exports=p(292)},292:function(n,o,p){p(14)}},[[291,0,1]]]);
|
(window.webpackJsonp=window.webpackJsonp||[]).push([[5],{294:function(n,o,p){n.exports=p(295)},295:function(n,o,p){p(15)}},[[294,0,1]]]);
|
||||||
//# sourceMappingURL=empty.js.map
|
//# sourceMappingURL=empty.js.map
|
2
public/v2/js/new-user/index.js
vendored
2
public/v2/js/new-user/index.js
vendored
@ -1,2 +1,2 @@
|
|||||||
(window.webpackJsonp=window.webpackJsonp||[]).push([[6],{293:function(a,e,t){a.exports=t(412)},412:function(a,e,t){"use strict";t.r(e);var s={name:"Index"},n=t(1),i=Object(n.a)(s,(function(){var a=this.$createElement;this._self._c;return this._m(0)}),[function(){var a=this,e=a.$createElement,t=a._self._c||e;return t("div",{staticClass:"row"},[t("div",{staticClass:"col"},[t("div",{attrs:{id:"accordion"}},[t("div",{staticClass:"card card-primary"},[t("div",{staticClass:"card-header"},[t("h4",{staticClass:"card-title"},[t("a",{attrs:{"data-toggle":"collapse","data-parent":"#accordion",href:"#collapseOne"}},[a._v("\n Create new accounts\n ")])])]),a._v(" "),t("div",{staticClass:"panel-collapse collapse show",attrs:{id:"collapseOne"}},[t("div",{staticClass:"card-body"},[t("div",{staticClass:"row"},[t("div",{staticClass:"col"},[t("p",[a._v("Explain")])])]),a._v(" "),t("div",{staticClass:"row"},[t("div",{staticClass:"col-lg-4"},[a._v("\n A\n ")]),a._v(" "),t("div",{staticClass:"col-lg-8"},[a._v("\n B\n ")])])])])]),a._v(" "),t("div",{staticClass:"card card-secondary"},[t("div",{staticClass:"card-header"},[t("h4",{staticClass:"card-title"},[t("a",{attrs:{"data-toggle":"collapse","data-parent":"#accordion",href:"#collapseTwo"}},[a._v("\n Collapsible Group Danger\n ")])])]),a._v(" "),t("div",{staticClass:"panel-collapse collapse",attrs:{id:"collapseTwo"}},[t("div",{staticClass:"card-body"},[a._v("\n Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid.\n 3\n wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt\n laborum\n eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee\n nulla\n assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred\n nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat craft\n beer\n farm-to-table, raw denim aesthetic synth nesciunt you probably haven't heard of them accusamus\n labore sustainable VHS.\n ")])])]),a._v(" "),t("div",{staticClass:"card card-secondary"},[t("div",{staticClass:"card-header"},[t("h4",{staticClass:"card-title"},[t("a",{attrs:{"data-toggle":"collapse","data-parent":"#accordion",href:"#collapseThree"}},[a._v("\n Collapsible Group Success\n ")])])]),a._v(" "),t("div",{staticClass:"panel-collapse collapse",attrs:{id:"collapseThree"}},[t("div",{staticClass:"card-body"},[a._v("\n Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid.\n 3\n wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt\n laborum\n eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee\n nulla\n assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred\n nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat craft\n beer\n farm-to-table, raw denim aesthetic synth nesciunt you probably haven't heard of them accusamus\n labore sustainable VHS.\n ")])])])])])])}],!1,null,"5c520d02",null).exports;t(14);var c=t(17),r={};new Vue({i18n:c,render:function(a){return a(i,{props:r})}}).$mount("#newuser")}},[[293,0,1]]]);
|
(window.webpackJsonp=window.webpackJsonp||[]).push([[6],{296:function(a,e,t){a.exports=t(421)},421:function(a,e,t){"use strict";t.r(e);var s={name:"Index"},n=t(1),i=Object(n.a)(s,(function(){var a=this.$createElement;this._self._c;return this._m(0)}),[function(){var a=this,e=a.$createElement,t=a._self._c||e;return t("div",{staticClass:"row"},[t("div",{staticClass:"col"},[t("div",{attrs:{id:"accordion"}},[t("div",{staticClass:"card card-primary"},[t("div",{staticClass:"card-header"},[t("h4",{staticClass:"card-title"},[t("a",{attrs:{"data-toggle":"collapse","data-parent":"#accordion",href:"#collapseOne"}},[a._v("\n Create new accounts\n ")])])]),a._v(" "),t("div",{staticClass:"panel-collapse collapse show",attrs:{id:"collapseOne"}},[t("div",{staticClass:"card-body"},[t("div",{staticClass:"row"},[t("div",{staticClass:"col"},[t("p",[a._v("Explain")])])]),a._v(" "),t("div",{staticClass:"row"},[t("div",{staticClass:"col-lg-4"},[a._v("\n A\n ")]),a._v(" "),t("div",{staticClass:"col-lg-8"},[a._v("\n B\n ")])])])])]),a._v(" "),t("div",{staticClass:"card card-secondary"},[t("div",{staticClass:"card-header"},[t("h4",{staticClass:"card-title"},[t("a",{attrs:{"data-toggle":"collapse","data-parent":"#accordion",href:"#collapseTwo"}},[a._v("\n Collapsible Group Danger\n ")])])]),a._v(" "),t("div",{staticClass:"panel-collapse collapse",attrs:{id:"collapseTwo"}},[t("div",{staticClass:"card-body"},[a._v("\n Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid.\n 3\n wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt\n laborum\n eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee\n nulla\n assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred\n nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat craft\n beer\n farm-to-table, raw denim aesthetic synth nesciunt you probably haven't heard of them accusamus\n labore sustainable VHS.\n ")])])]),a._v(" "),t("div",{staticClass:"card card-secondary"},[t("div",{staticClass:"card-header"},[t("h4",{staticClass:"card-title"},[t("a",{attrs:{"data-toggle":"collapse","data-parent":"#accordion",href:"#collapseThree"}},[a._v("\n Collapsible Group Success\n ")])])]),a._v(" "),t("div",{staticClass:"panel-collapse collapse",attrs:{id:"collapseThree"}},[t("div",{staticClass:"card-body"},[a._v("\n Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid.\n 3\n wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt\n laborum\n eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee\n nulla\n assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred\n nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat craft\n beer\n farm-to-table, raw denim aesthetic synth nesciunt you probably haven't heard of them accusamus\n labore sustainable VHS.\n ")])])])])])])}],!1,null,"5c520d02",null).exports;t(15);var c=t(18),r={};new Vue({i18n:c,render:function(a){return a(i,{props:r})}}).$mount("#newuser")}},[[296,0,1]]]);
|
||||||
//# sourceMappingURL=index.js.map
|
//# sourceMappingURL=index.js.map
|
2
public/v2/js/register.js
vendored
2
public/v2/js/register.js
vendored
@ -1,2 +1,2 @@
|
|||||||
(window.webpackJsonp=window.webpackJsonp||[]).push([[7],{407:function(n,o,w){n.exports=w(408)},408:function(n,o,w){w(409)},409:function(n,o,w){window.$=window.jQuery=w(20)}},[[407,0,1]]]);
|
(window.webpackJsonp=window.webpackJsonp||[]).push([[7],{416:function(n,o,w){n.exports=w(417)},417:function(n,o,w){w(418)},418:function(n,o,w){window.$=window.jQuery=w(23)}},[[416,0,1]]]);
|
||||||
//# sourceMappingURL=register.js.map
|
//# sourceMappingURL=register.js.map
|
2
public/v2/js/transactions/create.js
vendored
2
public/v2/js/transactions/create.js
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
2
public/v2/js/transactions/edit.js
vendored
2
public/v2/js/transactions/edit.js
vendored
@ -1,2 +1,2 @@
|
|||||||
(window.webpackJsonp=window.webpackJsonp||[]).push([[9],{406:function(e,t,s){e.exports=s(415)},415:function(e,t,s){"use strict";s.r(t);var r=s(15),n={name:"Edit",data:function(){return{successMessage:"",errorMessage:""}}},a=s(1),i=Object(a.a)(n,(function(){var e=this.$createElement,t=this._self._c||e;return t("div",[t("alert",{attrs:{message:this.errorMessage,type:"danger"}}),this._v(" "),t("alert",{attrs:{message:this.successMessage,type:"success"}})],1)}),[],!1,null,"7a362243",null).exports,o=s(3),c=s.n(o);s(14),c.a.config.productionTip=!1;var u=s(17),p={};new c.a({i18n:u,store:r.a,render:function(e){return e(i,{props:p})},beforeCreate:function(){this.$store.commit("initialiseStore"),this.$store.dispatch("updateCurrencyPreference")}}).$mount("#transactions_edit")}},[[406,0,1]]]);
|
(window.webpackJsonp=window.webpackJsonp||[]).push([[9],{415:function(e,t,s){e.exports=s(424)},424:function(e,t,s){"use strict";s.r(t);var r=s(16),n={name:"Edit",data:function(){return{successMessage:"",errorMessage:""}}},a=s(1),i=Object(a.a)(n,(function(){var e=this.$createElement,t=this._self._c||e;return t("div",[t("alert",{attrs:{message:this.errorMessage,type:"danger"}}),this._v(" "),t("alert",{attrs:{message:this.successMessage,type:"success"}})],1)}),[],!1,null,"7a362243",null).exports,o=s(3),c=s.n(o);s(15),c.a.config.productionTip=!1;var u=s(18),p={};new c.a({i18n:u,store:r.a,render:function(e){return e(i,{props:p})},beforeCreate:function(){this.$store.commit("initialiseStore"),this.$store.dispatch("updateCurrencyPreference")}}).$mount("#transactions_edit")}},[[415,0,1]]]);
|
||||||
//# sourceMappingURL=edit.js.map
|
//# sourceMappingURL=edit.js.map
|
2
public/v2/js/vendor.js
vendored
2
public/v2/js/vendor.js
vendored
File diff suppressed because one or more lines are too long
@ -1,3 +1,8 @@
|
|||||||
|
/* @preserve
|
||||||
|
* Leaflet 1.7.1, a JS library for interactive maps. http://leafletjs.com
|
||||||
|
* (c) 2010-2019 Vladimir Agafonkin, (c) 2010-2011 CloudMade
|
||||||
|
*/
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
* Bootstrap v4.6.0 (https://getbootstrap.com/)
|
* Bootstrap v4.6.0 (https://getbootstrap.com/)
|
||||||
* Copyright 2011-2021 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
|
* Copyright 2011-2021 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
|
||||||
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user