feature/EntriesCorrections #177

Merged
alexm merged 24 commits from :feature/EntriesCorrections into dev 2024-02-07 06:44:33 +00:00
2 changed files with 23 additions and 13 deletions
Showing only changes of commit ddcbc5d8d7 - Show all commits

View File

@ -15,23 +15,19 @@ const $props = defineProps({
type: Array,
default: () => [],
},
fieldsOptions: {
type: Array,
default: () => [],
},
editUrl: {
type: String,
jsegarra marked this conversation as resolved Outdated

@alexm Diría que en un componente genérico no definimos valores para un modulo en concreto, puedes confirmar.

Esto se pasaría por parámetro del componente no?

@alexm Diría que en un componente genérico no definimos valores para un modulo en concreto, puedes confirmar. Esto se pasaría por parámetro del componente no?
Outdated
Review

Exacto usar directamente t(...)

Exacto usar directamente t(...)

Se pasó la data clave a props para poder reutilizar en un futuro.

Commit: ddcbc5d8d7

Se pasó la data clave a props para poder reutilizar en un futuro. Commit: https://gitea.verdnatura.es/verdnatura/salix-front/commit/ddcbc5d8d77d6761007bb400b9ce8a39216d3206
default: '',
},
});
const { t } = useI18n();
const { notify } = useNotify();
const fieldsOptions = [
{ field: 'packing', label: t('entry.latestBuys.packing') },
{ field: 'grouping', label: t('entry.latestBuys.grouping') },
{ field: 'packageValue', label: t('entry.latestBuys.packageValue') },
{ field: 'weight', label: t('entry.latestBuys.weight') },
{ field: 'description', label: t('entry.latestBuys.description') },
{ field: 'size', label: t('entry.latestBuys.size') },
{ field: 'weightByPiece', label: t('entry.latestBuys.weightByPiece') },
{ field: 'packingOut', label: t('entry.latestBuys.packingOut') },
{ field: 'landing', label: t('entry.latestBuys.landing') },
];
const formData = reactive({
field: null,
newValue: null,
@ -56,7 +52,7 @@ const submitData = async () => {
lines: rowsToEdit,
};
await axios.post('Buys/editLatestBuys', payload);
await axios.post($props.editUrl, payload);
onDataSaved();
isLoading.value = false;
} catch (err) {

View File

@ -209,6 +209,18 @@ const columns = computed(() => [
},
]);
const editTableCellFormFieldsOptions = [
{ field: 'packing', label: t('entry.latestBuys.packing') },
{ field: 'grouping', label: t('entry.latestBuys.grouping') },
{ field: 'packageValue', label: t('entry.latestBuys.packageValue') },
{ field: 'weight', label: t('entry.latestBuys.weight') },
{ field: 'description', label: t('entry.latestBuys.description') },
{ field: 'size', label: t('entry.latestBuys.size') },
{ field: 'weightByPiece', label: t('entry.latestBuys.weightByPiece') },
{ field: 'packingOut', label: t('entry.latestBuys.packingOut') },
{ field: 'landing', label: t('entry.latestBuys.landing') },
];
const openEditTableCellDialog = () => {
editTableCellDialogRef.value.show();
};
@ -321,7 +333,9 @@ onMounted(async () => {
</QPageSticky>
<QDialog ref="editTableCellDialogRef">
<EditTableCellValueForm
edit-url="Buys/editLatestBuys"
:rows="rowsSelected"
:fields-options="editTableCellFormFieldsOptions"
@on-data-saved="onEditCellDataSaved()"
/>
</QDialog>