2021-05-11 07:43:15 +00:00
|
|
|
import ngModule from '../../module';
|
|
|
|
import Section from 'salix/components/section';
|
|
|
|
import './style.scss';
|
|
|
|
|
|
|
|
export default class Controller extends Section {
|
|
|
|
constructor($element, $) {
|
|
|
|
super($element, $);
|
|
|
|
|
2021-09-24 10:51:20 +00:00
|
|
|
this.filterParams = this.fetchParams();
|
|
|
|
}
|
|
|
|
|
|
|
|
$onInit() {
|
|
|
|
if (!this.$params.q) {
|
|
|
|
this.$.$applyAsync(
|
|
|
|
() => this.$.model.applyFilter(null, this.filterParams));
|
|
|
|
}
|
2021-05-11 07:43:15 +00:00
|
|
|
}
|
|
|
|
|
2021-09-24 10:51:20 +00:00
|
|
|
fetchParams($params = {}) {
|
|
|
|
const excludedParams = [
|
|
|
|
'search',
|
|
|
|
'clientFk',
|
|
|
|
'orderFk',
|
|
|
|
'refFk',
|
|
|
|
'scopeDays'
|
|
|
|
];
|
|
|
|
|
|
|
|
const hasExcludedParams = excludedParams.some(param => {
|
|
|
|
return $params && $params[param];
|
|
|
|
});
|
|
|
|
const hasParams = Object.entries($params).length;
|
|
|
|
if (!hasParams || !hasExcludedParams)
|
2021-05-11 07:43:15 +00:00
|
|
|
$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;
|
|
|
|
}
|
|
|
|
|
|
|
|
compareDate(date) {
|
|
|
|
let today = new Date();
|
|
|
|
today.setHours(0, 0, 0, 0);
|
|
|
|
let timeTicket = new Date(date);
|
|
|
|
timeTicket.setHours(0, 0, 0, 0);
|
|
|
|
|
|
|
|
let comparation = today - timeTicket;
|
|
|
|
|
|
|
|
if (comparation == 0)
|
|
|
|
return 'warning';
|
|
|
|
if (comparation < 0)
|
|
|
|
return 'success';
|
|
|
|
}
|
|
|
|
|
|
|
|
stateColor(ticket) {
|
|
|
|
if (ticket.alertLevelCode === 'OK')
|
|
|
|
return 'success';
|
|
|
|
else if (ticket.alertLevelCode === 'FREE')
|
|
|
|
return 'notice';
|
|
|
|
else if (ticket.alertLevel === 1)
|
|
|
|
return 'warning';
|
|
|
|
else if (ticket.alertLevel === 0)
|
|
|
|
return 'alert';
|
|
|
|
}
|
|
|
|
|
|
|
|
totalPriceColor(ticket) {
|
|
|
|
const total = parseInt(ticket.totalWithVat);
|
|
|
|
if (total > 0 && total < 50)
|
|
|
|
return 'warning';
|
|
|
|
}
|
|
|
|
|
|
|
|
exprBuilder(param, value) {
|
|
|
|
switch (param) {
|
|
|
|
case 'stateFk':
|
|
|
|
return {'ts.stateFk': value};
|
|
|
|
case 'salesPersonFk':
|
|
|
|
return {'c.salesPersonFk': value};
|
|
|
|
case 'provinceFk':
|
|
|
|
return {'a.provinceFk': value};
|
2021-10-13 12:17:45 +00:00
|
|
|
case 'theoreticalHour':
|
2021-05-11 07:43:15 +00:00
|
|
|
return {'z.hour': value};
|
2021-10-13 12:17:45 +00:00
|
|
|
case 'practicalHour':
|
|
|
|
return {'zed.etc': value};
|
2021-05-11 07:43:15 +00:00
|
|
|
case 'shipped':
|
|
|
|
return {'t.shipped': {
|
|
|
|
between: this.dateRange(value)}
|
|
|
|
};
|
|
|
|
case 'zoneFk':
|
|
|
|
case 'nickname':
|
|
|
|
return {[`t.${param}`]: value};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dateRange(value) {
|
|
|
|
const minHour = new Date(value);
|
|
|
|
minHour.setHours(0, 0, 0, 0);
|
|
|
|
const maxHour = new Date(value);
|
|
|
|
maxHour.setHours(23, 59, 59, 59);
|
|
|
|
|
|
|
|
return [minHour, maxHour];
|
|
|
|
}
|
|
|
|
|
|
|
|
preview(ticket) {
|
|
|
|
this.selectedTicket = ticket;
|
|
|
|
this.$.summary.show();
|
|
|
|
}
|
2021-10-20 12:40:08 +00:00
|
|
|
|
|
|
|
autoRefresh(value) {
|
|
|
|
if (value)
|
|
|
|
this.refreshTimer = setInterval(() => this.$.model.refresh(), 120000);
|
|
|
|
else {
|
|
|
|
clearInterval(this.refreshTimer);
|
|
|
|
this.refreshTimer = null;
|
|
|
|
}
|
|
|
|
}
|
2021-05-11 07:43:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ngModule.vnComponent('vnMonitorSalesTickets', {
|
|
|
|
template: require('./index.html'),
|
|
|
|
controller: Controller
|
|
|
|
});
|