hedera-web/forms/reports/items-form/items-form.js

18 lines
281 B
JavaScript

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);
}
});