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-04-10 15:17:56 +00:00
|
|
|
this.$('lot').assign ({
|
|
|
|
warehouse: 7,
|
|
|
|
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-04-10 15:17:56 +00:00
|
|
|
var lot = this.$('lot');
|
|
|
|
lot.assign ({rate: this.$('rate').value});
|
|
|
|
this.gui.openReport ('items-report', lot.params);
|
2015-11-17 10:34:33 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|