hedera-web/forms/admin/items/items.js

22 lines
311 B
JavaScript
Raw Normal View History

2016-09-26 09:28:47 +00:00
Hedera.Items = new Class
({
2016-09-26 09:28:47 +00:00
Extends: Hedera.Form
,activate: function ()
{
2017-04-10 15:17:56 +00:00
this.$('lot').assign ({
warehouse: 7,
realm: null
});
}
2017-03-30 11:44:53 +00:00
,onShowClick: function ()
{
2017-04-10 15:17:56 +00:00
var lot = this.$('lot');
lot.assign ({rate: this.$('rate').value});
this.gui.openReport ('items-report', lot.params);
}
});