salix/modules/ticket/front/main/index.js

36 lines
831 B
JavaScript
Raw Normal View History

2019-11-10 10:08:44 +00:00
import ngModule from '../module';
import ModuleMain from 'salix/components/module-main';
2020-03-13 19:33:12 +00:00
export default class Ticket extends ModuleMain {
2020-08-20 06:45:03 +00:00
constructor() {
super();
2020-12-23 11:42:41 +00:00
this.filterParams = {
2020-08-20 06:45:03 +00:00
scopeDays: 1
};
}
2020-03-13 19:33:12 +00:00
2020-08-20 06:45:03 +00:00
fetchParams($params) {
2020-08-20 07:50:22 +00:00
if (!Object.entries($params).length)
$params.scopeDays = 1;
2020-03-13 19:33:12 +00:00
if (typeof $params.scopeDays === 'number') {
const from = new Date();
from.setHours(0, 0, 0, 0);
const to = new Date(from.getTime());
to.setDate(to.getDate() + $params.scopeDays);
to.setHours(23, 59, 59, 999);
Object.assign($params, {from, to});
}
return $params;
}
}
2019-11-10 10:08:44 +00:00
ngModule.vnComponent('vnTicket', {
controller: Ticket,
template: require('./index.html')
});