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

21 lines
383 B
JavaScript
Raw Normal View History

2017-05-09 12:03:06 +00:00
2022-05-24 21:11:12 +00:00
Hedera.ItemsForm = new Class({
2017-05-09 12:03:06 +00:00
Extends: Hedera.Form
2022-05-24 21:11:12 +00:00
,activate: function() {
2022-05-28 01:18:06 +00:00
this.$.warehouse.value = 7;
this.$.realm.value = null;
2017-05-09 12:03:06 +00:00
}
2022-05-24 21:11:12 +00:00
,onPreviewClick: function() {
var batch = new Sql.Batch();
batch.addValues({
2022-05-28 01:18:06 +00:00
warehouse: this.$.warehouse.value
,realm: this.$.realm.value
,rate: this.$.rate.value
2017-05-09 12:03:06 +00:00
});
2022-05-24 21:11:12 +00:00
this.gui.openReport('items-report', batch);
2017-05-09 12:03:06 +00:00
}
});