2020-07-20 09:31:47 +00:00
|
|
|
import ngModule from '../module';
|
|
|
|
import Section from 'salix/components/section';
|
2021-03-16 07:44:05 +00:00
|
|
|
import './style.scss';
|
2020-07-20 09:31:47 +00:00
|
|
|
|
|
|
|
export default class Controller extends Section {
|
|
|
|
constructor($element, $) {
|
|
|
|
super($element, $);
|
|
|
|
this.showFields = {
|
|
|
|
id: false,
|
|
|
|
actions: false
|
|
|
|
};
|
2020-08-26 14:33:47 +00:00
|
|
|
this.editedColumn;
|
2020-07-20 09:31:47 +00:00
|
|
|
}
|
2020-08-26 14:33:47 +00:00
|
|
|
|
|
|
|
get columns() {
|
|
|
|
if (this._columns) return this._columns;
|
|
|
|
|
|
|
|
this._columns = [
|
2020-09-02 11:09:30 +00:00
|
|
|
{field: 'packing', displayName: this.$t('Packing')},
|
|
|
|
{field: 'grouping', displayName: this.$t('Grouping')},
|
|
|
|
{field: 'packageValue', displayName: this.$t('Package value')},
|
|
|
|
{field: 'weight', displayName: this.$t('Weight')},
|
|
|
|
{field: 'description', displayName: this.$t('Description')},
|
|
|
|
{field: 'size', displayName: this.$t('Size')},
|
2021-06-15 10:47:40 +00:00
|
|
|
{field: 'density', displayName: this.$t('Density')},
|
|
|
|
{field: 'packingOut', displayName: this.$t('PackingOut')}
|
2020-08-26 14:33:47 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
return this._columns;
|
|
|
|
}
|
|
|
|
|
2020-07-20 09:31:47 +00:00
|
|
|
get checked() {
|
|
|
|
const buys = this.$.model.data || [];
|
|
|
|
const checkedBuys = [];
|
|
|
|
for (let buy of buys) {
|
|
|
|
if (buy.checked)
|
|
|
|
checkedBuys.push(buy);
|
|
|
|
}
|
|
|
|
|
|
|
|
return checkedBuys;
|
|
|
|
}
|
|
|
|
|
2020-08-26 14:33:47 +00:00
|
|
|
uncheck() {
|
|
|
|
const lines = this.checked;
|
|
|
|
for (let line of lines) {
|
|
|
|
if (line.checked)
|
|
|
|
line.checked = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-20 09:31:47 +00:00
|
|
|
get totalChecked() {
|
|
|
|
return this.checked.length;
|
|
|
|
}
|
2020-08-26 14:33:47 +00:00
|
|
|
|
|
|
|
onEditAccept() {
|
2021-06-16 10:29:40 +00:00
|
|
|
const rowsToEdit = [];
|
|
|
|
for (let row of this.checked)
|
|
|
|
rowsToEdit.push({id: row.id, itemFk: row.itemFk});
|
|
|
|
|
2020-08-26 14:33:47 +00:00
|
|
|
let data = {
|
2020-09-02 11:09:30 +00:00
|
|
|
field: this.editedColumn.field,
|
|
|
|
newValue: this.editedColumn.newValue,
|
2021-06-16 10:29:40 +00:00
|
|
|
lines: rowsToEdit
|
2020-08-26 14:33:47 +00:00
|
|
|
};
|
|
|
|
|
2020-09-02 11:09:30 +00:00
|
|
|
return this.$http.post('Buys/editLatestBuys', data)
|
2020-08-26 14:33:47 +00:00
|
|
|
.then(() => {
|
|
|
|
this.uncheck();
|
|
|
|
this.$.model.refresh();
|
|
|
|
});
|
|
|
|
}
|
2020-07-20 09:31:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ngModule.component('vnEntryLatestBuys', {
|
|
|
|
template: require('./index.html'),
|
|
|
|
controller: Controller
|
|
|
|
});
|