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

21 lines
315 B
JavaScript
Raw Normal View History

2015-09-22 07:20:47 +00:00
2022-05-24 21:11:12 +00:00
Hedera.Shelves = new Class({
2016-09-26 09:28:47 +00:00
Extends: Hedera.Form
2016-10-04 15:27:49 +00:00
2022-05-24 21:11:12 +00:00
,activate: function() {
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-05-24 21:11:12 +00:00
,onConfigChange: function() {
2022-05-30 01:30:33 +00:00
this.$.lot.assignLot(this.$.config);
2015-09-22 07:20:47 +00:00
}
2022-05-24 21:11:12 +00:00
,onPreviewClick: function() {
2022-05-30 01:30:33 +00:00
this.gui.openReport('shelves-report', this.$.lot);
2015-10-21 23:42:52 +00:00
}
});