Merge branch 'master' of https://github.com/brkcvn/akaunting into show-loading
This commit is contained in:
5
resources/assets/js/plugins/form.js
vendored
5
resources/assets/js/plugins/form.js
vendored
@ -478,9 +478,12 @@ export default class Form {
|
||||
if (response.data.redirect) {
|
||||
this.loading = true;
|
||||
|
||||
// Empty hash because /sale/customer/1#transaction redirect to sale/invoice/create.
|
||||
window.location.hash = '';
|
||||
|
||||
window.location.href = response.data.redirect;
|
||||
|
||||
if (window.location.hash !== undefined) {
|
||||
if (typeof window.location.hash != "undefined" && window.location.hash.length) {
|
||||
location.reload();
|
||||
}
|
||||
}
|
||||
|
@ -39,6 +39,7 @@ return [
|
||||
'error' => [
|
||||
'self_delete' => 'Error: Cuenta actual!',
|
||||
'self_disable' => 'error: deshabilitado',
|
||||
'unassigned' => 'Error: Can not unassigned company! The :company company must be assigned at least one user.',
|
||||
'no_company' => 'Error: No hay compañías asignadas a su cuenta. Por favor contacte al administrador del sistema.',
|
||||
],
|
||||
|
||||
|
@ -39,6 +39,7 @@ return [
|
||||
'error' => [
|
||||
'self_delete' => 'Erreur : Vous ne pouvez pas vous supprimer vous-même !',
|
||||
'self_disable' => 'Erreur : Vous ne pouvez pas vous désactiver vous-même !',
|
||||
'unassigned' => 'Erreur: La société :company ne peut pas être désassignée ! La société :company doit être assignée au moins un utilisateur.',
|
||||
'no_company' => 'Erreur : Aucune entreprise associée à votre compte. Veuillez contacter votre administrateur système.',
|
||||
],
|
||||
|
||||
|
@ -12,7 +12,7 @@ return [
|
||||
'currencies' => 'Devises',
|
||||
|
||||
'view_report' => 'Voir le rapport',
|
||||
'total_unpaid_invoices' => 'Montant des factures impayées',
|
||||
'total_unpaid_invoices' => 'Montant total des factures impayées',
|
||||
'total_unpaid_bills' => 'Montant des achats impayés',
|
||||
|
||||
'description' => [
|
||||
|
@ -14,6 +14,14 @@ return [
|
||||
'position' => 'Posisi Simbol',
|
||||
'before' => 'Sebelum Jumlah',
|
||||
'after' => 'Setelah Jumlah',
|
||||
]
|
||||
],
|
||||
|
||||
'form_description' => [
|
||||
'general' => 'Mata uang bawaan saat ini digunakan pada Dasbor dan Laporan. Bagi mata uang yang lain, nilai tukar harus lebih rendah dari 1 untuk mata uang yang lebih lemah dan lebih dari 1 untuk mata uang yang lebih kuat.',
|
||||
],
|
||||
|
||||
'no_currency' => 'Tanpa Mata Uang',
|
||||
'create_currency' => 'Buat mata uang baru dan edit kapan saja melalui pengaturan.',
|
||||
'new_currency' => 'Mata Uang Baru',
|
||||
|
||||
];
|
||||
|
@ -39,6 +39,7 @@ return [
|
||||
'error' => [
|
||||
'self_delete' => 'Erro: não pode se excluir!',
|
||||
'self_disable' => 'Erro: Você não pode desativar você mesmo!',
|
||||
'unassigned' => 'Erro: não pode deixar de ser atribuído empresa! A :company deve ser atribuída pelo menos um usuário.',
|
||||
'no_company' => 'Erro: Nenhuma empresa atribuída à sua conta. Por favor, entre em contato com o administrador do sistema.',
|
||||
],
|
||||
|
||||
|
Reference in New Issue
Block a user