2020-01-10 10:52:35 +00:00
|
|
|
import ngModule from '../module';
|
|
|
|
|
|
|
|
class Controller {
|
|
|
|
constructor($scope) {
|
|
|
|
this.$ = $scope;
|
|
|
|
}
|
2020-02-21 11:48:34 +00:00
|
|
|
get entry() {
|
|
|
|
return this._entry;
|
|
|
|
}
|
|
|
|
|
|
|
|
set entry(value) {
|
|
|
|
this._entry = value;
|
|
|
|
if (!value) return;
|
|
|
|
|
|
|
|
const date = value.travel.landed;
|
|
|
|
let to = new Date(date);
|
|
|
|
let from = new Date(date);
|
|
|
|
to.setDate(to.getDate() + 10);
|
|
|
|
|
|
|
|
to.setHours(0, 0, 0, 0);
|
|
|
|
|
|
|
|
from.setDate(from.getDate() - 10);
|
|
|
|
from.setHours(0, 0, 0, 0);
|
|
|
|
|
|
|
|
let links = {
|
|
|
|
btnOne: {
|
|
|
|
icon: 'local_airport',
|
|
|
|
state: `travel.index({q: '{"agencyFk": ${value.travel.agencyFk}}'})`,
|
|
|
|
tooltip: 'All travels with current agency'
|
|
|
|
}};
|
|
|
|
|
|
|
|
links.btnTwo = {
|
|
|
|
icon: 'icon-entry',
|
|
|
|
state: `entry.index({q: '{"supplierFk": ${value.supplierFk}, "to": "${to}", "from": "${from}"}'})`,
|
|
|
|
tooltip: 'All entries with current supplier'
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
this._quicklinks = links;
|
|
|
|
}
|
|
|
|
|
|
|
|
get quicklinks() {
|
|
|
|
return this._quicklinks;
|
|
|
|
}
|
|
|
|
|
|
|
|
set quicklinks(value = {}) {
|
|
|
|
this._quicklinks = Object.assign(value, this._quicklinks);
|
|
|
|
}
|
2020-01-10 10:52:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Controller.$inject = ['$scope'];
|
|
|
|
|
|
|
|
ngModule.component('vnEntryDescriptor', {
|
|
|
|
template: require('./index.html'),
|
|
|
|
bindings: {
|
|
|
|
entry: '<'
|
|
|
|
},
|
|
|
|
require: {
|
|
|
|
card: '^?vnEntryCard'
|
|
|
|
},
|
|
|
|
controller: Controller
|
|
|
|
});
|