2017-05-09 12:03:06 +00:00
|
|
|
|
|
|
|
Hedera.ItemsForm = new Class
|
|
|
|
({
|
|
|
|
Extends: Hedera.Form
|
|
|
|
|
|
|
|
,activate: function ()
|
|
|
|
{
|
2017-10-18 16:01:21 +00:00
|
|
|
this.$('lot').assign ({
|
|
|
|
warehouse: 7,
|
|
|
|
realm: null
|
|
|
|
});
|
2017-05-09 12:03:06 +00:00
|
|
|
}
|
|
|
|
|
2017-10-18 16:01:21 +00:00
|
|
|
,onShowClick: function ()
|
2017-05-09 12:03:06 +00:00
|
|
|
{
|
2017-10-18 16:01:21 +00:00
|
|
|
this.gui.openReport ('items-report', this.$('lot').params);
|
2017-05-09 12:03:06 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|