45 lines
1.2 KiB
JavaScript
45 lines
1.2 KiB
JavaScript
|
import ngModule from '../module';
|
||
|
import SearchPanel from 'core/components/searchbar/search-panel';
|
||
|
|
||
|
class Controller extends SearchPanel {
|
||
|
constructor($, $element) {
|
||
|
super($, $element);
|
||
|
this.filter = this.$.filter;
|
||
|
this.getGroupedStates();
|
||
|
this.getItemPackingTypes();
|
||
|
}
|
||
|
|
||
|
getGroupedStates() {
|
||
|
let groupedStates = [];
|
||
|
this.$http.get('AlertLevels').then(res => {
|
||
|
for (let state of res.data) {
|
||
|
groupedStates.push({
|
||
|
id: state.id,
|
||
|
code: state.code,
|
||
|
name: this.$t(state.code)
|
||
|
});
|
||
|
}
|
||
|
this.groupedStates = groupedStates;
|
||
|
});
|
||
|
}
|
||
|
|
||
|
getItemPackingTypes() {
|
||
|
let itemPackingTypes = [];
|
||
|
this.$http.get('ItemPackingTypes').then(res => {
|
||
|
for (let ipt of res.data) {
|
||
|
itemPackingTypes.push({
|
||
|
id: ipt.id,
|
||
|
code: ipt.code,
|
||
|
name: this.$t(ipt.code)
|
||
|
});
|
||
|
}
|
||
|
this.itemPackingTypes = itemPackingTypes;
|
||
|
});
|
||
|
}
|
||
|
}
|
||
|
|
||
|
ngModule.vnComponent('vnAdvanceTicketSearchPanel', {
|
||
|
template: require('./index.html'),
|
||
|
controller: Controller
|
||
|
});
|