Initial commit
This commit is contained in:
35
Fusion Accounting/static/tests/tours/account.js
Normal file
35
Fusion Accounting/static/tests/tours/account.js
Normal file
@@ -0,0 +1,35 @@
|
||||
import { _t } from "@web/core/l10n/translation";
|
||||
import { patch } from "@web/core/utils/patch";
|
||||
import { accountTourSteps } from "@account/js/tours/account";
|
||||
|
||||
patch(accountTourSteps, {
|
||||
onboarding() {
|
||||
return [
|
||||
{
|
||||
trigger: ".o_widget_account_onboarding .fa-circle",
|
||||
},
|
||||
{
|
||||
trigger: "a[data-method=action_open_step_fiscal_year]",
|
||||
content: _t("Set Periods"),
|
||||
run: "click",
|
||||
},
|
||||
{
|
||||
trigger: "button[name=action_save_onboarding_fiscal_year]",
|
||||
content: _t("Save Fiscal Year end"),
|
||||
run: "click",
|
||||
},
|
||||
];
|
||||
},
|
||||
newInvoice() {
|
||||
return [
|
||||
{
|
||||
trigger: ".o_widget_account_onboarding .fa-check-circle",
|
||||
},
|
||||
{
|
||||
trigger: "button[name=action_create_new]",
|
||||
content: _t("Now, we'll create your first invoice (accountant)"),
|
||||
run: "click",
|
||||
},
|
||||
];
|
||||
},
|
||||
});
|
||||
Reference in New Issue
Block a user