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

21 lines
315 B
JavaScript

Hedera.Shelves = new Class({
Extends: Hedera.Form
,activate: function() {
this.$.lot.assign({
date: new Date(),
useIds: false
});
}
,onConfigChange: function() {
this.$.lot.assignLot(this.$.config);
}
,onPreviewClick: function() {
this.gui.openReport('shelves-report', this.$.lot);
}
});