changed wizard finish redirect

This commit is contained in:
Denis Duliçi 2022-06-13 14:31:45 +03:00
parent e9beb11a5f
commit e7a937f250
4 changed files with 724 additions and 12114 deletions

View File

@ -154,6 +154,7 @@ class Scripts extends Component
'reviews' => trans('modules.tab.reviews'), 'reviews' => trans('modules.tab.reviews'),
'previous' => trans('companies.skip_step'), 'previous' => trans('companies.skip_step'),
'go_to_dashboard' => trans('general.go_to_dashboard'), 'go_to_dashboard' => trans('general.go_to_dashboard'),
'create_first_invoice' => trans('general.create_first_invoice'),
'error_message' => trans('errors.title.500'), 'error_message' => trans('errors.title.500'),
] ]
]; ];

12822
public/css/app.css vendored

File diff suppressed because it is too large Load Diff

View File

@ -40,10 +40,10 @@
{{ translations.finish.apps_managing }} {{ translations.finish.apps_managing }}
</div> </div>
<div style="width:372px; height:372px;"></div> <div style="width:372px; height:372px;"></div>
<img :src="image_src" class="absolute top-0 right-2 top-12" alt="" /> <img :src="image_src" class="absolute top-0 right-2" alt="" />
</div> </div>
<base-button class="flex items-center justify-center text-base rounded-lg disabled:opacity-50 relative m-auto bottom-40 bg-white hover:bg-gray-100 text-purple rounded-md py-3 px-5 font-semibold btn-default" @click="finish()"> <base-button class="flex items-center justify-center text-base rounded-lg disabled:opacity-50 relative m-auto bottom-48 bg-white hover:bg-gray-100 text-purple rounded-md py-3 px-5 font-semibold btn-default" @click="finish()">
{{ translations.finish.go_to_dashboard }} {{ translations.finish.create_first_invoice }}
</base-button> </base-button>
</div> </div>
@ -111,7 +111,7 @@ export default {
}, },
finish() { finish() {
window.location.href = url; window.location.href = url + "/sales/invoices/create";
}, },
}, },
}; };

View File

@ -69,6 +69,7 @@ return [
'invitations' => 'Invitation|Invitations', 'invitations' => 'Invitation|Invitations',
'attachments' => 'Attachment|Attachments', 'attachments' => 'Attachment|Attachments',
'histories' => 'History|Histories', 'histories' => 'History|Histories',
'your_notifications' => 'Your notification|Your notifications',
'welcome' => 'Welcome', 'welcome' => 'Welcome',
'banking' => 'Banking', 'banking' => 'Banking',
@ -183,6 +184,7 @@ return [
'no_matching_data' => 'No matching data', 'no_matching_data' => 'No matching data',
'clear_cache' => 'Clear Cache', 'clear_cache' => 'Clear Cache',
'go_to_dashboard' => 'Go to dashboard', 'go_to_dashboard' => 'Go to dashboard',
'create_first_invoice' => 'Create your first invoice',
'is' => 'is', 'is' => 'is',
'isnot' => 'is not', 'isnot' => 'is not',
'recurring_and_more' => 'Recurring and more..', 'recurring_and_more' => 'Recurring and more..',
@ -198,7 +200,6 @@ return [
'email_send_me' => 'Send a copy to myself at :email', 'email_send_me' => 'Send a copy to myself at :email',
'connect' => 'Connect', 'connect' => 'Connect',
'assign' => 'Assign', 'assign' => 'Assign',
'your_notifications' => 'Your notification|Your notifications',
'new' => 'New', 'new' => 'New',
'new_more' => 'New ...', 'new_more' => 'New ...',
'number' => 'Number', 'number' => 'Number',