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.
 
 
 
 
 
 

15 lines
303 B

  1. wn.ui.toolbar.Report = wn.ui.toolbar.SelectorDialog.extend({
  2. init: function() {
  3. this._super({
  4. title: "Start Report For",
  5. execute: function(val) {
  6. loadreport(val, null, null, null, 1);
  7. },
  8. });
  9. // get new types
  10. this.set_values(profile.can_get_report.join(',').split(','));
  11. }
  12. });