25 lines
325 B
JavaScript
25 lines
325 B
JavaScript
|
|
Hedera.Shelves = new Class
|
|
({
|
|
Extends: Hedera.Form
|
|
|
|
,activate: function ()
|
|
{
|
|
this.$.lot.assign ({
|
|
date: new Date (),
|
|
useIds: false
|
|
});
|
|
}
|
|
|
|
,onConfigChange: function ()
|
|
{
|
|
this.$.lot.assignLot (this.$.config);
|
|
}
|
|
|
|
,onShowClick: function ()
|
|
{
|
|
this.gui.openReport ('shelves-report', this.$.lot.$);
|
|
}
|
|
});
|
|
|