2018-03-12 13:02:29 +00:00
|
|
|
import ngModule from '../module';
|
|
|
|
|
|
|
|
export default class Controller {
|
2018-04-10 05:48:04 +00:00
|
|
|
constructor($scope) {
|
2018-10-30 12:58:02 +00:00
|
|
|
this.$ = $scope;
|
|
|
|
this.selectedTicket = null;
|
2018-04-10 05:48:04 +00:00
|
|
|
}
|
|
|
|
|
2018-04-19 12:56:05 +00:00
|
|
|
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';
|
2018-03-12 13:02:29 +00:00
|
|
|
}
|
2018-08-23 08:08:06 +00:00
|
|
|
|
2018-07-26 10:06:53 +00:00
|
|
|
showDescriptor(event, clientFk) {
|
|
|
|
event.preventDefault();
|
|
|
|
event.stopImmediatePropagation();
|
2018-10-30 12:58:02 +00:00
|
|
|
this.$.descriptor.clientFk = clientFk;
|
|
|
|
this.$.descriptor.parent = event.target;
|
|
|
|
this.$.descriptor.show();
|
2018-07-26 10:06:53 +00:00
|
|
|
}
|
2018-04-10 05:48:04 +00:00
|
|
|
|
2018-04-19 12:56:05 +00:00
|
|
|
preview(event, ticket) {
|
|
|
|
event.preventDefault();
|
|
|
|
event.stopImmediatePropagation();
|
2018-10-30 12:58:02 +00:00
|
|
|
this.selectedTicket = ticket;
|
|
|
|
this.$.summary.show();
|
2018-04-19 12:56:05 +00:00
|
|
|
}
|
2018-03-12 13:02:29 +00:00
|
|
|
}
|
2018-04-10 05:48:04 +00:00
|
|
|
|
|
|
|
Controller.$inject = ['$scope'];
|
2018-03-12 13:02:29 +00:00
|
|
|
|
2018-05-25 08:03:45 +00:00
|
|
|
ngModule.component('vnTicketIndex', {
|
|
|
|
template: require('./index.html'),
|
2018-03-12 13:02:29 +00:00
|
|
|
controller: Controller
|
|
|
|
});
|