2015-11-17 10:34:33 +00:00
|
|
|
|
2016-09-26 09:28:47 +00:00
|
|
|
Hedera.Items = new Class
|
2015-11-17 10:34:33 +00:00
|
|
|
({
|
2016-09-26 09:28:47 +00:00
|
|
|
Extends: Hedera.Form
|
2015-11-17 10:34:33 +00:00
|
|
|
|
|
|
|
,activate: function ()
|
|
|
|
{
|
2017-03-30 11:44:53 +00:00
|
|
|
var set = this.$('set');
|
|
|
|
set.set ('warehouse', 7);
|
|
|
|
set.set ('realm', null);
|
2015-11-17 10:34:33 +00:00
|
|
|
}
|
|
|
|
|
2017-03-30 11:44:53 +00:00
|
|
|
,onShowClick: function ()
|
2015-11-17 10:34:33 +00:00
|
|
|
{
|
2017-03-30 11:44:53 +00:00
|
|
|
var set = this.$('set');
|
|
|
|
set.set ('rate', this.$('rate').value);
|
|
|
|
this.gui.openReport ('items-report', set.params);
|
2015-11-17 10:34:33 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|