salix/modules/entry/front/latest-buys/index.js

210 lines
6.0 KiB
JavaScript
Raw Normal View History

2020-07-20 09:31:47 +00:00
import ngModule from '../module';
import Section from 'salix/components/section';
import './style.scss';
2020-07-20 09:31:47 +00:00
export default class Controller extends Section {
constructor($element, $) {
super($element, $);
2020-08-26 14:33:47 +00:00
this.editedColumn;
2022-04-20 06:55:43 +00:00
this.checkAll = false;
this.checkedBuys = [];
this.smartTableOptions = {
activeButtons: {
search: true,
shownColumns: true,
},
columns: [
{
field: 'code',
autocomplete: {
url: 'ItemTypes',
showField: 'code',
valueField: 'code',
}
},
{
field: 'origin',
autocomplete: {
url: 'Origins',
showField: 'code',
valueField: 'code'
}
},
{
field: 'family',
autocomplete: {
url: 'ItemFamilies',
valueField: 'code',
showField: 'code'
}
},
{
field: 'intrastat',
autocomplete: {
url: 'Intrastats',
showField: 'description',
valueField: 'description'
}
},
{
2023-09-22 08:59:48 +00:00
field: 'packagingFk',
autocomplete: {
url: 'Packagings',
showField: 'id'
}
},
{
field: 'isActive',
searchable: false
},
{
field: 'isIgnored',
searchable: false
},
2021-11-24 09:02:52 +00:00
{
field: 'landing',
searchable: false
}
]
};
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')},
2022-09-30 12:55:31 +00:00
{field: 'weightByPiece', displayName: this.$t('weight/Piece')},
{field: 'packingOut', displayName: this.$t('PackingOut')},
{field: 'landing', displayName: this.$t('Landing')}
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 || [];
2022-04-13 06:15:47 +00:00
const checkedBuys = [];
2020-07-20 09:31:47 +00:00
for (let buy of buys) {
2022-04-20 06:55:43 +00:00
if (buy.checked)
2020-07-20 09:31:47 +00:00
checkedBuys.push(buy);
}
return checkedBuys;
}
exprBuilder(param, value) {
switch (param) {
case 'id':
case 'size':
2022-08-24 12:13:26 +00:00
case 'weightByPiece':
case 'isActive':
case 'family':
case 'minPrice':
case 'packingOut':
return {[`i.${param}`]: value};
case 'name':
case 'description':
return {[`i.${param}`]: {like: `%${value}%`}};
case 'code':
return {'it.code': value};
case 'intrastat':
return {'intr.description': value};
case 'origin':
return {'ori.code': value};
case 'landing':
return {[`lb.${param}`]: value};
case 'packing':
case 'grouping':
case 'quantity':
case 'entryFk':
case 'buyingValue':
case 'freightValue':
case 'comissionValue':
case 'packageValue':
case 'isIgnored':
case 'price2':
case 'price3':
case 'ektFk':
case 'weight':
2023-09-22 08:59:48 +00:00
case 'packagingFk':
return {[`b.${param}`]: value};
}
}
2020-08-26 14:33:47 +00:00
uncheck() {
2021-11-11 15:38:41 +00:00
this.checkAll = false;
this.checkedBuys = [];
2020-08-26 14:33:47 +00:00
}
2020-07-20 09:31:47 +00:00
get totalChecked() {
2022-04-13 06:15:47 +00:00
if (this.checkedDummyCount)
return this.checkedDummyCount;
2020-07-20 09:31:47 +00:00
return this.checked.length;
}
2020-08-26 14:33:47 +00:00
saveChecked(buyId) {
const index = this.checkedBuys.indexOf(buyId);
if (index !== -1)
return this.checkedBuys.splice(index, 1);
return this.checkedBuys.push(buyId);
}
reCheck() {
if (!this.$.model.data) return;
if (!this.checkedBuys.length) return;
this.$.model.data.forEach(buy => {
if (this.checkedBuys.includes(buy.id))
buy.checked = true;
});
}
2020-08-26 14:33:47 +00:00
onEditAccept() {
const rowsToEdit = [];
for (let row of this.checked)
rowsToEdit.push({id: row.id, itemFk: row.itemFk});
2022-04-13 06:15:47 +00:00
2021-11-11 16:18:19 +00:00
const data = {
2020-09-02 11:09:30 +00:00
field: this.editedColumn.field,
newValue: this.editedColumn.newValue,
2022-04-13 06:15:47 +00:00
lines: rowsToEdit
2020-08-26 14:33:47 +00:00
};
if (this.checkedDummyCount && this.checkedDummyCount > 0) {
const params = {};
if (this.$.model.userParams) {
const userParams = this.$.model.userParams;
for (let param in userParams) {
let newParam = this.exprBuilder(param, userParams[param]);
if (!newParam)
newParam = {[param]: userParams[param]};
Object.assign(params, newParam);
}
}
if (this.$.model.userFilter)
Object.assign(params, this.$.model.userFilter.where);
data.filter = params;
}
2022-04-13 06:15: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
});