salix/modules/item/front/diary/index.js

178 lines
4.8 KiB
JavaScript
Raw Normal View History

import ngModule from '../module';
import './style.scss';
class Controller {
2018-09-06 13:08:02 +00:00
constructor($scope, $http, $state, $window, $translate, $stateParams) {
this.$scope = $scope;
this.$http = $http;
this.$state = $state;
2018-09-06 13:08:02 +00:00
this.$stateParams = $stateParams;
this.$window = $window;
this.$translate = $translate;
}
get item() {
return this._item;
}
set item(value) {
this._item = value;
2018-09-06 13:08:02 +00:00
this.filter = {
where: {itemFk: this.$stateParams.id}
};
this.$scope.$$postDigest(() => {
if (this.$stateParams.warehouseFk)
this.warehouseFk = this.$stateParams.warehouseFk;
else if (value)
this.warehouseFk = value.itemType.warehouseFk;
2018-10-05 13:53:31 +00:00
if (this.$stateParams.ticketFk)
this.ticketFk = this.$stateParams.ticketFk;
});
}
2018-09-06 13:08:02 +00:00
set warehouseFk(value) {
2018-11-14 10:17:33 +00:00
if (value && value != this._warehouseFk) {
this._warehouseFk = value;
2018-09-06 13:08:02 +00:00
2018-11-14 10:17:33 +00:00
this.$state.go(this.$state.current.name, {
warehouseFk: value
});
2018-11-14 10:17:33 +00:00
this.filter.where.warehouseFk = value;
this.$scope.model.refresh();
}
}
2018-09-06 13:08:02 +00:00
get warehouseFk() {
return this._warehouseFk;
}
get freeLineIndex() {
let lines = this.$scope.model.data;
2018-09-06 13:08:02 +00:00
let currentDate = new Date();
currentDate.setHours(0, 0, 0);
for (let i = 0; i < lines.length; i++) {
2018-09-06 13:08:02 +00:00
let isFutureDate = new Date(lines[i].date) >= currentDate;
if (isFutureDate)
return i;
}
}
get onPreparationLineIndex() {
let lines = this.$scope.model.data;
2018-11-14 10:17:33 +00:00
for (let i = this.freeLineIndex; i >= 0; i--) {
let line = lines[i];
let currentDate = new Date();
currentDate.setHours(0, 0, 0);
let isPastDate = new Date(lines[i].date) < currentDate;
let isPicked = line.alertLevel == 1 && line.isPicked;
if ((isPicked) || line.alertLevel > 1 || isPastDate)
2018-11-14 10:17:33 +00:00
return i + 1;
}
}
2018-10-05 13:53:31 +00:00
get givenTicketIndex() {
let lines = this.$scope.model.data;
for (let i = lines.length - 1; i > 0; i--) {
let line = lines[i];
if (line.origin == this.ticketFk)
return i;
}
}
scrollToLine() {
let body = this.$window.document.body;
2018-11-14 10:17:33 +00:00
let selectedTicketLineIndex = this.givenTicketIndex;
let lineIndex = this.onPreparationLineIndex;
2018-10-05 13:53:31 +00:00
let lines = body.querySelector('vn-tbody').children;
2018-11-14 10:17:33 +00:00
if (lineIndex == undefined || !lines.length) return;
let onPreparationLine = lines[lineIndex];
2018-11-14 10:17:33 +00:00
2018-10-05 13:53:31 +00:00
let balance = onPreparationLine.querySelector('.balanceSpan');
balance.classList.add('counter');
balance.title = this.$translate.instant('Visible quantity');
let headerOffset = body.querySelector('header').getBoundingClientRect();
let headerHeight = headerOffset.height;
2018-11-14 10:17:33 +00:00
let offsetTop;
if (this.ticketFk) {
let selectedTicketLine = lines[selectedTicketLineIndex];
let id = selectedTicketLine.querySelector('.id');
id.classList.add('counter');
offsetTop = selectedTicketLine.offsetTop - headerHeight;
} else
offsetTop = onPreparationLine.offsetTop - headerHeight;
body.querySelector('ui-view').scrollTop = offsetTop;
2018-11-14 10:17:33 +00:00
2018-10-05 13:53:31 +00:00
this.ticketFk = null;
}
2018-11-14 10:17:33 +00:00
/**
* Compares a date with the current one
* @param {Object} date - Date to compare
* @return {Boolean} - Returns true if the two dates equals
*/
isToday(date) {
let today = new Date();
today.setHours(0, 0, 0, 0);
let comparedDate = new Date(date);
comparedDate.setHours(0, 0, 0, 0);
if (!(today - comparedDate))
return true;
}
2018-08-30 09:02:50 +00:00
showDescriptor(event, sale) {
if (!sale.isTicket) return;
this.$scope.descriptor.ticketFk = sale.origin;
this.$scope.descriptor.parent = event.target;
this.$scope.descriptor.show();
event.preventDefault();
event.stopImmediatePropagation();
}
2018-09-04 09:49:00 +00:00
showClientDescriptor(event, sale) {
if (!sale.isTicket) return;
this.$scope.clientDescriptor.clientFk = sale.clientFk;
this.$scope.clientDescriptor.parent = event.target;
this.$scope.clientDescriptor.show();
event.preventDefault();
event.stopImmediatePropagation();
}
2018-08-30 09:02:50 +00:00
onDescriptorLoad() {
this.$scope.popover.relocate();
}
}
2018-09-06 13:08:02 +00:00
Controller.$inject = ['$scope', '$http', '$state', '$window', '$translate', '$stateParams'];
ngModule.component('vnItemDiary', {
template: require('./index.html'),
controller: Controller,
bindings: {
item: '<'
}
});