forked from verdnatura/salix-front
feat: with VnTable
This commit is contained in:
parent
9fe09bcffc
commit
0e5e7c3fda
|
@ -158,7 +158,7 @@ const col = computed(() => {
|
||||||
const components = computed(() => $props.components ?? defaultComponents);
|
const components = computed(() => $props.components ?? defaultComponents);
|
||||||
</script>
|
</script>
|
||||||
<template>
|
<template>
|
||||||
<div class="row no-wrap">
|
<div class="row no-wrap" :style="$props.column.style">
|
||||||
<VnComponent
|
<VnComponent
|
||||||
v-if="col.before"
|
v-if="col.before"
|
||||||
:prop="col.before"
|
:prop="col.before"
|
||||||
|
|
|
@ -1,9 +1,8 @@
|
||||||
<script setup>
|
<script setup>
|
||||||
import { onMounted, ref, reactive, onUnmounted, watch, nextTick } from 'vue';
|
import { onMounted, ref, reactive, onUnmounted, nextTick, computed } from 'vue';
|
||||||
import { useI18n } from 'vue-i18n';
|
import { useI18n } from 'vue-i18n';
|
||||||
import VnSubToolbar from 'src/components/ui/VnSubToolbar.vue';
|
import VnSubToolbar from 'src/components/ui/VnSubToolbar.vue';
|
||||||
|
|
||||||
import FetchData from 'components/FetchData.vue';
|
|
||||||
import FetchedTags from 'components/ui/FetchedTags.vue';
|
import FetchedTags from 'components/ui/FetchedTags.vue';
|
||||||
import VnInput from 'src/components/common/VnInput.vue';
|
import VnInput from 'src/components/common/VnInput.vue';
|
||||||
import VnSelect from 'src/components/common/VnSelect.vue';
|
import VnSelect from 'src/components/common/VnSelect.vue';
|
||||||
|
@ -13,15 +12,15 @@ import ItemFixedPriceFilter from './ItemFixedPriceFilter.vue';
|
||||||
import ItemDescriptorProxy from './Card/ItemDescriptorProxy.vue';
|
import ItemDescriptorProxy from './Card/ItemDescriptorProxy.vue';
|
||||||
|
|
||||||
import { useStateStore } from 'stores/useStateStore';
|
import { useStateStore } from 'stores/useStateStore';
|
||||||
import { dashIfEmpty } from 'src/filters';
|
import { dashIfEmpty, toDate } from 'src/filters';
|
||||||
import { useVnConfirm } from 'composables/useVnConfirm';
|
import { useVnConfirm } from 'composables/useVnConfirm';
|
||||||
import { useState } from 'src/composables/useState';
|
import { useState } from 'src/composables/useState';
|
||||||
import { toCurrency } from 'filters/index';
|
import { toCurrency } from 'filters/index';
|
||||||
import useNotify from 'src/composables/useNotify.js';
|
import useNotify from 'src/composables/useNotify.js';
|
||||||
import axios from 'axios';
|
import axios from 'axios';
|
||||||
import { useArrayData } from 'composables/useArrayData';
|
|
||||||
import { isLower, isBigger } from 'src/filters/date.js';
|
import { isLower, isBigger } from 'src/filters/date.js';
|
||||||
import RightMenu from 'src/components/common/RightMenu.vue';
|
import RightMenu from 'src/components/common/RightMenu.vue';
|
||||||
|
import VnTable from 'src/components/VnTable/VnTable.vue';
|
||||||
import { QCheckbox } from 'quasar';
|
import { QCheckbox } from 'quasar';
|
||||||
|
|
||||||
const checked = ref(false);
|
const checked = ref(false);
|
||||||
|
@ -55,106 +54,106 @@ const exprBuilder = (param, value) => {
|
||||||
};
|
};
|
||||||
|
|
||||||
const params = reactive({});
|
const params = reactive({});
|
||||||
const arrayData = useArrayData('ItemFixedPrices', {
|
// const arrayData = useArrayData('ItemFixedPrices', {
|
||||||
url: 'FixedPrices/filter',
|
// url: 'FixedPrices/filter',
|
||||||
userParams: params,
|
// userParams: params,
|
||||||
order: ['name ASC', 'itemFk'],
|
// order: ['name ASC', 'itemFk'],
|
||||||
exprBuilder: exprBuilder,
|
// exprBuilder: exprBuilder,
|
||||||
});
|
// });
|
||||||
const store = arrayData.store;
|
// const store = arrayData.store;
|
||||||
|
|
||||||
const fetchFixedPrices = async () => {
|
// const fetchFixedPrices = async () => {
|
||||||
await arrayData.fetch({ append: false });
|
// await arrayData.fetch({ append: false });
|
||||||
};
|
// };
|
||||||
|
|
||||||
const onFixedPricesFetched = (data) => {
|
// const onFixedPricesFetched = (data) => {
|
||||||
data.forEach((item) => {
|
// data.forEach((item) => {
|
||||||
console.log(item.hasMinPrice);
|
// console.log(item.hasMinPrice);
|
||||||
item.hasMinPrice = `${item.hasMinPrice !== 0}`;
|
// item.hasMinPrice = `${item.hasMinPrice !== 0}`;
|
||||||
});
|
// });
|
||||||
fixedPrices.value = data;
|
// fixedPrices.value = data;
|
||||||
// el objetivo de guardar una copia de las rows es evitar guardar cambios si la data no cambió al disparar los eventos
|
// // el objetivo de guardar una copia de las rows es evitar guardar cambios si la data no cambió al disparar los eventos
|
||||||
fixedPricesOriginalData.value = JSON.parse(JSON.stringify(data));
|
// fixedPricesOriginalData.value = JSON.parse(JSON.stringify(data));
|
||||||
};
|
// };
|
||||||
|
|
||||||
watch(
|
// watch(
|
||||||
() => store.data,
|
// () => store.data,
|
||||||
(data) => onFixedPricesFetched(data)
|
// (data) => onFixedPricesFetched(data)
|
||||||
);
|
// );
|
||||||
|
|
||||||
const applyColumnFilter = async (col) => {
|
// const applyColumnFilter = async (col) => {
|
||||||
try {
|
// try {
|
||||||
const paramKey = col.columnFilter?.filterParamKey || col.field;
|
// const paramKey = col.columnFilter?.filterParamKey || col.field;
|
||||||
params[paramKey] = col.columnFilter.filterValue;
|
// params[paramKey] = col.columnFilter.filterValue;
|
||||||
await arrayData.addFilter({ params });
|
// await arrayData.addFilter({ params });
|
||||||
} catch (err) {
|
// } catch (err) {
|
||||||
console.error('Error applying column filter', err);
|
// console.error('Error applying column filter', err);
|
||||||
}
|
// }
|
||||||
};
|
// };
|
||||||
|
|
||||||
const getColumnInputEvents = (col) => {
|
// const getColumnInputEvents = (col) => {
|
||||||
return col.columnFilter.type === 'select'
|
// return col.columnFilter.type === 'select'
|
||||||
? { 'update:modelValue': () => applyColumnFilter(col) }
|
// ? { 'update:modelValue': () => applyColumnFilter(col) }
|
||||||
: {
|
// : {
|
||||||
'keyup.enter': () => applyColumnFilter(col),
|
// 'keyup.enter': () => applyColumnFilter(col),
|
||||||
};
|
// };
|
||||||
};
|
// };
|
||||||
|
|
||||||
const defaultColumnFilter = {
|
// const defaultColumnFilter = {
|
||||||
component: VnInput,
|
// component: VnInput,
|
||||||
type: 'text',
|
// type: 'text',
|
||||||
filterValue: null,
|
// filterValue: null,
|
||||||
event: getColumnInputEvents,
|
// event: getColumnInputEvents,
|
||||||
attrs: {
|
// attrs: {
|
||||||
dense: true,
|
// dense: true,
|
||||||
},
|
// },
|
||||||
};
|
// };
|
||||||
|
|
||||||
const defaultColumnAttrs = {
|
const defaultColumnAttrs = {
|
||||||
align: 'left',
|
align: 'left',
|
||||||
sortable: true,
|
sortable: true,
|
||||||
};
|
};
|
||||||
|
|
||||||
const columns = ref([
|
const columns = computed(() => [
|
||||||
{
|
{
|
||||||
sortable: true,
|
sortable: true,
|
||||||
align: 'left',
|
align: 'left',
|
||||||
label: t('item.fixedPrice.itemId'),
|
label: t('item.fixedPrice.itemId'),
|
||||||
name: 'itemId',
|
name: 'itemId',
|
||||||
field: 'itemFk',
|
|
||||||
...defaultColumnAttrs,
|
...defaultColumnAttrs,
|
||||||
columnFilter: {
|
isId: true,
|
||||||
...defaultColumnFilter,
|
cardVisible: true,
|
||||||
|
columnField: {
|
||||||
|
component: 'input',
|
||||||
|
type: 'number',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: t('globals.description'),
|
label: t('globals.name'),
|
||||||
field: 'name',
|
field: 'name',
|
||||||
name: 'description',
|
name: 'description',
|
||||||
...defaultColumnAttrs,
|
...defaultColumnAttrs,
|
||||||
columnFilter: {
|
create: true,
|
||||||
...defaultColumnFilter,
|
cardVisible: true,
|
||||||
},
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: t('item.fixedPrice.groupingPrice'),
|
label: t('item.fixedPrice.groupingPrice'),
|
||||||
field: 'rate2',
|
field: 'rate2',
|
||||||
name: 'groupingPrice',
|
name: 'rate2',
|
||||||
...defaultColumnAttrs,
|
...defaultColumnAttrs,
|
||||||
columnFilter: {
|
cardVisible: true,
|
||||||
...defaultColumnFilter,
|
class: 'expand',
|
||||||
},
|
|
||||||
format: (val) => toCurrency(val),
|
style: 'max-width: 80px',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: t('item.fixedPrice.packingPrice'),
|
label: t('item.fixedPrice.packingPrice'),
|
||||||
field: 'rate3',
|
field: 'rate3',
|
||||||
name: 'packingPrice',
|
name: 'rate3',
|
||||||
...defaultColumnAttrs,
|
...defaultColumnAttrs,
|
||||||
columnFilter: {
|
cardVisible: true,
|
||||||
...defaultColumnFilter,
|
class: 'expand',
|
||||||
},
|
style: 'max-width: 80px',
|
||||||
format: (val) => dashIfEmpty(val),
|
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
|
@ -162,8 +161,11 @@ const columns = ref([
|
||||||
field: 'minPrice',
|
field: 'minPrice',
|
||||||
name: 'minPrice',
|
name: 'minPrice',
|
||||||
...defaultColumnAttrs,
|
...defaultColumnAttrs,
|
||||||
columnFilter: {
|
cardVisible: true,
|
||||||
...defaultColumnFilter,
|
columnField: {
|
||||||
|
class: 'expand',
|
||||||
|
component: 'input',
|
||||||
|
type: 'number',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -171,93 +173,40 @@ const columns = ref([
|
||||||
field: 'started',
|
field: 'started',
|
||||||
name: 'started',
|
name: 'started',
|
||||||
...defaultColumnAttrs,
|
...defaultColumnAttrs,
|
||||||
columnFilter: null,
|
cardVisible: true,
|
||||||
|
component: 'date',
|
||||||
|
format: (row) => toDate(row.started),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: t('item.fixedPrice.ended'),
|
label: t('item.fixedPrice.ended'),
|
||||||
field: 'ended',
|
field: 'ended',
|
||||||
name: 'ended',
|
name: 'ended',
|
||||||
...defaultColumnAttrs,
|
...defaultColumnAttrs,
|
||||||
columnFilter: null,
|
cardVisible: true,
|
||||||
|
component: 'date',
|
||||||
|
format: (row) => toDate(row.ended),
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
label: t('item.fixedPrice.warehouse'),
|
label: t('item.fixedPrice.warehouse'),
|
||||||
field: 'warehouseFk',
|
field: 'warehouseFk',
|
||||||
name: 'warehouse',
|
name: 'warehouseFk',
|
||||||
...defaultColumnAttrs,
|
...defaultColumnAttrs,
|
||||||
columnFilter: {
|
},
|
||||||
component: VnSelect,
|
{
|
||||||
type: 'select',
|
align: 'right',
|
||||||
filterValue: null,
|
name: 'tableActions',
|
||||||
event: getColumnInputEvents,
|
actions: [
|
||||||
attrs: {
|
{
|
||||||
options: warehousesOptions.value,
|
title: t('delete'),
|
||||||
'option-value': 'id',
|
icon: 'delete',
|
||||||
'option-label': 'name',
|
action: (row) => confirmRemove(row),
|
||||||
dense: true,
|
isPrimary: true,
|
||||||
},
|
},
|
||||||
},
|
],
|
||||||
},
|
},
|
||||||
{ name: 'deleteAction', align: 'center' },
|
|
||||||
]);
|
]);
|
||||||
|
|
||||||
const editTableFieldsOptions = [
|
|
||||||
{
|
|
||||||
field: 'rate2',
|
|
||||||
label: t('item.fixedPrice.groupingPrice'),
|
|
||||||
component: 'input',
|
|
||||||
attrs: {
|
|
||||||
type: 'number',
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
field: 'rate3',
|
|
||||||
label: t('item.fixedPrice.packingPrice'),
|
|
||||||
component: 'input',
|
|
||||||
attrs: {
|
|
||||||
type: 'number',
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
field: 'minPrice',
|
|
||||||
label: t('item.fixedPrice.minPrice'),
|
|
||||||
component: 'input',
|
|
||||||
attrs: {
|
|
||||||
type: 'number',
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
field: 'hasMinPrice',
|
|
||||||
label: t('item.fixedPrice.hasMinPrice'),
|
|
||||||
component: 'checkbox',
|
|
||||||
attrs: {
|
|
||||||
'false-value': 0,
|
|
||||||
'true-value': 1,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
field: 'started',
|
|
||||||
label: t('item.fixedPrice.started'),
|
|
||||||
component: 'date',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
field: 'ended',
|
|
||||||
label: t('item.fixedPrice.ended'),
|
|
||||||
component: 'date',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
field: 'warehouseFk',
|
|
||||||
label: t('item.fixedPrice.warehouse'),
|
|
||||||
component: 'select',
|
|
||||||
attrs: {
|
|
||||||
options: [],
|
|
||||||
'option-label': 'name',
|
|
||||||
'option-value': 'id',
|
|
||||||
},
|
|
||||||
},
|
|
||||||
];
|
|
||||||
|
|
||||||
const getRowUpdateInputEvents = (props, resetMinPrice, inputType = 'text') => {
|
const getRowUpdateInputEvents = (props, resetMinPrice, inputType = 'text') => {
|
||||||
return inputType === 'text'
|
return inputType === 'text'
|
||||||
? {
|
? {
|
||||||
|
@ -272,8 +221,8 @@ const validations = (row, rowIndex, col) => {
|
||||||
// Si la row no tiene id significa que fue agregada con addRow y no se ha guardado en la base de datos
|
// Si la row no tiene id significa que fue agregada con addRow y no se ha guardado en la base de datos
|
||||||
// Si isNew es falso no se checkea si el valor es igual a la original
|
// Si isNew es falso no se checkea si el valor es igual a la original
|
||||||
if (!isNew)
|
if (!isNew)
|
||||||
if (fixedPricesOriginalData.value[rowIndex][col.field] == row[col.field])
|
// if (fixedPricesOriginalData.value[rowIndex][col.field] == row[col.field])
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
const requiredFields = ['itemFk', 'started', 'ended', 'rate2', 'rate3'];
|
const requiredFields = ['itemFk', 'started', 'ended', 'rate2', 'rate3'];
|
||||||
return requiredFields.every(
|
return requiredFields.every(
|
||||||
|
@ -295,12 +244,12 @@ const upsertPrice = async ({ row, col, rowIndex }, resetMinPrice = false) => {
|
||||||
try {
|
try {
|
||||||
if (resetMinPrice) row.hasMinPrice = 0;
|
if (resetMinPrice) row.hasMinPrice = 0;
|
||||||
row = await upsertFixedPrice(row);
|
row = await upsertFixedPrice(row);
|
||||||
fixedPricesOriginalData.value[rowIndex][col.field] = row[col.field];
|
// fixedPricesOriginalData.value[rowIndex][col.field] = row[col.field];
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
console.error('Error editing price', err);
|
console.error('Error editing price', err);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
async function saveOnRowChange(_, row) {
|
async function saveOnRowChange(row) {
|
||||||
if (rowsSelected.value.length > 1) return;
|
if (rowsSelected.value.length > 1) return;
|
||||||
if (rowsSelected.value[0]?.id === row.id) return;
|
if (rowsSelected.value[0]?.id === row.id) return;
|
||||||
else if (rowsSelected.value.length === 1)
|
else if (rowsSelected.value.length === 1)
|
||||||
|
@ -331,9 +280,9 @@ async function saveOnRowChange(_, row) {
|
||||||
// }
|
// }
|
||||||
const tableRef = ref();
|
const tableRef = ref();
|
||||||
function checkLastVisibleRow() {
|
function checkLastVisibleRow() {
|
||||||
const tableBody = tableRef.value.$el.querySelector('tbody');
|
const rows = document
|
||||||
if (!tableBody) return;
|
.getElementsByClassName('q-table')[0]
|
||||||
const rows = tableBody.querySelectorAll('tr');
|
.querySelectorAll('tr.cursor-pointer');
|
||||||
let lastVisibleRow = null;
|
let lastVisibleRow = null;
|
||||||
|
|
||||||
rows.forEach((row, index) => {
|
rows.forEach((row, index) => {
|
||||||
|
@ -348,7 +297,7 @@ function checkLastVisibleRow() {
|
||||||
return lastVisibleRow;
|
return lastVisibleRow;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
const addRow = () => {
|
const addRow = (fixedPrice = null) => {
|
||||||
const lastvisible = checkLastVisibleRow();
|
const lastvisible = checkLastVisibleRow();
|
||||||
if (!fixedPrices.value || fixedPrices.value.length === 0) {
|
if (!fixedPrices.value || fixedPrices.value.length === 0) {
|
||||||
fixedPrices.value = [];
|
fixedPrices.value = [];
|
||||||
|
@ -368,10 +317,16 @@ const addRow = () => {
|
||||||
fixedPrices.value.push({ ...newPrice });
|
fixedPrices.value.push({ ...newPrice });
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
if (fixedPrice) {
|
||||||
|
lastItem.value = fixedPrice;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
const lastItemCopy = JSON.parse(
|
const lastItemCopy = JSON.parse(
|
||||||
JSON.stringify(fixedPrices.value[fixedPrices.value.length - 1])
|
JSON.stringify(fixedPrices.value[fixedPrices.value.length - 1])
|
||||||
);
|
);
|
||||||
|
lastItem.value = lastItemCopy;
|
||||||
|
// tableRef.value.create.formInitialData = lastItem;
|
||||||
delete lastItemCopy.id;
|
delete lastItemCopy.id;
|
||||||
fixedPricesOriginalData.value.splice(lastvisible, 0, lastItemCopy);
|
fixedPricesOriginalData.value.splice(lastvisible, 0, lastItemCopy);
|
||||||
fixedPrices.value.unshift(lastItemCopy);
|
fixedPrices.value.unshift(lastItemCopy);
|
||||||
|
@ -379,9 +334,11 @@ const addRow = () => {
|
||||||
highlightNewRow(lastvisible);
|
highlightNewRow(lastvisible);
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
const lastItem = ref(null);
|
||||||
function highlightNewRow(index) {
|
function highlightNewRow(index) {
|
||||||
const tableBody = tableRef.value.$el.querySelector('tbody');
|
const row = document
|
||||||
const row = tableBody.querySelectorAll('tr')[index];
|
.getElementsByClassName('q-table')[0]
|
||||||
|
.querySelectorAll('tr.cursor-pointer')[index];
|
||||||
if (row) {
|
if (row) {
|
||||||
row.classList.add('highlight');
|
row.classList.add('highlight');
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
|
@ -394,18 +351,26 @@ const openEditTableCellDialog = () => {
|
||||||
};
|
};
|
||||||
const onEditCellDataSaved = async () => {
|
const onEditCellDataSaved = async () => {
|
||||||
rowsSelected.value = [];
|
rowsSelected.value = [];
|
||||||
await fetchFixedPrices();
|
|
||||||
};
|
|
||||||
|
|
||||||
const onWarehousesFetched = (data) => {
|
|
||||||
warehousesOptions.value = data;
|
|
||||||
// Actualiza las 'options' del elemento con field 'warehouseFk' en 'editTableFieldsOptions'.
|
|
||||||
const warehouseField = editTableFieldsOptions.find(
|
|
||||||
(field) => field.field === 'warehouseFk'
|
|
||||||
);
|
|
||||||
warehouseField.attrs.options = data;
|
|
||||||
};
|
};
|
||||||
|
/*const lastRow = ref(null);
|
||||||
|
async function saveOnRowChange(row) {
|
||||||
|
if (lastRow.value && lastRow.value !== row.id) {
|
||||||
|
console.log('update');
|
||||||
|
await upsertPrice(row);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
lastRow.value = row.id;
|
||||||
|
}*/
|
||||||
|
|
||||||
|
// const onWarehousesFetched = (data) => {
|
||||||
|
// warehousesOptions.value = data;
|
||||||
|
// // Actualiza las 'options' del elemento con field 'warehouseFk' en 'editTableFieldsOptions'.
|
||||||
|
// const warehouseField = editTableFieldsOptions.find(
|
||||||
|
// (field) => field.field === 'warehouseFk'
|
||||||
|
// );
|
||||||
|
// warehouseField.attrs.options = data;
|
||||||
|
// };
|
||||||
|
import { useQuasar } from 'quasar';
|
||||||
const removeFuturePrice = async () => {
|
const removeFuturePrice = async () => {
|
||||||
try {
|
try {
|
||||||
rowsSelected.value.forEach(({ id }) => {
|
rowsSelected.value.forEach(({ id }) => {
|
||||||
|
@ -416,43 +381,54 @@ const removeFuturePrice = async () => {
|
||||||
console.error('Error removing price', err);
|
console.error('Error removing price', err);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
const removePrice = async (id, rowIndex) => {
|
const quasar = useQuasar();
|
||||||
|
import VnConfirm from 'components/ui/VnConfirm.vue';
|
||||||
|
import FetchData from 'src/components/FetchData.vue';
|
||||||
|
|
||||||
|
function confirmRemove(item) {
|
||||||
|
quasar.dialog({
|
||||||
|
component: VnConfirm,
|
||||||
|
componentProps: {
|
||||||
|
title: t('This row will be removed'),
|
||||||
|
message: t('Do you want to clone this item?'),
|
||||||
|
promise: async () => removePrice(item.id),
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
const removePrice = async (id) => {
|
||||||
try {
|
try {
|
||||||
await axios.delete(`FixedPrices/${id}`);
|
await axios.delete(`FixedPrices/${id}`);
|
||||||
fixedPrices.value.splice(rowIndex, 1);
|
|
||||||
fixedPricesOriginalData.value.splice(rowIndex, 1);
|
|
||||||
notify(t('globals.dataSaved'), 'positive');
|
notify(t('globals.dataSaved'), 'positive');
|
||||||
|
tableRef.value.reload({});
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
console.error('Error removing price', err);
|
console.error('Error removing price', err);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
const updateMinPrice = async (value, props) => {
|
|
||||||
// El checkbox hasMinPrice se encuentra en la misma columna que el input hasMinPrice
|
|
||||||
// Por lo tanto le mandamos otro objeto con las mismas propiedades pero con el campo 'field' cambiado
|
|
||||||
props.row.hasMinPrice = value;
|
|
||||||
await upsertPrice({
|
|
||||||
row: props.row,
|
|
||||||
col: { field: 'hasMinPrice' },
|
|
||||||
rowIndex: props.rowIndex,
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
onMounted(async () => {
|
onMounted(async () => {
|
||||||
stateStore.rightDrawer = true;
|
stateStore.rightDrawer = true;
|
||||||
params.warehouseFk = user.value.warehouseFk;
|
params.warehouseFk = user.value.warehouseFk;
|
||||||
await fetchFixedPrices();
|
|
||||||
});
|
});
|
||||||
|
function handleOnDataSave(CrudModelRef) {
|
||||||
|
addRow(
|
||||||
|
CrudModelRef.CrudModelRef.formData[CrudModelRef.CrudModelRef.formData.length - 1]
|
||||||
|
);
|
||||||
|
CrudModelRef.CrudModelRef.formData.unshift(lastItem);
|
||||||
|
nextTick(() => {
|
||||||
|
highlightNewRow(checkLastVisibleRow());
|
||||||
|
});
|
||||||
|
// CrudModelRef.value.insert(lastItem);
|
||||||
|
}
|
||||||
onUnmounted(() => (stateStore.rightDrawer = false));
|
onUnmounted(() => (stateStore.rightDrawer = false));
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<FetchData
|
<FetchData
|
||||||
url="Warehouses"
|
@on-fetch="(data) => (warehousesOptions = data)"
|
||||||
:filter="{ where: { isDestiny: true }, order: ['name'] }"
|
|
||||||
auto-load
|
auto-load
|
||||||
@on-fetch="(data) => onWarehousesFetched(data)"
|
url="Warehouses"
|
||||||
|
:filter="{ fields: ['id', 'name'], order: 'name ASC', limit: 30 }"
|
||||||
/>
|
/>
|
||||||
<RightMenu>
|
<RightMenu>
|
||||||
<template #right-panel>
|
<template #right-panel>
|
||||||
|
@ -476,53 +452,39 @@ onUnmounted(() => (stateStore.rightDrawer = false));
|
||||||
</QBtn>
|
</QBtn>
|
||||||
</template>
|
</template>
|
||||||
</VnSubToolbar>
|
</VnSubToolbar>
|
||||||
<QPage class="column items-center q-pa-md">
|
<QPage>
|
||||||
<QTable
|
{{ lastRow }}
|
||||||
|
{{ rowsSelected }}
|
||||||
|
<VnTable
|
||||||
|
data-key="ItemFixedPrices"
|
||||||
|
url="FixedPrices/filter"
|
||||||
|
:filter="{ where: exprBuilder }"
|
||||||
|
:order="['name ASC', 'itemFk DESC']"
|
||||||
ref="tableRef"
|
ref="tableRef"
|
||||||
dense
|
dense
|
||||||
:rows="fixedPrices"
|
|
||||||
:columns="columns"
|
:columns="columns"
|
||||||
row-key="id"
|
default-mode="table"
|
||||||
selection="multiple"
|
auto-load
|
||||||
|
:is-editable="true"
|
||||||
|
:right-search="false"
|
||||||
|
:table="{
|
||||||
|
'row-key': 'id',
|
||||||
|
selection: 'multiple',
|
||||||
|
}"
|
||||||
v-model:selected="rowsSelected"
|
v-model:selected="rowsSelected"
|
||||||
:pagination="{ rowsPerPage: 0 }"
|
:row-click="saveOnRowChange"
|
||||||
class="full-width q-mt-md"
|
:create-as-dialog="false"
|
||||||
:no-data-label="t('globals.noResults')"
|
:create="{
|
||||||
@row-click="saveOnRowChange"
|
onDataSaved: handleOnDataSave,
|
||||||
|
}"
|
||||||
|
:use-model="true"
|
||||||
|
:disable-option="{ card: true }"
|
||||||
>
|
>
|
||||||
<template #top-row="{ cols }">
|
<template #header-selection="scope">
|
||||||
<QTr>
|
<QCheckbox v-model="scope.selected" />
|
||||||
<QTd />
|
|
||||||
<QTd
|
|
||||||
v-for="(col, index) in cols"
|
|
||||||
:key="index"
|
|
||||||
style="max-width: 100px"
|
|
||||||
>
|
|
||||||
<component
|
|
||||||
:is="col.columnFilter.component"
|
|
||||||
v-if="col.columnFilter"
|
|
||||||
v-model="col.columnFilter.filterValue"
|
|
||||||
v-bind="col.columnFilter.attrs"
|
|
||||||
v-on="col.columnFilter.event(col)"
|
|
||||||
dense
|
|
||||||
/>
|
|
||||||
</QTd>
|
|
||||||
</QTr>
|
|
||||||
</template>
|
|
||||||
<template #header="props">
|
|
||||||
<QTr :props="props" class="bg">
|
|
||||||
<QTh />
|
|
||||||
<QTh
|
|
||||||
v-for="col in props.cols"
|
|
||||||
:key="col.name"
|
|
||||||
:props="props"
|
|
||||||
style="text-wrap: balance"
|
|
||||||
>
|
|
||||||
{{ col.label }}
|
|
||||||
</QTh>
|
|
||||||
</QTr>
|
|
||||||
</template>
|
</template>
|
||||||
<template #body-selection="scope">
|
<template #body-selection="scope">
|
||||||
|
{{ scope }}
|
||||||
<QCheckbox
|
<QCheckbox
|
||||||
flat
|
flat
|
||||||
style="width: 10px; margin-left: -20px"
|
style="width: 10px; margin-left: -20px"
|
||||||
|
@ -532,13 +494,11 @@ onUnmounted(() => (stateStore.rightDrawer = false));
|
||||||
rowsSelected.length > 0 && rowsSelected[0].id !== scope.row.id
|
rowsSelected.length > 0 && rowsSelected[0].id !== scope.row.id
|
||||||
"-->
|
"-->
|
||||||
</template>
|
</template>
|
||||||
<template #header-selection="scope">
|
|
||||||
<QCheckbox style="margin-left: -15px" v-model="scope.selected" />
|
<template #column-itemId="props">
|
||||||
</template>
|
|
||||||
<template #body-cell-itemId="props">
|
|
||||||
<QTd>
|
<QTd>
|
||||||
<VnSelect
|
<VnSelect
|
||||||
style="width: 115px"
|
style="max-width: 125px"
|
||||||
url="Items/withName"
|
url="Items/withName"
|
||||||
hide-selected
|
hide-selected
|
||||||
option-label="id"
|
option-label="id"
|
||||||
|
@ -557,7 +517,7 @@ onUnmounted(() => (stateStore.rightDrawer = false));
|
||||||
</VnSelect>
|
</VnSelect>
|
||||||
</QTd>
|
</QTd>
|
||||||
</template>
|
</template>
|
||||||
<template #body-cell-description="{ row }">
|
<template #column-description="{ row }">
|
||||||
<QTd class="col">
|
<QTd class="col">
|
||||||
<span class="link">
|
<span class="link">
|
||||||
{{ row.name }}
|
{{ row.name }}
|
||||||
|
@ -566,10 +526,10 @@ onUnmounted(() => (stateStore.rightDrawer = false));
|
||||||
<FetchedTags style="width: 200px" :item="row" :max-length="6" />
|
<FetchedTags style="width: 200px" :item="row" :max-length="6" />
|
||||||
</QTd>
|
</QTd>
|
||||||
</template>
|
</template>
|
||||||
<template #body-cell-groupingPrice="props">
|
<template #column-rate2="props">
|
||||||
<QTd class="col">
|
<QTd class="col">
|
||||||
<VnInput
|
<VnInput
|
||||||
style="width: 80px"
|
style="max-width: 80px"
|
||||||
mask="###.##"
|
mask="###.##"
|
||||||
v-model.number="props.row.rate2"
|
v-model.number="props.row.rate2"
|
||||||
v-on="getRowUpdateInputEvents(props)"
|
v-on="getRowUpdateInputEvents(props)"
|
||||||
|
@ -578,11 +538,11 @@ onUnmounted(() => (stateStore.rightDrawer = false));
|
||||||
</VnInput>
|
</VnInput>
|
||||||
</QTd>
|
</QTd>
|
||||||
</template>
|
</template>
|
||||||
<template #body-cell-packingPrice="props">
|
<template #column-rate3="props">
|
||||||
<QTd class="col">
|
<QTd class="col">
|
||||||
<VnInput
|
<VnInput
|
||||||
mask="###.##"
|
|
||||||
style="width: 80px"
|
style="width: 80px"
|
||||||
|
mask="###.##"
|
||||||
v-model.number="props.row.rate3"
|
v-model.number="props.row.rate3"
|
||||||
v-on="getRowUpdateInputEvents(props)"
|
v-on="getRowUpdateInputEvents(props)"
|
||||||
>
|
>
|
||||||
|
@ -590,31 +550,31 @@ onUnmounted(() => (stateStore.rightDrawer = false));
|
||||||
</VnInput>
|
</VnInput>
|
||||||
</QTd>
|
</QTd>
|
||||||
</template>
|
</template>
|
||||||
<template #body-cell-minPrice="props">
|
<template #column-minPrice="props">
|
||||||
<QTd class="col">
|
<QTd class="col">
|
||||||
<div class="row">
|
<div class="row" style="width: 130px">
|
||||||
<QCheckbox
|
<QCheckbox
|
||||||
:model-value="props.row.hasMinPrice"
|
:model-value="props.row.hasMinPrice"
|
||||||
@update:model-value="updateMinPrice($event, props)"
|
@update:model-value="updateMinPrice($event, props)"
|
||||||
:true-value="'true'"
|
:true-value="'true'"
|
||||||
:false-value="'false'"
|
:false-value="'false'"
|
||||||
:toggle-indeterminate="false"
|
|
||||||
/>
|
/>
|
||||||
<VnInput
|
<VnInput
|
||||||
style="padding-left: -20px; width: 80px"
|
|
||||||
class="col"
|
class="col"
|
||||||
:disable="props.row.hasMinPrice === 'false'"
|
mask="###.##"
|
||||||
|
style="width: 80px"
|
||||||
|
:disable="props.row.hasMinPrice === 1"
|
||||||
v-model.number="props.row.minPrice"
|
v-model.number="props.row.minPrice"
|
||||||
v-on="getRowUpdateInputEvents(props)"
|
v-on="getRowUpdateInputEvents(props)"
|
||||||
type="number"
|
>
|
||||||
/>
|
<template #append>€{{ props.row.hasMinPrice }}</template>
|
||||||
|
</VnInput>
|
||||||
</div>
|
</div>
|
||||||
</QTd>
|
</QTd>
|
||||||
</template>
|
</template>
|
||||||
<template #body-cell-started="props">
|
<template #column-started="props">
|
||||||
<QTd class="col">
|
<QTd class="col">
|
||||||
<VnInputDate
|
<VnInputDate
|
||||||
style="max-width: 125px"
|
|
||||||
:show-event="true"
|
:show-event="true"
|
||||||
v-model="props.row.started"
|
v-model="props.row.started"
|
||||||
v-on="getRowUpdateInputEvents(props, false, 'date')"
|
v-on="getRowUpdateInputEvents(props, false, 'date')"
|
||||||
|
@ -629,10 +589,9 @@ onUnmounted(() => (stateStore.rightDrawer = false));
|
||||||
/>
|
/>
|
||||||
</QTd>
|
</QTd>
|
||||||
</template>
|
</template>
|
||||||
<template #body-cell-ended="props">
|
<template #column-ended="props">
|
||||||
<QTd class="col">
|
<QTd class="col">
|
||||||
<VnInputDate
|
<VnInputDate
|
||||||
style="max-width: 125px"
|
|
||||||
:show-event="true"
|
:show-event="true"
|
||||||
v-model="props.row.ended"
|
v-model="props.row.ended"
|
||||||
v-on="getRowUpdateInputEvents(props, false, 'date')"
|
v-on="getRowUpdateInputEvents(props, false, 'date')"
|
||||||
|
@ -647,7 +606,7 @@ onUnmounted(() => (stateStore.rightDrawer = false));
|
||||||
/>
|
/>
|
||||||
</QTd>
|
</QTd>
|
||||||
</template>
|
</template>
|
||||||
<template #body-cell-warehouse="props">
|
<template #column-warehouseFk="props">
|
||||||
<QTd class="col" style="max-width: 180px">
|
<QTd class="col" style="max-width: 180px">
|
||||||
<VnSelect
|
<VnSelect
|
||||||
:options="warehousesOptions"
|
:options="warehousesOptions"
|
||||||
|
@ -659,7 +618,7 @@ onUnmounted(() => (stateStore.rightDrawer = false));
|
||||||
/>
|
/>
|
||||||
</QTd>
|
</QTd>
|
||||||
</template>
|
</template>
|
||||||
<template #body-cell-deleteAction="{ row, rowIndex }">
|
<template #column-deleteAction="{ row, rowIndex }">
|
||||||
<QTd class="col">
|
<QTd class="col">
|
||||||
<QIcon
|
<QIcon
|
||||||
name="delete"
|
name="delete"
|
||||||
|
@ -680,7 +639,7 @@ onUnmounted(() => (stateStore.rightDrawer = false));
|
||||||
</QIcon>
|
</QIcon>
|
||||||
</QTd>
|
</QTd>
|
||||||
</template>
|
</template>
|
||||||
</QTable>
|
</VnTable>
|
||||||
<QPageSticky :offset="[20, 0]">
|
<QPageSticky :offset="[20, 0]">
|
||||||
<QBtn @click="addRow()" color="primary" fab icon="add" />
|
<QBtn @click="addRow()" color="primary" fab icon="add" />
|
||||||
<QTooltip>
|
<QTooltip>
|
||||||
|
@ -698,11 +657,24 @@ onUnmounted(() => (stateStore.rightDrawer = false));
|
||||||
</QDialog>
|
</QDialog>
|
||||||
</QPage>
|
</QPage>
|
||||||
</template>
|
</template>
|
||||||
<style lang="scss" scoped>
|
<style lang="scss">
|
||||||
.q-table th,
|
.q-table th,
|
||||||
.q-table td {
|
.q-table td {
|
||||||
padding-inline: 5px !important;
|
padding-inline: 5px !important;
|
||||||
}
|
}
|
||||||
|
.q-table tbody td {
|
||||||
|
max-width: none;
|
||||||
|
|
||||||
|
.q-td.col {
|
||||||
|
& div.row {
|
||||||
|
& .q-checkbox {
|
||||||
|
& .q-checkbox__inner {
|
||||||
|
position: relative !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
.q-field__after,
|
.q-field__after,
|
||||||
.q-field__append {
|
.q-field__append {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
|
Loading…
Reference in New Issue