You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1234567891011121314151617
  1. // Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors
  2. // MIT License. See license.txt
  3. wn.ui.toolbar.Report = wn.ui.toolbar.SelectorDialog.extend({
  4. init: function() {
  5. this._super({
  6. title: wn._("Start Report For"),
  7. execute: function(val) {
  8. wn.set_route('Report', val);
  9. },
  10. });
  11. // get new types
  12. this.set_values(profile.can_get_report.join(',').split(','));
  13. }
  14. });