2022-11-17 22:31:48 +00:00
|
|
|
import './style.scss';
|
2017-05-09 12:03:06 +00:00
|
|
|
|
2022-11-16 01:44:39 +00:00
|
|
|
export default new Class({
|
2022-11-17 22:31:48 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
});
|
|
|
|
|