Item Fixed prices #307

Merged
jsegarra merged 17 commits from :feature/FixedPrices into dev 2024-04-24 07:39:23 +00:00
1 changed files with 3 additions and 3 deletions
Showing only changes of commit 1398a146ff - Show all commits

View File

@ -333,9 +333,9 @@ const addRow = () => {
const lastItemCopy = JSON.parse(
JSON.stringify(fixedPrices.value[fixedPrices.value.length - 1])
);
const { id, ...restOfData } = lastItemCopy;
fixedPricesOriginalData.value.push(restOfData);
fixedPrices.value.push(restOfData);
const { id, ...restOfItem } = lastItemCopy;
jsegarra marked this conversation as resolved Outdated

RestOfData la propongo cambiar por rest o restOfitem

RestOfData la propongo cambiar por rest o restOfitem

Cambiado

Commit: 1398a146ff

Cambiado Commit: https://gitea.verdnatura.es/verdnatura/salix-front/commit/1398a146ffd68a979d2f8a235ca51fbe364a5a04
fixedPricesOriginalData.value.push(restOfItem);
fixedPrices.value.push(restOfItem);
};
const openEditTableCellDialog = () => {