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

20 lines
253 B
JavaScript

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