43 lines
1.1 KiB
JavaScript
43 lines
1.1 KiB
JavaScript
import ngModule from '../module';
|
|
import ModuleMain from 'salix/components/module-main';
|
|
|
|
export default class Ticket extends ModuleMain {
|
|
fetchParams($params) {
|
|
const excludedParams = [
|
|
'from',
|
|
'to',
|
|
'search',
|
|
'clientFk',
|
|
'collectionFk',
|
|
'orderFk',
|
|
'refFk',
|
|
'scopeDays'
|
|
];
|
|
|
|
const hasExcludedParams = excludedParams.some(param => {
|
|
return $params && $params[param] != undefined;
|
|
});
|
|
const hasParams = Object.entries($params).length;
|
|
if (!hasParams || !hasExcludedParams)
|
|
$params.scopeDays = 1;
|
|
|
|
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;
|
|
}
|
|
}
|
|
|
|
ngModule.vnComponent('vnTicket', {
|
|
controller: Ticket,
|
|
template: require('./index.html')
|
|
});
|