hedera-web/forms/reports/shelves/shelves.js

21 lines
283 B
JavaScript
Raw Normal View History

2015-09-22 07:20:47 +00:00
2022-11-16 01:44:39 +00:00
export default new Class({
2016-09-26 09:28:47 +00:00
Extends: Hedera.Form
2016-10-04 15:27:49 +00:00
2022-11-16 01:46:44 +00:00
,activate() {
2022-05-30 01:30:33 +00:00
this.$.lot.assign({
date: new Date(),
useIds: false
});
2015-10-23 23:23:19 +00:00
}
2016-10-04 15:27:49 +00:00
2022-11-16 01:46:44 +00:00
,onConfigChange() {
2022-05-30 01:30:33 +00:00
this.$.lot.assignLot(this.$.config);
2015-09-22 07:20:47 +00:00
}
2022-11-16 01:46:44 +00:00
,onPreviewClick() {
2022-05-30 01:30:33 +00:00
this.gui.openReport('shelves-report', this.$.lot);
2015-10-21 23:42:52 +00:00
}
});