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

144 lines
4.2 KiB
JavaScript
Raw Normal View History

2018-03-12 13:02:29 +00:00
import ngModule from '../module';
import './style.scss';
2018-03-12 13:02:29 +00:00
export default class Controller {
constructor($scope, $state, $stateParams, $translate, $http) {
this.$ = $scope;
this.$http = $http;
2019-03-27 08:58:58 +00:00
this.$translate = $translate;
2019-01-24 07:21:00 +00:00
this.$stateParams = $stateParams;
this.$state = $state;
this.selectedTicket = null;
this.moreOptions = [
{callback: () => {
2019-07-29 11:12:36 +00:00
this.$state.go('ticket.weekly.index');
}, name: 'Weekly tickets', always: true},
2019-04-25 05:57:26 +00:00
{callback: () => {
this.setBalanceCreateDialog();
this.$.balanceCreateDialog.show();
}, name: 'Payment on account...', always: true}
];
2019-10-29 06:46:44 +00:00
console.log(this.$stateParams);
}
2019-01-23 11:30:32 +00:00
2019-04-25 05:57:26 +00:00
setBalanceCreateDialog() {
let data = this.$.tickets;
let description = [];
this.$.balanceCreateDialog.amountPaid = 0;
if (data) {
for (let i = 0; i < data.length; i++) {
if (data[i].checked) {
this.$.balanceCreateDialog.amountPaid += data[i].total;
this.$.balanceCreateDialog.clientFk = data[i].clientFk;
description.push(`${data[i].id}`);
}
}
}
this.$.balanceCreateDialog.description = 'Albaran: ';
this.$.balanceCreateDialog.description += description.join(', ');
2019-04-25 05:57:26 +00:00
}
2019-07-12 12:00:32 +00:00
getScopeDates(days) {
const today = new Date();
today.setHours(0, 0, 0, 0);
2018-12-12 13:52:20 +00:00
2019-07-12 12:00:32 +00:00
const daysOnward = new Date(today);
daysOnward.setDate(today.getDate() + days);
daysOnward.setHours(23, 59, 59, 999);
2019-07-12 12:00:32 +00:00
return {from: today, to: daysOnward};
2019-01-22 15:18:26 +00:00
}
2018-12-19 07:42:07 +00:00
onSearch(params) {
if (params) {
2019-07-12 12:00:32 +00:00
let newParams = params;
if (params.scopeDays) {
2019-07-12 12:00:32 +00:00
const scopeDates = this.getScopeDates(params.scopeDays);
Object.assign(newParams, scopeDates);
} else if (Object.entries(params).length == 0)
newParams = this.getScopeDates(1);
this.$.model.applyFilter(null, newParams);
} else
2018-12-19 07:42:07 +00:00
this.$.model.clear();
}
goToLines(event, ticketFk) {
2019-03-27 08:58:58 +00:00
this.preventDefault(event);
let url = this.$state.href('ticket.card.sale', {id: ticketFk}, {absolute: true});
window.open(url, '_blank');
}
onMoreOpen() {
let options = this.moreOptions.filter(o => o.always || this.isChecked);
this.$.moreButton.data = options;
}
onMoreChange(callback) {
callback.call(this);
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-12-21 06:53:04 +00:00
stateColor(ticket) {
if (ticket.alertLevelCode === 'OK')
2019-02-10 21:52:35 +00:00
return 'success';
2018-12-21 06:53:04 +00:00
else if (ticket.alertLevelCode === 'FREE')
2019-02-10 21:52:35 +00:00
return 'notice';
2018-12-21 06:53:04 +00:00
else if (ticket.alertLevel === 1)
2019-02-10 21:52:35 +00:00
return 'warning';
2018-12-21 06:53:04 +00:00
else if (ticket.alertLevel === 0)
2019-02-10 21:52:35 +00:00
return 'alert';
2018-12-21 06:53:04 +00:00
}
totalPriceColor(ticket) {
const total = parseInt(ticket.total);
if (total > 0 && total < 50)
return 'warning';
}
showClientDescriptor(event, clientFk) {
2019-03-27 08:58:58 +00:00
this.preventDefault(event);
this.$.clientDescriptor.clientFk = clientFk;
this.$.clientDescriptor.parent = event.target;
this.$.clientDescriptor.show();
}
showWorkerDescriptor(event, workerFk) {
2019-03-27 08:58:58 +00:00
this.preventDefault(event);
this.selectedWorker = workerFk;
this.$.workerDescriptor.parent = event.target;
this.$.workerDescriptor.show();
}
2018-04-10 05:48:04 +00:00
2018-04-19 12:56:05 +00:00
preview(event, ticket) {
2019-03-27 08:58:58 +00:00
this.preventDefault(event);
this.selectedTicket = ticket;
this.$.summary.show();
2018-04-19 12:56:05 +00:00
}
2019-03-27 08:58:58 +00:00
preventDefault(event) {
event.preventDefault();
event.stopImmediatePropagation();
}
2018-03-12 13:02:29 +00:00
}
2018-04-10 05:48:04 +00:00
Controller.$inject = ['$scope', '$state', '$stateParams', '$translate', '$http'];
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
});