fix: setup wizard load chart of accounts and fiscal year on change of country (#48125)

This commit is contained in:
Diptanil Saha
2025-06-18 17:16:03 +05:30
committed by GitHub
parent e2c9e24f66
commit 14f0569a39

View File

@@ -61,9 +61,13 @@ erpnext.setup.slides_settings = [
onload: function (slide) {
this.bind_events(slide);
this.load_chart_of_accounts(slide);
this.set_fy_dates(slide);
},
before_show: function () {
this.load_chart_of_accounts(this);
this.set_fy_dates(this);
},
validate: function () {
if (!this.validate_fy_dates()) {
return false;