2017-07-03 12:53:57 +00:00
|
|
|
frappe.provide("erpnext.setup");
|
2015-11-09 11:23:11 +00:00
|
|
|
|
|
|
|
frappe.pages['setup-wizard'].on_page_load = function(wrapper) {
|
2017-05-30 07:24:42 +00:00
|
|
|
if(frappe.sys_defaults.company) {
|
2015-11-09 11:23:11 +00:00
|
|
|
frappe.set_route("desk");
|
|
|
|
return;
|
|
|
|
}
|
2015-11-16 07:28:14 +00:00
|
|
|
};
|
|
|
|
|
2017-09-04 05:44:04 +00:00
|
|
|
frappe.setup.on("before_load", function () {
|
|
|
|
erpnext.setup.slides_settings.map(frappe.setup.add_slide);
|
|
|
|
});
|
|
|
|
|
|
|
|
erpnext.setup.slides_settings = [
|
2017-07-03 12:53:57 +00:00
|
|
|
{
|
|
|
|
// Domain
|
|
|
|
name: 'domain',
|
|
|
|
domains: ["all"],
|
|
|
|
title: __('Select your Domain'),
|
|
|
|
fields: [
|
|
|
|
{
|
|
|
|
fieldname: 'domain', label: __('Domain'), fieldtype: 'Select',
|
|
|
|
options: [
|
|
|
|
{ "label": __("Distribution"), "value": "Distribution" },
|
|
|
|
{ "label": __("Manufacturing"), "value": "Manufacturing" },
|
|
|
|
{ "label": __("Retail"), "value": "Retail" },
|
2017-09-04 05:44:04 +00:00
|
|
|
{ "label": __("Services"), "value": "Services" },
|
2017-11-20 12:15:24 +00:00
|
|
|
{ "label": __("Education (beta)"), "value": "Education" },
|
|
|
|
{"label": __("Healthcare (beta)"), "value": "Healthcare"},
|
|
|
|
{"label": __("Non Profit (beta)"), "value": "Non Profit"}
|
2017-07-03 12:53:57 +00:00
|
|
|
], reqd: 1
|
2016-07-21 10:31:59 +00:00
|
|
|
},
|
2017-07-03 12:53:57 +00:00
|
|
|
],
|
2017-09-04 05:44:04 +00:00
|
|
|
// help: __('Select the nature of your business.'),
|
2017-07-03 12:53:57 +00:00
|
|
|
onload: function (slide) {
|
|
|
|
slide.get_input("domain").on("change", function () {
|
|
|
|
frappe.setup.domain = $(this).val();
|
|
|
|
frappe.wizard.refresh_slides();
|
|
|
|
});
|
2016-07-21 10:31:59 +00:00
|
|
|
},
|
2017-07-03 12:53:57 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
// Brand
|
|
|
|
name: 'brand',
|
|
|
|
domains: ["all"],
|
|
|
|
icon: "fa fa-bookmark",
|
|
|
|
title: __("The Brand"),
|
2017-09-04 05:44:04 +00:00
|
|
|
// help: __('Upload your letter head and logo. (you can edit them later).'),
|
2017-07-03 12:53:57 +00:00
|
|
|
fields: [
|
|
|
|
{
|
|
|
|
fieldtype: "Attach Image", fieldname: "attach_logo",
|
|
|
|
label: __("Attach Logo"),
|
|
|
|
description: __("100px by 100px"),
|
2017-07-26 12:49:41 +00:00
|
|
|
is_private: 0,
|
|
|
|
align: 'center'
|
2015-11-16 07:28:14 +00:00
|
|
|
},
|
2017-07-03 12:53:57 +00:00
|
|
|
{
|
|
|
|
fieldname: 'company_name',
|
|
|
|
label: frappe.setup.domain === 'Education' ?
|
|
|
|
__('Institute Name') : __('Company Name'),
|
2017-07-26 12:49:41 +00:00
|
|
|
fieldtype: 'Data',
|
|
|
|
reqd: 1
|
2015-11-24 11:36:54 +00:00
|
|
|
},
|
2017-07-03 12:53:57 +00:00
|
|
|
{
|
|
|
|
fieldname: 'company_abbr',
|
|
|
|
label: frappe.setup.domain === 'Education' ?
|
|
|
|
__('Institute Abbreviation') : __('Company Abbreviation'),
|
|
|
|
fieldtype: 'Data'
|
|
|
|
}
|
|
|
|
],
|
|
|
|
onload: function(slide) {
|
|
|
|
this.bind_events(slide);
|
|
|
|
},
|
|
|
|
bind_events: function (slide) {
|
|
|
|
slide.get_input("company_name").on("change", function () {
|
|
|
|
var parts = slide.get_input("company_name").val().split(" ");
|
|
|
|
var abbr = $.map(parts, function (p) { return p ? p.substr(0, 1) : null }).join("");
|
2017-07-11 07:06:57 +00:00
|
|
|
slide.get_field("company_abbr").set_value(abbr.slice(0, 5).toUpperCase());
|
2017-07-03 12:53:57 +00:00
|
|
|
}).val(frappe.boot.sysdefaults.company_name || "").trigger("change");
|
|
|
|
|
|
|
|
slide.get_input("company_abbr").on("change", function () {
|
|
|
|
if (slide.get_input("company_abbr").val().length > 5) {
|
|
|
|
frappe.msgprint("Company Abbreviation cannot have more than 5 characters");
|
2017-07-11 07:06:57 +00:00
|
|
|
slide.get_field("company_abbr").set_value("");
|
2015-11-16 07:28:14 +00:00
|
|
|
}
|
2017-07-03 12:53:57 +00:00
|
|
|
});
|
2017-09-04 05:44:04 +00:00
|
|
|
},
|
|
|
|
validate: function() {
|
2017-10-02 06:08:03 +00:00
|
|
|
if ((this.values.company_name || "").toLowerCase() == "company") {
|
|
|
|
frappe.msgprint(__("Company Name cannot be Company"));
|
|
|
|
return false;
|
|
|
|
}
|
2017-09-04 05:44:04 +00:00
|
|
|
if (!this.values.company_abbr) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
2017-07-03 12:53:57 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
// Organisation
|
|
|
|
name: 'organisation',
|
|
|
|
domains: ["all"],
|
|
|
|
title: __("Your Organization"),
|
|
|
|
icon: "fa fa-building",
|
2017-09-04 05:44:04 +00:00
|
|
|
// help: (frappe.setup.domain === 'Education' ?
|
|
|
|
// __('The name of the institute for which you are setting up this system.') :
|
|
|
|
// __('The name of your company for which you are setting up this system.')),
|
2017-07-03 12:53:57 +00:00
|
|
|
fields: [
|
|
|
|
{
|
|
|
|
fieldname: 'company_tagline',
|
|
|
|
label: __('What does it do?'),
|
|
|
|
fieldtype: 'Data',
|
|
|
|
placeholder: frappe.setup.domain === 'Education' ?
|
|
|
|
__('e.g. "Primary School" or "University"') :
|
|
|
|
__('e.g. "Build tools for builders"'),
|
|
|
|
reqd: 1
|
2015-11-16 07:28:14 +00:00
|
|
|
},
|
2017-07-03 12:53:57 +00:00
|
|
|
{ fieldname: 'bank_account', label: __('Bank Name'), fieldtype: 'Data', reqd: 1 },
|
|
|
|
{
|
|
|
|
fieldname: 'chart_of_accounts', label: __('Chart of Accounts'),
|
|
|
|
options: "", fieldtype: 'Select'
|
2015-11-16 07:28:14 +00:00
|
|
|
},
|
|
|
|
|
2017-07-17 06:36:25 +00:00
|
|
|
{ fieldtype: "Section Break", label: __('Financial Year') },
|
2017-07-03 12:53:57 +00:00
|
|
|
{ fieldname: 'fy_start_date', label: __('Start Date'), fieldtype: 'Date', reqd: 1 },
|
|
|
|
{ fieldtype: "Column Break" },
|
|
|
|
{ fieldname: 'fy_end_date', label: __('End Date'), fieldtype: 'Date', reqd: 1 },
|
|
|
|
],
|
2015-11-16 07:28:14 +00:00
|
|
|
|
2017-07-03 12:53:57 +00:00
|
|
|
onload: function (slide) {
|
|
|
|
this.load_chart_of_accounts(slide);
|
|
|
|
this.bind_events(slide);
|
|
|
|
this.set_fy_dates(slide);
|
|
|
|
},
|
2015-11-16 07:28:14 +00:00
|
|
|
|
2017-07-03 12:53:57 +00:00
|
|
|
validate: function () {
|
|
|
|
// validate fiscal year start and end dates
|
|
|
|
if (this.values.fy_start_date == 'Invalid date' || this.values.fy_end_date == 'Invalid date') {
|
|
|
|
frappe.msgprint(__("Please enter valid Financial Year Start and End Dates"));
|
|
|
|
return false;
|
2015-11-09 11:23:11 +00:00
|
|
|
}
|
2017-07-03 12:53:57 +00:00
|
|
|
return true;
|
2015-11-09 11:23:11 +00:00
|
|
|
},
|
2015-11-16 07:28:14 +00:00
|
|
|
|
2017-07-03 12:53:57 +00:00
|
|
|
set_fy_dates: function (slide) {
|
|
|
|
var country = frappe.wizard.values.country;
|
2015-11-16 07:28:14 +00:00
|
|
|
|
2017-07-03 12:53:57 +00:00
|
|
|
if (country) {
|
|
|
|
var fy = erpnext.setup.fiscal_years[country];
|
|
|
|
var current_year = moment(new Date()).year();
|
|
|
|
var next_year = current_year + 1;
|
|
|
|
if (!fy) {
|
2017-07-05 11:56:34 +00:00
|
|
|
fy = ["01-01", "12-31"];
|
2017-07-03 12:53:57 +00:00
|
|
|
next_year = current_year;
|
2015-11-16 07:28:14 +00:00
|
|
|
}
|
2015-11-09 11:23:11 +00:00
|
|
|
|
2017-07-03 12:53:57 +00:00
|
|
|
var year_start_date = current_year + "-" + fy[0];
|
|
|
|
if (year_start_date > frappe.datetime.get_today()) {
|
2017-07-05 12:26:04 +00:00
|
|
|
next_year = current_year;
|
2017-07-03 12:53:57 +00:00
|
|
|
current_year -= 1;
|
2015-11-16 07:28:14 +00:00
|
|
|
}
|
2017-07-05 12:26:04 +00:00
|
|
|
slide.get_field("fy_start_date").set_value(current_year + '-' + fy[0]);
|
|
|
|
slide.get_field("fy_end_date").set_value(next_year + '-' + fy[1]);
|
2017-07-03 12:53:57 +00:00
|
|
|
}
|
2015-11-16 07:28:14 +00:00
|
|
|
},
|
2016-07-21 10:31:59 +00:00
|
|
|
|
|
|
|
|
2017-07-03 12:53:57 +00:00
|
|
|
load_chart_of_accounts: function (slide) {
|
|
|
|
var country = frappe.wizard.values.country;
|
2016-07-21 10:31:59 +00:00
|
|
|
|
2017-07-03 12:53:57 +00:00
|
|
|
if (country) {
|
|
|
|
frappe.call({
|
|
|
|
method: "erpnext.accounts.doctype.account.chart_of_accounts.chart_of_accounts.get_charts_for_country",
|
|
|
|
args: { "country": country },
|
|
|
|
callback: function (r) {
|
|
|
|
if (r.message) {
|
|
|
|
slide.get_input("chart_of_accounts").empty()
|
|
|
|
.add_options(r.message);
|
2016-07-21 10:31:59 +00:00
|
|
|
|
2017-07-03 12:53:57 +00:00
|
|
|
if (r.message.length === 1) {
|
|
|
|
var field = slide.get_field("chart_of_accounts");
|
|
|
|
field.set_value(r.message[0]);
|
|
|
|
field.df.hidden = 1;
|
|
|
|
field.refresh();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
2016-07-21 10:31:59 +00:00
|
|
|
},
|
|
|
|
|
2017-07-03 12:53:57 +00:00
|
|
|
bind_events: function (slide) {
|
|
|
|
slide.get_input("fy_start_date").on("change", function () {
|
2017-07-05 12:26:04 +00:00
|
|
|
var start_date = slide.form.fields_dict.fy_start_date.get_value();
|
2017-07-03 12:53:57 +00:00
|
|
|
var year_end_date =
|
2017-07-05 12:26:04 +00:00
|
|
|
frappe.datetime.add_days(frappe.datetime.add_months(start_date, 12), -1);
|
|
|
|
slide.form.fields_dict.fy_end_date.set_value(year_end_date);
|
2017-07-03 12:53:57 +00:00
|
|
|
});
|
|
|
|
}
|
2016-07-05 16:04:21 +00:00
|
|
|
}
|
2017-07-03 12:53:57 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
// Source: https://en.wikipedia.org/wiki/Fiscal_year
|
|
|
|
// default 1st Jan - 31st Dec
|
|
|
|
|
|
|
|
erpnext.setup.fiscal_years = {
|
2017-07-05 11:56:34 +00:00
|
|
|
"Afghanistan": ["12-20", "12-21"],
|
|
|
|
"Australia": ["07-01", "06-30"],
|
|
|
|
"Bangladesh": ["07-01", "06-30"],
|
|
|
|
"Canada": ["04-01", "03-31"],
|
|
|
|
"Costa Rica": ["10-01", "09-30"],
|
|
|
|
"Egypt": ["07-01", "06-30"],
|
|
|
|
"Hong Kong": ["04-01", "03-31"],
|
|
|
|
"India": ["04-01", "03-31"],
|
|
|
|
"Iran": ["06-23", "06-22"],
|
|
|
|
"Italy": ["07-01", "06-30"],
|
|
|
|
"Myanmar": ["04-01", "03-31"],
|
|
|
|
"New Zealand": ["04-01", "03-31"],
|
|
|
|
"Pakistan": ["07-01", "06-30"],
|
|
|
|
"Singapore": ["04-01", "03-31"],
|
|
|
|
"South Africa": ["03-01", "02-28"],
|
|
|
|
"Thailand": ["10-01", "09-30"],
|
|
|
|
"United Kingdom": ["04-01", "03-31"],
|
2017-07-03 12:53:57 +00:00
|
|
|
};
|