2017-05-09 12:03:06 +00:00
|
|
|
|
|
|
|
Hedera.ItemsForm = new Class
|
|
|
|
({
|
|
|
|
Extends: Hedera.Form
|
|
|
|
|
|
|
|
,activate: function ()
|
|
|
|
{
|
2017-10-20 17:09:06 +00:00
|
|
|
this.$.lot.assign ({
|
2017-10-18 16:01:21 +00:00
|
|
|
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-20 17:09:06 +00:00
|
|
|
this.gui.openReport ('items-report', this.$.lot.$);
|
2017-05-09 12:03:06 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|