0
1
Fork 0
hedera-web-mindshore/forms/reports/items-form/index.js

20 lines
312 B
JavaScript
Raw Normal View History

import './style.scss';
2017-05-09 12:03:06 +00:00
2022-11-16 01:44:39 +00:00
export default new Class({
Extends: Hedera.Form,
Template: require('./ui.xml')
2017-05-09 12:03:06 +00:00
2022-11-16 01:46:44 +00:00
,activate() {
2022-05-30 01:30:33 +00:00
this.$.lot.assign({
warehouse: 7,
realm: null
});
2017-05-09 12:03:06 +00:00
}
2022-11-16 01:46:44 +00:00
,onPreviewClick() {
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
}
});