salix/client/ticket/src/index/index.js

74 lines
1.8 KiB
JavaScript
Raw Normal View History

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-08-30 09:02:50 +00:00
this.$scope = $scope;
2018-04-10 05:48:04 +00:00
this.ticketSelected = null;
this.filter = {
2018-08-31 10:39:57 +00:00
order: 'shipped DESC'
};
}
exprBuilder(param, value) {
switch (param) {
case 'search':
2018-07-03 15:41:41 +00:00
return /^\d+$/.test(value)
? {id: value}
2018-08-30 09:02:50 +00:00
: {nickname: {like: value}};
case 'from':
return {shipped: {gte: value}};
case 'to':
return {shipped: {lte: value}};
case 'nickname':
2018-08-30 09:02:50 +00:00
return {[param]: {like: value}};
case 'id':
case 'clientFk':
case 'agencyModeFk':
case 'warehouseFk':
return {[param]: value};
}
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
showDescriptor(event, clientFk) {
2018-08-30 09:02:50 +00:00
this.$scope.descriptor.clientFk = clientFk;
this.$scope.descriptor.parent = event.target;
this.$scope.descriptor.show();
event.preventDefault();
event.stopImmediatePropagation();
}
onDescriptorLoad() {
2018-08-30 09:02:50 +00:00
this.$scope.popover.relocate();
}
2018-04-10 05:48:04 +00:00
2018-04-19 12:56:05 +00:00
preview(event, ticket) {
event.preventDefault();
event.stopImmediatePropagation();
2018-08-30 09:02:50 +00:00
this.$scope.dialogSummaryTicket.show();
2018-04-19 12:56:05 +00:00
this.ticketSelected = ticket;
}
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
ngModule.component('vnTicketIndex', {
template: require('./index.html'),
2018-03-12 13:02:29 +00:00
controller: Controller
});