2015-11-17 10:34:33 +00:00
|
|
|
|
2016-09-26 09:28:47 +00:00
|
|
|
Hedera.Items = new Class
|
2015-11-17 10:34:33 +00:00
|
|
|
({
|
2016-09-26 09:28:47 +00:00
|
|
|
Extends: Hedera.Form
|
2015-11-17 10:34:33 +00:00
|
|
|
|
|
|
|
,activate: function ()
|
|
|
|
{
|
|
|
|
this.$('warehouse').value = 7;
|
|
|
|
this.$('realm').value = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
,onPreviewClick: function ()
|
|
|
|
{
|
|
|
|
var batch = new Sql.Batch ();
|
|
|
|
batch.addValues ({
|
|
|
|
'warehouse': this.$('warehouse').value
|
|
|
|
,'realm': this.$('realm').value
|
|
|
|
,'rate': this.$('rate').value
|
|
|
|
});
|
|
|
|
this.gui.openReport ('items-report', batch);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|