salix/modules/order/front/prices-popover/index.js

124 lines
3.0 KiB
JavaScript
Raw Normal View History

import ngModule from '../module';
2020-05-06 12:38:09 +00:00
import Popover from 'core/components/popover';
import './style.scss';
2020-05-06 12:38:09 +00:00
class Controller extends Popover {
constructor(...args) {
super(...args);
this.totalBasquet = 0;
}
2018-09-14 12:20:58 +00:00
set prices(value) {
this._prices = value;
if (value && value[0].grouping)
this.calculateTotal();
}
2018-09-14 12:20:58 +00:00
get prices() {
return this._prices;
}
getTags() {
2020-05-06 12:38:09 +00:00
const filter = {
where: {
itemFk: this.id,
priority: {gte: 4}
},
order: 'priority ASC',
include: {relation: 'tag'}
};
2020-05-06 12:38:09 +00:00
this.$http.get(`ItemTags`, {filter})
.then(res => {
this.tags = res.data;
this.$.$applyAsync(() => this.relocate());
});
}
2020-05-06 12:38:09 +00:00
show(parent, item) {
this.item = JSON.parse(JSON.stringify(item));
2020-05-06 12:38:09 +00:00
this.id = item.id;
this.prices = this.item.prices;
this.getTags();
2020-05-06 12:38:09 +00:00
super.show(parent);
}
2020-05-06 12:38:09 +00:00
hide() {
super.hide();
this.id = null;
this.item = {};
this.tags = {};
2018-09-14 12:20:58 +00:00
this._prices = {};
this.total = 0;
}
2018-09-14 12:20:58 +00:00
calculateMax() {
this.max = this.item.available - this.total;
}
2018-09-14 12:20:58 +00:00
calculateTotal() {
this.total = 0;
this.prices.forEach(price => {
if (!price.quantity) price.quantity = 0;
this.total += price.quantity;
});
this.calculateMax();
}
addQuantity(price) {
2019-01-14 10:35:48 +00:00
if (this.total + price.grouping <= this.max)
price.quantity += price.grouping;
2018-09-14 12:20:58 +00:00
}
2018-09-14 12:20:58 +00:00
getFilledLines() {
2020-05-06 12:38:09 +00:00
const filledLines = [];
2018-09-17 12:30:39 +00:00
let match;
2018-09-14 12:20:58 +00:00
this.prices.forEach(price => {
2018-09-17 12:30:39 +00:00
if (price.quantity && price.quantity > 0) {
match = filledLines.find(element => {
return element.warehouseFk == price.warehouseFk;
});
if (!match) {
filledLines.push(Object.assign({}, price));
return;
}
match.quantity += price.quantity;
}
2018-09-14 12:20:58 +00:00
});
return filledLines;
}
2018-09-14 12:20:58 +00:00
submit() {
this.calculateTotal();
2020-05-06 12:38:09 +00:00
const filledLines = this.getFilledLines();
2018-09-14 12:20:58 +00:00
2018-09-17 12:30:39 +00:00
if (filledLines.length <= 0) {
2020-05-06 12:38:09 +00:00
this.vnApp.showError(this.$t('First you must add some quantity'));
2018-09-17 12:30:39 +00:00
return;
}
2018-09-14 12:20:58 +00:00
2020-05-06 12:38:09 +00:00
const params = {
orderFk: this.order.id,
items: filledLines
};
2020-05-06 12:38:09 +00:00
this.$http.post(`OrderRows/addToOrder`, params)
.then(() => {
this.vnApp.showSuccess(this.$t('Data saved!'));
this.hide();
if (this.card) this.card.reload();
});
}
}
2020-05-06 12:38:09 +00:00
ngModule.vnComponent('vnOrderPricesPopover', {
slotTemplate: require('./index.html'),
2018-09-14 12:20:58 +00:00
controller: Controller,
bindings: {
order: '<'
2019-01-14 10:35:48 +00:00
},
require: {
card: '?^vnOrderCard'
2018-09-14 12:20:58 +00:00
}
});