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

23 lines
340 B
JavaScript

import './style.scss';
export default new Class({
Extends: Hedera.Form,
Template: require('./ui.xml'),
activate() {
this.$.lot.assign({
date: Date.vnNew(),
useIds: false
});
},
onConfigChange() {
this.$.lot.assignLot(this.$.config);
},
onPreviewClick() {
this.gui.openReport('shelves-report', this.$.lot);
}
});