feat: refs #8602 update entry components and tests, add data-cy attributes for Cypress integration
This commit is contained in:
parent
1f6667fbce
commit
2b2f4bb8ab
|
@ -776,7 +776,7 @@ const rowCtrlClickFunction = computed(() => {
|
||||||
:data-col-field="col?.name"
|
:data-col-field="col?.name"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
class="no-padding no-margin peter"
|
class="no-padding no-margin"
|
||||||
style="
|
style="
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
|
@ -966,6 +966,8 @@ const rowCtrlClickFunction = computed(() => {
|
||||||
v-for="col of cols.filter((cols) => cols.visible ?? true)"
|
v-for="col of cols.filter((cols) => cols.visible ?? true)"
|
||||||
:key="col?.id"
|
:key="col?.id"
|
||||||
:class="getColAlign(col)"
|
:class="getColAlign(col)"
|
||||||
|
:style="col?.width ? `max-width: ${col?.width}` : ''"
|
||||||
|
style="font-size: small"
|
||||||
>
|
>
|
||||||
<slot
|
<slot
|
||||||
:name="`column-footer-${col.name}`"
|
:name="`column-footer-${col.name}`"
|
||||||
|
@ -1028,6 +1030,7 @@ const rowCtrlClickFunction = computed(() => {
|
||||||
@on-data-saved="(_, res) => createForm.onDataSaved(res)"
|
@on-data-saved="(_, res) => createForm.onDataSaved(res)"
|
||||||
>
|
>
|
||||||
<template #form-inputs="{ data }">
|
<template #form-inputs="{ data }">
|
||||||
|
<slot name="alter-create" :data="data">
|
||||||
<div :style="createComplement?.containerStyle">
|
<div :style="createComplement?.containerStyle">
|
||||||
<div
|
<div
|
||||||
:style="createComplement?.previousStyle"
|
:style="createComplement?.previousStyle"
|
||||||
|
@ -1035,7 +1038,10 @@ const rowCtrlClickFunction = computed(() => {
|
||||||
>
|
>
|
||||||
<slot name="previous-create-dialog" :data="data" />
|
<slot name="previous-create-dialog" :data="data" />
|
||||||
</div>
|
</div>
|
||||||
<div class="grid-create" :style="createComplement?.columnGridStyle">
|
<div
|
||||||
|
class="grid-create"
|
||||||
|
:style="createComplement?.columnGridStyle"
|
||||||
|
>
|
||||||
<slot
|
<slot
|
||||||
v-for="column of splittedColumns.create"
|
v-for="column of splittedColumns.create"
|
||||||
:key="column.name"
|
:key="column.name"
|
||||||
|
@ -1047,7 +1053,7 @@ const rowCtrlClickFunction = computed(() => {
|
||||||
<VnColumn
|
<VnColumn
|
||||||
:column="{
|
:column="{
|
||||||
...column,
|
...column,
|
||||||
...{ disable: column?.createDisable ?? false },
|
...column?.createAttrs,
|
||||||
}"
|
}"
|
||||||
:row="{}"
|
:row="{}"
|
||||||
default="input"
|
default="input"
|
||||||
|
@ -1060,6 +1066,7 @@ const rowCtrlClickFunction = computed(() => {
|
||||||
<slot name="more-create-dialog" :data="data" />
|
<slot name="more-create-dialog" :data="data" />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
</slot>
|
||||||
</template>
|
</template>
|
||||||
</FormModelPopup>
|
</FormModelPopup>
|
||||||
</QDialog>
|
</QDialog>
|
||||||
|
|
|
@ -177,6 +177,7 @@ function addDefaultData(data) {
|
||||||
name="vn:attach"
|
name="vn:attach"
|
||||||
class="cursor-pointer"
|
class="cursor-pointer"
|
||||||
@click="inputFileRef.pickFiles()"
|
@click="inputFileRef.pickFiles()"
|
||||||
|
data-cy="attachFile"
|
||||||
>
|
>
|
||||||
<QTooltip>{{ t('globals.selectFile') }}</QTooltip>
|
<QTooltip>{{ t('globals.selectFile') }}</QTooltip>
|
||||||
</QIcon>
|
</QIcon>
|
||||||
|
|
|
@ -389,10 +389,7 @@ defineExpose({
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
</QTable>
|
</QTable>
|
||||||
<div
|
<div v-else class="info-row q-pa-md text-center">
|
||||||
v-else
|
|
||||||
class="info-row q-pa-md text-center"
|
|
||||||
>
|
|
||||||
<h5>
|
<h5>
|
||||||
{{ t('No data to display') }}
|
{{ t('No data to display') }}
|
||||||
</h5>
|
</h5>
|
||||||
|
@ -416,6 +413,7 @@ defineExpose({
|
||||||
v-shortcut
|
v-shortcut
|
||||||
@click="showFormDialog()"
|
@click="showFormDialog()"
|
||||||
class="fill-icon"
|
class="fill-icon"
|
||||||
|
data-cy="addButton"
|
||||||
>
|
>
|
||||||
<QTooltip>
|
<QTooltip>
|
||||||
{{ t('Upload file') }}
|
{{ t('Upload file') }}
|
||||||
|
|
|
@ -142,6 +142,7 @@ const STATE_COLOR = {
|
||||||
<VnTable
|
<VnTable
|
||||||
:data-key="dataKey"
|
:data-key="dataKey"
|
||||||
:columns="columns"
|
:columns="columns"
|
||||||
|
url="Travels/filter"
|
||||||
redirect="claim"
|
redirect="claim"
|
||||||
:right-search="false"
|
:right-search="false"
|
||||||
auto-load
|
auto-load
|
||||||
|
|
|
@ -13,6 +13,7 @@ import VnSelect from 'src/components/common/VnSelect.vue';
|
||||||
import VnInputNumber from 'src/components/common/VnInputNumber.vue';
|
import VnInputNumber from 'src/components/common/VnInputNumber.vue';
|
||||||
import VnSelectTravelExtended from 'src/components/common/VnSelectTravelExtended.vue';
|
import VnSelectTravelExtended from 'src/components/common/VnSelectTravelExtended.vue';
|
||||||
import VnSelectSupplier from 'src/components/common/VnSelectSupplier.vue';
|
import VnSelectSupplier from 'src/components/common/VnSelectSupplier.vue';
|
||||||
|
import VnCheckbox from 'src/components/common/VnCheckbox.vue';
|
||||||
|
|
||||||
const route = useRoute();
|
const route = useRoute();
|
||||||
const { t } = useI18n();
|
const { t } = useI18n();
|
||||||
|
@ -53,7 +54,7 @@ onMounted(() => {
|
||||||
:clear-store-on-unmount="false"
|
:clear-store-on-unmount="false"
|
||||||
>
|
>
|
||||||
<template #form="{ data }">
|
<template #form="{ data }">
|
||||||
<VnRow>
|
<VnRow class="q-py-sm">
|
||||||
<VnSelectTravelExtended
|
<VnSelectTravelExtended
|
||||||
:data="data"
|
:data="data"
|
||||||
v-model="data.travelFk"
|
v-model="data.travelFk"
|
||||||
|
@ -65,7 +66,7 @@ onMounted(() => {
|
||||||
:required="true"
|
:required="true"
|
||||||
/>
|
/>
|
||||||
</VnRow>
|
</VnRow>
|
||||||
<VnRow>
|
<VnRow class="q-py-sm">
|
||||||
<VnInput v-model="data.reference" :label="t('globals.reference')" />
|
<VnInput v-model="data.reference" :label="t('globals.reference')" />
|
||||||
<VnInputNumber
|
<VnInputNumber
|
||||||
v-model="data.invoiceAmount"
|
v-model="data.invoiceAmount"
|
||||||
|
@ -73,7 +74,7 @@ onMounted(() => {
|
||||||
:positive="false"
|
:positive="false"
|
||||||
/>
|
/>
|
||||||
</VnRow>
|
</VnRow>
|
||||||
<VnRow>
|
<VnRow class="q-py-sm">
|
||||||
<VnInput
|
<VnInput
|
||||||
v-model="data.invoiceNumber"
|
v-model="data.invoiceNumber"
|
||||||
:label="t('entry.summary.invoiceNumber')"
|
:label="t('entry.summary.invoiceNumber')"
|
||||||
|
@ -89,7 +90,7 @@ onMounted(() => {
|
||||||
:required="true"
|
:required="true"
|
||||||
/>
|
/>
|
||||||
</VnRow>
|
</VnRow>
|
||||||
<VnRow>
|
<VnRow class="q-py-sm">
|
||||||
<VnInputNumber
|
<VnInputNumber
|
||||||
:label="t('entry.summary.commission')"
|
:label="t('entry.summary.commission')"
|
||||||
v-model="data.commission"
|
v-model="data.commission"
|
||||||
|
@ -104,7 +105,7 @@ onMounted(() => {
|
||||||
option-label="code"
|
option-label="code"
|
||||||
/>
|
/>
|
||||||
</VnRow>
|
</VnRow>
|
||||||
<VnRow>
|
<VnRow class="q-py-sm">
|
||||||
<VnInputNumber
|
<VnInputNumber
|
||||||
v-model="data.initialTemperature"
|
v-model="data.initialTemperature"
|
||||||
name="initialTemperature"
|
name="initialTemperature"
|
||||||
|
@ -122,7 +123,7 @@ onMounted(() => {
|
||||||
:positive="false"
|
:positive="false"
|
||||||
/>
|
/>
|
||||||
</VnRow>
|
</VnRow>
|
||||||
<VnRow>
|
<VnRow class="q-py-sm">
|
||||||
<QInput
|
<QInput
|
||||||
:label="t('entry.basicData.observation')"
|
:label="t('entry.basicData.observation')"
|
||||||
type="textarea"
|
type="textarea"
|
||||||
|
@ -132,14 +133,17 @@ onMounted(() => {
|
||||||
fill-input
|
fill-input
|
||||||
/>
|
/>
|
||||||
</VnRow>
|
</VnRow>
|
||||||
<VnRow>
|
<VnRow class="q-py-sm">
|
||||||
<QCheckbox v-model="data.isOrdered" :label="t('entry.summary.ordered')" />
|
<VnCheckbox
|
||||||
<QCheckbox v-model="data.isConfirmed" :label="t('globals.confirmed')" />
|
v-model="data.isOrdered"
|
||||||
<QCheckbox
|
:label="t('entry.summary.ordered')"
|
||||||
|
/>
|
||||||
|
<VnCheckbox v-model="data.isConfirmed" :label="t('globals.confirmed')" />
|
||||||
|
<VnCheckbox
|
||||||
v-model="data.isExcludedFromAvailable"
|
v-model="data.isExcludedFromAvailable"
|
||||||
:label="t('entry.summary.excludedFromAvailable')"
|
:label="t('entry.summary.excludedFromAvailable')"
|
||||||
/>
|
/>
|
||||||
<QCheckbox
|
<VnCheckbox
|
||||||
:disable="!isAdministrative()"
|
:disable="!isAdministrative()"
|
||||||
v-model="data.isBooked"
|
v-model="data.isBooked"
|
||||||
:label="t('entry.basicData.booked')"
|
:label="t('entry.basicData.booked')"
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
import { useStateStore } from 'stores/useStateStore';
|
import { useStateStore } from 'stores/useStateStore';
|
||||||
import { useRoute } from 'vue-router';
|
import { useRoute } from 'vue-router';
|
||||||
import { useI18n } from 'vue-i18n';
|
import { useI18n } from 'vue-i18n';
|
||||||
import { onMounted, ref } from 'vue';
|
import { onMounted, ref, computed } from 'vue';
|
||||||
|
|
||||||
import { useState } from 'src/composables/useState';
|
import { useState } from 'src/composables/useState';
|
||||||
|
|
||||||
|
@ -16,6 +16,8 @@ import ItemDescriptor from 'src/pages/Item/Card/ItemDescriptor.vue';
|
||||||
import axios from 'axios';
|
import axios from 'axios';
|
||||||
import VnSelectEnum from 'src/components/common/VnSelectEnum.vue';
|
import VnSelectEnum from 'src/components/common/VnSelectEnum.vue';
|
||||||
import { checkEntryLock } from 'src/composables/checkEntryLock';
|
import { checkEntryLock } from 'src/composables/checkEntryLock';
|
||||||
|
import VnRow from 'src/components/ui/VnRow.vue';
|
||||||
|
import VnInput from 'src/components/common/VnInput.vue';
|
||||||
|
|
||||||
const $props = defineProps({
|
const $props = defineProps({
|
||||||
id: {
|
id: {
|
||||||
|
@ -120,6 +122,7 @@ const columns = [
|
||||||
fields: ['id', 'name'],
|
fields: ['id', 'name'],
|
||||||
optionLabel: 'name',
|
optionLabel: 'name',
|
||||||
optionValue: 'id',
|
optionValue: 'id',
|
||||||
|
sortBy: 'name ASC',
|
||||||
},
|
},
|
||||||
width: '85px',
|
width: '85px',
|
||||||
isEditable: false,
|
isEditable: false,
|
||||||
|
@ -212,7 +215,7 @@ const columns = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
align: 'center',
|
align: 'right',
|
||||||
labelAbbreviation: 'GM',
|
labelAbbreviation: 'GM',
|
||||||
label: t('Grouping selector'),
|
label: t('Grouping selector'),
|
||||||
toolTip: t('Grouping selector'),
|
toolTip: t('Grouping selector'),
|
||||||
|
@ -294,7 +297,7 @@ const columns = [
|
||||||
align: 'center',
|
align: 'center',
|
||||||
label: t('Amount'),
|
label: t('Amount'),
|
||||||
name: 'amount',
|
name: 'amount',
|
||||||
width: '45px',
|
width: '75px',
|
||||||
component: 'number',
|
component: 'number',
|
||||||
attrs: {
|
attrs: {
|
||||||
positive: false,
|
positive: false,
|
||||||
|
@ -310,7 +313,9 @@ const columns = [
|
||||||
toolTip: t('Package'),
|
toolTip: t('Package'),
|
||||||
name: 'price2',
|
name: 'price2',
|
||||||
component: 'number',
|
component: 'number',
|
||||||
createDisable: true,
|
createAttrs: {
|
||||||
|
disable: true,
|
||||||
|
},
|
||||||
width: '35px',
|
width: '35px',
|
||||||
create: true,
|
create: true,
|
||||||
format: (row) => parseFloat(row['price2']).toFixed(2),
|
format: (row) => parseFloat(row['price2']).toFixed(2),
|
||||||
|
@ -320,7 +325,9 @@ const columns = [
|
||||||
label: t('Box'),
|
label: t('Box'),
|
||||||
name: 'price3',
|
name: 'price3',
|
||||||
component: 'number',
|
component: 'number',
|
||||||
createDisable: true,
|
createAttrs: {
|
||||||
|
disable: true,
|
||||||
|
},
|
||||||
cellEvent: {
|
cellEvent: {
|
||||||
'update:modelValue': async (value, oldValue, row) => {
|
'update:modelValue': async (value, oldValue, row) => {
|
||||||
row['price2'] = row['price2'] * (value / oldValue);
|
row['price2'] = row['price2'] * (value / oldValue);
|
||||||
|
@ -340,13 +347,6 @@ const columns = [
|
||||||
toggleIndeterminate: false,
|
toggleIndeterminate: false,
|
||||||
},
|
},
|
||||||
component: 'checkbox',
|
component: 'checkbox',
|
||||||
cellEvent: {
|
|
||||||
'update:modelValue': async (value, oldValue, row) => {
|
|
||||||
await axios.patch(`Items/${row['itemFk']}`, {
|
|
||||||
hasMinPrice: value,
|
|
||||||
});
|
|
||||||
},
|
|
||||||
},
|
|
||||||
width: '25px',
|
width: '25px',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -356,13 +356,6 @@ const columns = [
|
||||||
toolTip: t('Minimum price'),
|
toolTip: t('Minimum price'),
|
||||||
name: 'minPrice',
|
name: 'minPrice',
|
||||||
component: 'number',
|
component: 'number',
|
||||||
cellEvent: {
|
|
||||||
'update:modelValue': async (value, oldValue, row) => {
|
|
||||||
await axios.patch(`Items/${row['itemFk']}`, {
|
|
||||||
minPrice: value,
|
|
||||||
});
|
|
||||||
},
|
|
||||||
},
|
|
||||||
width: '35px',
|
width: '35px',
|
||||||
style: (row) => {
|
style: (row) => {
|
||||||
if (!row?.hasMinPrice) return { color: 'var(--vn-label-color)' };
|
if (!row?.hasMinPrice) return { color: 'var(--vn-label-color)' };
|
||||||
|
@ -425,6 +418,30 @@ const columns = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
const buyerFk = ref(null);
|
||||||
|
const itemTypeFk = ref(null);
|
||||||
|
const inkFk = ref(null);
|
||||||
|
const tag1 = ref(null);
|
||||||
|
const tag2 = ref(null);
|
||||||
|
const filter = computed(() => {
|
||||||
|
const where = {};
|
||||||
|
if (buyerFk.value) {
|
||||||
|
where.workerFk = buyerFk.value;
|
||||||
|
}
|
||||||
|
if (itemTypeFk.value) {
|
||||||
|
where.itemTypeFk = itemTypeFk.value;
|
||||||
|
}
|
||||||
|
if (inkFk.value) {
|
||||||
|
where.inkFk = inkFk.value;
|
||||||
|
}
|
||||||
|
if (tag1.value) {
|
||||||
|
where.tag1 = tag1.value;
|
||||||
|
}
|
||||||
|
if (tag2.value) {
|
||||||
|
where.tag2 = tag2.value;
|
||||||
|
}
|
||||||
|
return { where };
|
||||||
|
});
|
||||||
|
|
||||||
function getQuantityStyle(row) {
|
function getQuantityStyle(row) {
|
||||||
if (row?.quantity !== row?.stickers * row?.packing)
|
if (row?.quantity !== row?.stickers * row?.packing)
|
||||||
|
@ -610,6 +627,7 @@ onMounted(() => {
|
||||||
:url="`Entries/${entityId}/getBuyList`"
|
:url="`Entries/${entityId}/getBuyList`"
|
||||||
search-url="EntryBuys"
|
search-url="EntryBuys"
|
||||||
save-url="Buys/crud"
|
save-url="Buys/crud"
|
||||||
|
:filter="filter"
|
||||||
:disable-option="{ card: true }"
|
:disable-option="{ card: true }"
|
||||||
v-model:selected="selectedRows"
|
v-model:selected="selectedRows"
|
||||||
@on-fetch="() => footerFetchDataRef.fetch()"
|
@on-fetch="() => footerFetchDataRef.fetch()"
|
||||||
|
@ -666,6 +684,36 @@ onMounted(() => {
|
||||||
data-cy="entry-buys"
|
data-cy="entry-buys"
|
||||||
overlay
|
overlay
|
||||||
>
|
>
|
||||||
|
<template #top-left>
|
||||||
|
<VnRow>
|
||||||
|
<VnSelect
|
||||||
|
:label="t('Buyer')"
|
||||||
|
v-model="buyerFk"
|
||||||
|
url="TicketRequests/getItemTypeWorker"
|
||||||
|
:fields="['id', 'nickname']"
|
||||||
|
option-label="nickname"
|
||||||
|
sort-by="nickname ASC"
|
||||||
|
/>
|
||||||
|
<VnSelect
|
||||||
|
:label="t('Family')"
|
||||||
|
v-model="itemTypeFk"
|
||||||
|
url="ItemTypes"
|
||||||
|
:fields="['id', 'name']"
|
||||||
|
option-label="name"
|
||||||
|
sort-by="name ASC"
|
||||||
|
/>
|
||||||
|
<VnSelect
|
||||||
|
:label="t('Color')"
|
||||||
|
v-model="inkFk"
|
||||||
|
url="Inks"
|
||||||
|
:fields="['id', 'name']"
|
||||||
|
option-label="name"
|
||||||
|
sort-by="name ASC"
|
||||||
|
/>
|
||||||
|
<VnInput v-model="tag1" :label="t('Tag')" :placeholder="t('Tag')" />
|
||||||
|
<VnInput v-model="tag2" :label="t('Tag')" :placeholder="t('Tag')" />
|
||||||
|
</VnRow>
|
||||||
|
</template>
|
||||||
<template #column-hex="{ row }">
|
<template #column-hex="{ row }">
|
||||||
<VnColor :colors="row?.hexJson" style="height: 100%; min-width: 2000px" />
|
<VnColor :colors="row?.hexJson" style="height: 100%; min-width: 2000px" />
|
||||||
</template>
|
</template>
|
||||||
|
@ -696,7 +744,7 @@ onMounted(() => {
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<template #column-footer-weight>
|
<template #column-footer-weight>
|
||||||
{{ footer?.weight }}
|
<span class="q-pr-xs">{{ footer?.weight }}</span>
|
||||||
</template>
|
</template>
|
||||||
<template #column-footer-quantity>
|
<template #column-footer-quantity>
|
||||||
<span :style="getQuantityStyle(footer)" data-cy="footer-quantity">
|
<span :style="getQuantityStyle(footer)" data-cy="footer-quantity">
|
||||||
|
@ -704,9 +752,8 @@ onMounted(() => {
|
||||||
</span>
|
</span>
|
||||||
</template>
|
</template>
|
||||||
<template #column-footer-amount>
|
<template #column-footer-amount>
|
||||||
<span :style="getAmountStyle(footer)" data-cy="footer-amount">
|
<span data-cy="footer-amount">{{ footer?.amount }} / </span>
|
||||||
{{ footer?.amount }}
|
<span style="color: var(--q-positive)">{{ footer?.checkedAmount }}</span>
|
||||||
</span>
|
|
||||||
</template>
|
</template>
|
||||||
<template #column-create-itemFk="{ data }">
|
<template #column-create-itemFk="{ data }">
|
||||||
<VnSelect
|
<VnSelect
|
||||||
|
@ -767,6 +814,8 @@ onMounted(() => {
|
||||||
</template>
|
</template>
|
||||||
<i18n>
|
<i18n>
|
||||||
es:
|
es:
|
||||||
|
Buyer: Comprador
|
||||||
|
Family: Familia
|
||||||
Article: Artículo
|
Article: Artículo
|
||||||
Siz.: Med.
|
Siz.: Med.
|
||||||
Size: Medida
|
Size: Medida
|
||||||
|
|
|
@ -2,153 +2,82 @@
|
||||||
import { ref, computed } from 'vue';
|
import { ref, computed } from 'vue';
|
||||||
import { useRoute } from 'vue-router';
|
import { useRoute } from 'vue-router';
|
||||||
import { useI18n } from 'vue-i18n';
|
import { useI18n } from 'vue-i18n';
|
||||||
|
import VnTable from 'src/components/VnTable/VnTable.vue';
|
||||||
import FetchData from 'components/FetchData.vue';
|
|
||||||
import CrudModel from 'components/CrudModel.vue';
|
|
||||||
import VnInput from 'src/components/common/VnInput.vue';
|
|
||||||
import VnSelect from 'src/components/common/VnSelect.vue';
|
|
||||||
|
|
||||||
const { params } = useRoute();
|
const { params } = useRoute();
|
||||||
const { t } = useI18n();
|
const { t } = useI18n();
|
||||||
|
const selectedRows = ref([]);
|
||||||
const entryObservationsRef = ref(null);
|
const entryObservationsRef = ref(null);
|
||||||
const entryObservationsOptions = ref([]);
|
const entityId = ref(params.id);
|
||||||
const selected = ref([]);
|
|
||||||
|
|
||||||
const sortEntryObservationOptions = (data) => {
|
|
||||||
entryObservationsOptions.value = [...data].sort((a, b) =>
|
|
||||||
a.description.localeCompare(b.description),
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
const columns = computed(() => [
|
const columns = computed(() => [
|
||||||
{
|
{
|
||||||
name: 'observationType',
|
name: 'id',
|
||||||
label: t('entry.notes.observationType'),
|
isId: true,
|
||||||
field: (row) => row.observationTypeFk,
|
visible: false,
|
||||||
sortable: true,
|
isEditable: false,
|
||||||
options: entryObservationsOptions.value,
|
columnFilter: false,
|
||||||
required: true,
|
|
||||||
model: 'observationTypeFk',
|
|
||||||
optionValue: 'id',
|
|
||||||
optionLabel: 'description',
|
|
||||||
tabIndex: 1,
|
|
||||||
align: 'left',
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
name: 'observationTypeFk',
|
||||||
|
label: t('entry.notes.observationType'),
|
||||||
|
component: 'select',
|
||||||
|
columnFilter: { inWhere: true },
|
||||||
|
attrs: {
|
||||||
|
inWhere: true,
|
||||||
|
url: 'ObservationTypes',
|
||||||
|
fields: ['id', 'description'],
|
||||||
|
optionValue: 'id',
|
||||||
|
optionLabel: 'description',
|
||||||
|
sortBy: 'description',
|
||||||
|
},
|
||||||
|
width: '30px',
|
||||||
|
create: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
align: 'left',
|
||||||
name: 'description',
|
name: 'description',
|
||||||
label: t('globals.description'),
|
label: t('globals.description'),
|
||||||
field: (row) => row.description,
|
component: 'input',
|
||||||
tabIndex: 2,
|
columnFilter: false,
|
||||||
align: 'left',
|
attrs: { autogrow: true },
|
||||||
|
create: true,
|
||||||
},
|
},
|
||||||
]);
|
]);
|
||||||
|
|
||||||
|
const filter = computed(() => ({
|
||||||
|
fields: ['id', 'entryFk', 'observationTypeFk', 'description'],
|
||||||
|
include: ['observationType'],
|
||||||
|
where: { entryFk: entityId },
|
||||||
|
}));
|
||||||
</script>
|
</script>
|
||||||
<template>
|
<template>
|
||||||
<FetchData
|
<VnTable
|
||||||
url="ObservationTypes"
|
|
||||||
@on-fetch="(data) => sortEntryObservationOptions(data)"
|
|
||||||
auto-load
|
|
||||||
/>
|
|
||||||
<CrudModel
|
|
||||||
data-key="EntryAccount"
|
|
||||||
url="EntryObservations"
|
|
||||||
model="EntryAccount"
|
|
||||||
:filter="{
|
|
||||||
fields: ['id', 'entryFk', 'observationTypeFk', 'description'],
|
|
||||||
where: { entryFk: params.id },
|
|
||||||
}"
|
|
||||||
ref="entryObservationsRef"
|
ref="entryObservationsRef"
|
||||||
:data-required="{ entryFk: params.id }"
|
data-key="EntryObservations"
|
||||||
v-model:selected="selected"
|
|
||||||
auto-load
|
|
||||||
>
|
|
||||||
<template #body="{ rows, validate }">
|
|
||||||
<QTable
|
|
||||||
v-model:selected="selected"
|
|
||||||
:columns="columns"
|
:columns="columns"
|
||||||
:rows="rows"
|
url="EntryObservations"
|
||||||
:pagination="{ rowsPerPage: 0 }"
|
:user-filter="filter"
|
||||||
row-key="$index"
|
order="id ASC"
|
||||||
selection="multiple"
|
:disable-option="{ card: true }"
|
||||||
hide-pagination
|
:is-editable="true"
|
||||||
:grid="$q.screen.lt.md"
|
:right-search="true"
|
||||||
table-header-class="text-left"
|
v-model:selected="selectedRows"
|
||||||
>
|
:create="{
|
||||||
<template #body-cell-observationType="{ row, col }">
|
urlCreate: 'EntryObservations',
|
||||||
<QTd>
|
title: t('Create note'),
|
||||||
<VnSelect
|
onDataSaved: () => {
|
||||||
v-model="row[col.model]"
|
entryObservationsRef.reload();
|
||||||
:options="col.options"
|
},
|
||||||
:option-value="col.optionValue"
|
formInitialData: { entryFk: entityId },
|
||||||
:option-label="col.optionLabel"
|
}"
|
||||||
:autofocus="col.tabIndex == 1"
|
:table="{
|
||||||
input-debounce="0"
|
'row-key': 'id',
|
||||||
hide-selected
|
selection: 'multiple',
|
||||||
:required="true"
|
}"
|
||||||
|
auto-load
|
||||||
/>
|
/>
|
||||||
</QTd>
|
|
||||||
</template>
|
|
||||||
<template #body-cell-description="{ row, col }">
|
|
||||||
<QTd>
|
|
||||||
<VnInput
|
|
||||||
:label="t('globals.description')"
|
|
||||||
v-model="row[col.name]"
|
|
||||||
:rules="validate('EntryObservation.description')"
|
|
||||||
/>
|
|
||||||
</QTd>
|
|
||||||
</template>
|
|
||||||
<template #item="props">
|
|
||||||
<div class="q-pa-xs col-xs-12 col-sm-6 grid-style-transition">
|
|
||||||
<QCard bordered flat>
|
|
||||||
<QCardSection>
|
|
||||||
<QCheckbox v-model="props.selected" dense />
|
|
||||||
</QCardSection>
|
|
||||||
<QSeparator />
|
|
||||||
<QList dense>
|
|
||||||
<QItem>
|
|
||||||
<QItemSection>
|
|
||||||
<VnSelect
|
|
||||||
v-model="props.row.observationTypeFk"
|
|
||||||
:options="entryObservationsOptions"
|
|
||||||
option-value="id"
|
|
||||||
option-label="description"
|
|
||||||
input-debounce="0"
|
|
||||||
hide-selected
|
|
||||||
:required="true"
|
|
||||||
/>
|
|
||||||
</QItemSection>
|
|
||||||
</QItem>
|
|
||||||
<QItem>
|
|
||||||
<QItemSection>
|
|
||||||
<VnInput
|
|
||||||
:label="t('globals.description')"
|
|
||||||
v-model="props.row.description"
|
|
||||||
:rules="
|
|
||||||
validate('EntryObservation.description')
|
|
||||||
"
|
|
||||||
/>
|
|
||||||
</QItemSection>
|
|
||||||
</QItem>
|
|
||||||
</QList>
|
|
||||||
</QCard>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
</QTable>
|
|
||||||
</template>
|
|
||||||
</CrudModel>
|
|
||||||
<QPageSticky position="bottom-right" :offset="[25, 25]">
|
|
||||||
<QBtn
|
|
||||||
fab
|
|
||||||
color="primary"
|
|
||||||
icon="add"
|
|
||||||
v-shortcut="'+'"
|
|
||||||
@click="entryObservationsRef.insert()"
|
|
||||||
/>
|
|
||||||
</QPageSticky>
|
|
||||||
</template>
|
</template>
|
||||||
<i18n>
|
<i18n>
|
||||||
es:
|
es:
|
||||||
Add note: Añadir nota
|
Create note: Crear nota
|
||||||
Remove note: Quitar nota
|
|
||||||
</i18n>
|
</i18n>
|
||||||
|
|
|
@ -85,7 +85,7 @@ const entryFilterPanel = ref();
|
||||||
</QItemSection>
|
</QItemSection>
|
||||||
<QItemSection>
|
<QItemSection>
|
||||||
<QCheckbox
|
<QCheckbox
|
||||||
:label="t('entry.list.tableVisibleColumns.isConfirmed')"
|
label="LE"
|
||||||
v-model="params.isConfirmed"
|
v-model="params.isConfirmed"
|
||||||
toggle-indeterminate
|
toggle-indeterminate
|
||||||
>
|
>
|
||||||
|
@ -102,6 +102,7 @@ const entryFilterPanel = ref();
|
||||||
v-model="params.landed"
|
v-model="params.landed"
|
||||||
@update:model-value="searchFn()"
|
@update:model-value="searchFn()"
|
||||||
is-outlined
|
is-outlined
|
||||||
|
data-cy="landed"
|
||||||
/>
|
/>
|
||||||
</QItemSection>
|
</QItemSection>
|
||||||
</QItem>
|
</QItem>
|
||||||
|
@ -121,13 +122,6 @@ const entryFilterPanel = ref();
|
||||||
rounded
|
rounded
|
||||||
/>
|
/>
|
||||||
</QItemSection>
|
</QItemSection>
|
||||||
<QItemSection>
|
|
||||||
<VnInput
|
|
||||||
v-model="params.invoiceNumber"
|
|
||||||
:label="t('params.invoiceNumber')"
|
|
||||||
is-outlined
|
|
||||||
/>
|
|
||||||
</QItemSection>
|
|
||||||
</QItem>
|
</QItem>
|
||||||
<QItem>
|
<QItem>
|
||||||
<QItemSection>
|
<QItemSection>
|
||||||
|
@ -171,6 +165,7 @@ const entryFilterPanel = ref();
|
||||||
@update:model-value="searchFn()"
|
@update:model-value="searchFn()"
|
||||||
url="Warehouses"
|
url="Warehouses"
|
||||||
:fields="['id', 'name']"
|
:fields="['id', 'name']"
|
||||||
|
sort-by="name ASC"
|
||||||
hide-selected
|
hide-selected
|
||||||
dense
|
dense
|
||||||
outlined
|
outlined
|
||||||
|
@ -186,6 +181,7 @@ const entryFilterPanel = ref();
|
||||||
@update:model-value="searchFn()"
|
@update:model-value="searchFn()"
|
||||||
url="Warehouses"
|
url="Warehouses"
|
||||||
:fields="['id', 'name']"
|
:fields="['id', 'name']"
|
||||||
|
sort-by="name ASC"
|
||||||
hide-selected
|
hide-selected
|
||||||
dense
|
dense
|
||||||
outlined
|
outlined
|
||||||
|
@ -233,15 +229,6 @@ const entryFilterPanel = ref();
|
||||||
/>
|
/>
|
||||||
</QItemSection>
|
</QItemSection>
|
||||||
</QItem>
|
</QItem>
|
||||||
<QItem>
|
|
||||||
<QItemSection>
|
|
||||||
<VnInput
|
|
||||||
v-model="params.evaNotes"
|
|
||||||
:label="t('params.evaNotes')"
|
|
||||||
is-outlined
|
|
||||||
/>
|
|
||||||
</QItemSection>
|
|
||||||
</QItem>
|
|
||||||
</template>
|
</template>
|
||||||
</VnFilterPanel>
|
</VnFilterPanel>
|
||||||
</template>
|
</template>
|
||||||
|
@ -267,7 +254,7 @@ en:
|
||||||
hasToShowDeletedEntries: Show deleted entries
|
hasToShowDeletedEntries: Show deleted entries
|
||||||
es:
|
es:
|
||||||
params:
|
params:
|
||||||
isExcludedFromAvailable: Inventario
|
isExcludedFromAvailable: Excluida
|
||||||
isOrdered: Pedida
|
isOrdered: Pedida
|
||||||
isConfirmed: Confirmado
|
isConfirmed: Confirmado
|
||||||
isReceived: Recibida
|
isReceived: Recibida
|
||||||
|
|
|
@ -1,264 +0,0 @@
|
||||||
<script setup>
|
|
||||||
import { onMounted, onUnmounted, ref } from 'vue';
|
|
||||||
import { useI18n } from 'vue-i18n';
|
|
||||||
import { useStateStore } from 'stores/useStateStore';
|
|
||||||
import { toDate } from 'src/filters';
|
|
||||||
|
|
||||||
import VnSubToolbar from 'src/components/ui/VnSubToolbar.vue';
|
|
||||||
import RightMenu from 'src/components/common/RightMenu.vue';
|
|
||||||
import EntryLatestBuysFilter from './EntryLatestBuysFilter.vue';
|
|
||||||
import VnTable from 'components/VnTable/VnTable.vue';
|
|
||||||
import VnImg from 'src/components/ui/VnImg.vue';
|
|
||||||
|
|
||||||
const stateStore = useStateStore();
|
|
||||||
const { t } = useI18n();
|
|
||||||
const tableRef = ref();
|
|
||||||
const columns = [
|
|
||||||
{
|
|
||||||
align: 'center',
|
|
||||||
label: t('entry.latestBuys.tableVisibleColumns.image'),
|
|
||||||
name: 'itemFk',
|
|
||||||
columnField: {
|
|
||||||
component: VnImg,
|
|
||||||
attrs: ({ row }) => {
|
|
||||||
return {
|
|
||||||
id: row.id,
|
|
||||||
size: '50x50',
|
|
||||||
};
|
|
||||||
},
|
|
||||||
},
|
|
||||||
columnFilter: false,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
align: 'left',
|
|
||||||
label: t('entry.latestBuys.tableVisibleColumns.itemFk'),
|
|
||||||
name: 'itemFk',
|
|
||||||
isTitle: true,
|
|
||||||
columnFilter: {
|
|
||||||
component: 'number',
|
|
||||||
inWhere: true,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
align: 'left',
|
|
||||||
label: t('entry.summary.packing'),
|
|
||||||
name: 'packing',
|
|
||||||
columnFilter: {
|
|
||||||
component: 'number',
|
|
||||||
inWhere: true,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
align: 'left',
|
|
||||||
label: t('entry.summary.grouping'),
|
|
||||||
name: 'grouping',
|
|
||||||
columnFilter: {
|
|
||||||
component: 'number',
|
|
||||||
inWhere: true,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
align: 'left',
|
|
||||||
label: t('globals.quantity'),
|
|
||||||
name: 'quantity',
|
|
||||||
columnFilter: {
|
|
||||||
component: 'number',
|
|
||||||
inWhere: true,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
align: 'left',
|
|
||||||
label: t('globals.description'),
|
|
||||||
name: 'description',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
align: 'left',
|
|
||||||
label: t('globals.size'),
|
|
||||||
name: 'size',
|
|
||||||
columnFilter: {
|
|
||||||
component: 'number',
|
|
||||||
inWhere: true,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
align: 'left',
|
|
||||||
label: t('globals.tags'),
|
|
||||||
name: 'tags',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
align: 'left',
|
|
||||||
label: t('globals.type'),
|
|
||||||
name: 'type',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
align: 'left',
|
|
||||||
label: t('globals.intrastat'),
|
|
||||||
name: 'intrastat',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
align: 'left',
|
|
||||||
label: t('globals.origin'),
|
|
||||||
name: 'origin',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
align: 'left',
|
|
||||||
label: t('entry.latestBuys.tableVisibleColumns.weightByPiece'),
|
|
||||||
name: 'weightByPiece',
|
|
||||||
columnFilter: {
|
|
||||||
component: 'number',
|
|
||||||
inWhere: true,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
align: 'left',
|
|
||||||
label: t('entry.latestBuys.tableVisibleColumns.isActive'),
|
|
||||||
name: 'isActive',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
align: 'left',
|
|
||||||
label: t('entry.latestBuys.tableVisibleColumns.family'),
|
|
||||||
name: 'family',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
align: 'left',
|
|
||||||
label: t('entry.latestBuys.tableVisibleColumns.entryFk'),
|
|
||||||
name: 'entryFk',
|
|
||||||
columnFilter: {
|
|
||||||
component: 'number',
|
|
||||||
inWhere: true,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
align: 'left',
|
|
||||||
label: t('entry.summary.buyingValue'),
|
|
||||||
name: 'buyingValue',
|
|
||||||
columnFilter: {
|
|
||||||
component: 'number',
|
|
||||||
inWhere: true,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
align: 'left',
|
|
||||||
label: t('entry.latestBuys.tableVisibleColumns.freightValue'),
|
|
||||||
name: 'freightValue',
|
|
||||||
columnFilter: {
|
|
||||||
component: 'number',
|
|
||||||
inWhere: true,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
align: 'left',
|
|
||||||
label: t('entry.latestBuys.tableVisibleColumns.comissionValue'),
|
|
||||||
name: 'comissionValue',
|
|
||||||
columnFilter: {
|
|
||||||
component: 'number',
|
|
||||||
inWhere: true,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
align: 'left',
|
|
||||||
label: t('entry.latestBuys.tableVisibleColumns.packageValue'),
|
|
||||||
name: 'packageValue',
|
|
||||||
columnFilter: {
|
|
||||||
component: 'number',
|
|
||||||
inWhere: true,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
align: 'left',
|
|
||||||
label: t('entry.latestBuys.tableVisibleColumns.isIgnored'),
|
|
||||||
name: 'isIgnored',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
align: 'left',
|
|
||||||
label: t('entry.latestBuys.tableVisibleColumns.price2'),
|
|
||||||
name: 'price2',
|
|
||||||
columnFilter: {
|
|
||||||
component: 'number',
|
|
||||||
inWhere: true,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
align: 'left',
|
|
||||||
label: t('entry.latestBuys.tableVisibleColumns.price3'),
|
|
||||||
name: 'price3',
|
|
||||||
columnFilter: {
|
|
||||||
component: 'number',
|
|
||||||
inWhere: true,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
align: 'left',
|
|
||||||
label: t('entry.latestBuys.tableVisibleColumns.minPrice'),
|
|
||||||
name: 'minPrice',
|
|
||||||
columnFilter: {
|
|
||||||
component: 'number',
|
|
||||||
inWhere: true,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
align: 'left',
|
|
||||||
label: t('entry.latestBuys.tableVisibleColumns.ektFk'),
|
|
||||||
name: 'ektFk',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
align: 'left',
|
|
||||||
label: t('globals.weight'),
|
|
||||||
name: 'weight',
|
|
||||||
columnFilter: {
|
|
||||||
component: 'number',
|
|
||||||
inWhere: true,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
align: 'left',
|
|
||||||
label: t('entry.buys.packagingFk'),
|
|
||||||
name: 'packagingFk',
|
|
||||||
columnFilter: {
|
|
||||||
component: 'number',
|
|
||||||
inWhere: true,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
align: 'left',
|
|
||||||
label: t('entry.latestBuys.tableVisibleColumns.packingOut'),
|
|
||||||
name: 'packingOut',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
align: 'left',
|
|
||||||
label: t('entry.latestBuys.tableVisibleColumns.landing'),
|
|
||||||
name: 'landing',
|
|
||||||
component: 'date',
|
|
||||||
columnField: {
|
|
||||||
component: null,
|
|
||||||
},
|
|
||||||
format: (row, dashIfEmpty) => dashIfEmpty(toDate(row.landing)),
|
|
||||||
},
|
|
||||||
];
|
|
||||||
|
|
||||||
onMounted(async () => {
|
|
||||||
stateStore.rightDrawer = true;
|
|
||||||
});
|
|
||||||
|
|
||||||
onUnmounted(() => (stateStore.rightDrawer = false));
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<template>
|
|
||||||
<RightMenu>
|
|
||||||
<template #right-panel>
|
|
||||||
<EntryLatestBuysFilter data-key="LatestBuys" />
|
|
||||||
</template>
|
|
||||||
</RightMenu>
|
|
||||||
<VnSubToolbar />
|
|
||||||
<VnTable
|
|
||||||
ref="tableRef"
|
|
||||||
data-key="LatestBuys"
|
|
||||||
url="Buys/latestBuysFilter"
|
|
||||||
order="id DESC"
|
|
||||||
:columns="columns"
|
|
||||||
redirect="entry"
|
|
||||||
:row-click="({ entryFk }) => tableRef.redirect(entryFk)"
|
|
||||||
auto-load
|
|
||||||
:right-search="false"
|
|
||||||
/>
|
|
||||||
</template>
|
|
|
@ -1,161 +0,0 @@
|
||||||
<script setup>
|
|
||||||
import { ref } from 'vue';
|
|
||||||
import { useI18n } from 'vue-i18n';
|
|
||||||
import VnInputDate from 'src/components/common/VnInputDate.vue';
|
|
||||||
import VnInput from 'components/common/VnInput.vue';
|
|
||||||
import VnSelect from 'components/common/VnSelect.vue';
|
|
||||||
import ItemsFilterPanel from 'src/components/ItemsFilterPanel.vue';
|
|
||||||
import VnSelectSupplier from 'src/components/common/VnSelectSupplier.vue';
|
|
||||||
|
|
||||||
const { t } = useI18n();
|
|
||||||
|
|
||||||
defineProps({
|
|
||||||
dataKey: {
|
|
||||||
type: String,
|
|
||||||
required: true,
|
|
||||||
},
|
|
||||||
});
|
|
||||||
|
|
||||||
const tagValues = ref([]);
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<template>
|
|
||||||
<ItemsFilterPanel :data-key="dataKey" :custom-tags="['tags']">
|
|
||||||
<template #body="{ params, searchFn }">
|
|
||||||
<QItem class="q-my-md">
|
|
||||||
<QItemSection>
|
|
||||||
<VnSelect
|
|
||||||
:label="t('components.itemsFilterPanel.salesPersonFk')"
|
|
||||||
v-model="params.salesPersonFk"
|
|
||||||
url="TicketRequests/getItemTypeWorker"
|
|
||||||
option-label="nickname"
|
|
||||||
:fields="['id', 'nickname']"
|
|
||||||
sort-by="nickname ASC"
|
|
||||||
dense
|
|
||||||
outlined
|
|
||||||
rounded
|
|
||||||
use-input
|
|
||||||
@update:model-value="searchFn()"
|
|
||||||
/>
|
|
||||||
</QItemSection>
|
|
||||||
</QItem>
|
|
||||||
<QItem class="q-my-md">
|
|
||||||
<QItemSection>
|
|
||||||
<VnSelectSupplier
|
|
||||||
v-model="params.supplierFk"
|
|
||||||
url="Suppliers"
|
|
||||||
:fields="['id', 'name', 'nickname']"
|
|
||||||
sort-by="name ASC"
|
|
||||||
dense
|
|
||||||
outlined
|
|
||||||
rounded
|
|
||||||
/>
|
|
||||||
</QItemSection>
|
|
||||||
</QItem>
|
|
||||||
<QItem class="q-my-md">
|
|
||||||
<QItemSection>
|
|
||||||
<VnInputDate
|
|
||||||
:label="t('components.itemsFilterPanel.started')"
|
|
||||||
v-model="params.from"
|
|
||||||
is-outlined
|
|
||||||
@update:model-value="searchFn()"
|
|
||||||
/>
|
|
||||||
</QItemSection>
|
|
||||||
</QItem>
|
|
||||||
<QItem class="q-my-md">
|
|
||||||
<QItemSection>
|
|
||||||
<VnInputDate
|
|
||||||
:label="t('components.itemsFilterPanel.ended')"
|
|
||||||
v-model="params.to"
|
|
||||||
is-outlined
|
|
||||||
@update:model-value="searchFn()"
|
|
||||||
/>
|
|
||||||
</QItemSection>
|
|
||||||
</QItem>
|
|
||||||
<QItem>
|
|
||||||
<QItemSection>
|
|
||||||
<QCheckbox
|
|
||||||
:label="t('components.itemsFilterPanel.active')"
|
|
||||||
v-model="params.active"
|
|
||||||
toggle-indeterminate
|
|
||||||
@update:model-value="searchFn()"
|
|
||||||
/>
|
|
||||||
</QItemSection>
|
|
||||||
<QItemSection>
|
|
||||||
<QCheckbox
|
|
||||||
:label="t('globals.visible')"
|
|
||||||
v-model="params.visible"
|
|
||||||
toggle-indeterminate
|
|
||||||
@update:model-value="searchFn()"
|
|
||||||
/>
|
|
||||||
</QItemSection>
|
|
||||||
</QItem>
|
|
||||||
<QItem>
|
|
||||||
<QItemSection>
|
|
||||||
<QCheckbox
|
|
||||||
:label="t('components.itemsFilterPanel.floramondo')"
|
|
||||||
v-model="params.floramondo"
|
|
||||||
toggle-indeterminate
|
|
||||||
@update:model-value="searchFn()"
|
|
||||||
/>
|
|
||||||
</QItemSection>
|
|
||||||
</QItem>
|
|
||||||
|
|
||||||
<QItem
|
|
||||||
v-for="(value, index) in tagValues"
|
|
||||||
:key="value"
|
|
||||||
class="q-mt-md filter-value"
|
|
||||||
>
|
|
||||||
<QItemSection class="col">
|
|
||||||
<VnSelect
|
|
||||||
:label="t('params.tag')"
|
|
||||||
v-model="value.selectedTag"
|
|
||||||
:options="tagOptions"
|
|
||||||
option-label="name"
|
|
||||||
dense
|
|
||||||
outlined
|
|
||||||
rounded
|
|
||||||
:emit-value="false"
|
|
||||||
use-input
|
|
||||||
:is-clearable="false"
|
|
||||||
@update:model-value="getSelectedTagValues(value)"
|
|
||||||
/>
|
|
||||||
</QItemSection>
|
|
||||||
<QItemSection class="col">
|
|
||||||
<VnSelect
|
|
||||||
v-if="!value?.selectedTag?.isFree && value.valueOptions"
|
|
||||||
:label="t('params.value')"
|
|
||||||
v-model="value.value"
|
|
||||||
:options="value.valueOptions || []"
|
|
||||||
option-value="value"
|
|
||||||
option-label="value"
|
|
||||||
dense
|
|
||||||
outlined
|
|
||||||
rounded
|
|
||||||
emit-value
|
|
||||||
use-input
|
|
||||||
:disable="!value"
|
|
||||||
:is-clearable="false"
|
|
||||||
class="filter-input"
|
|
||||||
@update:model-value="applyTags(params, searchFn)"
|
|
||||||
/>
|
|
||||||
<VnInput
|
|
||||||
v-else
|
|
||||||
v-model="value.value"
|
|
||||||
:label="t('params.value')"
|
|
||||||
:disable="!value"
|
|
||||||
is-outlined
|
|
||||||
class="filter-input"
|
|
||||||
:is-clearable="false"
|
|
||||||
@keyup.enter="applyTags(params, searchFn)"
|
|
||||||
/>
|
|
||||||
</QItemSection>
|
|
||||||
<QIcon
|
|
||||||
name="delete"
|
|
||||||
class="filter-icon"
|
|
||||||
@click="removeTag(index, params, searchFn)"
|
|
||||||
/>
|
|
||||||
</QItem>
|
|
||||||
</template>
|
|
||||||
</ItemsFilterPanel>
|
|
||||||
</template>
|
|
|
@ -107,9 +107,8 @@ const columns = computed(() => [
|
||||||
attrs: {
|
attrs: {
|
||||||
url: 'suppliers',
|
url: 'suppliers',
|
||||||
fields: ['id', 'name'],
|
fields: ['id', 'name'],
|
||||||
where: { order: 'name DESC' },
|
sortBy: 'name ASC',
|
||||||
},
|
},
|
||||||
format: (row, dashIfEmpty) => dashIfEmpty(row.supplierName),
|
|
||||||
width: '110px',
|
width: '110px',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -145,6 +144,7 @@ const columns = computed(() => [
|
||||||
attrs: {
|
attrs: {
|
||||||
url: 'agencyModes',
|
url: 'agencyModes',
|
||||||
fields: ['id', 'name'],
|
fields: ['id', 'name'],
|
||||||
|
sortBy: 'name ASC',
|
||||||
},
|
},
|
||||||
columnField: {
|
columnField: {
|
||||||
component: null,
|
component: null,
|
||||||
|
@ -158,7 +158,6 @@ const columns = computed(() => [
|
||||||
component: 'input',
|
component: 'input',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
align: 'left',
|
|
||||||
label: t('entry.list.tableVisibleColumns.warehouseOutFk'),
|
label: t('entry.list.tableVisibleColumns.warehouseOutFk'),
|
||||||
name: 'warehouseOutFk',
|
name: 'warehouseOutFk',
|
||||||
cardVisible: true,
|
cardVisible: true,
|
||||||
|
@ -166,6 +165,7 @@ const columns = computed(() => [
|
||||||
attrs: {
|
attrs: {
|
||||||
url: 'warehouses',
|
url: 'warehouses',
|
||||||
fields: ['id', 'name'],
|
fields: ['id', 'name'],
|
||||||
|
sortBy: 'name ASC',
|
||||||
},
|
},
|
||||||
columnField: {
|
columnField: {
|
||||||
component: null,
|
component: null,
|
||||||
|
@ -174,7 +174,6 @@ const columns = computed(() => [
|
||||||
width: '65px',
|
width: '65px',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
align: 'left',
|
|
||||||
label: t('entry.list.tableVisibleColumns.warehouseInFk'),
|
label: t('entry.list.tableVisibleColumns.warehouseInFk'),
|
||||||
name: 'warehouseInFk',
|
name: 'warehouseInFk',
|
||||||
cardVisible: true,
|
cardVisible: true,
|
||||||
|
@ -182,6 +181,7 @@ const columns = computed(() => [
|
||||||
attrs: {
|
attrs: {
|
||||||
url: 'warehouses',
|
url: 'warehouses',
|
||||||
fields: ['id', 'name'],
|
fields: ['id', 'name'],
|
||||||
|
sortBy: 'name ASC',
|
||||||
},
|
},
|
||||||
columnField: {
|
columnField: {
|
||||||
component: null,
|
component: null,
|
||||||
|
@ -190,7 +190,6 @@ const columns = computed(() => [
|
||||||
width: '65px',
|
width: '65px',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
align: 'left',
|
|
||||||
labelAbbreviation: t('Type'),
|
labelAbbreviation: t('Type'),
|
||||||
label: t('entry.list.tableVisibleColumns.entryTypeDescription'),
|
label: t('entry.list.tableVisibleColumns.entryTypeDescription'),
|
||||||
toolTip: t('entry.list.tableVisibleColumns.entryTypeDescription'),
|
toolTip: t('entry.list.tableVisibleColumns.entryTypeDescription'),
|
||||||
|
@ -201,6 +200,7 @@ const columns = computed(() => [
|
||||||
fields: ['code', 'description'],
|
fields: ['code', 'description'],
|
||||||
optionValue: 'code',
|
optionValue: 'code',
|
||||||
optionLabel: 'description',
|
optionLabel: 'description',
|
||||||
|
sortBy: 'description ASC',
|
||||||
},
|
},
|
||||||
width: '65px',
|
width: '65px',
|
||||||
format: (row, dashIfEmpty) => dashIfEmpty(row.entryTypeDescription),
|
format: (row, dashIfEmpty) => dashIfEmpty(row.entryTypeDescription),
|
||||||
|
@ -283,7 +283,13 @@ onBeforeMount(async () => {
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<VnSection :data-key="dataKey" prefix="entry">
|
<VnSection
|
||||||
|
:data-key="dataKey"
|
||||||
|
prefix="entry"
|
||||||
|
:array-data-props="{
|
||||||
|
url: 'Entries/filter',
|
||||||
|
}"
|
||||||
|
>
|
||||||
<template #advanced-menu>
|
<template #advanced-menu>
|
||||||
<EntryFilter :data-key="dataKey" />
|
<EntryFilter :data-key="dataKey" />
|
||||||
</template>
|
</template>
|
||||||
|
|
|
@ -83,7 +83,7 @@ const columns = computed(() => [
|
||||||
{
|
{
|
||||||
title: t('entryStockBought.viewMoreDetails'),
|
title: t('entryStockBought.viewMoreDetails'),
|
||||||
name: 'searchBtn',
|
name: 'searchBtn',
|
||||||
icon: 'search',
|
icon: 'add',
|
||||||
isPrimary: true,
|
isPrimary: true,
|
||||||
action: (row) => {
|
action: (row) => {
|
||||||
quasar.dialog({
|
quasar.dialog({
|
||||||
|
|
|
@ -4,7 +4,7 @@ import { useI18n } from 'vue-i18n';
|
||||||
import VnSearchbar from 'src/components/ui/VnSearchbar.vue';
|
import VnSearchbar from 'src/components/ui/VnSearchbar.vue';
|
||||||
import { toDate } from 'src/filters/index';
|
import { toDate } from 'src/filters/index';
|
||||||
import { useQuasar } from 'quasar';
|
import { useQuasar } from 'quasar';
|
||||||
import EntryBuysTableDialog from './EntryBuysTableDialog.vue';
|
import EntrySupplierlDetail from './EntrySupplierlDetail.vue';
|
||||||
import VnTable from 'components/VnTable/VnTable.vue';
|
import VnTable from 'components/VnTable/VnTable.vue';
|
||||||
|
|
||||||
const { t } = useI18n();
|
const { t } = useI18n();
|
||||||
|
@ -18,18 +18,28 @@ const columns = computed(() => [
|
||||||
{
|
{
|
||||||
align: 'left',
|
align: 'left',
|
||||||
name: 'id',
|
name: 'id',
|
||||||
label: t('myEntries.id'),
|
label: t('entrySupplier.id'),
|
||||||
columnFilter: false,
|
columnFilter: false,
|
||||||
|
isId: true,
|
||||||
|
chip: {
|
||||||
|
condition: () => true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
align: 'left',
|
||||||
|
name: 'supplierName',
|
||||||
|
label: t('entrySupplier.supplierName'),
|
||||||
|
cardVisible: true,
|
||||||
isTitle: true,
|
isTitle: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
visible: false,
|
visible: false,
|
||||||
align: 'right',
|
align: 'right',
|
||||||
label: t('myEntries.shipped'),
|
label: t('entrySupplier.shipped'),
|
||||||
name: 'shipped',
|
name: 'shipped',
|
||||||
columnFilter: {
|
columnFilter: {
|
||||||
name: 'fromShipped',
|
name: 'fromShipped',
|
||||||
label: t('myEntries.fromShipped'),
|
label: t('entrySupplier.fromShipped'),
|
||||||
component: 'date',
|
component: 'date',
|
||||||
},
|
},
|
||||||
format: ({ shipped }) => toDate(shipped),
|
format: ({ shipped }) => toDate(shipped),
|
||||||
|
@ -37,26 +47,26 @@ const columns = computed(() => [
|
||||||
{
|
{
|
||||||
visible: false,
|
visible: false,
|
||||||
align: 'left',
|
align: 'left',
|
||||||
label: t('myEntries.shipped'),
|
label: t('entrySupplier.shipped'),
|
||||||
name: 'shipped',
|
name: 'shipped',
|
||||||
columnFilter: {
|
columnFilter: {
|
||||||
name: 'toShipped',
|
name: 'toShipped',
|
||||||
label: t('myEntries.toShipped'),
|
label: t('entrySupplier.toShipped'),
|
||||||
component: 'date',
|
component: 'date',
|
||||||
},
|
},
|
||||||
format: ({ shipped }) => toDate(shipped),
|
format: ({ shipped }) => toDate(shipped),
|
||||||
cardVisible: true,
|
cardVisible: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
align: 'right',
|
align: 'left',
|
||||||
label: t('myEntries.shipped'),
|
label: t('entrySupplier.shipped'),
|
||||||
name: 'shipped',
|
name: 'shipped',
|
||||||
columnFilter: false,
|
columnFilter: false,
|
||||||
format: ({ shipped }) => toDate(shipped),
|
format: ({ shipped }) => toDate(shipped),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
align: 'right',
|
align: 'left',
|
||||||
label: t('myEntries.landed'),
|
label: t('entrySupplier.landed'),
|
||||||
name: 'landed',
|
name: 'landed',
|
||||||
columnFilter: false,
|
columnFilter: false,
|
||||||
format: ({ landed }) => toDate(landed),
|
format: ({ landed }) => toDate(landed),
|
||||||
|
@ -64,15 +74,13 @@ const columns = computed(() => [
|
||||||
|
|
||||||
{
|
{
|
||||||
align: 'right',
|
align: 'right',
|
||||||
label: t('myEntries.wareHouseIn'),
|
label: t('entrySupplier.wareHouseIn'),
|
||||||
name: 'warehouseInFk',
|
name: 'warehouseInFk',
|
||||||
format: (row) => {
|
format: ({ warehouseInName }) => warehouseInName,
|
||||||
row.warehouseInName;
|
|
||||||
},
|
|
||||||
cardVisible: true,
|
cardVisible: true,
|
||||||
columnFilter: {
|
columnFilter: {
|
||||||
name: 'warehouseInFk',
|
name: 'warehouseInFk',
|
||||||
label: t('myEntries.warehouseInFk'),
|
label: t('entrySupplier.warehouseInFk'),
|
||||||
component: 'select',
|
component: 'select',
|
||||||
attrs: {
|
attrs: {
|
||||||
url: 'warehouses',
|
url: 'warehouses',
|
||||||
|
@ -86,13 +94,13 @@ const columns = computed(() => [
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
align: 'left',
|
align: 'left',
|
||||||
label: t('myEntries.daysOnward'),
|
label: t('entrySupplier.daysOnward'),
|
||||||
name: 'daysOnward',
|
name: 'daysOnward',
|
||||||
visible: false,
|
visible: false,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
align: 'left',
|
align: 'left',
|
||||||
label: t('myEntries.daysAgo'),
|
label: t('entrySupplier.daysAgo'),
|
||||||
name: 'daysAgo',
|
name: 'daysAgo',
|
||||||
visible: false,
|
visible: false,
|
||||||
},
|
},
|
||||||
|
@ -101,8 +109,8 @@ const columns = computed(() => [
|
||||||
name: 'tableActions',
|
name: 'tableActions',
|
||||||
actions: [
|
actions: [
|
||||||
{
|
{
|
||||||
title: t('myEntries.printLabels'),
|
title: t('entrySupplier.printLabels'),
|
||||||
icon: 'move_item',
|
icon: 'search',
|
||||||
isPrimary: true,
|
isPrimary: true,
|
||||||
action: (row) => printBuys(row.id),
|
action: (row) => printBuys(row.id),
|
||||||
},
|
},
|
||||||
|
@ -112,7 +120,7 @@ const columns = computed(() => [
|
||||||
|
|
||||||
const printBuys = (rowId) => {
|
const printBuys = (rowId) => {
|
||||||
quasar.dialog({
|
quasar.dialog({
|
||||||
component: EntryBuysTableDialog,
|
component: EntrySupplierlDetail,
|
||||||
componentProps: {
|
componentProps: {
|
||||||
id: rowId,
|
id: rowId,
|
||||||
},
|
},
|
||||||
|
@ -121,19 +129,18 @@ const printBuys = (rowId) => {
|
||||||
</script>
|
</script>
|
||||||
<template>
|
<template>
|
||||||
<VnSearchbar
|
<VnSearchbar
|
||||||
data-key="myEntriesList"
|
data-key="entrySupplierList"
|
||||||
url="Entries/filter"
|
url="Entries/filter"
|
||||||
:label="t('myEntries.search')"
|
:label="t('entrySupplier.search')"
|
||||||
:info="t('myEntries.searchInfo')"
|
:info="t('entrySupplier.searchInfo')"
|
||||||
/>
|
/>
|
||||||
<VnTable
|
<VnTable
|
||||||
data-key="myEntriesList"
|
data-key="entrySupplierList"
|
||||||
url="Entries/filter"
|
url="Entries/filter"
|
||||||
:columns="columns"
|
:columns="columns"
|
||||||
:user-params="params"
|
:user-params="params"
|
||||||
default-mode="card"
|
default-mode="card"
|
||||||
order="shipped DESC"
|
order="shipped DESC"
|
||||||
auto-load
|
auto-load
|
||||||
chip-locale="myEntries"
|
|
||||||
/>
|
/>
|
||||||
</template>
|
</template>
|
|
@ -30,7 +30,7 @@ const entriesTableColumns = computed(() => [
|
||||||
align: 'left',
|
align: 'left',
|
||||||
name: 'itemFk',
|
name: 'itemFk',
|
||||||
field: 'itemFk',
|
field: 'itemFk',
|
||||||
label: t('entry.latestBuys.tableVisibleColumns.itemFk'),
|
label: t('entrySupplier.itemId'),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
align: 'left',
|
align: 'left',
|
||||||
|
@ -65,7 +65,15 @@ const entriesTableColumns = computed(() => [
|
||||||
]);
|
]);
|
||||||
|
|
||||||
function downloadCSV(rows) {
|
function downloadCSV(rows) {
|
||||||
const headers = ['id', 'itemFk', 'name', 'stickers', 'packing', 'grouping', 'comment'];
|
const headers = [
|
||||||
|
'id',
|
||||||
|
'itemFk',
|
||||||
|
'name',
|
||||||
|
'stickers',
|
||||||
|
'packing',
|
||||||
|
'grouping',
|
||||||
|
'comment',
|
||||||
|
];
|
||||||
|
|
||||||
const csvRows = rows.map((row) => {
|
const csvRows = rows.map((row) => {
|
||||||
const buy = row;
|
const buy = row;
|
||||||
|
@ -119,17 +127,18 @@ function downloadCSV(rows) {
|
||||||
>
|
>
|
||||||
<template #top-left>
|
<template #top-left>
|
||||||
<QBtn
|
<QBtn
|
||||||
:label="t('myEntries.downloadCsv')"
|
:label="t('entrySupplier.downloadCsv')"
|
||||||
color="primary"
|
color="primary"
|
||||||
icon="csv"
|
icon="csv"
|
||||||
@click="downloadCSV(rows)"
|
@click="downloadCSV(rows)"
|
||||||
unelevated
|
unelevated
|
||||||
|
data-cy="downloadCsvBtn"
|
||||||
/>
|
/>
|
||||||
</template>
|
</template>
|
||||||
<template #top-right>
|
<template #top-right>
|
||||||
<QBtn
|
<QBtn
|
||||||
class="q-mr-lg"
|
class="q-mr-lg"
|
||||||
:label="t('myEntries.printLabels')"
|
:label="t('entrySupplier.printLabels')"
|
||||||
color="primary"
|
color="primary"
|
||||||
icon="print"
|
icon="print"
|
||||||
@click="
|
@click="
|
||||||
|
@ -148,13 +157,18 @@ function downloadCSV(rows) {
|
||||||
v-if="props.row.stickers > 0"
|
v-if="props.row.stickers > 0"
|
||||||
@click="
|
@click="
|
||||||
openReport(
|
openReport(
|
||||||
`Entries/${props.row.id}/buy-label-supplier`
|
`Entries/${props.row.id}/buy-label-supplier`,
|
||||||
|
{},
|
||||||
|
true,
|
||||||
)
|
)
|
||||||
"
|
"
|
||||||
unelevated
|
unelevated
|
||||||
|
color="primary"
|
||||||
|
flat
|
||||||
|
data-cy="seeLabelBtn"
|
||||||
>
|
>
|
||||||
<QTooltip>{{
|
<QTooltip>{{
|
||||||
t('myEntries.viewLabel')
|
t('entrySupplier.viewLabel')
|
||||||
}}</QTooltip>
|
}}</QTooltip>
|
||||||
</QBtn>
|
</QBtn>
|
||||||
</QTr>
|
</QTr>
|
|
@ -38,7 +38,7 @@ const recalc = async () => {
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div class="q-pa-lg row justify-center">
|
<div class="q-pa-lg row justify-center">
|
||||||
<QCard class="bg-light" style="width: 300px">
|
<QCard class="bg-light" style="width: 300px" data-cy="wasteRecalc">
|
||||||
<QCardSection>
|
<QCardSection>
|
||||||
<VnInputDate
|
<VnInputDate
|
||||||
class="q-mb-lg"
|
class="q-mb-lg"
|
||||||
|
@ -46,6 +46,7 @@ const recalc = async () => {
|
||||||
:label="$t('globals.from')"
|
:label="$t('globals.from')"
|
||||||
rounded
|
rounded
|
||||||
dense
|
dense
|
||||||
|
data-cy="dateFrom"
|
||||||
/>
|
/>
|
||||||
<VnInputDate
|
<VnInputDate
|
||||||
class="q-mb-lg"
|
class="q-mb-lg"
|
||||||
|
@ -55,6 +56,7 @@ const recalc = async () => {
|
||||||
:disable="!dateFrom"
|
:disable="!dateFrom"
|
||||||
rounded
|
rounded
|
||||||
dense
|
dense
|
||||||
|
data-cy="dateTo"
|
||||||
/>
|
/>
|
||||||
<QBtn
|
<QBtn
|
||||||
color="primary"
|
color="primary"
|
||||||
|
@ -63,6 +65,7 @@ const recalc = async () => {
|
||||||
:loading="isLoading"
|
:loading="isLoading"
|
||||||
:disable="isLoading || !(dateFrom && dateTo)"
|
:disable="isLoading || !(dateFrom && dateTo)"
|
||||||
@click="recalc()"
|
@click="recalc()"
|
||||||
|
data-cy="recalc"
|
||||||
/>
|
/>
|
||||||
</QCardSection>
|
</QCardSection>
|
||||||
</QCard>
|
</QCard>
|
||||||
|
|
|
@ -6,7 +6,7 @@ entry:
|
||||||
list:
|
list:
|
||||||
newEntry: New entry
|
newEntry: New entry
|
||||||
tableVisibleColumns:
|
tableVisibleColumns:
|
||||||
isExcludedFromAvailable: Exclude from inventory
|
isExcludedFromAvailable: Excluded from available
|
||||||
isOrdered: Ordered
|
isOrdered: Ordered
|
||||||
isConfirmed: Ready to label
|
isConfirmed: Ready to label
|
||||||
isReceived: Received
|
isReceived: Received
|
||||||
|
@ -33,7 +33,7 @@ entry:
|
||||||
invoiceAmount: Invoice amount
|
invoiceAmount: Invoice amount
|
||||||
ordered: Ordered
|
ordered: Ordered
|
||||||
booked: Booked
|
booked: Booked
|
||||||
excludedFromAvailable: Inventory
|
excludedFromAvailable: Excluded
|
||||||
travelReference: Reference
|
travelReference: Reference
|
||||||
travelAgency: Agency
|
travelAgency: Agency
|
||||||
travelShipped: Shipped
|
travelShipped: Shipped
|
||||||
|
@ -55,7 +55,7 @@ entry:
|
||||||
commission: Commission
|
commission: Commission
|
||||||
observation: Observation
|
observation: Observation
|
||||||
booked: Booked
|
booked: Booked
|
||||||
excludedFromAvailable: Inventory
|
excludedFromAvailable: Excluded
|
||||||
initialTemperature: Ini °C
|
initialTemperature: Ini °C
|
||||||
finalTemperature: Fin °C
|
finalTemperature: Fin °C
|
||||||
buys:
|
buys:
|
||||||
|
@ -65,27 +65,10 @@ entry:
|
||||||
printedStickers: Printed stickers
|
printedStickers: Printed stickers
|
||||||
notes:
|
notes:
|
||||||
observationType: Observation type
|
observationType: Observation type
|
||||||
latestBuys:
|
|
||||||
tableVisibleColumns:
|
|
||||||
image: Picture
|
|
||||||
itemFk: Item ID
|
|
||||||
weightByPiece: Weight/Piece
|
|
||||||
isActive: Active
|
|
||||||
family: Family
|
|
||||||
entryFk: Entry
|
|
||||||
freightValue: Freight value
|
|
||||||
comissionValue: Commission value
|
|
||||||
packageValue: Package value
|
|
||||||
isIgnored: Is ignored
|
|
||||||
price2: Grouping
|
|
||||||
price3: Packing
|
|
||||||
minPrice: Min
|
|
||||||
ektFk: Ekt
|
|
||||||
packingOut: Package out
|
|
||||||
landing: Landing
|
|
||||||
isExcludedFromAvailable: Es inventory
|
|
||||||
params:
|
params:
|
||||||
isExcludedFromAvailable: Exclude from inventory
|
entryFk: Entry
|
||||||
|
observationTypeFk: Observation type
|
||||||
|
isExcludedFromAvailable: Excluded from available
|
||||||
isOrdered: Ordered
|
isOrdered: Ordered
|
||||||
isConfirmed: Ready to label
|
isConfirmed: Ready to label
|
||||||
isReceived: Received
|
isReceived: Received
|
||||||
|
@ -127,13 +110,16 @@ entry:
|
||||||
company_name: Company name
|
company_name: Company name
|
||||||
itemTypeFk: Item type
|
itemTypeFk: Item type
|
||||||
workerFk: Worker id
|
workerFk: Worker id
|
||||||
|
daysAgo: Days ago
|
||||||
|
toShipped: T. shipped
|
||||||
|
fromShipped: F. shipped
|
||||||
search: Search entries
|
search: Search entries
|
||||||
searchInfo: You can search by entry reference
|
searchInfo: You can search by entry reference
|
||||||
descriptorMenu:
|
descriptorMenu:
|
||||||
showEntryReport: Show entry report
|
showEntryReport: Show entry report
|
||||||
entryFilter:
|
entryFilter:
|
||||||
params:
|
params:
|
||||||
isExcludedFromAvailable: Exclude from inventory
|
isExcludedFromAvailable: Excluded from available
|
||||||
invoiceNumber: Invoice number
|
invoiceNumber: Invoice number
|
||||||
travelFk: Travel
|
travelFk: Travel
|
||||||
companyFk: Company
|
companyFk: Company
|
||||||
|
@ -155,7 +141,7 @@ entryFilter:
|
||||||
warehouseOutFk: Origin
|
warehouseOutFk: Origin
|
||||||
warehouseInFk: Destiny
|
warehouseInFk: Destiny
|
||||||
entryTypeCode: Entry type
|
entryTypeCode: Entry type
|
||||||
myEntries:
|
entrySupplier:
|
||||||
id: ID
|
id: ID
|
||||||
landed: Landed
|
landed: Landed
|
||||||
shipped: Shipped
|
shipped: Shipped
|
||||||
|
@ -170,6 +156,8 @@ myEntries:
|
||||||
downloadCsv: Download CSV
|
downloadCsv: Download CSV
|
||||||
search: Search entries
|
search: Search entries
|
||||||
searchInfo: You can search by entry reference
|
searchInfo: You can search by entry reference
|
||||||
|
supplierName: Supplier
|
||||||
|
itemId: Item id
|
||||||
entryStockBought:
|
entryStockBought:
|
||||||
travel: Travel
|
travel: Travel
|
||||||
editTravel: Edit travel
|
editTravel: Edit travel
|
||||||
|
|
|
@ -6,7 +6,7 @@ entry:
|
||||||
list:
|
list:
|
||||||
newEntry: Nueva entrada
|
newEntry: Nueva entrada
|
||||||
tableVisibleColumns:
|
tableVisibleColumns:
|
||||||
isExcludedFromAvailable: Excluir del inventario
|
isExcludedFromAvailable: Excluir del disponible
|
||||||
isOrdered: Pedida
|
isOrdered: Pedida
|
||||||
isConfirmed: Lista para etiquetar
|
isConfirmed: Lista para etiquetar
|
||||||
isReceived: Recibida
|
isReceived: Recibida
|
||||||
|
@ -33,7 +33,7 @@ entry:
|
||||||
invoiceAmount: Importe
|
invoiceAmount: Importe
|
||||||
ordered: Pedida
|
ordered: Pedida
|
||||||
booked: Contabilizada
|
booked: Contabilizada
|
||||||
excludedFromAvailable: Inventario
|
excludedFromAvailable: Excluido
|
||||||
travelReference: Referencia
|
travelReference: Referencia
|
||||||
travelAgency: Agencia
|
travelAgency: Agencia
|
||||||
travelShipped: F. envio
|
travelShipped: F. envio
|
||||||
|
@ -56,7 +56,7 @@ entry:
|
||||||
observation: Observación
|
observation: Observación
|
||||||
commission: Comisión
|
commission: Comisión
|
||||||
booked: Contabilizada
|
booked: Contabilizada
|
||||||
excludedFromAvailable: Inventario
|
excludedFromAvailable: Excluido
|
||||||
initialTemperature: Ini °C
|
initialTemperature: Ini °C
|
||||||
finalTemperature: Fin °C
|
finalTemperature: Fin °C
|
||||||
buys:
|
buys:
|
||||||
|
@ -66,30 +66,12 @@ entry:
|
||||||
printedStickers: Etiquetas impresas
|
printedStickers: Etiquetas impresas
|
||||||
notes:
|
notes:
|
||||||
observationType: Tipo de observación
|
observationType: Tipo de observación
|
||||||
latestBuys:
|
|
||||||
tableVisibleColumns:
|
|
||||||
image: Foto
|
|
||||||
itemFk: Id Artículo
|
|
||||||
weightByPiece: Peso (gramos)/tallo
|
|
||||||
isActive: Activo
|
|
||||||
family: Familia
|
|
||||||
entryFk: Entrada
|
|
||||||
freightValue: Porte
|
|
||||||
comissionValue: Comisión
|
|
||||||
packageValue: Embalaje
|
|
||||||
isIgnored: Ignorado
|
|
||||||
price2: Grouping
|
|
||||||
price3: Packing
|
|
||||||
minPrice: Min
|
|
||||||
ektFk: Ekt
|
|
||||||
packingOut: Embalaje envíos
|
|
||||||
landing: Llegada
|
|
||||||
isExcludedFromAvailable: Es inventario
|
|
||||||
|
|
||||||
search: Buscar entradas
|
search: Buscar entradas
|
||||||
searchInfo: Puedes buscar por referencia de entrada
|
searchInfo: Puedes buscar por referencia de entrada
|
||||||
params:
|
params:
|
||||||
isExcludedFromAvailable: Excluir del inventario
|
entryFk: Entrada
|
||||||
|
observationTypeFk: Tipo de observación
|
||||||
|
isExcludedFromAvailable: Excluir del disponible
|
||||||
isOrdered: Pedida
|
isOrdered: Pedida
|
||||||
isConfirmed: Lista para etiquetar
|
isConfirmed: Lista para etiquetar
|
||||||
isReceived: Recibida
|
isReceived: Recibida
|
||||||
|
@ -131,9 +113,12 @@ entry:
|
||||||
company_name: Nombre empresa
|
company_name: Nombre empresa
|
||||||
itemTypeFk: Familia
|
itemTypeFk: Familia
|
||||||
workerFk: Comprador
|
workerFk: Comprador
|
||||||
|
daysAgo: Días atras
|
||||||
|
toShipped: F. salida(hasta)
|
||||||
|
fromShipped: F. salida(desde)
|
||||||
entryFilter:
|
entryFilter:
|
||||||
params:
|
params:
|
||||||
isExcludedFromAvailable: Inventario
|
isExcludedFromAvailable: Excluido
|
||||||
isOrdered: Pedida
|
isOrdered: Pedida
|
||||||
isConfirmed: Confirmado
|
isConfirmed: Confirmado
|
||||||
isReceived: Recibida
|
isReceived: Recibida
|
||||||
|
@ -149,7 +134,7 @@ entryFilter:
|
||||||
warehouseInFk: Destino
|
warehouseInFk: Destino
|
||||||
entryTypeCode: Tipo de entrada
|
entryTypeCode: Tipo de entrada
|
||||||
hasToShowDeletedEntries: Mostrar entradas eliminadas
|
hasToShowDeletedEntries: Mostrar entradas eliminadas
|
||||||
myEntries:
|
entrySupplier:
|
||||||
id: ID
|
id: ID
|
||||||
landed: F. llegada
|
landed: F. llegada
|
||||||
shipped: F. salida
|
shipped: F. salida
|
||||||
|
@ -164,6 +149,8 @@ myEntries:
|
||||||
downloadCsv: Descargar CSV
|
downloadCsv: Descargar CSV
|
||||||
search: Buscar entradas
|
search: Buscar entradas
|
||||||
searchInfo: Puedes buscar por referencia de la entrada
|
searchInfo: Puedes buscar por referencia de la entrada
|
||||||
|
supplierName: Proveedor
|
||||||
|
itemId: Id artículo
|
||||||
entryStockBought:
|
entryStockBought:
|
||||||
travel: Envío
|
travel: Envío
|
||||||
editTravel: Editar envío
|
editTravel: Editar envío
|
||||||
|
|
|
@ -81,7 +81,7 @@ export default {
|
||||||
keyBinding: 'e',
|
keyBinding: 'e',
|
||||||
menu: [
|
menu: [
|
||||||
'EntryList',
|
'EntryList',
|
||||||
'MyEntries',
|
'EntrySupplier',
|
||||||
'EntryLatestBuys',
|
'EntryLatestBuys',
|
||||||
'EntryStockBought',
|
'EntryStockBought',
|
||||||
'EntryWasteRecalc',
|
'EntryWasteRecalc',
|
||||||
|
@ -125,21 +125,12 @@ export default {
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: 'my',
|
path: 'my',
|
||||||
name: 'MyEntries',
|
name: 'EntrySupplier',
|
||||||
meta: {
|
meta: {
|
||||||
title: 'labeler',
|
title: 'labeler',
|
||||||
icon: 'sell',
|
icon: 'sell',
|
||||||
},
|
},
|
||||||
component: () => import('src/pages/Entry/MyEntries.vue'),
|
component: () => import('src/pages/Entry/EntrySupplier.vue'),
|
||||||
},
|
|
||||||
{
|
|
||||||
path: 'latest-buys',
|
|
||||||
name: 'EntryLatestBuys',
|
|
||||||
meta: {
|
|
||||||
title: 'latestBuys',
|
|
||||||
icon: 'contact_support',
|
|
||||||
},
|
|
||||||
component: () => import('src/pages/Entry/EntryLatestBuys.vue'),
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: 'stock-Bought',
|
path: 'stock-Bought',
|
||||||
|
|
|
@ -0,0 +1,21 @@
|
||||||
|
Cypress.Commands.add('selectTravel', (warehouse = '1') => {
|
||||||
|
cy.get('i[data-cy="Travel_icon"]').click();
|
||||||
|
cy.get('input[data-cy="Warehouse Out_select"]').type(warehouse);
|
||||||
|
cy.get('div[role="listbox"] > div > div[role="option"]').eq(0).click();
|
||||||
|
cy.get('button[data-cy="save-filter-travel-form"]').click();
|
||||||
|
cy.get('tr').eq(1).click();
|
||||||
|
});
|
||||||
|
|
||||||
|
Cypress.Commands.add('deleteEntry', () => {
|
||||||
|
cy.get('[data-cy="descriptor-more-opts"]').should('be.visible').click();
|
||||||
|
cy.waitForElement('div[data-cy="delete-entry"]').click();
|
||||||
|
cy.url().should('include', 'list');
|
||||||
|
});
|
||||||
|
|
||||||
|
Cypress.Commands.add('createEntry', () => {
|
||||||
|
cy.get('button[data-cy="vnTableCreateBtn"]').click();
|
||||||
|
cy.selectTravel('one');
|
||||||
|
cy.get('button[data-cy="FormModelPopup_save"]').click();
|
||||||
|
cy.url().should('include', 'summary');
|
||||||
|
cy.get('.q-notification__message').eq(0).should('have.text', 'Data created');
|
||||||
|
});
|
|
@ -0,0 +1,19 @@
|
||||||
|
import '../commands.js';
|
||||||
|
|
||||||
|
describe('EntryBasicData', () => {
|
||||||
|
beforeEach(() => {
|
||||||
|
cy.viewport(1920, 1080);
|
||||||
|
cy.login('buyer');
|
||||||
|
cy.visit(`/#/entry/list`);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('Change Travel', () => {
|
||||||
|
cy.createEntry();
|
||||||
|
cy.waitForElement('[data-cy="entry-buys"]');
|
||||||
|
cy.get('a[data-cy="EntryBasicData-menu-item"]').click();
|
||||||
|
cy.selectTravel('two');
|
||||||
|
cy.saveCard();
|
||||||
|
cy.get('.q-notification__message').eq(0).should('have.text', 'Data created');
|
||||||
|
cy.deleteEntry();
|
||||||
|
});
|
||||||
|
});
|
|
@ -0,0 +1,96 @@
|
||||||
|
import '../commands.js';
|
||||||
|
describe('EntryBuys', () => {
|
||||||
|
beforeEach(() => {
|
||||||
|
cy.viewport(1920, 1080);
|
||||||
|
cy.login('buyer');
|
||||||
|
cy.visit(`/#/entry/list`);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('Edit buys and use toolbar actions', () => {
|
||||||
|
const COLORS = {
|
||||||
|
negative: 'rgb(251, 82, 82)',
|
||||||
|
positive: 'rgb(200, 228, 132)',
|
||||||
|
enabled: 'rgb(255, 255, 255)',
|
||||||
|
disable: 'rgb(168, 168, 168)',
|
||||||
|
};
|
||||||
|
|
||||||
|
const selectCell = (field, row = 0) =>
|
||||||
|
cy.get(`td[data-col-field="${field}"][data-row-index="${row}"]`);
|
||||||
|
const selectSpan = (field, row = 0) => selectCell(field, row).find('div > span');
|
||||||
|
const selectButton = (cySelector) => cy.get(`button[data-cy="${cySelector}"]`);
|
||||||
|
const clickAndType = (field, value, row = 0) => {
|
||||||
|
selectCell(field, row).click().type(`${value}{esc}`);
|
||||||
|
};
|
||||||
|
const checkText = (field, expectedText, row = 0) =>
|
||||||
|
selectCell(field, row).should('have.text', expectedText);
|
||||||
|
const checkColor = (field, expectedColor, row = 0) =>
|
||||||
|
selectSpan(field, row).should('have.css', 'color', expectedColor);
|
||||||
|
|
||||||
|
cy.createEntry();
|
||||||
|
createBuy();
|
||||||
|
|
||||||
|
selectCell('isIgnored').click().click().type('{esc}');
|
||||||
|
checkText('isIgnored', 'close');
|
||||||
|
|
||||||
|
clickAndType('stickers', '1');
|
||||||
|
checkText('stickers', '0/01');
|
||||||
|
checkText('quantity', '1');
|
||||||
|
checkText('amount', '50.00');
|
||||||
|
clickAndType('packing', '2');
|
||||||
|
checkText('packing', '12');
|
||||||
|
checkText('weight', '12.0');
|
||||||
|
checkText('quantity', '12');
|
||||||
|
checkText('amount', '600.00');
|
||||||
|
checkColor('packing', COLORS.enabled);
|
||||||
|
|
||||||
|
selectCell('groupingMode').click().click().click();
|
||||||
|
checkColor('packing', COLORS.disable);
|
||||||
|
checkColor('grouping', COLORS.enabled);
|
||||||
|
|
||||||
|
selectCell('buyingValue').click().clear().type('{backspace}{backspace}1');
|
||||||
|
checkText('amount', '12.00');
|
||||||
|
checkColor('minPrice', COLORS.disable);
|
||||||
|
|
||||||
|
selectCell('hasMinPrice').click().click();
|
||||||
|
checkColor('minPrice', COLORS.enabled);
|
||||||
|
selectCell('hasMinPrice').click();
|
||||||
|
|
||||||
|
cy.saveCard();
|
||||||
|
cy.get('span[data-cy="footer-stickers"]').should('have.text', '1');
|
||||||
|
cy.get('.q-notification__message').contains('Data saved');
|
||||||
|
|
||||||
|
selectButton('change-quantity-sign').should('be.disabled');
|
||||||
|
selectButton('check-buy-amount').should('be.disabled');
|
||||||
|
cy.get('tr.cursor-pointer > .q-table--col-auto-width > .q-checkbox').click();
|
||||||
|
selectButton('change-quantity-sign').should('be.enabled');
|
||||||
|
selectButton('check-buy-amount').should('be.enabled');
|
||||||
|
|
||||||
|
selectButton('change-quantity-sign').click();
|
||||||
|
selectButton('set-negative-quantity').click();
|
||||||
|
checkText('quantity', '-12');
|
||||||
|
selectButton('set-positive-quantity').click();
|
||||||
|
checkText('quantity', '12');
|
||||||
|
checkColor('amount', COLORS.disable);
|
||||||
|
|
||||||
|
selectButton('check-buy-amount').click();
|
||||||
|
selectButton('uncheck-amount').click();
|
||||||
|
checkColor('amount', COLORS.disable);
|
||||||
|
|
||||||
|
selectButton('check-amount').click();
|
||||||
|
checkColor('amount', COLORS.positive);
|
||||||
|
cy.saveCard();
|
||||||
|
|
||||||
|
cy.deleteEntry();
|
||||||
|
});
|
||||||
|
|
||||||
|
function createBuy() {
|
||||||
|
cy.waitForElement('[data-cy="entry-buys"]');
|
||||||
|
cy.get('a[data-cy="EntryBuys-menu-item"]').click();
|
||||||
|
cy.get('button[data-cy="vnTableCreateBtn"]').click();
|
||||||
|
|
||||||
|
cy.get('input[data-cy="itemFk-create-popup"]').type('1');
|
||||||
|
cy.get('div[role="listbox"] > div > div[role="option"]').eq(0).click();
|
||||||
|
cy.get('input[data-cy="Grouping mode_select"]').should('have.value', 'packing');
|
||||||
|
cy.get('button[data-cy="FormModelPopup_save"]').click();
|
||||||
|
}
|
||||||
|
});
|
|
@ -0,0 +1,44 @@
|
||||||
|
import '../commands.js';
|
||||||
|
describe('EntryDescriptor', () => {
|
||||||
|
beforeEach(() => {
|
||||||
|
cy.viewport(1920, 1080);
|
||||||
|
cy.login('buyer');
|
||||||
|
cy.visit(`/#/entry/list`);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('Clone entry and recalculate rates', () => {
|
||||||
|
cy.createEntry();
|
||||||
|
|
||||||
|
cy.waitForElement('[data-cy="entry-buys"]');
|
||||||
|
|
||||||
|
cy.url().then((previousUrl) => {
|
||||||
|
cy.get('[data-cy="descriptor-more-opts"]').click();
|
||||||
|
cy.get('div[data-cy="clone-entry"]').should('be.visible').click();
|
||||||
|
|
||||||
|
cy.get('.q-notification__message').eq(1).should('have.text', 'Entry cloned');
|
||||||
|
|
||||||
|
cy.url()
|
||||||
|
.should('not.eq', previousUrl)
|
||||||
|
.then(() => {
|
||||||
|
cy.waitForElement('[data-cy="entry-buys"]');
|
||||||
|
|
||||||
|
cy.get('[data-cy="descriptor-more-opts"]').click();
|
||||||
|
cy.get('div[data-cy="recalculate-rates"]').click();
|
||||||
|
|
||||||
|
cy.get('.q-notification__message')
|
||||||
|
.eq(2)
|
||||||
|
.should('have.text', 'Entry prices recalculated');
|
||||||
|
|
||||||
|
cy.get('[data-cy="descriptor-more-opts"]').click();
|
||||||
|
cy.deleteEntry();
|
||||||
|
|
||||||
|
cy.log(previousUrl);
|
||||||
|
|
||||||
|
cy.visit(previousUrl);
|
||||||
|
|
||||||
|
cy.waitForElement('[data-cy="entry-buys"]');
|
||||||
|
cy.deleteEntry();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
|
@ -0,0 +1,22 @@
|
||||||
|
import '../commands.js';
|
||||||
|
describe('EntryDms', () => {
|
||||||
|
beforeEach(() => {
|
||||||
|
cy.viewport(1920, 1080);
|
||||||
|
cy.login('buyer');
|
||||||
|
cy.visit(`/#/entry/list`);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should create edit and remove new dms', () => {
|
||||||
|
cy.createEntry();
|
||||||
|
cy.waitForElement('[data-cy="entry-buys"]');
|
||||||
|
cy.dataCy('EntryDms-menu-item').click();
|
||||||
|
cy.dataCy('addButton').click();
|
||||||
|
cy.dataCy('attachFile').click();
|
||||||
|
cy.get('.q-file').selectFile('test/cypress/fixtures/image.jpg', {
|
||||||
|
force: true,
|
||||||
|
});
|
||||||
|
cy.dataCy('FormModelPopup_save').click();
|
||||||
|
cy.get('.q-notification__message').eq(0).should('have.text', 'Data created');
|
||||||
|
cy.deleteEntry();
|
||||||
|
});
|
||||||
|
});
|
|
@ -0,0 +1,44 @@
|
||||||
|
import '../commands.js';
|
||||||
|
describe('EntryLock', () => {
|
||||||
|
beforeEach(() => {
|
||||||
|
cy.viewport(1920, 1080);
|
||||||
|
cy.login('buyer');
|
||||||
|
cy.visit(`/#/entry/list`);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('Should notify when entry is lock by another user', () => {
|
||||||
|
const checkLockMessage = () => {
|
||||||
|
cy.get('[role="dialog"]').should('be.visible');
|
||||||
|
cy.get('[data-cy="VnConfirm_message"] > span').should(
|
||||||
|
'contain.text',
|
||||||
|
'This entry has been locked by buyerNick',
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
cy.createEntry();
|
||||||
|
goToEntryBuys();
|
||||||
|
cy.get('.q-notification__message')
|
||||||
|
.eq(1)
|
||||||
|
.should('have.text', 'The entry has been locked successfully');
|
||||||
|
|
||||||
|
cy.login('logistic');
|
||||||
|
cy.reload();
|
||||||
|
checkLockMessage();
|
||||||
|
cy.get('[data-cy="VnConfirm_cancel"]').click();
|
||||||
|
cy.url().should('include', 'summary');
|
||||||
|
|
||||||
|
goToEntryBuys();
|
||||||
|
checkLockMessage();
|
||||||
|
cy.get('[data-cy="VnConfirm_confirm"]').click();
|
||||||
|
cy.url().should('include', 'buys');
|
||||||
|
|
||||||
|
cy.deleteEntry();
|
||||||
|
|
||||||
|
function goToEntryBuys() {
|
||||||
|
const entryBuySelector = 'a[data-cy="EntryBuys-menu-item"]';
|
||||||
|
cy.get(entryBuySelector).should('be.visible');
|
||||||
|
cy.waitForElement('[data-cy="entry-buys"]');
|
||||||
|
cy.get(entryBuySelector).click();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
|
@ -0,0 +1,20 @@
|
||||||
|
import '../commands.js';
|
||||||
|
|
||||||
|
describe('EntryNotes', () => {
|
||||||
|
beforeEach(() => {
|
||||||
|
cy.viewport(1920, 1080);
|
||||||
|
cy.login('buyer');
|
||||||
|
cy.visit(`/#/entry/list`);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('Create delete and edit', () => {
|
||||||
|
cy.createEntry();
|
||||||
|
cy.waitForElement('[data-cy="entry-buys"]');
|
||||||
|
cy.dataCy('EntryNotes-menu-item').click();
|
||||||
|
cy.dataCy('vnTableCreateBtn').click();
|
||||||
|
cy.dataCy('Observation type_select').eq(1).should('be.visible').type('Packager');
|
||||||
|
cy.dataCy('Description_input').should('be.visible').type('test');
|
||||||
|
cy.dataCy('FormModelPopup_save').should('be.enabled').click();
|
||||||
|
cy.deleteEntry();
|
||||||
|
});
|
||||||
|
});
|
|
@ -1,44 +0,0 @@
|
||||||
describe('EntryDms', () => {
|
|
||||||
const entryId = 1;
|
|
||||||
|
|
||||||
beforeEach(() => {
|
|
||||||
cy.viewport(1920, 1080);
|
|
||||||
cy.login('developer');
|
|
||||||
cy.visit(`/#/entry/${entryId}/dms`);
|
|
||||||
});
|
|
||||||
|
|
||||||
it('should create edit and remove new dms', () => {
|
|
||||||
cy.addRow();
|
|
||||||
cy.get('.icon-attach').click();
|
|
||||||
cy.get('.q-file').selectFile('test/cypress/fixtures/image.jpg', {
|
|
||||||
force: true,
|
|
||||||
});
|
|
||||||
|
|
||||||
cy.get('tbody > tr').then((value) => {
|
|
||||||
const u = undefined;
|
|
||||||
|
|
||||||
//Create and check if exist new row
|
|
||||||
let newFileTd = Cypress.$(value).length;
|
|
||||||
cy.get('.q-btn--standard > .q-btn__content > .block').click();
|
|
||||||
expect(value).to.have.length(newFileTd++);
|
|
||||||
const newRowSelector = `tbody > :nth-child(${newFileTd})`;
|
|
||||||
cy.waitForElement(newRowSelector);
|
|
||||||
cy.validateRow(newRowSelector, [u, u, u, u, u, 'ENTRADA ID 1']);
|
|
||||||
|
|
||||||
//Edit new dms
|
|
||||||
const newDescription = 'entry id 1 modified';
|
|
||||||
const textAreaSelector =
|
|
||||||
'.q-textarea > .q-field__inner > .q-field__control > .q-field__control-container';
|
|
||||||
cy.get(
|
|
||||||
`tbody :nth-child(${newFileTd}) > .text-right > .no-wrap > :nth-child(2) > .q-btn > .q-btn__content > .q-icon`
|
|
||||||
).click();
|
|
||||||
|
|
||||||
cy.get(textAreaSelector).clear();
|
|
||||||
cy.get(textAreaSelector).type(newDescription);
|
|
||||||
cy.saveCard();
|
|
||||||
cy.reload();
|
|
||||||
|
|
||||||
cy.validateRow(newRowSelector, [u, u, u, u, u, newDescription]);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
});
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
import './commands';
|
||||||
|
|
||||||
describe('Entry', () => {
|
describe('Entry', () => {
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
cy.viewport(1920, 1080);
|
cy.viewport(1920, 1080);
|
||||||
|
@ -5,11 +7,11 @@ describe('Entry', () => {
|
||||||
cy.visit(`/#/entry/list`);
|
cy.visit(`/#/entry/list`);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('Filter deleted entries and other fields', () => {
|
it('Filter deleted entries and view popup summary', () => {
|
||||||
createEntry();
|
cy.createEntry();
|
||||||
cy.get('.q-notification__message').eq(0).should('have.text', 'Data created');
|
cy.get('.q-notification__message').eq(0).should('have.text', 'Data created');
|
||||||
cy.waitForElement('[data-cy="entry-buys"]');
|
cy.waitForElement('[data-cy="entry-buys"]');
|
||||||
deleteEntry();
|
cy.deleteEntry();
|
||||||
cy.typeSearchbar('{enter}');
|
cy.typeSearchbar('{enter}');
|
||||||
cy.get('span[title="Date"]').click().click();
|
cy.get('span[title="Date"]').click().click();
|
||||||
cy.typeSearchbar('{enter}');
|
cy.typeSearchbar('{enter}');
|
||||||
|
@ -18,206 +20,55 @@ describe('Entry', () => {
|
||||||
'have.text',
|
'have.text',
|
||||||
'-',
|
'-',
|
||||||
);
|
);
|
||||||
|
|
||||||
|
cy.get('button[title="Summary"]').eq(1).should('be.visible').click();
|
||||||
|
cy.dataCy('entry-summary').should('be.visible');
|
||||||
});
|
});
|
||||||
|
|
||||||
it.skip('Create entry, modify travel and add buys', () => {
|
it('Show supplierDescriptor on click on supplierDescriptor', () => {
|
||||||
createEntryAndBuy();
|
cy.typeSearchbar('{enter}');
|
||||||
cy.get('a[data-cy="EntryBasicData-menu-item"]').click();
|
cy.get('td[data-col-field="supplierFk"] > div > span').eq(0).click();
|
||||||
selectTravel('two');
|
cy.get('div[role="menu"] > div[class="descriptor"]').should('be.visible');
|
||||||
cy.saveCard();
|
|
||||||
cy.get('.q-notification__message').eq(0).should('have.text', 'Data created');
|
|
||||||
deleteEntry();
|
|
||||||
});
|
});
|
||||||
|
|
||||||
it('Clone entry and recalculate rates', () => {
|
it('Landed badge should display the right color', () => {
|
||||||
createEntry();
|
cy.typeSearchbar('{enter}');
|
||||||
|
|
||||||
cy.waitForElement('[data-cy="entry-buys"]');
|
const checkBadgeDate = (selector, comparisonFn) => {
|
||||||
|
cy.get(selector)
|
||||||
cy.url().then((previousUrl) => {
|
.should('exist')
|
||||||
cy.get('[data-cy="descriptor-more-opts"]').click();
|
.each(($badge) => {
|
||||||
cy.get('div[data-cy="clone-entry"]').should('be.visible').click();
|
const badgeText = $badge.text().trim();
|
||||||
|
const badgeDate = new Date(badgeText);
|
||||||
cy.get('.q-notification__message').eq(1).should('have.text', 'Entry cloned');
|
const compareDate = new Date('01/01/2001');
|
||||||
|
comparisonFn(badgeDate, compareDate);
|
||||||
cy.url()
|
|
||||||
.should('not.eq', previousUrl)
|
|
||||||
.then(() => {
|
|
||||||
cy.waitForElement('[data-cy="entry-buys"]');
|
|
||||||
|
|
||||||
cy.get('[data-cy="descriptor-more-opts"]').click();
|
|
||||||
cy.get('div[data-cy="recalculate-rates"]').click();
|
|
||||||
|
|
||||||
cy.get('.q-notification__message')
|
|
||||||
.eq(2)
|
|
||||||
.should('have.text', 'Entry prices recalculated');
|
|
||||||
|
|
||||||
cy.get('[data-cy="descriptor-more-opts"]').click();
|
|
||||||
deleteEntry();
|
|
||||||
|
|
||||||
cy.log(previousUrl);
|
|
||||||
|
|
||||||
cy.visit(previousUrl);
|
|
||||||
|
|
||||||
cy.waitForElement('[data-cy="entry-buys"]');
|
|
||||||
deleteEntry();
|
|
||||||
});
|
});
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
it('Should notify when entry is lock by another user', () => {
|
|
||||||
const checkLockMessage = () => {
|
|
||||||
cy.get('[role="dialog"]').should('be.visible');
|
|
||||||
cy.get('[data-cy="VnConfirm_message"] > span').should(
|
|
||||||
'contain.text',
|
|
||||||
'This entry has been locked by buyerNick',
|
|
||||||
);
|
|
||||||
};
|
};
|
||||||
|
|
||||||
createEntry();
|
checkBadgeDate(
|
||||||
goToEntryBuys();
|
'td[data-col-field="landed"] > div .bg-warning',
|
||||||
cy.get('.q-notification__message')
|
(badgeDate, compareDate) => {
|
||||||
.eq(1)
|
expect(badgeDate.getTime()).to.be.greaterThan(compareDate.getTime());
|
||||||
.should('have.text', 'The entry has been locked successfully');
|
},
|
||||||
|
|
||||||
cy.login('logistic');
|
|
||||||
cy.reload();
|
|
||||||
checkLockMessage();
|
|
||||||
cy.get('[data-cy="VnConfirm_cancel"]').click();
|
|
||||||
cy.url().should('include', 'summary');
|
|
||||||
|
|
||||||
goToEntryBuys();
|
|
||||||
checkLockMessage();
|
|
||||||
cy.get('[data-cy="VnConfirm_confirm"]').click();
|
|
||||||
cy.url().should('include', 'buys');
|
|
||||||
|
|
||||||
deleteEntry();
|
|
||||||
});
|
|
||||||
|
|
||||||
it('Edit buys and use toolbar actions', () => {
|
|
||||||
const COLORS = {
|
|
||||||
negative: 'rgb(251, 82, 82)',
|
|
||||||
positive: 'rgb(200, 228, 132)',
|
|
||||||
enabled: 'rgb(255, 255, 255)',
|
|
||||||
disable: 'rgb(168, 168, 168)',
|
|
||||||
};
|
|
||||||
|
|
||||||
const selectCell = (field, row = 0) =>
|
|
||||||
cy.get(`td[data-col-field="${field}"][data-row-index="${row}"]`);
|
|
||||||
const selectSpan = (field, row = 0) => selectCell(field, row).find('div > span');
|
|
||||||
const selectButton = (cySelector) => cy.get(`button[data-cy="${cySelector}"]`);
|
|
||||||
const clickAndType = (field, value, row = 0) => {
|
|
||||||
selectCell(field, row).click().type(`${value}{esc}`);
|
|
||||||
};
|
|
||||||
const checkText = (field, expectedText, row = 0) =>
|
|
||||||
selectCell(field, row).should('have.text', expectedText);
|
|
||||||
const checkColor = (field, expectedColor, row = 0) =>
|
|
||||||
selectSpan(field, row).should('have.css', 'color', expectedColor);
|
|
||||||
|
|
||||||
createEntryAndBuy();
|
|
||||||
|
|
||||||
selectCell('isIgnored').click().click().type('{esc}');
|
|
||||||
checkText('isIgnored', 'close');
|
|
||||||
|
|
||||||
clickAndType('stickers', '1');
|
|
||||||
checkText('stickers', '0/01');
|
|
||||||
checkText('quantity', '1');
|
|
||||||
checkText('amount', '50.00');
|
|
||||||
clickAndType('packing', '2');
|
|
||||||
checkText('packing', '12');
|
|
||||||
checkText('weight', '12.0');
|
|
||||||
checkText('quantity', '12');
|
|
||||||
checkText('amount', '600.00');
|
|
||||||
checkColor('packing', COLORS.enabled);
|
|
||||||
|
|
||||||
selectCell('groupingMode').click().click().click();
|
|
||||||
checkColor('packing', COLORS.disable);
|
|
||||||
checkColor('grouping', COLORS.enabled);
|
|
||||||
|
|
||||||
selectCell('buyingValue').click().clear().type('{backspace}{backspace}1');
|
|
||||||
checkText('amount', '12.00');
|
|
||||||
checkColor('minPrice', COLORS.disable);
|
|
||||||
|
|
||||||
selectCell('hasMinPrice').click().click();
|
|
||||||
checkColor('minPrice', COLORS.enabled);
|
|
||||||
selectCell('hasMinPrice').click();
|
|
||||||
|
|
||||||
cy.saveCard();
|
|
||||||
cy.get('span[data-cy="footer-stickers"]').should('have.text', '1');
|
|
||||||
cy.get('.q-notification__message').contains('Data saved');
|
|
||||||
|
|
||||||
selectButton('change-quantity-sign').should('be.disabled');
|
|
||||||
selectButton('check-buy-amount').should('be.disabled');
|
|
||||||
cy.get('tr.cursor-pointer > .q-table--col-auto-width > .q-checkbox').click();
|
|
||||||
selectButton('change-quantity-sign').should('be.enabled');
|
|
||||||
selectButton('check-buy-amount').should('be.enabled');
|
|
||||||
|
|
||||||
selectButton('change-quantity-sign').click();
|
|
||||||
selectButton('set-negative-quantity').click();
|
|
||||||
checkText('quantity', '-12');
|
|
||||||
selectButton('set-positive-quantity').click();
|
|
||||||
checkText('quantity', '12');
|
|
||||||
checkColor('amount', COLORS.disable);
|
|
||||||
|
|
||||||
selectButton('check-buy-amount').click();
|
|
||||||
selectButton('uncheck-amount').click();
|
|
||||||
checkColor('amount', COLORS.disable);
|
|
||||||
|
|
||||||
selectButton('check-amount').click();
|
|
||||||
checkColor('amount', COLORS.positive);
|
|
||||||
cy.saveCard();
|
|
||||||
|
|
||||||
cy.get('span[data-cy="footer-amount"]').should(
|
|
||||||
'have.css',
|
|
||||||
'color',
|
|
||||||
COLORS.positive,
|
|
||||||
);
|
);
|
||||||
|
|
||||||
deleteEntry();
|
checkBadgeDate(
|
||||||
});
|
'td[data-col-field="landed"] > div .bg-info',
|
||||||
|
(badgeDate, compareDate) => {
|
||||||
|
expect(badgeDate.getTime()).to.be.lessThan(compareDate.getTime());
|
||||||
|
},
|
||||||
|
);
|
||||||
|
|
||||||
function goToEntryBuys() {
|
cy.dataCy('Date_inputDate').type('01/01/2001');
|
||||||
const entryBuySelector = 'a[data-cy="EntryBuys-menu-item"]';
|
cy.get('td[data-col-field="isConfirmed"]')
|
||||||
cy.get(entryBuySelector).should('be.visible');
|
.should('exist')
|
||||||
cy.waitForElement('[data-cy="entry-buys"]');
|
.each(($isConfirmed) => {
|
||||||
cy.get(entryBuySelector).click();
|
const badgeTextValue = $isConfirmed.text().trim();
|
||||||
}
|
if (badgeTextValue === 'close') {
|
||||||
|
cy.get(
|
||||||
function deleteEntry() {
|
`td[data-col-field="landed"][data-row-index="${$isConfirmed.attr('data-row-index')}"] > div .bg-negative`,
|
||||||
cy.get('[data-cy="descriptor-more-opts"]').should('be.visible').click();
|
).should('exist');
|
||||||
cy.waitForElement('div[data-cy="delete-entry"]').click();
|
|
||||||
cy.url().should('include', 'list');
|
|
||||||
}
|
|
||||||
|
|
||||||
function createEntryAndBuy() {
|
|
||||||
createEntry();
|
|
||||||
createBuy();
|
|
||||||
}
|
|
||||||
|
|
||||||
function createEntry() {
|
|
||||||
cy.get('button[data-cy="vnTableCreateBtn"]').click();
|
|
||||||
selectTravel('one');
|
|
||||||
cy.get('button[data-cy="FormModelPopup_save"]').click();
|
|
||||||
cy.url().should('include', 'summary');
|
|
||||||
cy.get('.q-notification__message').eq(0).should('have.text', 'Data created');
|
|
||||||
}
|
|
||||||
|
|
||||||
function selectTravel(warehouse) {
|
|
||||||
cy.get('i[data-cy="Travel_icon"]').click();
|
|
||||||
cy.get('input[data-cy="Warehouse Out_select"]').type(warehouse);
|
|
||||||
cy.get('div[role="listbox"] > div > div[role="option"]').eq(0).click();
|
|
||||||
cy.get('button[data-cy="save-filter-travel-form"]').click();
|
|
||||||
cy.get('tr').eq(1).click();
|
|
||||||
}
|
|
||||||
|
|
||||||
function createBuy() {
|
|
||||||
cy.get('a[data-cy="EntryBuys-menu-item"]').click();
|
|
||||||
cy.get('a[data-cy="EntryBuys-menu-item"]').click();
|
|
||||||
cy.get('button[data-cy="vnTableCreateBtn"]').click();
|
|
||||||
|
|
||||||
cy.get('input[data-cy="itemFk-create-popup"]').type('1');
|
|
||||||
cy.get('div[role="listbox"] > div > div[role="option"]').eq(0).click();
|
|
||||||
cy.get('input[data-cy="Grouping mode_select"]').should('have.value', 'packing');
|
|
||||||
cy.get('button[data-cy="FormModelPopup_save"]').click();
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
|
@ -11,6 +11,7 @@ describe('EntryStockBought', () => {
|
||||||
cy.get('button[title="Save"]').click();
|
cy.get('button[title="Save"]').click();
|
||||||
cy.checkNotification('Data saved');
|
cy.checkNotification('Data saved');
|
||||||
});
|
});
|
||||||
|
|
||||||
it('Should add a new reserved space for buyerBoss', () => {
|
it('Should add a new reserved space for buyerBoss', () => {
|
||||||
cy.addBtnClick();
|
cy.addBtnClick();
|
||||||
cy.get('input[aria-label="Reserve"]').type('1');
|
cy.get('input[aria-label="Reserve"]').type('1');
|
||||||
|
@ -36,6 +37,7 @@ describe('EntryStockBought', () => {
|
||||||
cy.get('[data-cy="crudModelDefaultSaveBtn"]').should('be.enabled').click();
|
cy.get('[data-cy="crudModelDefaultSaveBtn"]').should('be.enabled').click();
|
||||||
cy.get('.q-notification__message').eq(1).should('have.text', 'Data saved');
|
cy.get('.q-notification__message').eq(1).should('have.text', 'Data saved');
|
||||||
});
|
});
|
||||||
|
|
||||||
it('Should check detail for the buyer', () => {
|
it('Should check detail for the buyer', () => {
|
||||||
cy.get('[data-cy="searchBtn"]').eq(0).click();
|
cy.get('[data-cy="searchBtn"]').eq(0).click();
|
||||||
cy.get('tBody > tr').eq(1).its('length').should('eq', 1);
|
cy.get('tBody > tr').eq(1).its('length').should('eq', 1);
|
|
@ -1,4 +1,4 @@
|
||||||
describe('EntryMy when is supplier', () => {
|
describe('EntrySupplier when is supplier', () => {
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
cy.viewport(1920, 1080);
|
cy.viewport(1920, 1080);
|
||||||
cy.login('supplier');
|
cy.login('supplier');
|
||||||
|
@ -13,5 +13,7 @@ describe('EntryMy when is supplier', () => {
|
||||||
cy.dataCy('cardBtn').eq(2).click();
|
cy.dataCy('cardBtn').eq(2).click();
|
||||||
cy.dataCy('printLabelsBtn').click();
|
cy.dataCy('printLabelsBtn').click();
|
||||||
cy.window().its('open').should('be.called');
|
cy.window().its('open').should('be.called');
|
||||||
|
cy.dataCy('seeLabelBtn').eq(0).should('be.visible').click();
|
||||||
|
cy.window().its('open').should('be.called');
|
||||||
});
|
});
|
||||||
});
|
});
|
|
@ -0,0 +1,22 @@
|
||||||
|
import './commands';
|
||||||
|
describe('EntryDms', () => {
|
||||||
|
beforeEach(() => {
|
||||||
|
cy.viewport(1920, 1080);
|
||||||
|
cy.login('buyerBoss');
|
||||||
|
cy.visit(`/#/entry/waste-recalc`);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should recalc waste for today', () => {
|
||||||
|
cy.waitForElement('[data-cy="wasteRecalc"]');
|
||||||
|
cy.dataCy('recalc').should('be.disabled');
|
||||||
|
|
||||||
|
cy.dataCy('dateFrom').should('be.visible').click().type('01-01-2001');
|
||||||
|
cy.dataCy('dateTo').should('be.visible').click().type('01-01-2001');
|
||||||
|
|
||||||
|
cy.dataCy('recalc').should('be.enabled').click();
|
||||||
|
cy.get('.q-notification__message').should(
|
||||||
|
'have.text',
|
||||||
|
'The wastes were successfully recalculated',
|
||||||
|
);
|
||||||
|
});
|
||||||
|
});
|
|
@ -1,33 +1,3 @@
|
||||||
// ***********************************************
|
|
||||||
// This example commands.js shows you how to
|
|
||||||
// create various custom commands and overwrite
|
|
||||||
// existing commands.
|
|
||||||
//
|
|
||||||
// For more comprehensive examples of custom
|
|
||||||
// commands please read more here:
|
|
||||||
// https://on.cypress.io/custom-commands
|
|
||||||
// ***********************************************
|
|
||||||
//
|
|
||||||
//
|
|
||||||
// -- This is a parent command --
|
|
||||||
// Cypress.Commands.add("login", (email, password) => { ... })
|
|
||||||
//
|
|
||||||
//
|
|
||||||
// -- This is a child command --
|
|
||||||
// Cypress.Commands.add("drag", { prevSubject: 'element'}, (subject, options) => { ... })
|
|
||||||
//
|
|
||||||
//
|
|
||||||
// -- This is a dual command --
|
|
||||||
// Cypress.Commands.add("dismiss", { prevSubject: 'optional'}, (subject, options) => { ... })
|
|
||||||
//
|
|
||||||
//
|
|
||||||
// -- This is will overwrite an existing command --
|
|
||||||
// Cypress.Commands.overwrite("visit", (originalFn, url, options) => { ... })
|
|
||||||
|
|
||||||
// DO NOT REMOVE
|
|
||||||
// Imports Quasar Cypress AE predefined commands
|
|
||||||
// import { registerCommands } from '@quasar/quasar-app-extension-testing-e2e-cypress';
|
|
||||||
|
|
||||||
import waitUntil from './waitUntil';
|
import waitUntil from './waitUntil';
|
||||||
Cypress.Commands.add('waitUntil', { prevSubject: 'optional' }, waitUntil);
|
Cypress.Commands.add('waitUntil', { prevSubject: 'optional' }, waitUntil);
|
||||||
|
|
||||||
|
@ -36,7 +6,6 @@ Cypress.Commands.add('resetDB', () => {
|
||||||
});
|
});
|
||||||
|
|
||||||
Cypress.Commands.add('login', (user = 'developer') => {
|
Cypress.Commands.add('login', (user = 'developer') => {
|
||||||
//cy.visit('/#/login');
|
|
||||||
cy.request({
|
cy.request({
|
||||||
method: 'POST',
|
method: 'POST',
|
||||||
url: '/api/accounts/login',
|
url: '/api/accounts/login',
|
||||||
|
@ -79,7 +48,7 @@ Cypress.Commands.add('getValue', (selector) => {
|
||||||
if ($el.find('.q-checkbox__inner').length > 0) {
|
if ($el.find('.q-checkbox__inner').length > 0) {
|
||||||
return cy.get(selector + '.q-checkbox__inner');
|
return cy.get(selector + '.q-checkbox__inner');
|
||||||
}
|
}
|
||||||
// Si es un QSelect
|
|
||||||
if ($el.find('.q-select__dropdown-icon').length) {
|
if ($el.find('.q-select__dropdown-icon').length) {
|
||||||
return cy
|
return cy
|
||||||
.get(
|
.get(
|
||||||
|
@ -88,18 +57,17 @@ Cypress.Commands.add('getValue', (selector) => {
|
||||||
)
|
)
|
||||||
.invoke('val');
|
.invoke('val');
|
||||||
}
|
}
|
||||||
// Si es un QSelect
|
|
||||||
if ($el.find('span').length) {
|
if ($el.find('span').length) {
|
||||||
return cy.get(selector + ' span').then(($span) => {
|
return cy.get(selector + ' span').then(($span) => {
|
||||||
return $span[0].innerText;
|
return $span[0].innerText;
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
// Puedes añadir un log o lanzar un error si el elemento no es reconocido
|
|
||||||
cy.log('Elemento no soportado');
|
cy.log('no supported element');
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
// Fill Inputs
|
|
||||||
Cypress.Commands.add('selectOption', (selector, option, timeout = 2500) => {
|
Cypress.Commands.add('selectOption', (selector, option, timeout = 2500) => {
|
||||||
cy.waitForElement(selector, timeout);
|
cy.waitForElement(selector, timeout);
|
||||||
|
|
||||||
|
@ -129,7 +97,6 @@ function selectItem(selector, option, ariaControl, hasWrite = true) {
|
||||||
}
|
}
|
||||||
|
|
||||||
function getItems(ariaControl, startTime = Cypress._.now(), timeout = 2500) {
|
function getItems(ariaControl, startTime = Cypress._.now(), timeout = 2500) {
|
||||||
// Se intenta obtener la lista de opciones del desplegable de manera recursiva
|
|
||||||
return cy
|
return cy
|
||||||
.get('#' + ariaControl, { timeout })
|
.get('#' + ariaControl, { timeout })
|
||||||
.should('exist')
|
.should('exist')
|
||||||
|
@ -190,7 +157,6 @@ Cypress.Commands.add('checkOption', (selector) => {
|
||||||
cy.get(selector).find('.q-checkbox__inner').click();
|
cy.get(selector).find('.q-checkbox__inner').click();
|
||||||
});
|
});
|
||||||
|
|
||||||
// Global buttons
|
|
||||||
Cypress.Commands.add('saveCard', () => {
|
Cypress.Commands.add('saveCard', () => {
|
||||||
const dropdownArrow = '.q-btn-dropdown__arrow-container > .q-btn__content > .q-icon';
|
const dropdownArrow = '.q-btn-dropdown__arrow-container > .q-btn__content > .q-icon';
|
||||||
cy.get('#st-actions').then(($el) => {
|
cy.get('#st-actions').then(($el) => {
|
||||||
|
@ -228,7 +194,6 @@ Cypress.Commands.add('selectRows', (rows) => {
|
||||||
});
|
});
|
||||||
|
|
||||||
Cypress.Commands.add('fillRow', (rowSelector, data) => {
|
Cypress.Commands.add('fillRow', (rowSelector, data) => {
|
||||||
// Usar el selector proporcionado para obtener la fila deseada
|
|
||||||
cy.waitForElement('tbody');
|
cy.waitForElement('tbody');
|
||||||
cy.get(rowSelector).as('currentRow');
|
cy.get(rowSelector).as('currentRow');
|
||||||
|
|
||||||
|
@ -283,7 +248,6 @@ Cypress.Commands.add('removeRow', (rowIndex) => {
|
||||||
rowsBefore = length;
|
rowsBefore = length;
|
||||||
})
|
})
|
||||||
.then(() => {
|
.then(() => {
|
||||||
// Check the existence of tbody before performing the second assertion.
|
|
||||||
cy.get('tbody').then(($tbody) => {
|
cy.get('tbody').then(($tbody) => {
|
||||||
if ($tbody.length > 0)
|
if ($tbody.length > 0)
|
||||||
cy.get('tbody > tr').should('have.length', rowsBefore - 1);
|
cy.get('tbody > tr').should('have.length', rowsBefore - 1);
|
||||||
|
|
|
@ -1,18 +1,3 @@
|
||||||
// ***********************************************************
|
|
||||||
// This example support/index.js is processed and
|
|
||||||
// loaded automatically before your e2e test files.
|
|
||||||
//
|
|
||||||
// This is a great place to put global configuration and
|
|
||||||
// behavior that modifies Cypress.
|
|
||||||
//
|
|
||||||
// You can change the location of this file or turn off
|
|
||||||
// automatically serving support files with the
|
|
||||||
// 'supportFile' configuration option.
|
|
||||||
//
|
|
||||||
// You can read more here:
|
|
||||||
// https://on.cypress.io/configuration
|
|
||||||
// ***********************************************************
|
|
||||||
|
|
||||||
import './commands';
|
import './commands';
|
||||||
|
|
||||||
function randomString(options = { length: 10 }) {
|
function randomString(options = { length: 10 }) {
|
||||||
|
|
|
@ -1,27 +1,8 @@
|
||||||
// ***********************************************************
|
|
||||||
// This example support/unit.js is processed and
|
|
||||||
// loaded automatically before your unit test files.
|
|
||||||
//
|
|
||||||
// This is a great place to put global configuration and
|
|
||||||
// behavior that modifies Cypress.
|
|
||||||
//
|
|
||||||
// You can change the location of this file or turn off
|
|
||||||
// automatically serving support files with the
|
|
||||||
// 'supportFile' configuration option.
|
|
||||||
//
|
|
||||||
// You can read more here:
|
|
||||||
// https://on.cypress.io/configuration
|
|
||||||
// ***********************************************************
|
|
||||||
|
|
||||||
import './commands';
|
import './commands';
|
||||||
|
|
||||||
// Change this if you have a different entrypoint for the main scss.
|
|
||||||
import 'src/css/app.scss';
|
import 'src/css/app.scss';
|
||||||
// Quasar styles
|
|
||||||
import 'quasar/src/css/index.sass';
|
import 'quasar/src/css/index.sass';
|
||||||
|
|
||||||
// ICON SETS
|
|
||||||
// If you use multiple or different icon-sets then the default, be sure to import them here.
|
|
||||||
import 'quasar/dist/icon-set/material-icons.umd.prod';
|
import 'quasar/dist/icon-set/material-icons.umd.prod';
|
||||||
import '@quasar/extras/material-icons/material-icons.css';
|
import '@quasar/extras/material-icons/material-icons.css';
|
||||||
|
|
||||||
|
@ -29,18 +10,10 @@ import { installQuasarPlugin } from '@quasar/quasar-app-extension-testing-e2e-cy
|
||||||
import { config } from '@vue/test-utils';
|
import { config } from '@vue/test-utils';
|
||||||
import { Dialog } from 'quasar';
|
import { Dialog } from 'quasar';
|
||||||
|
|
||||||
// Example to import i18n from boot and use as plugin
|
|
||||||
// import { i18n } from 'src/boot/i18n';
|
|
||||||
|
|
||||||
// You can modify the global config here for all tests or pass in the configuration per test
|
|
||||||
// For example use the actual i18n instance or mock it
|
|
||||||
// config.global.plugins.push(i18n);
|
|
||||||
config.global.mocks = {
|
config.global.mocks = {
|
||||||
$t: () => '',
|
$t: () => '',
|
||||||
};
|
};
|
||||||
|
|
||||||
// Overwrite the transition and transition-group stubs which are stubbed by test-utils by default.
|
|
||||||
// We do want transitions to show when doing visual testing :)
|
|
||||||
config.global.stubs = {};
|
config.global.stubs = {};
|
||||||
|
|
||||||
installQuasarPlugin({ plugins: { Dialog } });
|
installQuasarPlugin({ plugins: { Dialog } });
|
||||||
|
|
Loading…
Reference in New Issue