salix/modules/entry/front/buy/index/index.js

85 lines
2.2 KiB
JavaScript
Raw Normal View History

2021-01-26 06:21:05 +00:00
import ngModule from '../../module';
2021-04-28 08:32:24 +00:00
import './style.scss';
2020-03-17 13:43:46 +00:00
import Section from 'salix/components/section';
2020-03-06 08:57:05 +00:00
2021-04-28 08:32:24 +00:00
export default class Controller extends Section {
saveBuy(buy) {
const missingData = !buy.itemFk || !buy.quantity || !buy.packageFk;
if (missingData) return;
let options;
2021-04-28 08:32:24 +00:00
if (buy.id) {
options = {
query: `Buys/${buy.id}`,
method: 'patch'
};
2021-04-28 08:32:24 +00:00
} else {
options = {
query: `Entries/${this.entry.id}/addBuy`,
method: 'post'
};
2021-04-28 08:32:24 +00:00
}
this.$http[options.method](options.query, buy).then(res => {
if (!res.data) return;
buy = Object.assign(buy, res.data);
this.vnApp.showSuccess(this.$t('Data saved!'));
});
2021-04-28 08:32:24 +00:00
}
/**
* Returns checked instances
*
* @return {Array} Checked instances
*/
selectedBuys() {
if (!this.buys) return;
return this.buys.filter(buy => {
return buy.checked;
});
}
deleteBuys() {
const buys = this.selectedBuys();
const actualInstances = buys.filter(buy => buy.id);
const params = {buys: actualInstances};
if (actualInstances.length) {
this.$http.post(`Buys/deleteBuys`, params).then(() => {
this.vnApp.showSuccess(this.$t('Data saved!'));
});
}
buys.forEach(buy => {
const index = this.buys.indexOf(buy);
this.buys.splice(index, 1);
});
}
toggleGroupingMode(buy, mode) {
const groupingFk = 1;
const packingFk = 2;
const grouingMode = mode === 'grouping' ? groupingFk : packingFk;
const newGroupingMode = buy.groupingMode === grouingMode ? 0 : grouingMode;
const params = {
groupingMode: newGroupingMode
};
this.$http.patch(`Buys/${buy.id}`, params).then(() => {
buy.groupingMode = newGroupingMode;
this.vnApp.showSuccess(this.$t('Data saved!'));
});
}
2021-04-28 08:32:24 +00:00
}
2021-01-26 06:21:05 +00:00
ngModule.vnComponent('vnEntryBuyIndex', {
2020-03-06 08:57:05 +00:00
template: require('./index.html'),
2021-04-28 08:32:24 +00:00
controller: Controller,
2020-03-06 08:57:05 +00:00
bindings: {
entry: '<'
}
});