seitime-frappe/public/js/wn/ui/toolbar/report.js
2013-11-20 12:58:35 +05:30

17 lines
407 B
JavaScript

// Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors
// MIT License. See license.txt
wn.ui.toolbar.Report = wn.ui.toolbar.SelectorDialog.extend({
init: function() {
this._super({
title: wn._("Start Report For"),
execute: function(val) {
wn.set_route('Report', val);
},
});
// get new types
this.set_values(profile.can_get_report.join(',').split(','));
}
});