|
|
|
Hedera.ItemsForm = new Class({
|
|
Extends: Hedera.Form
|
|
|
|
,activate: function() {
|
|
this.$.lot.assign({
|
|
warehouse: 7,
|
|
realm: null
|
|
});
|
|
}
|
|
|
|
,onPreviewClick: function() {
|
|
this.$.lot.set('rate', this.$.rate.value);
|
|
this.gui.openReport('items-report', this.$.lot);
|
|
}
|
|
});
|
|
|