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

18 lines
281 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-30 01:30:33 +00:00
this.$.lot.assign({
warehouse: 7,
realm: null
});
2017-05-09 12:03:06 +00:00
}
2022-05-24 21:11:12 +00:00
,onPreviewClick: function() {
2022-05-30 01:30:33 +00:00
this.$.lot.set('rate', this.$.rate.value);
this.gui.openReport('items-report', this.$.lot);
2017-05-09 12:03:06 +00:00
}
});