Merge branch 'dev' into fix_workerDescriptorMenu_i18n
gitea/salix-front/pipeline/pr-dev This commit is unstable
Details
gitea/salix-front/pipeline/pr-dev This commit is unstable
Details
This commit is contained in:
commit
b1528810b2
|
@ -115,6 +115,7 @@ pipeline {
|
||||||
steps {
|
steps {
|
||||||
script {
|
script {
|
||||||
sh 'rm -f junit/e2e-*.xml'
|
sh 'rm -f junit/e2e-*.xml'
|
||||||
|
sh 'rm -rf test/cypress/screenshots'
|
||||||
env.COMPOSE_TAG = PROTECTED_BRANCH.contains(env.CHANGE_TARGET) ? env.CHANGE_TARGET : 'dev'
|
env.COMPOSE_TAG = PROTECTED_BRANCH.contains(env.CHANGE_TARGET) ? env.CHANGE_TARGET : 'dev'
|
||||||
|
|
||||||
def image = docker.build('lilium-dev', '-f docs/Dockerfile.dev docs')
|
def image = docker.build('lilium-dev', '-f docs/Dockerfile.dev docs')
|
||||||
|
@ -132,6 +133,7 @@ pipeline {
|
||||||
post {
|
post {
|
||||||
always {
|
always {
|
||||||
sh "docker-compose ${env.COMPOSE_PARAMS} down -v"
|
sh "docker-compose ${env.COMPOSE_PARAMS} down -v"
|
||||||
|
archiveArtifacts artifacts: 'test/cypress/screenshots/**/*', allowEmptyArchive: true
|
||||||
junit(
|
junit(
|
||||||
testResults: 'junit/e2e-*.xml',
|
testResults: 'junit/e2e-*.xml',
|
||||||
allowEmptyResults: true
|
allowEmptyResults: true
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "salix-front",
|
"name": "salix-front",
|
||||||
"version": "25.12.0",
|
"version": "25.14.0",
|
||||||
"description": "Salix frontend",
|
"description": "Salix frontend",
|
||||||
"productName": "Salix",
|
"productName": "Salix",
|
||||||
"author": "Verdnatura",
|
"author": "Verdnatura",
|
||||||
|
|
|
@ -181,9 +181,8 @@ async function saveChanges(data) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
let changes = data || getChanges();
|
let changes = data || getChanges();
|
||||||
if ($props.beforeSaveFn) {
|
if ($props.beforeSaveFn) changes = await $props.beforeSaveFn(changes, getChanges);
|
||||||
changes = await $props.beforeSaveFn(changes, getChanges);
|
|
||||||
}
|
|
||||||
try {
|
try {
|
||||||
if (changes?.creates?.length === 0 && changes?.updates?.length === 0) {
|
if (changes?.creates?.length === 0 && changes?.updates?.length === 0) {
|
||||||
return;
|
return;
|
||||||
|
@ -194,7 +193,7 @@ async function saveChanges(data) {
|
||||||
isLoading.value = false;
|
isLoading.value = false;
|
||||||
}
|
}
|
||||||
originalData.value = JSON.parse(JSON.stringify(formData.value));
|
originalData.value = JSON.parse(JSON.stringify(formData.value));
|
||||||
if (changes.creates?.length) await vnPaginateRef.value.fetch();
|
if (changes?.creates?.length) await vnPaginateRef.value.fetch();
|
||||||
|
|
||||||
hasChanges.value = false;
|
hasChanges.value = false;
|
||||||
emit('saveChanges', data);
|
emit('saveChanges', data);
|
||||||
|
|
|
@ -140,7 +140,7 @@ const $props = defineProps({
|
||||||
},
|
},
|
||||||
dataCy: {
|
dataCy: {
|
||||||
type: String,
|
type: String,
|
||||||
default: 'vn-table',
|
default: 'vnTable',
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -595,8 +595,7 @@ function cardClick(_, row) {
|
||||||
|
|
||||||
function removeTextValue(data, getChanges) {
|
function removeTextValue(data, getChanges) {
|
||||||
let changes = data.updates;
|
let changes = data.updates;
|
||||||
if (!changes) return data;
|
if (changes) {
|
||||||
|
|
||||||
for (const change of changes) {
|
for (const change of changes) {
|
||||||
for (const key in change.data) {
|
for (const key in change.data) {
|
||||||
if (key.endsWith('VnTableTextValue')) {
|
if (key.endsWith('VnTableTextValue')) {
|
||||||
|
@ -606,7 +605,7 @@ function removeTextValue(data, getChanges) {
|
||||||
}
|
}
|
||||||
|
|
||||||
data.updates = changes.filter((change) => Object.keys(change.data).length > 0);
|
data.updates = changes.filter((change) => Object.keys(change.data).length > 0);
|
||||||
|
}
|
||||||
if ($attrs?.beforeSaveFn) data = $attrs.beforeSaveFn(data, getChanges);
|
if ($attrs?.beforeSaveFn) data = $attrs.beforeSaveFn(data, getChanges);
|
||||||
|
|
||||||
return data;
|
return data;
|
||||||
|
@ -685,7 +684,7 @@ const rowCtrlClickFunction = computed(() => {
|
||||||
@update:selected="emit('update:selected', $event)"
|
@update:selected="emit('update:selected', $event)"
|
||||||
@selection="(details) => handleSelection(details, rows)"
|
@selection="(details) => handleSelection(details, rows)"
|
||||||
:hide-selected-banner="true"
|
:hide-selected-banner="true"
|
||||||
:data-cy="$props.dataCy ?? 'vnTable'"
|
:data-cy
|
||||||
>
|
>
|
||||||
<template #top-left v-if="!$props.withoutHeader">
|
<template #top-left v-if="!$props.withoutHeader">
|
||||||
<slot name="top-left"> </slot>
|
<slot name="top-left"> </slot>
|
||||||
|
@ -776,12 +775,13 @@ 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;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
"
|
"
|
||||||
|
:data-cy="`vnTableCell_${col.name}`"
|
||||||
>
|
>
|
||||||
<slot
|
<slot
|
||||||
:name="`column-${col.name}`"
|
:name="`column-${col.name}`"
|
||||||
|
@ -978,6 +978,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}`"
|
||||||
|
@ -1040,6 +1042,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"
|
||||||
|
@ -1047,7 +1050,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"
|
||||||
|
@ -1059,7 +1065,7 @@ const rowCtrlClickFunction = computed(() => {
|
||||||
<VnColumn
|
<VnColumn
|
||||||
:column="{
|
:column="{
|
||||||
...column,
|
...column,
|
||||||
...{ disable: column?.createDisable ?? false },
|
...column?.createAttrs,
|
||||||
}"
|
}"
|
||||||
:row="{}"
|
:row="{}"
|
||||||
default="input"
|
default="input"
|
||||||
|
@ -1072,6 +1078,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>
|
||||||
|
|
|
@ -27,7 +27,11 @@ const checkboxModel = computed({
|
||||||
</script>
|
</script>
|
||||||
<template>
|
<template>
|
||||||
<div>
|
<div>
|
||||||
<QCheckbox v-bind="$attrs" v-model="checkboxModel" />
|
<QCheckbox
|
||||||
|
v-bind="$attrs"
|
||||||
|
v-model="checkboxModel"
|
||||||
|
:data-cy="$attrs['data-cy'] ?? `vnCheckbox${$attrs['label'] ?? ''}`"
|
||||||
|
/>
|
||||||
<QIcon
|
<QIcon
|
||||||
v-if="info"
|
v-if="info"
|
||||||
v-bind="$attrs"
|
v-bind="$attrs"
|
||||||
|
|
|
@ -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') }}
|
||||||
|
|
|
@ -107,7 +107,7 @@ const manageDate = (date) => {
|
||||||
@click="isPopupOpen = !isPopupOpen"
|
@click="isPopupOpen = !isPopupOpen"
|
||||||
@keydown="isPopupOpen = false"
|
@keydown="isPopupOpen = false"
|
||||||
hide-bottom-space
|
hide-bottom-space
|
||||||
:data-cy="$attrs.dataCy ?? $attrs.label + '_inputDate'"
|
:data-cy="($attrs['data-cy'] ?? $attrs.label) + '_inputDate'"
|
||||||
>
|
>
|
||||||
<template #append>
|
<template #append>
|
||||||
<QIcon
|
<QIcon
|
||||||
|
|
|
@ -10,7 +10,7 @@ import { useColor } from 'src/composables/useColor';
|
||||||
import { useCapitalize } from 'src/composables/useCapitalize';
|
import { useCapitalize } from 'src/composables/useCapitalize';
|
||||||
import { useValidator } from 'src/composables/useValidator';
|
import { useValidator } from 'src/composables/useValidator';
|
||||||
import VnAvatar from '../ui/VnAvatar.vue';
|
import VnAvatar from '../ui/VnAvatar.vue';
|
||||||
import VnJsonValue from '../common/VnJsonValue.vue';
|
import VnLogValue from './VnLogValue.vue';
|
||||||
import FetchData from '../FetchData.vue';
|
import FetchData from '../FetchData.vue';
|
||||||
import VnSelect from './VnSelect.vue';
|
import VnSelect from './VnSelect.vue';
|
||||||
import VnUserLink from '../ui/VnUserLink.vue';
|
import VnUserLink from '../ui/VnUserLink.vue';
|
||||||
|
@ -560,10 +560,11 @@ watch(
|
||||||
value.nameI18n
|
value.nameI18n
|
||||||
}}:
|
}}:
|
||||||
</span>
|
</span>
|
||||||
<VnJsonValue
|
<VnLogValue
|
||||||
:value="
|
:value="
|
||||||
value.val.val
|
value.val.val
|
||||||
"
|
"
|
||||||
|
:name="value.name"
|
||||||
/>
|
/>
|
||||||
</QItem>
|
</QItem>
|
||||||
</QCardSection>
|
</QCardSection>
|
||||||
|
@ -614,7 +615,11 @@ watch(
|
||||||
>
|
>
|
||||||
{{ prop.nameI18n }}:
|
{{ prop.nameI18n }}:
|
||||||
</span>
|
</span>
|
||||||
<VnJsonValue :value="prop.val.val" />
|
<VnLogValue
|
||||||
|
:value="prop.val.val"
|
||||||
|
:name="prop.name"
|
||||||
|
/>
|
||||||
|
<VnIconLink />
|
||||||
<span
|
<span
|
||||||
v-if="
|
v-if="
|
||||||
propIndex <
|
propIndex <
|
||||||
|
@ -642,8 +647,9 @@ watch(
|
||||||
{{ prop.nameI18n }}:
|
{{ prop.nameI18n }}:
|
||||||
</span>
|
</span>
|
||||||
<span v-if="log.action == 'update'">
|
<span v-if="log.action == 'update'">
|
||||||
<VnJsonValue
|
<VnLogValue
|
||||||
:value="prop.old.val"
|
:value="prop.old.val"
|
||||||
|
:name="prop.name"
|
||||||
/>
|
/>
|
||||||
<span
|
<span
|
||||||
v-if="prop.old.id"
|
v-if="prop.old.id"
|
||||||
|
@ -652,8 +658,9 @@ watch(
|
||||||
#{{ prop.old.id }}
|
#{{ prop.old.id }}
|
||||||
</span>
|
</span>
|
||||||
→
|
→
|
||||||
<VnJsonValue
|
<VnLogValue
|
||||||
:value="prop.val.val"
|
:value="prop.val.val"
|
||||||
|
:name="prop.name"
|
||||||
/>
|
/>
|
||||||
<span
|
<span
|
||||||
v-if="prop.val.id"
|
v-if="prop.val.id"
|
||||||
|
@ -663,8 +670,9 @@ watch(
|
||||||
</span>
|
</span>
|
||||||
</span>
|
</span>
|
||||||
<span v-else="prop.old.val">
|
<span v-else="prop.old.val">
|
||||||
<VnJsonValue
|
<VnLogValue
|
||||||
:value="prop.val.val"
|
:value="prop.val.val"
|
||||||
|
:name="prop.name"
|
||||||
/>
|
/>
|
||||||
<span
|
<span
|
||||||
v-if="prop.old.id"
|
v-if="prop.old.id"
|
||||||
|
|
|
@ -0,0 +1,22 @@
|
||||||
|
<script setup>
|
||||||
|
import { useDescriptorStore } from 'src/stores/useDescriptorStore';
|
||||||
|
import VnJsonValue from './VnJsonValue.vue';
|
||||||
|
import { computed } from 'vue';
|
||||||
|
const descriptorStore = useDescriptorStore();
|
||||||
|
|
||||||
|
const $props = defineProps({
|
||||||
|
name: { type: [String], default: undefined },
|
||||||
|
});
|
||||||
|
|
||||||
|
const descriptor = computed(() => descriptorStore.has($props.name));
|
||||||
|
</script>
|
||||||
|
<template>
|
||||||
|
<VnJsonValue v-bind="$attrs" />
|
||||||
|
<QIcon
|
||||||
|
name="launch"
|
||||||
|
class="link"
|
||||||
|
v-if="$attrs.value && descriptor"
|
||||||
|
:data-cy="'iconLaunch-' + $props.name"
|
||||||
|
/>
|
||||||
|
<component :is="descriptor" :id="$attrs.value" v-if="$attrs.value && descriptor" />
|
||||||
|
</template>
|
|
@ -1,5 +1,5 @@
|
||||||
<script setup>
|
<script setup>
|
||||||
import { ref, toRefs, computed, watch, onMounted, useAttrs } from 'vue';
|
import { ref, toRefs, computed, watch, onMounted, useAttrs, nextTick } from 'vue';
|
||||||
import { useI18n } from 'vue-i18n';
|
import { useI18n } from 'vue-i18n';
|
||||||
import { useArrayData } from 'src/composables/useArrayData';
|
import { useArrayData } from 'src/composables/useArrayData';
|
||||||
import { useRequired } from 'src/composables/useRequired';
|
import { useRequired } from 'src/composables/useRequired';
|
||||||
|
@ -247,6 +247,7 @@ async function fetchFilter(val) {
|
||||||
}
|
}
|
||||||
|
|
||||||
async function filterHandler(val, update) {
|
async function filterHandler(val, update) {
|
||||||
|
if (isLoading.value) return update();
|
||||||
if (!val && lastVal.value === val) {
|
if (!val && lastVal.value === val) {
|
||||||
lastVal.value = val;
|
lastVal.value = val;
|
||||||
return update();
|
return update();
|
||||||
|
@ -294,6 +295,7 @@ async function onScroll({ to, direction, from, index }) {
|
||||||
await arrayData.loadMore();
|
await arrayData.loadMore();
|
||||||
setOptions(arrayData.store.data);
|
setOptions(arrayData.store.data);
|
||||||
vnSelectRef.value.scrollTo(lastIndex);
|
vnSelectRef.value.scrollTo(lastIndex);
|
||||||
|
await nextTick();
|
||||||
isLoading.value = false;
|
isLoading.value = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,26 @@
|
||||||
|
import { describe, it, expect } from 'vitest';
|
||||||
|
import VnLogValue from 'src/components/common/VnLogValue.vue';
|
||||||
|
import { createWrapper } from 'app/test/vitest/helper';
|
||||||
|
|
||||||
|
const buildComponent = (props) => {
|
||||||
|
return createWrapper(VnLogValue, {
|
||||||
|
props,
|
||||||
|
global: {},
|
||||||
|
}).wrapper;
|
||||||
|
};
|
||||||
|
|
||||||
|
describe('VnLogValue', () => {
|
||||||
|
const id = 1;
|
||||||
|
it('renders without descriptor', async () => {
|
||||||
|
expect(getIcon('inventFk').exists()).toBe(false);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('renders with descriptor', async () => {
|
||||||
|
expect(getIcon('claimFk').text()).toBe('launch');
|
||||||
|
});
|
||||||
|
|
||||||
|
function getIcon(name) {
|
||||||
|
const wrapper = buildComponent({ value: { val: id }, name });
|
||||||
|
return wrapper.find('.q-icon');
|
||||||
|
}
|
||||||
|
});
|
|
@ -38,6 +38,10 @@ const $props = defineProps({
|
||||||
type: String,
|
type: String,
|
||||||
default: 'md-width',
|
default: 'md-width',
|
||||||
},
|
},
|
||||||
|
toModule: {
|
||||||
|
type: String,
|
||||||
|
default: null,
|
||||||
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
const state = useState();
|
const state = useState();
|
||||||
|
@ -129,6 +133,9 @@ const emit = defineEmits(['onFetch']);
|
||||||
|
|
||||||
const iconModule = computed(() => {
|
const iconModule = computed(() => {
|
||||||
moduleName.value = getName();
|
moduleName.value = getName();
|
||||||
|
if ($props.toModule) {
|
||||||
|
return router.getRoutes().find((r) => r.name === $props.toModule.name).meta.icon;
|
||||||
|
}
|
||||||
if (isSameModuleName) {
|
if (isSameModuleName) {
|
||||||
return router.options.routes[1].children.find((r) => r.name === moduleName.value)
|
return router.options.routes[1].children.find((r) => r.name === moduleName.value)
|
||||||
?.meta?.icon;
|
?.meta?.icon;
|
||||||
|
@ -139,9 +146,10 @@ const iconModule = computed(() => {
|
||||||
|
|
||||||
const toModule = computed(() => {
|
const toModule = computed(() => {
|
||||||
moduleName.value = getName();
|
moduleName.value = getName();
|
||||||
|
if ($props.toModule) return $props.toModule;
|
||||||
if (isSameModuleName) {
|
if (isSameModuleName) {
|
||||||
return router.options.routes[1].children.find((r) => r.name === moduleName.value)
|
return router.options.routes[1].children.find((r) => r.name === moduleName.value)
|
||||||
?.children[0]?.redirect;
|
?.redirect;
|
||||||
} else {
|
} else {
|
||||||
return route.matched[1].path.split('/').length > 2
|
return route.matched[1].path.split('/').length > 2
|
||||||
? route.matched[1].redirect
|
? route.matched[1].redirect
|
||||||
|
@ -151,7 +159,7 @@ const toModule = computed(() => {
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div class="descriptor">
|
<div class="descriptor" data-cy="cardDescriptor">
|
||||||
<template v-if="entity && !isLoading">
|
<template v-if="entity && !isLoading">
|
||||||
<div class="header bg-primary q-pa-sm justify-between">
|
<div class="header bg-primary q-pa-sm justify-between">
|
||||||
<slot name="header-extra-action">
|
<slot name="header-extra-action">
|
||||||
|
@ -180,6 +188,7 @@ const toModule = computed(() => {
|
||||||
color="white"
|
color="white"
|
||||||
class="link"
|
class="link"
|
||||||
v-if="summary"
|
v-if="summary"
|
||||||
|
data-cy="openSummaryBtn"
|
||||||
>
|
>
|
||||||
<QTooltip>
|
<QTooltip>
|
||||||
{{ t('components.smartCard.openSummary') }}
|
{{ t('components.smartCard.openSummary') }}
|
||||||
|
@ -194,6 +203,7 @@ const toModule = computed(() => {
|
||||||
icon="launch"
|
icon="launch"
|
||||||
round
|
round
|
||||||
size="md"
|
size="md"
|
||||||
|
data-cy="goToSummaryBtn"
|
||||||
>
|
>
|
||||||
<QTooltip>
|
<QTooltip>
|
||||||
{{ t('components.cardDescriptor.summary') }}
|
{{ t('components.cardDescriptor.summary') }}
|
||||||
|
@ -211,18 +221,27 @@ const toModule = computed(() => {
|
||||||
<QList dense>
|
<QList dense>
|
||||||
<QItemLabel header class="ellipsis text-h5" :lines="1">
|
<QItemLabel header class="ellipsis text-h5" :lines="1">
|
||||||
<div class="title">
|
<div class="title">
|
||||||
<span v-if="$props.title" :title="getValueFromPath(title)">
|
<span
|
||||||
|
v-if="$props.title"
|
||||||
|
:title="getValueFromPath(title)"
|
||||||
|
:data-cy="`${$attrs['data-cy'] ?? 'cardDescriptor'}_title`"
|
||||||
|
>
|
||||||
{{ getValueFromPath(title) ?? $props.title }}
|
{{ getValueFromPath(title) ?? $props.title }}
|
||||||
</span>
|
</span>
|
||||||
<slot v-else name="description" :entity="entity">
|
<slot v-else name="description" :entity="entity">
|
||||||
<span :title="entity.name">
|
<span
|
||||||
{{ entity.name }}
|
:title="entity.name"
|
||||||
</span>
|
:data-cy="`${$attrs['data-cy'] ?? 'cardDescriptor'}_description`"
|
||||||
|
v-text="entity.name"
|
||||||
|
/>
|
||||||
</slot>
|
</slot>
|
||||||
</div>
|
</div>
|
||||||
</QItemLabel>
|
</QItemLabel>
|
||||||
<QItem>
|
<QItem>
|
||||||
<QItemLabel class="subtitle">
|
<QItemLabel
|
||||||
|
class="subtitle"
|
||||||
|
:data-cy="`${$attrs['data-cy'] ?? 'cardDescriptor'}_subtitle`"
|
||||||
|
>
|
||||||
#{{ getValueFromPath(subtitle) ?? entity.id }}
|
#{{ getValueFromPath(subtitle) ?? entity.id }}
|
||||||
</QItemLabel>
|
</QItemLabel>
|
||||||
<QBtn
|
<QBtn
|
||||||
|
@ -240,7 +259,10 @@ const toModule = computed(() => {
|
||||||
</QBtn>
|
</QBtn>
|
||||||
</QItem>
|
</QItem>
|
||||||
</QList>
|
</QList>
|
||||||
<div class="list-box q-mt-xs">
|
<div
|
||||||
|
class="list-box q-mt-xs"
|
||||||
|
:data-cy="`${$attrs['data-cy'] ?? 'cardDescriptor'}_listbox`"
|
||||||
|
>
|
||||||
<slot name="body" :entity="entity" />
|
<slot name="body" :entity="entity" />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -81,6 +81,7 @@ async function fetch() {
|
||||||
name: `${moduleName ?? route.meta.moduleName}Summary`,
|
name: `${moduleName ?? route.meta.moduleName}Summary`,
|
||||||
params: { id: entityId || entity.id },
|
params: { id: entityId || entity.id },
|
||||||
}"
|
}"
|
||||||
|
data-cy="goToSummaryBtn"
|
||||||
>
|
>
|
||||||
<QIcon name="open_in_new" color="white" size="sm" />
|
<QIcon name="open_in_new" color="white" size="sm" />
|
||||||
</router-link>
|
</router-link>
|
||||||
|
|
|
@ -249,7 +249,7 @@ const getLocale = (label) => {
|
||||||
:key="chip.label"
|
:key="chip.label"
|
||||||
:removable="!unremovableParams?.includes(chip.label)"
|
:removable="!unremovableParams?.includes(chip.label)"
|
||||||
@remove="remove(chip.label)"
|
@remove="remove(chip.label)"
|
||||||
data-cy="vnFilterPanelChip"
|
:data-cy="`vnFilterPanelChip_${chip.label}`"
|
||||||
>
|
>
|
||||||
<slot
|
<slot
|
||||||
name="tags"
|
name="tags"
|
||||||
|
|
|
@ -28,7 +28,7 @@ function copyValueText() {
|
||||||
const val = computed(() => $props.value);
|
const val = computed(() => $props.value);
|
||||||
</script>
|
</script>
|
||||||
<template>
|
<template>
|
||||||
<div class="vn-label-value">
|
<div class="vn-label-value" :data-cy="`${$attrs['data-cy'] ?? 'vnLv'}${label ?? ''}`">
|
||||||
<QCheckbox
|
<QCheckbox
|
||||||
v-if="typeof value === 'boolean'"
|
v-if="typeof value === 'boolean'"
|
||||||
v-model="val"
|
v-model="val"
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
{{ $t('components.cardDescriptor.moreOptions') }}
|
{{ $t('components.cardDescriptor.moreOptions') }}
|
||||||
</QTooltip>
|
</QTooltip>
|
||||||
<QMenu ref="menuRef" data-cy="descriptor-more-opts-menu">
|
<QMenu ref="menuRef" data-cy="descriptor-more-opts-menu">
|
||||||
<QList>
|
<QList data-cy="descriptor-more-opts_list">
|
||||||
<slot name="menu" :menu-ref="$refs.menuRef" />
|
<slot name="menu" :menu-ref="$refs.menuRef" />
|
||||||
</QList>
|
</QList>
|
||||||
</QMenu>
|
</QMenu>
|
||||||
|
|
|
@ -892,6 +892,8 @@ components:
|
||||||
VnLv:
|
VnLv:
|
||||||
copyText: '{copyValue} has been copied to the clipboard'
|
copyText: '{copyValue} has been copied to the clipboard'
|
||||||
iban_tooltip: 'IBAN: ES21 1234 5678 90 0123456789'
|
iban_tooltip: 'IBAN: ES21 1234 5678 90 0123456789'
|
||||||
|
VnNotes:
|
||||||
|
clientWithoutPhone: 'The following clients do not have a phone number and the message will not be sent to them: {clientWithoutPhone}'
|
||||||
weekdays:
|
weekdays:
|
||||||
sun: Sunday
|
sun: Sunday
|
||||||
mon: Monday
|
mon: Monday
|
||||||
|
|
|
@ -976,6 +976,8 @@ components:
|
||||||
VnLv:
|
VnLv:
|
||||||
copyText: '{copyValue} se ha copiado al portapepeles'
|
copyText: '{copyValue} se ha copiado al portapepeles'
|
||||||
iban_tooltip: 'IBAN: ES21 1234 5678 90 0123456789'
|
iban_tooltip: 'IBAN: ES21 1234 5678 90 0123456789'
|
||||||
|
VnNotes:
|
||||||
|
clientWithoutPhone: 'Estos clientes no tienen asociado número de télefono y el sms no les será enviado: {clientWithoutPhone}'
|
||||||
weekdays:
|
weekdays:
|
||||||
sun: Domingo
|
sun: Domingo
|
||||||
mon: Lunes
|
mon: Lunes
|
||||||
|
|
|
@ -53,6 +53,7 @@ const removeAlias = () => {
|
||||||
:url="`MailAliases/${entityId}`"
|
:url="`MailAliases/${entityId}`"
|
||||||
data-key="Alias"
|
data-key="Alias"
|
||||||
title="alias"
|
title="alias"
|
||||||
|
:to-module="{ name: 'AccountAlias' }"
|
||||||
>
|
>
|
||||||
<template #menu>
|
<template #menu>
|
||||||
<QItem v-ripple clickable @click="removeAlias()">
|
<QItem v-ripple clickable @click="removeAlias()">
|
||||||
|
|
|
@ -0,0 +1,14 @@
|
||||||
|
<script setup>
|
||||||
|
import AccountDescriptor from './AccountDescriptor.vue';
|
||||||
|
import AccountSummary from './AccountSummary.vue';
|
||||||
|
</script>
|
||||||
|
<template>
|
||||||
|
<QPopupProxy style="max-width: 10px">
|
||||||
|
<AccountDescriptor
|
||||||
|
v-if="$attrs.id"
|
||||||
|
v-bind="$attrs.id"
|
||||||
|
:summary="AccountSummary"
|
||||||
|
:proxy-render="true"
|
||||||
|
/>
|
||||||
|
</QPopupProxy>
|
||||||
|
</template>
|
|
@ -37,6 +37,7 @@ const removeRole = async () => {
|
||||||
:filter="{ where: { id: entityId } }"
|
:filter="{ where: { id: entityId } }"
|
||||||
data-key="Role"
|
data-key="Role"
|
||||||
:summary="$props.summary"
|
:summary="$props.summary"
|
||||||
|
:to-module="{ name: 'AccountRoles' }"
|
||||||
>
|
>
|
||||||
<template #menu>
|
<template #menu>
|
||||||
<QItem v-ripple clickable @click="removeRole()">
|
<QItem v-ripple clickable @click="removeRole()">
|
||||||
|
|
|
@ -0,0 +1,14 @@
|
||||||
|
<script setup>
|
||||||
|
import ClaimDescriptor from './ClaimDescriptor.vue';
|
||||||
|
import ClaimSummary from './ClaimSummary.vue';
|
||||||
|
</script>
|
||||||
|
<template>
|
||||||
|
<QPopupProxy style="max-width: 10px">
|
||||||
|
<ClaimDescriptor
|
||||||
|
v-if="$attrs.id"
|
||||||
|
v-bind="$attrs.id"
|
||||||
|
:summary="ClaimSummary"
|
||||||
|
:proxy-render="true"
|
||||||
|
/>
|
||||||
|
</QPopupProxy>
|
||||||
|
</template>
|
|
@ -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')"
|
||||||
|
@ -84,12 +85,13 @@ onMounted(() => {
|
||||||
:options="companiesOptions"
|
:options="companiesOptions"
|
||||||
option-value="id"
|
option-value="id"
|
||||||
option-label="code"
|
option-label="code"
|
||||||
|
sort-by="code"
|
||||||
map-options
|
map-options
|
||||||
hide-selected
|
hide-selected
|
||||||
: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"
|
||||||
|
@ -102,9 +104,10 @@ onMounted(() => {
|
||||||
:options="currenciesOptions"
|
:options="currenciesOptions"
|
||||||
option-value="id"
|
option-value="id"
|
||||||
option-label="code"
|
option-label="code"
|
||||||
|
sort-by="code"
|
||||||
/>
|
/>
|
||||||
</VnRow>
|
</VnRow>
|
||||||
<VnRow>
|
<VnRow class="q-py-sm">
|
||||||
<VnInputNumber
|
<VnInputNumber
|
||||||
v-model="data.initialTemperature"
|
v-model="data.initialTemperature"
|
||||||
name="initialTemperature"
|
name="initialTemperature"
|
||||||
|
@ -121,8 +124,16 @@ onMounted(() => {
|
||||||
:decimal-places="2"
|
:decimal-places="2"
|
||||||
:positive="false"
|
:positive="false"
|
||||||
/>
|
/>
|
||||||
|
<VnSelect
|
||||||
|
v-model="data.typeFk"
|
||||||
|
url="entryTypes"
|
||||||
|
:fields="['code', 'description']"
|
||||||
|
option-value="code"
|
||||||
|
optionLabel="description"
|
||||||
|
sortBy="description"
|
||||||
|
/>
|
||||||
</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 +143,20 @@ 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.list.tableVisibleColumns.isOrdered')"
|
||||||
v-model="data.isExcludedFromAvailable"
|
|
||||||
:label="t('entry.summary.excludedFromAvailable')"
|
|
||||||
/>
|
/>
|
||||||
<QCheckbox
|
<VnCheckbox
|
||||||
|
v-model="data.isConfirmed"
|
||||||
|
:label="t('entry.list.tableVisibleColumns.isConfirmed')"
|
||||||
|
/>
|
||||||
|
<VnCheckbox
|
||||||
|
v-model="data.isExcludedFromAvailable"
|
||||||
|
:label="t('entry.list.tableVisibleColumns.isExcludedFromAvailable')"
|
||||||
|
/>
|
||||||
|
<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: {
|
||||||
|
@ -57,31 +59,6 @@ const columns = [
|
||||||
createOrder: 12,
|
createOrder: 12,
|
||||||
width: '25px',
|
width: '25px',
|
||||||
},
|
},
|
||||||
{
|
|
||||||
label: t('Buyer'),
|
|
||||||
name: 'workerFk',
|
|
||||||
component: 'select',
|
|
||||||
attrs: {
|
|
||||||
url: 'TicketRequests/getItemTypeWorker',
|
|
||||||
fields: ['id', 'nickname'],
|
|
||||||
optionLabel: 'nickname',
|
|
||||||
sortBy: 'nickname ASC',
|
|
||||||
optionValue: 'id',
|
|
||||||
},
|
|
||||||
visible: false,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: t('Family'),
|
|
||||||
name: 'itemTypeFk',
|
|
||||||
component: 'select',
|
|
||||||
attrs: {
|
|
||||||
url: 'itemTypes',
|
|
||||||
fields: ['id', 'name'],
|
|
||||||
optionLabel: 'name',
|
|
||||||
optionValue: 'id',
|
|
||||||
},
|
|
||||||
visible: false,
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: 'id',
|
name: 'id',
|
||||||
isId: true,
|
isId: true,
|
||||||
|
@ -111,16 +88,10 @@ const columns = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
align: 'center',
|
align: 'left',
|
||||||
label: t('Article'),
|
label: t('Article'),
|
||||||
|
component: 'input',
|
||||||
name: 'name',
|
name: 'name',
|
||||||
component: 'select',
|
|
||||||
attrs: {
|
|
||||||
url: 'Items',
|
|
||||||
fields: ['id', 'name'],
|
|
||||||
optionLabel: 'name',
|
|
||||||
optionValue: 'id',
|
|
||||||
},
|
|
||||||
width: '85px',
|
width: '85px',
|
||||||
isEditable: false,
|
isEditable: false,
|
||||||
},
|
},
|
||||||
|
@ -212,7 +183,6 @@ const columns = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
align: 'center',
|
|
||||||
labelAbbreviation: 'GM',
|
labelAbbreviation: 'GM',
|
||||||
label: t('Grouping selector'),
|
label: t('Grouping selector'),
|
||||||
toolTip: t('Grouping selector'),
|
toolTip: t('Grouping selector'),
|
||||||
|
@ -240,7 +210,6 @@ const columns = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
align: 'center',
|
|
||||||
labelAbbreviation: 'G',
|
labelAbbreviation: 'G',
|
||||||
label: 'Grouping',
|
label: 'Grouping',
|
||||||
toolTip: 'Grouping',
|
toolTip: 'Grouping',
|
||||||
|
@ -294,7 +263,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 +279,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 +291,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 +313,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 +322,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 +384,23 @@ const columns = [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
const buyerFk = ref(null);
|
||||||
|
const itemTypeFk = ref(null);
|
||||||
|
const inkFk = ref(null);
|
||||||
|
const tag1 = ref(null);
|
||||||
|
const tag2 = ref(null);
|
||||||
|
const tag1Filter = ref(null);
|
||||||
|
const tag2Filter = ref(null);
|
||||||
|
const filter = computed(() => {
|
||||||
|
const where = {};
|
||||||
|
where.workerFk = buyerFk.value;
|
||||||
|
where.itemTypeFk = itemTypeFk.value;
|
||||||
|
where.inkFk = inkFk.value;
|
||||||
|
where.tag1 = tag1.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 +586,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()"
|
||||||
|
@ -655,7 +632,7 @@ onMounted(() => {
|
||||||
:is-editable="editableMode"
|
:is-editable="editableMode"
|
||||||
:without-header="!editableMode"
|
:without-header="!editableMode"
|
||||||
:with-filters="editableMode"
|
:with-filters="editableMode"
|
||||||
:right-search="editableMode"
|
:right-search="false"
|
||||||
:row-click="false"
|
:row-click="false"
|
||||||
:columns="columns"
|
:columns="columns"
|
||||||
:beforeSaveFn="beforeSave"
|
:beforeSaveFn="beforeSave"
|
||||||
|
@ -666,6 +643,46 @@ 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="tag1Filter"
|
||||||
|
:label="t('Tag')"
|
||||||
|
@keyup.enter="tag1 = tag1Filter"
|
||||||
|
@remove="tag1 = null"
|
||||||
|
/>
|
||||||
|
<VnInput
|
||||||
|
v-model="tag2Filter"
|
||||||
|
:label="t('Tag')"
|
||||||
|
@keyup.enter="tag2 = tag2Filter"
|
||||||
|
@remove="tag2 = null"
|
||||||
|
/>
|
||||||
|
</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 +713,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 +721,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 +783,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>
|
||||||
|
|
|
@ -92,13 +92,13 @@ onMounted(async () => {
|
||||||
</div>
|
</div>
|
||||||
<div class="card-content">
|
<div class="card-content">
|
||||||
<VnCheckbox
|
<VnCheckbox
|
||||||
:label="t('entry.summary.ordered')"
|
:label="t('entry.list.tableVisibleColumns.isOrdered')"
|
||||||
v-model="entry.isOrdered"
|
v-model="entry.isOrdered"
|
||||||
:disable="true"
|
:disable="true"
|
||||||
size="xs"
|
size="xs"
|
||||||
/>
|
/>
|
||||||
<VnCheckbox
|
<VnCheckbox
|
||||||
:label="t('globals.confirmed')"
|
:label="t('entry.list.tableVisibleColumns.isConfirmed')"
|
||||||
v-model="entry.isConfirmed"
|
v-model="entry.isConfirmed"
|
||||||
:disable="true"
|
:disable="true"
|
||||||
size="xs"
|
size="xs"
|
||||||
|
@ -110,7 +110,11 @@ onMounted(async () => {
|
||||||
size="xs"
|
size="xs"
|
||||||
/>
|
/>
|
||||||
<VnCheckbox
|
<VnCheckbox
|
||||||
:label="t('entry.summary.excludedFromAvailable')"
|
:label="
|
||||||
|
t(
|
||||||
|
'entry.list.tableVisibleColumns.isExcludedFromAvailable',
|
||||||
|
)
|
||||||
|
"
|
||||||
v-model="entry.isExcludedFromAvailable"
|
v-model="entry.isExcludedFromAvailable"
|
||||||
:disable="true"
|
:disable="true"
|
||||||
size="xs"
|
size="xs"
|
||||||
|
|
|
@ -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,168 +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>
|
|
||||||
<FetchData
|
|
||||||
url="TicketRequests/getItemTypeWorker"
|
|
||||||
auto-load
|
|
||||||
:filter="{ fields: ['id', 'nickname'], order: 'nickname ASC' }"
|
|
||||||
@on-fetch="(data) => (itemTypeWorkersOptions = data)"
|
|
||||||
/>
|
|
||||||
<ItemsFilterPanel :data-key="dataKey" :custom-tags="['tags']">
|
|
||||||
<template #body="{ params, searchFn }">
|
|
||||||
<QItem class="q-my-md">
|
|
||||||
<QItemSection>
|
|
||||||
<VnSelect
|
|
||||||
:label="t('components.itemsFilterPanel.buyerFk')"
|
|
||||||
v-model="params.buyerFk"
|
|
||||||
:options="itemTypeWorkersOptions"
|
|
||||||
option-value="id"
|
|
||||||
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',
|
||||||
},
|
},
|
||||||
width: '65px',
|
width: '65px',
|
||||||
format: (row, dashIfEmpty) => dashIfEmpty(row.entryTypeDescription),
|
format: (row, dashIfEmpty) => dashIfEmpty(row.entryTypeDescription),
|
||||||
|
|
|
@ -1,24 +1,23 @@
|
||||||
<script setup>
|
<script setup>
|
||||||
import { ref, computed } from 'vue';
|
import { ref, computed } from 'vue';
|
||||||
import { useI18n } from 'vue-i18n';
|
import { useI18n } from 'vue-i18n';
|
||||||
import { useState } from 'src/composables/useState';
|
import { useQuasar, date } from 'quasar';
|
||||||
import { useQuasar } from 'quasar';
|
|
||||||
|
|
||||||
import VnSubToolbar from 'src/components/ui/VnSubToolbar.vue';
|
import VnSubToolbar from 'src/components/ui/VnSubToolbar.vue';
|
||||||
import FetchData from 'components/FetchData.vue';
|
import FetchData from 'components/FetchData.vue';
|
||||||
import FormModelPopup from 'components/FormModelPopup.vue';
|
import FormModelPopup from 'components/FormModelPopup.vue';
|
||||||
import VnInput from 'src/components/common/VnInput.vue';
|
import VnInput from 'src/components/common/VnInput.vue';
|
||||||
import VnRow from 'components/ui/VnRow.vue';
|
import VnRow from 'components/ui/VnRow.vue';
|
||||||
import RightMenu from 'src/components/common/RightMenu.vue';
|
|
||||||
import EntryStockBoughtFilter from './EntryStockBoughtFilter.vue';
|
|
||||||
import VnTable from 'components/VnTable/VnTable.vue';
|
import VnTable from 'components/VnTable/VnTable.vue';
|
||||||
import WorkerDescriptorProxy from 'src/pages/Worker/Card/WorkerDescriptorProxy.vue';
|
import WorkerDescriptorProxy from 'src/pages/Worker/Card/WorkerDescriptorProxy.vue';
|
||||||
import EntryStockBoughtDetail from 'src/pages/Entry/EntryStockBoughtDetail.vue';
|
import EntryStockBoughtDetail from 'src/pages/Entry/EntryStockBoughtDetail.vue';
|
||||||
|
import TravelDescriptorProxy from '../Travel/Card/TravelDescriptorProxy.vue';
|
||||||
|
import { useFilterParams } from 'src/composables/useFilterParams';
|
||||||
|
import axios from 'axios';
|
||||||
|
|
||||||
const { t } = useI18n();
|
const { t } = useI18n();
|
||||||
const quasar = useQuasar();
|
const quasar = useQuasar();
|
||||||
const state = useState();
|
const filterDate = ref(useFilterParams('StockBoughts').params);
|
||||||
const user = state.getUser();
|
|
||||||
const footer = ref({ bought: 0, reserve: 0 });
|
const footer = ref({ bought: 0, reserve: 0 });
|
||||||
const columns = computed(() => [
|
const columns = computed(() => [
|
||||||
{
|
{
|
||||||
|
@ -46,7 +45,7 @@ const columns = computed(() => [
|
||||||
optionValue: 'id',
|
optionValue: 'id',
|
||||||
},
|
},
|
||||||
columnFilter: false,
|
columnFilter: false,
|
||||||
width: '50px',
|
width: '60%',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
align: 'center',
|
align: 'center',
|
||||||
|
@ -56,20 +55,20 @@ const columns = computed(() => [
|
||||||
create: true,
|
create: true,
|
||||||
component: 'number',
|
component: 'number',
|
||||||
summation: true,
|
summation: true,
|
||||||
width: '50px',
|
|
||||||
format: ({ reserve }, dashIfEmpty) => dashIfEmpty(round(reserve)),
|
format: ({ reserve }, dashIfEmpty) => dashIfEmpty(round(reserve)),
|
||||||
|
width: '20%',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
align: 'center',
|
align: 'right',
|
||||||
label: t('entryStockBought.bought'),
|
label: t('entryStockBought.bought'),
|
||||||
name: 'bought',
|
name: 'bought',
|
||||||
summation: true,
|
summation: true,
|
||||||
cardVisible: true,
|
cardVisible: true,
|
||||||
style: ({ reserve, bought }) => boughtStyle(bought, reserve),
|
style: ({ reserve, bought }) => boughtStyle(bought, reserve),
|
||||||
columnFilter: false,
|
columnFilter: false,
|
||||||
|
width: '20%',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
align: 'left',
|
|
||||||
label: t('entryStockBought.date'),
|
label: t('entryStockBought.date'),
|
||||||
name: 'dated',
|
name: 'dated',
|
||||||
component: 'date',
|
component: 'date',
|
||||||
|
@ -77,7 +76,7 @@ const columns = computed(() => [
|
||||||
create: true,
|
create: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
align: 'left',
|
align: 'center',
|
||||||
name: 'tableActions',
|
name: 'tableActions',
|
||||||
actions: [
|
actions: [
|
||||||
{
|
{
|
||||||
|
@ -90,7 +89,7 @@ const columns = computed(() => [
|
||||||
component: EntryStockBoughtDetail,
|
component: EntryStockBoughtDetail,
|
||||||
componentProps: {
|
componentProps: {
|
||||||
workerFk: row.workerFk,
|
workerFk: row.workerFk,
|
||||||
dated: userParams.value.dated,
|
dated: filterDate.value.dated,
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
@ -98,39 +97,29 @@ const columns = computed(() => [
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
]);
|
]);
|
||||||
|
|
||||||
const fetchDataRef = ref();
|
const fetchDataRef = ref();
|
||||||
const travelDialogRef = ref(false);
|
const travelDialogRef = ref(false);
|
||||||
const tableRef = ref();
|
const tableRef = ref();
|
||||||
const travel = ref(null);
|
const travel = ref(null);
|
||||||
const userParams = ref({
|
const filter = computed(() => ({
|
||||||
dated: Date.vnNew().toJSON(),
|
fields: ['id', 'm3', 'ref', 'warehouseInFk'],
|
||||||
});
|
|
||||||
|
|
||||||
const filter = ref({
|
|
||||||
fields: ['id', 'm3', 'warehouseInFk'],
|
|
||||||
include: [
|
include: [
|
||||||
{
|
{
|
||||||
relation: 'warehouseIn',
|
relation: 'warehouseIn',
|
||||||
scope: {
|
scope: {
|
||||||
fields: ['code'],
|
fields: ['code', 'name'],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
where: {
|
where: {
|
||||||
shipped: (userParams.value.dated
|
shipped: date.adjustDate(filterDate.value.dated, {
|
||||||
? new Date(userParams.value.dated)
|
hour: 0,
|
||||||
: Date.vnNew()
|
minute: 0,
|
||||||
).setHours(0, 0, 0, 0),
|
second: 0,
|
||||||
|
}),
|
||||||
m3: { neq: null },
|
m3: { neq: null },
|
||||||
},
|
},
|
||||||
});
|
}));
|
||||||
|
|
||||||
const setUserParams = async ({ dated }) => {
|
|
||||||
const shipped = (dated ? new Date(dated) : Date.vnNew()).setHours(0, 0, 0, 0);
|
|
||||||
filter.value.where.shipped = shipped;
|
|
||||||
fetchDataRef.value?.fetch();
|
|
||||||
};
|
|
||||||
|
|
||||||
function openDialog() {
|
function openDialog() {
|
||||||
travelDialogRef.value = true;
|
travelDialogRef.value = true;
|
||||||
|
@ -151,6 +140,31 @@ function round(value) {
|
||||||
function boughtStyle(bought, reserve) {
|
function boughtStyle(bought, reserve) {
|
||||||
return reserve < bought ? { color: 'var(--q-negative)' } : '';
|
return reserve < bought ? { color: 'var(--q-negative)' } : '';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async function beforeSave(data, getChanges) {
|
||||||
|
const changes = data.creates;
|
||||||
|
if (!changes) return data;
|
||||||
|
const patchPromises = [];
|
||||||
|
|
||||||
|
for (const change of changes) {
|
||||||
|
if (change?.isReal === false && change?.reserve > 0) {
|
||||||
|
const postData = {
|
||||||
|
workerFk: change.workerFk,
|
||||||
|
reserve: change.reserve,
|
||||||
|
dated: filterDate.value.dated,
|
||||||
|
};
|
||||||
|
const promise = axios.post('StockBoughts', postData).catch((error) => {
|
||||||
|
console.error('Error processing change: ', change, error);
|
||||||
|
});
|
||||||
|
|
||||||
|
patchPromises.push(promise);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
await Promise.all(patchPromises);
|
||||||
|
const filteredChanges = changes.filter((change) => change?.isReal !== false);
|
||||||
|
data.creates = filteredChanges;
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
<template>
|
<template>
|
||||||
<VnSubToolbar>
|
<VnSubToolbar>
|
||||||
|
@ -158,18 +172,17 @@ function boughtStyle(bought, reserve) {
|
||||||
<FetchData
|
<FetchData
|
||||||
ref="fetchDataRef"
|
ref="fetchDataRef"
|
||||||
url="Travels"
|
url="Travels"
|
||||||
auto-load
|
|
||||||
:filter="filter"
|
:filter="filter"
|
||||||
@on-fetch="
|
@on-fetch="
|
||||||
(data) => {
|
(data) => {
|
||||||
travel = data.find(
|
travel = data.find(
|
||||||
(data) => data.warehouseIn?.code.toLowerCase() === 'vnh',
|
(data) => data.warehouseIn?.code?.toLowerCase() === 'vnh',
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
"
|
"
|
||||||
/>
|
/>
|
||||||
<VnRow class="travel">
|
<VnRow class="travel">
|
||||||
<div v-if="travel">
|
<div v-show="travel">
|
||||||
<span style="color: var(--vn-label-color)">
|
<span style="color: var(--vn-label-color)">
|
||||||
{{ t('entryStockBought.purchaseSpaces') }}:
|
{{ t('entryStockBought.purchaseSpaces') }}:
|
||||||
</span>
|
</span>
|
||||||
|
@ -180,7 +193,7 @@ function boughtStyle(bought, reserve) {
|
||||||
v-if="travel?.m3"
|
v-if="travel?.m3"
|
||||||
style="max-width: 20%"
|
style="max-width: 20%"
|
||||||
flat
|
flat
|
||||||
icon="edit"
|
icon="search"
|
||||||
@click="openDialog()"
|
@click="openDialog()"
|
||||||
:title="t('entryStockBought.editTravel')"
|
:title="t('entryStockBought.editTravel')"
|
||||||
color="primary"
|
color="primary"
|
||||||
|
@ -195,57 +208,42 @@ function boughtStyle(bought, reserve) {
|
||||||
:url-update="`Travels/${travel?.id}`"
|
:url-update="`Travels/${travel?.id}`"
|
||||||
model="travel"
|
model="travel"
|
||||||
:title="t('Travel m3')"
|
:title="t('Travel m3')"
|
||||||
:form-initial-data="{ id: travel?.id, m3: travel?.m3 }"
|
:form-initial-data="travel"
|
||||||
@on-data-saved="fetchDataRef.fetch()"
|
@on-data-saved="fetchDataRef.fetch()"
|
||||||
>
|
>
|
||||||
<template #form-inputs="{ data }">
|
<template #form-inputs="{ data }">
|
||||||
<VnInput
|
<span class="link">
|
||||||
v-model="data.id"
|
{{ data.ref }}
|
||||||
:label="t('id')"
|
<TravelDescriptorProxy :id="data.id" />
|
||||||
type="number"
|
</span>
|
||||||
disable
|
|
||||||
readonly
|
|
||||||
/>
|
|
||||||
<VnInput v-model="data.m3" :label="t('m3')" type="number" />
|
<VnInput v-model="data.m3" :label="t('m3')" type="number" />
|
||||||
</template>
|
</template>
|
||||||
</FormModelPopup>
|
</FormModelPopup>
|
||||||
</QDialog>
|
</QDialog>
|
||||||
<RightMenu>
|
|
||||||
<template #right-panel>
|
|
||||||
<EntryStockBoughtFilter
|
|
||||||
data-key="StockBoughts"
|
|
||||||
@set-user-params="setUserParams"
|
|
||||||
/>
|
|
||||||
</template>
|
|
||||||
</RightMenu>
|
|
||||||
<div class="table-container">
|
<div class="table-container">
|
||||||
<div class="column items-center">
|
<div class="column items-center">
|
||||||
<VnTable
|
<VnTable
|
||||||
ref="tableRef"
|
ref="tableRef"
|
||||||
data-key="StockBoughts"
|
data-key="StockBoughts"
|
||||||
url="StockBoughts/getStockBought"
|
url="StockBoughts/getStockBought"
|
||||||
|
:beforeSaveFn="beforeSave"
|
||||||
save-url="StockBoughts/crud"
|
save-url="StockBoughts/crud"
|
||||||
search-url="StockBoughts"
|
search-url="StockBoughts"
|
||||||
order="reserve DESC"
|
order="bought DESC"
|
||||||
:right-search="false"
|
|
||||||
:is-editable="true"
|
:is-editable="true"
|
||||||
@on-fetch="(data) => setFooter(data)"
|
@on-fetch="
|
||||||
:create="{
|
async (data) => {
|
||||||
urlCreate: 'StockBoughts',
|
setFooter(data);
|
||||||
title: t('entryStockBought.reserveSomeSpace'),
|
await fetchDataRef.fetch();
|
||||||
onDataSaved: () => tableRef.reload(),
|
}
|
||||||
formInitialData: {
|
"
|
||||||
workerFk: user.id,
|
|
||||||
dated: Date.vnNow(),
|
|
||||||
},
|
|
||||||
}"
|
|
||||||
:columns="columns"
|
:columns="columns"
|
||||||
:user-params="userParams"
|
|
||||||
:footer="true"
|
:footer="true"
|
||||||
table-height="80vh"
|
table-height="80vh"
|
||||||
auto-load
|
|
||||||
:column-search="false"
|
:column-search="false"
|
||||||
:without-header="true"
|
:without-header="true"
|
||||||
|
:user-params="{ dated: Date.vnNew() }"
|
||||||
|
auto-load
|
||||||
>
|
>
|
||||||
<template #column-workerFk="{ row }">
|
<template #column-workerFk="{ row }">
|
||||||
<span class="link" @click.stop>
|
<span class="link" @click.stop>
|
||||||
|
@ -278,9 +276,6 @@ function boughtStyle(bought, reserve) {
|
||||||
.column {
|
.column {
|
||||||
min-width: 35%;
|
min-width: 35%;
|
||||||
margin-top: 5%;
|
margin-top: 5%;
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
align-items: center;
|
|
||||||
}
|
}
|
||||||
.text-negative {
|
.text-negative {
|
||||||
color: $negative !important;
|
color: $negative !important;
|
||||||
|
|
|
@ -1,70 +0,0 @@
|
||||||
<script setup>
|
|
||||||
import { useI18n } from 'vue-i18n';
|
|
||||||
import { onMounted } from 'vue';
|
|
||||||
import { useStateStore } from 'stores/useStateStore';
|
|
||||||
|
|
||||||
import VnFilterPanel from 'src/components/ui/VnFilterPanel.vue';
|
|
||||||
import VnInputDate from 'src/components/common/VnInputDate.vue';
|
|
||||||
|
|
||||||
const { t } = useI18n();
|
|
||||||
const props = defineProps({
|
|
||||||
dataKey: {
|
|
||||||
type: String,
|
|
||||||
required: true,
|
|
||||||
},
|
|
||||||
});
|
|
||||||
const stateStore = useStateStore();
|
|
||||||
const emit = defineEmits(['set-user-params']);
|
|
||||||
const setUserParams = (params) => {
|
|
||||||
emit('set-user-params', params);
|
|
||||||
};
|
|
||||||
onMounted(async () => {
|
|
||||||
stateStore.rightDrawer = true;
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<template>
|
|
||||||
<VnFilterPanel
|
|
||||||
:data-key="props.dataKey"
|
|
||||||
:search-button="true"
|
|
||||||
search-url="StockBoughts"
|
|
||||||
@set-user-params="setUserParams"
|
|
||||||
>
|
|
||||||
<template #tags="{ tag, formatFn }">
|
|
||||||
<div class="q-gutter-x-xs">
|
|
||||||
<strong>{{ t(`params.${tag.label}`) }}: </strong>
|
|
||||||
<span>{{ formatFn(tag.value) }}</span>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
<template #body="{ params, searchFn }">
|
|
||||||
<QItem class="q-my-sm">
|
|
||||||
<QItemSection>
|
|
||||||
<VnInputDate
|
|
||||||
id="date"
|
|
||||||
v-model="params.dated"
|
|
||||||
@update:model-value="
|
|
||||||
(value) => {
|
|
||||||
params.dated = value;
|
|
||||||
setUserParams(params);
|
|
||||||
searchFn();
|
|
||||||
}
|
|
||||||
"
|
|
||||||
:label="t('Date')"
|
|
||||||
is-outlined
|
|
||||||
/>
|
|
||||||
</QItemSection>
|
|
||||||
</QItem>
|
|
||||||
</template>
|
|
||||||
</VnFilterPanel>
|
|
||||||
</template>
|
|
||||||
<i18n>
|
|
||||||
en:
|
|
||||||
params:
|
|
||||||
dated: Date
|
|
||||||
workerFk: Worker
|
|
||||||
es:
|
|
||||||
Date: Fecha
|
|
||||||
params:
|
|
||||||
dated: Fecha
|
|
||||||
workerFk: Trabajador
|
|
||||||
</i18n>
|
|
|
@ -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,17 @@ 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
|
||||||
|
supplierName: Supplier
|
||||||
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 +142,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 +157,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,13 @@ 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)
|
||||||
|
supplierName: Proveedor
|
||||||
entryFilter:
|
entryFilter:
|
||||||
params:
|
params:
|
||||||
isExcludedFromAvailable: Inventario
|
isExcludedFromAvailable: Excluido
|
||||||
isOrdered: Pedida
|
isOrdered: Pedida
|
||||||
isConfirmed: Confirmado
|
isConfirmed: Confirmado
|
||||||
isReceived: Recibida
|
isReceived: Recibida
|
||||||
|
@ -149,7 +135,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,10 +150,12 @@ 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
|
||||||
purchaseSpaces: Espacios de compra
|
purchaseSpaces: Camiones reservados
|
||||||
buyer: Comprador
|
buyer: Comprador
|
||||||
reserve: Reservado
|
reserve: Reservado
|
||||||
bought: Comprado
|
bought: Comprado
|
||||||
|
|
|
@ -121,25 +121,40 @@ function deleteFile(dmsFk) {
|
||||||
hide-selected
|
hide-selected
|
||||||
:is-clearable="false"
|
:is-clearable="false"
|
||||||
:required="true"
|
:required="true"
|
||||||
|
data-cy="invoiceInBasicDataSupplier"
|
||||||
/>
|
/>
|
||||||
<VnInput
|
<VnInput
|
||||||
clearable
|
clearable
|
||||||
clear-icon="close"
|
clear-icon="close"
|
||||||
:label="t('invoiceIn.supplierRef')"
|
:label="t('invoiceIn.supplierRef')"
|
||||||
v-model="data.supplierRef"
|
v-model="data.supplierRef"
|
||||||
|
data-cy="invoiceInBasicDataSupplierRef"
|
||||||
/>
|
/>
|
||||||
</VnRow>
|
</VnRow>
|
||||||
<VnRow>
|
<VnRow>
|
||||||
<VnInputDate :label="t('Expedition date')" v-model="data.issued" />
|
<VnInputDate
|
||||||
|
:label="t('Expedition date')"
|
||||||
|
v-model="data.issued"
|
||||||
|
data-cy="invoiceInBasicDataIssued"
|
||||||
|
/>
|
||||||
<VnInputDate
|
<VnInputDate
|
||||||
:label="t('Operation date')"
|
:label="t('Operation date')"
|
||||||
v-model="data.operated"
|
v-model="data.operated"
|
||||||
autofocus
|
autofocus
|
||||||
|
data-cy="invoiceInBasicDataOperated"
|
||||||
/>
|
/>
|
||||||
</VnRow>
|
</VnRow>
|
||||||
<VnRow>
|
<VnRow>
|
||||||
<VnInputDate :label="t('Entry date')" v-model="data.bookEntried" />
|
<VnInputDate
|
||||||
<VnInputDate :label="t('Accounted date')" v-model="data.booked" />
|
:label="t('Entry date')"
|
||||||
|
v-model="data.bookEntried"
|
||||||
|
data-cy="invoiceInBasicDatabookEntried"
|
||||||
|
/>
|
||||||
|
<VnInputDate
|
||||||
|
:label="t('Accounted date')"
|
||||||
|
v-model="data.booked"
|
||||||
|
data-cy="invoiceInBasicDataBooked"
|
||||||
|
/>
|
||||||
</VnRow>
|
</VnRow>
|
||||||
<VnRow>
|
<VnRow>
|
||||||
<VnSelect
|
<VnSelect
|
||||||
|
@ -149,7 +164,7 @@ function deleteFile(dmsFk) {
|
||||||
option-value="id"
|
option-value="id"
|
||||||
option-label="id"
|
option-label="id"
|
||||||
:filter-options="['id', 'name']"
|
:filter-options="['id', 'name']"
|
||||||
data-cy="UnDeductibleVatSelect"
|
data-cy="invoiceInBasicDataDeductibleExpenseFk"
|
||||||
>
|
>
|
||||||
<template #option="scope">
|
<template #option="scope">
|
||||||
<QItem v-bind="scope.itemProps">
|
<QItem v-bind="scope.itemProps">
|
||||||
|
@ -182,6 +197,7 @@ function deleteFile(dmsFk) {
|
||||||
padding="xs"
|
padding="xs"
|
||||||
round
|
round
|
||||||
@click="downloadFile(data.dmsFk)"
|
@click="downloadFile(data.dmsFk)"
|
||||||
|
data-cy="invoiceInBasicDataDmsDownload"
|
||||||
/>
|
/>
|
||||||
<QBtn
|
<QBtn
|
||||||
:class="{
|
:class="{
|
||||||
|
@ -197,6 +213,7 @@ function deleteFile(dmsFk) {
|
||||||
documentDialogRef.dms = data.dms;
|
documentDialogRef.dms = data.dms;
|
||||||
}
|
}
|
||||||
"
|
"
|
||||||
|
data-cy="invoiceInBasicDataDmsEdit"
|
||||||
>
|
>
|
||||||
<QTooltip>{{ t('Edit document') }}</QTooltip>
|
<QTooltip>{{ t('Edit document') }}</QTooltip>
|
||||||
</QBtn>
|
</QBtn>
|
||||||
|
@ -210,6 +227,7 @@ function deleteFile(dmsFk) {
|
||||||
padding="xs"
|
padding="xs"
|
||||||
round
|
round
|
||||||
@click="deleteFile(data.dmsFk)"
|
@click="deleteFile(data.dmsFk)"
|
||||||
|
data-cy="invoiceInBasicDataDmsDelete"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<QBtn
|
<QBtn
|
||||||
|
@ -224,7 +242,7 @@ function deleteFile(dmsFk) {
|
||||||
delete documentDialogRef.dms;
|
delete documentDialogRef.dms;
|
||||||
}
|
}
|
||||||
"
|
"
|
||||||
data-cy="dms-create"
|
data-cy="invoiceInBasicDataDmsAdd"
|
||||||
>
|
>
|
||||||
<QTooltip>{{ t('Create document') }}</QTooltip>
|
<QTooltip>{{ t('Create document') }}</QTooltip>
|
||||||
</QBtn>
|
</QBtn>
|
||||||
|
@ -237,9 +255,9 @@ function deleteFile(dmsFk) {
|
||||||
:label="t('Currency')"
|
:label="t('Currency')"
|
||||||
v-model="data.currencyFk"
|
v-model="data.currencyFk"
|
||||||
:options="currencies"
|
:options="currencies"
|
||||||
option-value="id"
|
|
||||||
option-label="code"
|
option-label="code"
|
||||||
sort-by="id"
|
sort-by="id"
|
||||||
|
data-cy="invoiceInBasicDataCurrencyFk"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<VnSelect
|
<VnSelect
|
||||||
|
@ -249,8 +267,8 @@ function deleteFile(dmsFk) {
|
||||||
:label="t('Company')"
|
:label="t('Company')"
|
||||||
v-model="data.companyFk"
|
v-model="data.companyFk"
|
||||||
:options="companies"
|
:options="companies"
|
||||||
option-value="id"
|
|
||||||
option-label="code"
|
option-label="code"
|
||||||
|
data-cy="invoiceInBasicDataCompanyFk"
|
||||||
/>
|
/>
|
||||||
</VnRow>
|
</VnRow>
|
||||||
<VnRow>
|
<VnRow>
|
||||||
|
@ -260,6 +278,7 @@ function deleteFile(dmsFk) {
|
||||||
:options="sageWithholdings"
|
:options="sageWithholdings"
|
||||||
option-value="id"
|
option-value="id"
|
||||||
option-label="withholding"
|
option-label="withholding"
|
||||||
|
data-cy="invoiceInBasicDataWithholdingSageFk"
|
||||||
/>
|
/>
|
||||||
</VnRow>
|
</VnRow>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
@ -1,22 +1,16 @@
|
||||||
<script setup>
|
<script setup>
|
||||||
import { ref, computed, capitalize } from 'vue';
|
import { ref, computed, capitalize } from 'vue';
|
||||||
import { useRoute } from 'vue-router';
|
|
||||||
import { useI18n } from 'vue-i18n';
|
import { useI18n } from 'vue-i18n';
|
||||||
import { useArrayData } from 'src/composables/useArrayData';
|
import { useArrayData } from 'src/composables/useArrayData';
|
||||||
import CrudModel from 'src/components/CrudModel.vue';
|
import CrudModel from 'src/components/CrudModel.vue';
|
||||||
import FetchData from 'src/components/FetchData.vue';
|
import FetchData from 'src/components/FetchData.vue';
|
||||||
import VnSelect from 'src/components/common/VnSelect.vue';
|
import VnSelect from 'src/components/common/VnSelect.vue';
|
||||||
|
|
||||||
const route = useRoute();
|
|
||||||
const { t } = useI18n();
|
const { t } = useI18n();
|
||||||
|
|
||||||
const arrayData = useArrayData();
|
const arrayData = useArrayData();
|
||||||
const invoiceIn = computed(() => arrayData.store.data);
|
const invoiceIn = computed(() => arrayData.store.data);
|
||||||
const invoiceInCorrectionRef = ref();
|
const invoiceInCorrectionRef = ref();
|
||||||
const filter = {
|
|
||||||
include: { relation: 'invoiceIn' },
|
|
||||||
where: { correctingFk: route.params.id },
|
|
||||||
};
|
|
||||||
const columns = computed(() => [
|
const columns = computed(() => [
|
||||||
{
|
{
|
||||||
name: 'origin',
|
name: 'origin',
|
||||||
|
@ -92,7 +86,8 @@ const requiredFieldRule = (val) => val || t('globals.requiredField');
|
||||||
v-if="invoiceIn"
|
v-if="invoiceIn"
|
||||||
data-key="InvoiceInCorrection"
|
data-key="InvoiceInCorrection"
|
||||||
url="InvoiceInCorrections"
|
url="InvoiceInCorrections"
|
||||||
:filter="filter"
|
:user-filter="{ include: { relation: 'invoiceIn' } }"
|
||||||
|
:filter="{ where: { correctingFk: $route.params.id } }"
|
||||||
auto-load
|
auto-load
|
||||||
primary-key="correctingFk"
|
primary-key="correctingFk"
|
||||||
:default-remove="false"
|
:default-remove="false"
|
||||||
|
@ -115,6 +110,7 @@ const requiredFieldRule = (val) => val || t('globals.requiredField');
|
||||||
:option-label="col.optionLabel"
|
:option-label="col.optionLabel"
|
||||||
:disable="row.invoiceIn.isBooked"
|
:disable="row.invoiceIn.isBooked"
|
||||||
:filter-options="['description']"
|
:filter-options="['description']"
|
||||||
|
data-cy="invoiceInCorrective_type"
|
||||||
>
|
>
|
||||||
<template #option="{ opt, itemProps }">
|
<template #option="{ opt, itemProps }">
|
||||||
<QItem v-bind="itemProps">
|
<QItem v-bind="itemProps">
|
||||||
|
@ -137,6 +133,7 @@ const requiredFieldRule = (val) => val || t('globals.requiredField');
|
||||||
:rules="[requiredFieldRule]"
|
:rules="[requiredFieldRule]"
|
||||||
:filter-options="['code', 'description']"
|
:filter-options="['code', 'description']"
|
||||||
:disable="row.invoiceIn.isBooked"
|
:disable="row.invoiceIn.isBooked"
|
||||||
|
data-cy="invoiceInCorrective_class"
|
||||||
>
|
>
|
||||||
<template #option="{ opt, itemProps }">
|
<template #option="{ opt, itemProps }">
|
||||||
<QItem v-bind="itemProps">
|
<QItem v-bind="itemProps">
|
||||||
|
@ -161,6 +158,7 @@ const requiredFieldRule = (val) => val || t('globals.requiredField');
|
||||||
:option-label="col.optionLabel"
|
:option-label="col.optionLabel"
|
||||||
:rules="[requiredFieldRule]"
|
:rules="[requiredFieldRule]"
|
||||||
:disable="row.invoiceIn.isBooked"
|
:disable="row.invoiceIn.isBooked"
|
||||||
|
data-cy="invoiceInCorrective_reason"
|
||||||
/>
|
/>
|
||||||
</QTd>
|
</QTd>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
@ -17,10 +17,6 @@ const { t } = useI18n();
|
||||||
const cardDescriptorRef = ref();
|
const cardDescriptorRef = ref();
|
||||||
const entityId = computed(() => $props.id || +currentRoute.value.params.id);
|
const entityId = computed(() => $props.id || +currentRoute.value.params.id);
|
||||||
const totalAmount = ref();
|
const totalAmount = ref();
|
||||||
const config = ref();
|
|
||||||
const cplusRectificationTypes = ref([]);
|
|
||||||
const siiTypeInvoiceIns = ref([]);
|
|
||||||
const invoiceCorrectionTypes = ref([]);
|
|
||||||
const invoiceInCorrection = reactive({ correcting: [], corrected: null });
|
const invoiceInCorrection = reactive({ correcting: [], corrected: null });
|
||||||
const routes = reactive({
|
const routes = reactive({
|
||||||
getSupplier: (id) => {
|
getSupplier: (id) => {
|
||||||
|
@ -30,7 +26,7 @@ const routes = reactive({
|
||||||
return {
|
return {
|
||||||
name: 'InvoiceInList',
|
name: 'InvoiceInList',
|
||||||
query: {
|
query: {
|
||||||
params: JSON.stringify({ supplierFk: id }),
|
table: JSON.stringify({ supplierFk: id }),
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
@ -39,7 +35,7 @@ const routes = reactive({
|
||||||
return {
|
return {
|
||||||
name: 'InvoiceInList',
|
name: 'InvoiceInList',
|
||||||
query: {
|
query: {
|
||||||
params: JSON.stringify({ correctedFk: entityId.value }),
|
table: JSON.stringify({ correctedFk: entityId.value }),
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -108,7 +104,7 @@ async function setInvoiceCorrection(id) {
|
||||||
<VnLv :label="t('invoiceIn.list.amount')" :value="toCurrency(totalAmount)" />
|
<VnLv :label="t('invoiceIn.list.amount')" :value="toCurrency(totalAmount)" />
|
||||||
<VnLv :label="t('invoiceIn.list.supplier')">
|
<VnLv :label="t('invoiceIn.list.supplier')">
|
||||||
<template #value>
|
<template #value>
|
||||||
<span class="link">
|
<span class="link" data-cy="invoiceInDescriptor_supplier">
|
||||||
{{ entity?.supplier?.nickname }}
|
{{ entity?.supplier?.nickname }}
|
||||||
<SupplierDescriptorProxy :id="entity?.supplierFk" />
|
<SupplierDescriptorProxy :id="entity?.supplierFk" />
|
||||||
</span>
|
</span>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<script setup>
|
<script setup>
|
||||||
import { ref, computed, toRefs, reactive } from 'vue';
|
import { ref, computed, toRefs, reactive, onBeforeMount } from 'vue';
|
||||||
import { useRouter } from 'vue-router';
|
import { useRouter } from 'vue-router';
|
||||||
import { useI18n } from 'vue-i18n';
|
import { useI18n } from 'vue-i18n';
|
||||||
import { useQuasar } from 'quasar';
|
import { useQuasar } from 'quasar';
|
||||||
|
@ -111,10 +111,9 @@ async function cloneInvoice() {
|
||||||
}
|
}
|
||||||
|
|
||||||
const isAgricultural = () => {
|
const isAgricultural = () => {
|
||||||
if (!config.value) return false;
|
|
||||||
return (
|
return (
|
||||||
invoiceIn.value?.supplier?.sageFarmerWithholdingFk ===
|
invoiceIn.value?.supplier?.sageWithholdingFk ==
|
||||||
config?.value[0]?.sageWithholdingFk
|
config.value?.sageFarmerWithholdingFk
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
function showPdfInvoice() {
|
function showPdfInvoice() {
|
||||||
|
@ -153,9 +152,17 @@ const createInvoiceInCorrection = async () => {
|
||||||
);
|
);
|
||||||
push({ path: `/invoice-in/${correctingId}/summary` });
|
push({ path: `/invoice-in/${correctingId}/summary` });
|
||||||
};
|
};
|
||||||
</script>
|
|
||||||
|
|
||||||
|
onBeforeMount(async () => {
|
||||||
|
config.value = (
|
||||||
|
await axios.get('invoiceinConfigs/findOne', {
|
||||||
|
params: { fields: ['sageFarmerWithholdingFk'] },
|
||||||
|
})
|
||||||
|
).data;
|
||||||
|
});
|
||||||
|
</script>
|
||||||
<template>
|
<template>
|
||||||
|
<template v-if="config">
|
||||||
<FetchData
|
<FetchData
|
||||||
url="InvoiceCorrectionTypes"
|
url="InvoiceCorrectionTypes"
|
||||||
@on-fetch="(data) => (invoiceCorrectionTypes = data)"
|
@on-fetch="(data) => (invoiceCorrectionTypes = data)"
|
||||||
|
@ -172,12 +179,6 @@ const createInvoiceInCorrection = async () => {
|
||||||
@on-fetch="(data) => (siiTypeInvoiceIns = data)"
|
@on-fetch="(data) => (siiTypeInvoiceIns = data)"
|
||||||
auto-load
|
auto-load
|
||||||
/>
|
/>
|
||||||
<FetchData
|
|
||||||
url="InvoiceInConfigs"
|
|
||||||
:where="{ fields: ['sageWithholdingFk'] }"
|
|
||||||
auto-load
|
|
||||||
@on-fetch="(data) => (config = data)"
|
|
||||||
/>
|
|
||||||
<InvoiceInToBook>
|
<InvoiceInToBook>
|
||||||
<template #content="{ book }">
|
<template #content="{ book }">
|
||||||
<QItem
|
<QItem
|
||||||
|
@ -208,7 +209,12 @@ const createInvoiceInCorrection = async () => {
|
||||||
>
|
>
|
||||||
<QItemSection>{{ t('invoiceIn.descriptorMenu.deleteInvoice') }}</QItemSection>
|
<QItemSection>{{ t('invoiceIn.descriptorMenu.deleteInvoice') }}</QItemSection>
|
||||||
</QItem>
|
</QItem>
|
||||||
<QItem v-if="canEditProp('clone')" v-ripple clickable @click="triggerMenu('clone')">
|
<QItem
|
||||||
|
v-if="canEditProp('clone')"
|
||||||
|
v-ripple
|
||||||
|
clickable
|
||||||
|
@click="triggerMenu('clone')"
|
||||||
|
>
|
||||||
<QItemSection>{{ t('invoiceIn.descriptorMenu.cloneInvoice') }}</QItemSection>
|
<QItemSection>{{ t('invoiceIn.descriptorMenu.cloneInvoice') }}</QItemSection>
|
||||||
</QItem>
|
</QItem>
|
||||||
<QItem v-if="isAgricultural()" v-ripple clickable @click="triggerMenu('showPdf')">
|
<QItem v-if="isAgricultural()" v-ripple clickable @click="triggerMenu('showPdf')">
|
||||||
|
@ -232,11 +238,16 @@ const createInvoiceInCorrection = async () => {
|
||||||
>{{ t('invoiceIn.descriptorMenu.createCorrective') }}...</QItemSection
|
>{{ t('invoiceIn.descriptorMenu.createCorrective') }}...</QItemSection
|
||||||
>
|
>
|
||||||
</QItem>
|
</QItem>
|
||||||
<QItem v-if="invoice.dmsFk" v-ripple clickable @click="downloadFile(invoice.dmsFk)">
|
<QItem
|
||||||
|
v-if="invoice.dmsFk"
|
||||||
|
v-ripple
|
||||||
|
clickable
|
||||||
|
@click="downloadFile(invoice.dmsFk)"
|
||||||
|
>
|
||||||
<QItemSection>{{ t('components.smartCard.downloadFile') }}</QItemSection>
|
<QItemSection>{{ t('components.smartCard.downloadFile') }}</QItemSection>
|
||||||
</QItem>
|
</QItem>
|
||||||
<QDialog ref="correctionDialogRef">
|
<QDialog ref="correctionDialogRef">
|
||||||
<QCard>
|
<QCard data-cy="correctiveInvoiceDialog">
|
||||||
<QCardSection>
|
<QCardSection>
|
||||||
<QItem class="q-px-none">
|
<QItem class="q-px-none">
|
||||||
<span class="text-primary text-h6 full-width">
|
<span class="text-primary text-h6 full-width">
|
||||||
|
@ -260,6 +271,7 @@ const createInvoiceInCorrection = async () => {
|
||||||
option-value="id"
|
option-value="id"
|
||||||
option-label="code"
|
option-label="code"
|
||||||
:required="true"
|
:required="true"
|
||||||
|
data-cy="invoiceInDescriptorMenu_class"
|
||||||
/>
|
/>
|
||||||
</QItemSection>
|
</QItemSection>
|
||||||
<QItemSection>
|
<QItemSection>
|
||||||
|
@ -270,6 +282,7 @@ const createInvoiceInCorrection = async () => {
|
||||||
option-value="id"
|
option-value="id"
|
||||||
option-label="description"
|
option-label="description"
|
||||||
:required="true"
|
:required="true"
|
||||||
|
data-cy="invoiceInDescriptorMenu_type"
|
||||||
>
|
>
|
||||||
<template #option="{ itemProps, opt }">
|
<template #option="{ itemProps, opt }">
|
||||||
<QItem v-bind="itemProps">
|
<QItem v-bind="itemProps">
|
||||||
|
@ -291,24 +304,31 @@ const createInvoiceInCorrection = async () => {
|
||||||
option-value="id"
|
option-value="id"
|
||||||
option-label="description"
|
option-label="description"
|
||||||
:required="true"
|
:required="true"
|
||||||
|
data-cy="invoiceInDescriptorMenu_reason"
|
||||||
/>
|
/>
|
||||||
</QItemSection>
|
</QItemSection>
|
||||||
</QItem>
|
</QItem>
|
||||||
</QCardSection>
|
</QCardSection>
|
||||||
<QCardActions class="justify-end q-mr-sm">
|
<QCardActions class="justify-end q-mr-sm">
|
||||||
<QBtn flat :label="t('globals.close')" color="primary" v-close-popup />
|
<QBtn
|
||||||
|
flat
|
||||||
|
:label="t('globals.close')"
|
||||||
|
color="primary"
|
||||||
|
v-close-popup
|
||||||
|
/>
|
||||||
<QBtn
|
<QBtn
|
||||||
:label="t('globals.save')"
|
:label="t('globals.save')"
|
||||||
color="primary"
|
color="primary"
|
||||||
v-close-popup
|
v-close-popup
|
||||||
@click="createInvoiceInCorrection"
|
@click="createInvoiceInCorrection"
|
||||||
:disable="isNotFilled"
|
:disable="isNotFilled"
|
||||||
|
data-cy="saveCorrectiveInvoice"
|
||||||
/>
|
/>
|
||||||
</QCardActions>
|
</QCardActions>
|
||||||
</QCard>
|
</QCard>
|
||||||
</QDialog>
|
</QDialog>
|
||||||
</template>
|
</template>
|
||||||
|
</template>
|
||||||
<i18n>
|
<i18n>
|
||||||
en:
|
en:
|
||||||
isNotLinked: The entry {bookEntry} has been deleted with {accountingEntries} entries
|
isNotLinked: The entry {bookEntry} has been deleted with {accountingEntries} entries
|
||||||
|
|
|
@ -198,6 +198,7 @@ const getLink = (param) => `#/invoice-in/${entityId.value}/${param}`;
|
||||||
color="orange-11"
|
color="orange-11"
|
||||||
text-color="black"
|
text-color="black"
|
||||||
@click="book(entityId)"
|
@click="book(entityId)"
|
||||||
|
data-cy="invoiceInSummary_book"
|
||||||
/>
|
/>
|
||||||
</template>
|
</template>
|
||||||
</InvoiceIntoBook>
|
</InvoiceIntoBook>
|
||||||
|
@ -219,7 +220,7 @@ const getLink = (param) => `#/invoice-in/${entityId.value}/${param}`;
|
||||||
:value="entity.supplier?.name"
|
:value="entity.supplier?.name"
|
||||||
>
|
>
|
||||||
<template #value>
|
<template #value>
|
||||||
<span class="link">
|
<span class="link" data-cy="invoiceInSummary_supplier">
|
||||||
{{ entity.supplier?.name }}
|
{{ entity.supplier?.name }}
|
||||||
<SupplierDescriptorProxy :id="entity.supplierFk" />
|
<SupplierDescriptorProxy :id="entity.supplierFk" />
|
||||||
</span>
|
</span>
|
||||||
|
|
|
@ -202,6 +202,9 @@ function setCursor(ref) {
|
||||||
:option-label="col.optionLabel"
|
:option-label="col.optionLabel"
|
||||||
:filter-options="['id', 'name']"
|
:filter-options="['id', 'name']"
|
||||||
:tooltip="t('Create a new expense')"
|
:tooltip="t('Create a new expense')"
|
||||||
|
:acls="[
|
||||||
|
{ model: 'Expense', props: '*', accessType: 'WRITE' },
|
||||||
|
]"
|
||||||
@keydown.tab.prevent="
|
@keydown.tab.prevent="
|
||||||
autocompleteExpense(
|
autocompleteExpense(
|
||||||
$event,
|
$event,
|
||||||
|
|
|
@ -7,6 +7,7 @@ import VnInputNumber from 'src/components/common/VnInputNumber.vue';
|
||||||
import { dateRange } from 'src/filters';
|
import { dateRange } from 'src/filters';
|
||||||
import { date } from 'quasar';
|
import { date } from 'quasar';
|
||||||
import VnSelectSupplier from 'src/components/common/VnSelectSupplier.vue';
|
import VnSelectSupplier from 'src/components/common/VnSelectSupplier.vue';
|
||||||
|
import VnCheckbox from 'src/components/common/VnCheckbox.vue';
|
||||||
|
|
||||||
defineProps({ dataKey: { type: String, required: true } });
|
defineProps({ dataKey: { type: String, required: true } });
|
||||||
const dateFormat = 'YYYY-MM-DDTHH:mm:ss.SSSZ';
|
const dateFormat = 'YYYY-MM-DDTHH:mm:ss.SSSZ';
|
||||||
|
@ -147,13 +148,13 @@ function handleDaysAgo(params, daysAgo) {
|
||||||
</QItem>
|
</QItem>
|
||||||
<QItem>
|
<QItem>
|
||||||
<QItemSection>
|
<QItemSection>
|
||||||
<QCheckbox
|
<VnCheckbox
|
||||||
:label="$t('invoiceIn.isBooked')"
|
:label="$t('invoiceIn.isBooked')"
|
||||||
v-model="params.isBooked"
|
v-model="params.isBooked"
|
||||||
@update:model-value="searchFn()"
|
@update:model-value="searchFn()"
|
||||||
toggle-indeterminate
|
toggle-indeterminate
|
||||||
/>
|
/>
|
||||||
<QCheckbox
|
<VnCheckbox
|
||||||
:label="getLocale('params.correctingFk')"
|
:label="getLocale('params.correctingFk')"
|
||||||
v-model="params.correctingFk"
|
v-model="params.correctingFk"
|
||||||
@update:model-value="searchFn()"
|
@update:model-value="searchFn()"
|
||||||
|
|
|
@ -4,7 +4,7 @@ import { useQuasar } from 'quasar';
|
||||||
import { useI18n } from 'vue-i18n';
|
import { useI18n } from 'vue-i18n';
|
||||||
import VnConfirm from 'src/components/ui/VnConfirm.vue';
|
import VnConfirm from 'src/components/ui/VnConfirm.vue';
|
||||||
import { useArrayData } from 'src/composables/useArrayData';
|
import { useArrayData } from 'src/composables/useArrayData';
|
||||||
import qs from 'qs';
|
|
||||||
const { notify, dialog } = useQuasar();
|
const { notify, dialog } = useQuasar();
|
||||||
const { t } = useI18n();
|
const { t } = useI18n();
|
||||||
|
|
||||||
|
@ -61,17 +61,15 @@ async function checkToBook(id) {
|
||||||
}
|
}
|
||||||
|
|
||||||
async function toBook(id) {
|
async function toBook(id) {
|
||||||
let type = 'positive';
|
let err = false;
|
||||||
let message = t('globals.dataSaved');
|
|
||||||
|
|
||||||
try {
|
try {
|
||||||
await axios.post(`InvoiceIns/${id}/toBook`);
|
await axios.post(`InvoiceIns/${id}/toBook`);
|
||||||
store.data.isBooked = true;
|
store.data.isBooked = true;
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
type = 'negative';
|
err = true;
|
||||||
message = t('It was not able to book the invoice');
|
throw e;
|
||||||
} finally {
|
} finally {
|
||||||
notify({ type, message });
|
if (!err) notify({ type: 'positive', message: t('globals.dataSaved') });
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -30,6 +30,7 @@ const entityId = computed(() => {
|
||||||
:filter="filter"
|
:filter="filter"
|
||||||
title="code"
|
title="code"
|
||||||
data-key="ItemType"
|
data-key="ItemType"
|
||||||
|
:to-module="{ name: 'ItemTypeList' }"
|
||||||
>
|
>
|
||||||
<template #body="{ entity }">
|
<template #body="{ entity }">
|
||||||
<VnLv :label="$t('itemType.shared.code')" :value="entity.code" />
|
<VnLv :label="$t('itemType.shared.code')" :value="entity.code" />
|
||||||
|
|
|
@ -17,7 +17,7 @@ const props = defineProps({
|
||||||
const { t } = useI18n();
|
const { t } = useI18n();
|
||||||
const route = useRoute();
|
const route = useRoute();
|
||||||
const entityId = computed(() => props.id || route.params.id);
|
const entityId = computed(() => props.id || route.params.id);
|
||||||
const { store } = useArrayData('Parking');
|
const { store } = useArrayData();
|
||||||
const card = computed(() => store.data);
|
const card = computed(() => store.data);
|
||||||
</script>
|
</script>
|
||||||
<template>
|
<template>
|
||||||
|
@ -26,6 +26,7 @@ const card = computed(() => store.data);
|
||||||
:url="`Agencies/${entityId}`"
|
:url="`Agencies/${entityId}`"
|
||||||
:title="card?.name"
|
:title="card?.name"
|
||||||
:subtitle="props.id"
|
:subtitle="props.id"
|
||||||
|
:to-module="{ name: 'RouteAgency' }"
|
||||||
>
|
>
|
||||||
<template #body="{ entity: agency }">
|
<template #body="{ entity: agency }">
|
||||||
<VnLv :label="t('globals.name')" :value="agency.name" />
|
<VnLv :label="t('globals.name')" :value="agency.name" />
|
||||||
|
|
|
@ -2,11 +2,11 @@
|
||||||
import { ref, computed, onMounted } from 'vue';
|
import { ref, computed, onMounted } from 'vue';
|
||||||
import { useRoute } from 'vue-router';
|
import { useRoute } from 'vue-router';
|
||||||
import CardDescriptor from 'components/ui/CardDescriptor.vue';
|
import CardDescriptor from 'components/ui/CardDescriptor.vue';
|
||||||
|
import useCardDescription from 'composables/useCardDescription';
|
||||||
import VnLv from 'components/ui/VnLv.vue';
|
import VnLv from 'components/ui/VnLv.vue';
|
||||||
import { dashIfEmpty, toDate } from 'src/filters';
|
import { dashIfEmpty, toDate } from 'src/filters';
|
||||||
import RouteDescriptorMenu from 'pages/Route/Card/RouteDescriptorMenu.vue';
|
import RouteDescriptorMenu from 'pages/Route/Card/RouteDescriptorMenu.vue';
|
||||||
import filter from './RouteFilter.js';
|
import filter from './RouteFilter.js';
|
||||||
import useCardDescription from 'src/composables/useCardDescription';
|
|
||||||
import axios from 'axios';
|
import axios from 'axios';
|
||||||
|
|
||||||
const $props = defineProps({
|
const $props = defineProps({
|
||||||
|
|
|
@ -35,6 +35,7 @@ const entityId = computed(() => {
|
||||||
:filter="filter"
|
:filter="filter"
|
||||||
data-key="Roadmap"
|
data-key="Roadmap"
|
||||||
:summary="summary"
|
:summary="summary"
|
||||||
|
:to-module="{ name: 'RouteRoadmap' }"
|
||||||
>
|
>
|
||||||
<template #body="{ entity }">
|
<template #body="{ entity }">
|
||||||
<VnLv :label="t('Roadmap')" :value="entity?.name" />
|
<VnLv :label="t('Roadmap')" :value="entity?.name" />
|
||||||
|
|
|
@ -332,6 +332,7 @@ const openTicketsDialog = (id) => {
|
||||||
<QBtn
|
<QBtn
|
||||||
icon="vn:clone"
|
icon="vn:clone"
|
||||||
color="primary"
|
color="primary"
|
||||||
|
flat
|
||||||
class="q-mr-sm"
|
class="q-mr-sm"
|
||||||
:disable="!selectedRows?.length"
|
:disable="!selectedRows?.length"
|
||||||
@click="confirmationDialog = true"
|
@click="confirmationDialog = true"
|
||||||
|
@ -341,6 +342,7 @@ const openTicketsDialog = (id) => {
|
||||||
<QBtn
|
<QBtn
|
||||||
icon="cloud_download"
|
icon="cloud_download"
|
||||||
color="primary"
|
color="primary"
|
||||||
|
flat
|
||||||
class="q-mr-sm"
|
class="q-mr-sm"
|
||||||
:disable="!selectedRows?.length"
|
:disable="!selectedRows?.length"
|
||||||
@click="showRouteReport"
|
@click="showRouteReport"
|
||||||
|
@ -352,6 +354,7 @@ const openTicketsDialog = (id) => {
|
||||||
<QBtn
|
<QBtn
|
||||||
icon="check"
|
icon="check"
|
||||||
color="primary"
|
color="primary"
|
||||||
|
flat
|
||||||
class="q-mr-sm"
|
class="q-mr-sm"
|
||||||
:disable="!selectedRows?.length"
|
:disable="!selectedRows?.length"
|
||||||
@click="markAsServed()"
|
@click="markAsServed()"
|
||||||
|
|
|
@ -3,6 +3,7 @@ import { computed, ref, markRaw } from 'vue';
|
||||||
import { useI18n } from 'vue-i18n';
|
import { useI18n } from 'vue-i18n';
|
||||||
import { useSummaryDialog } from 'src/composables/useSummaryDialog';
|
import { useSummaryDialog } from 'src/composables/useSummaryDialog';
|
||||||
import { toHour } from 'src/filters';
|
import { toHour } from 'src/filters';
|
||||||
|
import { useRouter } from 'vue-router';
|
||||||
import RouteSummary from 'pages/Route/Card/RouteSummary.vue';
|
import RouteSummary from 'pages/Route/Card/RouteSummary.vue';
|
||||||
import RouteFilter from 'pages/Route/Card/RouteFilter.vue';
|
import RouteFilter from 'pages/Route/Card/RouteFilter.vue';
|
||||||
import VnTable from 'components/VnTable/VnTable.vue';
|
import VnTable from 'components/VnTable/VnTable.vue';
|
||||||
|
@ -11,9 +12,9 @@ import AgencyDescriptorProxy from 'src/pages/Route/Agency/Card/AgencyDescriptorP
|
||||||
import VehicleDescriptorProxy from 'src/pages/Route/Vehicle/Card/VehicleDescriptorProxy.vue';
|
import VehicleDescriptorProxy from 'src/pages/Route/Vehicle/Card/VehicleDescriptorProxy.vue';
|
||||||
import VnSection from 'src/components/common/VnSection.vue';
|
import VnSection from 'src/components/common/VnSection.vue';
|
||||||
import VnSelectWorker from 'src/components/common/VnSelectWorker.vue';
|
import VnSelectWorker from 'src/components/common/VnSelectWorker.vue';
|
||||||
import RouteTickets from './RouteTickets.vue';
|
|
||||||
|
|
||||||
const { t } = useI18n();
|
const { t } = useI18n();
|
||||||
|
const router = useRouter();
|
||||||
const { viewSummary } = useSummaryDialog();
|
const { viewSummary } = useSummaryDialog();
|
||||||
const tableRef = ref([]);
|
const tableRef = ref([]);
|
||||||
const dataKey = 'RouteList';
|
const dataKey = 'RouteList';
|
||||||
|
@ -29,8 +30,10 @@ const routeFilter = {
|
||||||
};
|
};
|
||||||
|
|
||||||
function redirectToTickets(id) {
|
function redirectToTickets(id) {
|
||||||
const url = `#/route/${id}/tickets`;
|
router.push({
|
||||||
window.open(url, '_blank');
|
name: 'RouteTickets',
|
||||||
|
params: { id },
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
const columns = computed(() => [
|
const columns = computed(() => [
|
||||||
|
@ -46,26 +49,18 @@ const columns = computed(() => [
|
||||||
width: '25px',
|
width: '25px',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
align: 'left',
|
||||||
name: 'workerFk',
|
name: 'workerFk',
|
||||||
label: t('gloabls.worker'),
|
label: t('globals.worker'),
|
||||||
component: markRaw(VnSelectWorker),
|
component: markRaw(VnSelectWorker),
|
||||||
create: true,
|
create: true,
|
||||||
format: (row, dashIfEmpty) => dashIfEmpty(row.travelRef),
|
format: (row, dashIfEmpty) => dashIfEmpty(row.travelRef),
|
||||||
columnFilter: false,
|
columnFilter: false,
|
||||||
|
cardVisible: true,
|
||||||
width: '100px',
|
width: '100px',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'workerFk',
|
|
||||||
label: t('globals.worker'),
|
|
||||||
visible: false,
|
|
||||||
cardVisible: true,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: 'agencyName',
|
|
||||||
label: t('globals.agency'),
|
label: t('globals.agency'),
|
||||||
},
|
|
||||||
{
|
|
||||||
label: t('globals.Agency'),
|
|
||||||
name: 'agencyModeFk',
|
name: 'agencyModeFk',
|
||||||
component: 'select',
|
component: 'select',
|
||||||
attrs: {
|
attrs: {
|
||||||
|
@ -77,23 +72,13 @@ const columns = computed(() => [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
create: true,
|
create: true,
|
||||||
columnFilter: false,
|
columnFilter: true,
|
||||||
visible: false,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: 'agencyName',
|
|
||||||
label: t('globals.agency'),
|
|
||||||
visible: false,
|
|
||||||
cardVisible: true,
|
cardVisible: true,
|
||||||
},
|
visible: true,
|
||||||
{
|
|
||||||
name: 'vehiclePlateNumber',
|
|
||||||
label: t('globals.vehicle'),
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'vehicleFk',
|
name: 'vehicleFk',
|
||||||
label: t('globals.Vehicle'),
|
label: t('globals.vehicle'),
|
||||||
cardVisible: true,
|
|
||||||
component: 'select',
|
component: 'select',
|
||||||
attrs: {
|
attrs: {
|
||||||
url: 'vehicles',
|
url: 'vehicles',
|
||||||
|
@ -106,8 +91,9 @@ const columns = computed(() => [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
create: true,
|
create: true,
|
||||||
columnFilter: false,
|
columnFilter: true,
|
||||||
visible: false,
|
cardVisible: true,
|
||||||
|
visible: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
align: 'center',
|
align: 'center',
|
||||||
|
@ -181,8 +167,8 @@ const columns = computed(() => [
|
||||||
<VnTable
|
<VnTable
|
||||||
:with-filters="false"
|
:with-filters="false"
|
||||||
:data-key
|
:data-key
|
||||||
:columns="columns"
|
|
||||||
ref="tableRef"
|
ref="tableRef"
|
||||||
|
:columns="columns"
|
||||||
:right-search="false"
|
:right-search="false"
|
||||||
redirect="route"
|
redirect="route"
|
||||||
:create="{
|
:create="{
|
||||||
|
@ -199,7 +185,7 @@ const columns = computed(() => [
|
||||||
<WorkerDescriptorProxy :id="row?.workerFk" v-if="row?.workerFk" />
|
<WorkerDescriptorProxy :id="row?.workerFk" v-if="row?.workerFk" />
|
||||||
</span>
|
</span>
|
||||||
</template>
|
</template>
|
||||||
<template #column-agencyName="{ row }">
|
<template #column-agencyModeFk="{ row }">
|
||||||
<span class="link" @click.stop>
|
<span class="link" @click.stop>
|
||||||
{{ row?.agencyName }}
|
{{ row?.agencyName }}
|
||||||
<AgencyDescriptorProxy
|
<AgencyDescriptorProxy
|
||||||
|
@ -208,7 +194,7 @@ const columns = computed(() => [
|
||||||
/>
|
/>
|
||||||
</span>
|
</span>
|
||||||
</template>
|
</template>
|
||||||
<template #column-vehiclePlateNumber="{ row }">
|
<template #column-vehicleFk="{ row }">
|
||||||
<span class="link" @click.stop>
|
<span class="link" @click.stop>
|
||||||
{{ row?.vehiclePlateNumber }}
|
{{ row?.vehiclePlateNumber }}
|
||||||
<VehicleDescriptorProxy
|
<VehicleDescriptorProxy
|
||||||
|
|
|
@ -30,16 +30,16 @@ const columns = computed(() => [
|
||||||
align: 'center',
|
align: 'center',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'street',
|
name: 'client',
|
||||||
label: t('Street'),
|
label: t('Client'),
|
||||||
field: (row) => row?.street,
|
field: (row) => row?.nickname,
|
||||||
sortable: false,
|
sortable: false,
|
||||||
align: 'left',
|
align: 'left',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'client',
|
name: 'street',
|
||||||
label: t('Client'),
|
label: t('Street'),
|
||||||
field: (row) => row?.nickname,
|
field: (row) => row?.street,
|
||||||
sortable: false,
|
sortable: false,
|
||||||
align: 'left',
|
align: 'left',
|
||||||
},
|
},
|
||||||
|
@ -199,12 +199,22 @@ const confirmRemove = (ticket) => {
|
||||||
const openSmsDialog = async () => {
|
const openSmsDialog = async () => {
|
||||||
const clientsId = [];
|
const clientsId = [];
|
||||||
const clientsPhone = [];
|
const clientsPhone = [];
|
||||||
|
const clientWithoutPhone = [];
|
||||||
for (let ticket of selectedRows.value) {
|
for (let ticket of selectedRows.value) {
|
||||||
clientsId.push(ticket?.clientFk);
|
clientsId.push(ticket?.clientFk);
|
||||||
const { data: client } = await axios.get(`Clients/${ticket?.clientFk}`);
|
const { data: client } = await axios.get(`Clients/${ticket?.clientFk}`);
|
||||||
|
if (!client.phone) {
|
||||||
|
clientWithoutPhone.push(ticket?.clientFk);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
clientsPhone.push(client.phone);
|
clientsPhone.push(client.phone);
|
||||||
}
|
}
|
||||||
|
if (clientWithoutPhone.length) {
|
||||||
|
quasar.notify({
|
||||||
|
type: 'warning',
|
||||||
|
message: t('components.VnNotes.clientWithoutPhone', { clientWithoutPhone }),
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
quasar.dialog({
|
quasar.dialog({
|
||||||
component: SendSmsDialog,
|
component: SendSmsDialog,
|
||||||
|
@ -319,7 +329,7 @@ const openSmsDialog = async () => {
|
||||||
selection="multiple"
|
selection="multiple"
|
||||||
>
|
>
|
||||||
<template #body-cell-order="{ row }">
|
<template #body-cell-order="{ row }">
|
||||||
<QTd class="order-field">
|
<QTd class="order-field" auto-width>
|
||||||
<div class="flex no-wrap items-center">
|
<div class="flex no-wrap items-center">
|
||||||
<QIcon
|
<QIcon
|
||||||
name="low_priority"
|
name="low_priority"
|
||||||
|
@ -341,7 +351,7 @@ const openSmsDialog = async () => {
|
||||||
</QTd>
|
</QTd>
|
||||||
</template>
|
</template>
|
||||||
<template #body-cell-city="{ value, row }">
|
<template #body-cell-city="{ value, row }">
|
||||||
<QTd auto-width>
|
<QTd>
|
||||||
<span class="link" @click="goToBuscaman(row)">
|
<span class="link" @click="goToBuscaman(row)">
|
||||||
{{ value }}
|
{{ value }}
|
||||||
<QTooltip>{{ t('Open buscaman') }}</QTooltip>
|
<QTooltip>{{ t('Open buscaman') }}</QTooltip>
|
||||||
|
@ -349,7 +359,7 @@ const openSmsDialog = async () => {
|
||||||
</QTd>
|
</QTd>
|
||||||
</template>
|
</template>
|
||||||
<template #body-cell-client="{ value, row }">
|
<template #body-cell-client="{ value, row }">
|
||||||
<QTd auto-width>
|
<QTd>
|
||||||
<span class="link">
|
<span class="link">
|
||||||
{{ value }}
|
{{ value }}
|
||||||
<CustomerDescriptorProxy :id="row?.clientFk" />
|
<CustomerDescriptorProxy :id="row?.clientFk" />
|
||||||
|
|
|
@ -24,6 +24,7 @@ const entityId = computed(() => props.id || route.params.id);
|
||||||
:url="`Vehicles/${entityId}`"
|
:url="`Vehicles/${entityId}`"
|
||||||
data-key="Vehicle"
|
data-key="Vehicle"
|
||||||
title="numberPlate"
|
title="numberPlate"
|
||||||
|
:to-module="{ name: 'RouteVehicle' }"
|
||||||
>
|
>
|
||||||
<template #menu="{ entity }">
|
<template #menu="{ entity }">
|
||||||
<QItem
|
<QItem
|
||||||
|
|
|
@ -21,7 +21,7 @@ const entityId = computed(() => props.id || route.params.id);
|
||||||
:url="`Parkings/${entityId}`"
|
:url="`Parkings/${entityId}`"
|
||||||
title="code"
|
title="code"
|
||||||
:filter="filter"
|
:filter="filter"
|
||||||
:to-module="{ name: 'ParkingList' }"
|
:to-module="{ name: 'ParkingMain' }"
|
||||||
>
|
>
|
||||||
<template #body="{ entity }">
|
<template #body="{ entity }">
|
||||||
<VnLv :label="$t('globals.code')" :value="entity.code" />
|
<VnLv :label="$t('globals.code')" :value="entity.code" />
|
||||||
|
|
|
@ -32,7 +32,7 @@ onMounted(() => {
|
||||||
|
|
||||||
watch(
|
watch(
|
||||||
() => props.ticket,
|
() => props.ticket,
|
||||||
() => restoreTicket
|
() => restoreTicket,
|
||||||
);
|
);
|
||||||
|
|
||||||
const { push, currentRoute } = useRouter();
|
const { push, currentRoute } = useRouter();
|
||||||
|
@ -66,10 +66,10 @@ const onClientSelected = async(clientId) =>{
|
||||||
|
|
||||||
const onAddressSelected = (addressId) => {
|
const onAddressSelected = (addressId) => {
|
||||||
address.value = addressId;
|
address.value = addressId;
|
||||||
}
|
};
|
||||||
|
|
||||||
const fetchClient = async () => {
|
const fetchClient = async () => {
|
||||||
const response = await getClient(client.value)
|
const response = await getClient(client.value);
|
||||||
if (!response) return;
|
if (!response) return;
|
||||||
const [retrievedClient] = response.data;
|
const [retrievedClient] = response.data;
|
||||||
selectedClient.value = retrievedClient;
|
selectedClient.value = retrievedClient;
|
||||||
|
@ -151,7 +151,7 @@ function openDeliveryNote(type = 'deliveryNote', documentType = 'pdf') {
|
||||||
recipientId: ticket.value.clientFk,
|
recipientId: ticket.value.clientFk,
|
||||||
type: type,
|
type: type,
|
||||||
},
|
},
|
||||||
'_blank'
|
'_blank',
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -339,7 +339,7 @@ async function changeShippedHour(time) {
|
||||||
|
|
||||||
const { data } = await axios.post(
|
const { data } = await axios.post(
|
||||||
`Tickets/${ticketId.value}/updateEditableTicket`,
|
`Tickets/${ticketId.value}/updateEditableTicket`,
|
||||||
params
|
params,
|
||||||
);
|
);
|
||||||
|
|
||||||
if (data) window.location.reload();
|
if (data) window.location.reload();
|
||||||
|
@ -405,8 +405,7 @@ async function uploadDocuware(force) {
|
||||||
uploadDocuware(true);
|
uploadDocuware(true);
|
||||||
});
|
});
|
||||||
|
|
||||||
const { data } = await axios.post(`Docuwares/upload`, {
|
const { data } = await axios.post(`Docuwares/upload-delivery-note`, {
|
||||||
fileCabinet: 'deliveryNote',
|
|
||||||
ticketIds: [parseInt(ticketId.value)],
|
ticketIds: [parseInt(ticketId.value)],
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
@ -340,25 +340,20 @@ async function makeInvoice(ticket) {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
async function sendDocuware(ticket) {
|
async function sendDocuware(tickets) {
|
||||||
try {
|
let ticketIds = tickets.map((item) => item.id);
|
||||||
let ticketIds = ticket.map((item) => item.id);
|
|
||||||
|
|
||||||
const { data } = await axios.post(`Docuwares/upload`, {
|
const { data } = await axios.post(`Docuwares/upload-delivery-note`, {
|
||||||
fileCabinet: 'deliveryNote',
|
|
||||||
ticketIds,
|
ticketIds,
|
||||||
});
|
});
|
||||||
|
|
||||||
for (let ticket of ticketIds) {
|
for (let ticket of tickets) {
|
||||||
ticket.stateFk = data.id;
|
ticket.stateFk = data.id;
|
||||||
ticket.state = data.name;
|
ticket.state = data.name;
|
||||||
ticket.alertLevel = data.alertLevel;
|
ticket.alertLevel = data.alertLevel;
|
||||||
ticket.alertLevelCode = data.code;
|
ticket.alertLevelCode = data.code;
|
||||||
}
|
}
|
||||||
notify('globals.dataSaved', 'positive');
|
notify('globals.dataSaved', 'positive');
|
||||||
} catch (err) {
|
|
||||||
console.err('err: ', err);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function openBalanceDialog(ticket) {
|
function openBalanceDialog(ticket) {
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
<script setup>
|
<script setup>
|
||||||
import { ref, nextTick } from 'vue';
|
import { ref, nextTick, onMounted } from 'vue';
|
||||||
|
import { useRoute } from 'vue-router';
|
||||||
import { useI18n } from 'vue-i18n';
|
import { useI18n } from 'vue-i18n';
|
||||||
import VnInputDate from 'src/components/common/VnInputDate.vue';
|
import VnInputDate from 'src/components/common/VnInputDate.vue';
|
||||||
import FetchData from 'components/FetchData.vue';
|
import FetchData from 'components/FetchData.vue';
|
||||||
|
@ -17,12 +18,12 @@ const maritalStatus = [
|
||||||
{ code: 'M', name: t('Married') },
|
{ code: 'M', name: t('Married') },
|
||||||
{ code: 'S', name: t('Single') },
|
{ code: 'S', name: t('Single') },
|
||||||
];
|
];
|
||||||
async function setAdvancedSummary(data) {
|
|
||||||
const advanced = (await useAdvancedSummary('Workers', data.id)) ?? {};
|
onMounted(async () => {
|
||||||
|
const advanced = await useAdvancedSummary('Workers', useRoute().params.id);
|
||||||
Object.assign(form.value.formData, advanced);
|
Object.assign(form.value.formData, advanced);
|
||||||
await nextTick();
|
nextTick(() => (form.value.hasChanges = false));
|
||||||
if (form.value) form.value.hasChanges = false;
|
});
|
||||||
}
|
|
||||||
</script>
|
</script>
|
||||||
<template>
|
<template>
|
||||||
<FetchData
|
<FetchData
|
||||||
|
@ -42,7 +43,6 @@ async function setAdvancedSummary(data) {
|
||||||
:url-update="`Workers/${$route.params.id}`"
|
:url-update="`Workers/${$route.params.id}`"
|
||||||
auto-load
|
auto-load
|
||||||
model="Worker"
|
model="Worker"
|
||||||
@on-fetch="setAdvancedSummary"
|
|
||||||
>
|
>
|
||||||
<template #form="{ data }">
|
<template #form="{ data }">
|
||||||
<VnRow>
|
<VnRow>
|
||||||
|
|
|
@ -39,6 +39,7 @@ onBeforeMount(async () => {
|
||||||
url="Workers/summary"
|
url="Workers/summary"
|
||||||
:user-filter="{ where: { id: entityId } }"
|
:user-filter="{ where: { id: entityId } }"
|
||||||
data-key="Worker"
|
data-key="Worker"
|
||||||
|
module-name="Worker"
|
||||||
>
|
>
|
||||||
<template #header="{ entity }">
|
<template #header="{ entity }">
|
||||||
<div>{{ entity.id }} - {{ entity.firstName }} {{ entity.lastName }}</div>
|
<div>{{ entity.id }} - {{ entity.firstName }} {{ entity.lastName }}</div>
|
||||||
|
|
|
@ -16,6 +16,7 @@ const $props = defineProps({
|
||||||
v-if="$props.id"
|
v-if="$props.id"
|
||||||
:id="$props.id"
|
:id="$props.id"
|
||||||
:summary="DepartmentSummary"
|
:summary="DepartmentSummary"
|
||||||
|
data-key="DepartmentDescriptorProxy"
|
||||||
/>
|
/>
|
||||||
</QPopupProxy>
|
</QPopupProxy>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
@ -1,7 +1,15 @@
|
||||||
<script setup>
|
<script setup>
|
||||||
import VnCard from 'src/components/common/VnCard.vue';
|
import VnCard from 'src/components/common/VnCard.vue';
|
||||||
import ZoneDescriptor from './ZoneDescriptor.vue';
|
import ZoneDescriptor from './ZoneDescriptor.vue';
|
||||||
|
import filter from 'src/pages/Zone/Card/ZoneFilter.js';
|
||||||
|
import { useRoute } from 'vue-router';
|
||||||
|
const route = useRoute();
|
||||||
</script>
|
</script>
|
||||||
<template>
|
<template>
|
||||||
<VnCard data-key="Zone" url="Zones" :descriptor="ZoneDescriptor" />
|
<VnCard
|
||||||
|
data-key="Zone"
|
||||||
|
:url="`Zones/${route.params.id}`"
|
||||||
|
:descriptor="ZoneDescriptor"
|
||||||
|
:filter="filter"
|
||||||
|
/>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
@ -1,16 +1,18 @@
|
||||||
<script setup>
|
<script setup>
|
||||||
import { ref, computed, onMounted, reactive } from 'vue';
|
import { ref, computed, onMounted } from 'vue';
|
||||||
import { useI18n } from 'vue-i18n';
|
import { useI18n } from 'vue-i18n';
|
||||||
import { useRoute } from 'vue-router';
|
import { useRoute } from 'vue-router';
|
||||||
|
import { useQuasar } from 'quasar';
|
||||||
|
import axios from 'axios';
|
||||||
|
import moment from 'moment';
|
||||||
|
|
||||||
import VnRow from 'components/ui/VnRow.vue';
|
import VnRow from 'components/ui/VnRow.vue';
|
||||||
import FormPopup from 'components/FormPopup.vue';
|
import FormPopup from 'components/FormPopup.vue';
|
||||||
import ZoneLocationsTree from './ZoneLocationsTree.vue';
|
import ZoneLocationsTree from './ZoneLocationsTree.vue';
|
||||||
import VnInputDate from 'src/components/common/VnInputDate.vue';
|
import VnInputDate from 'src/components/common/VnInputDate.vue';
|
||||||
|
|
||||||
import { useArrayData } from 'src/composables/useArrayData';
|
import { useArrayData } from 'src/composables/useArrayData';
|
||||||
import { useVnConfirm } from 'composables/useVnConfirm';
|
import { useVnConfirm } from 'composables/useVnConfirm';
|
||||||
import axios from 'axios';
|
import { toDateFormat } from 'src/filters/date';
|
||||||
|
|
||||||
const props = defineProps({
|
const props = defineProps({
|
||||||
date: {
|
date: {
|
||||||
|
@ -34,18 +36,25 @@ const props = defineProps({
|
||||||
type: Array,
|
type: Array,
|
||||||
default: () => [],
|
default: () => [],
|
||||||
},
|
},
|
||||||
|
isMasiveEdit: {
|
||||||
|
type: Boolean,
|
||||||
|
default: false,
|
||||||
|
},
|
||||||
|
zoneIds: {
|
||||||
|
type: Array,
|
||||||
|
default: () => [],
|
||||||
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
const emit = defineEmits(['onSubmit', 'closeForm']);
|
const emit = defineEmits(['onSubmit', 'closeForm']);
|
||||||
|
const quasar = useQuasar();
|
||||||
const route = useRoute();
|
const route = useRoute();
|
||||||
const { t } = useI18n();
|
const { t } = useI18n();
|
||||||
const { openConfirmationModal } = useVnConfirm();
|
const { openConfirmationModal } = useVnConfirm();
|
||||||
|
|
||||||
const isNew = computed(() => props.isNewMode);
|
const isNew = computed(() => props.isNewMode);
|
||||||
const dated = reactive(props.date);
|
const dated = ref(props.date || Date.vnNew());
|
||||||
const tickedNodes = ref();
|
const tickedNodes = ref();
|
||||||
|
|
||||||
const _excludeType = ref('all');
|
const _excludeType = ref('all');
|
||||||
const excludeType = computed({
|
const excludeType = computed({
|
||||||
get: () => _excludeType.value,
|
get: () => _excludeType.value,
|
||||||
|
@ -63,16 +72,46 @@ const exclusionGeoCreate = async () => {
|
||||||
geoIds: tickedNodes.value,
|
geoIds: tickedNodes.value,
|
||||||
};
|
};
|
||||||
await axios.post('Zones/exclusionGeo', params);
|
await axios.post('Zones/exclusionGeo', params);
|
||||||
|
quasar.notify({
|
||||||
|
message: t('globals.dataSaved'),
|
||||||
|
type: 'positive',
|
||||||
|
});
|
||||||
await refetchEvents();
|
await refetchEvents();
|
||||||
};
|
};
|
||||||
|
|
||||||
const exclusionCreate = async () => {
|
const exclusionCreate = async () => {
|
||||||
const url = `Zones/${route.params.id}/exclusions`;
|
const defaultMonths = await axios.get('ZoneConfigs');
|
||||||
|
const nMonths = defaultMonths.data[0].defaultMonths;
|
||||||
const body = {
|
const body = {
|
||||||
dated,
|
dated: dated.value,
|
||||||
};
|
};
|
||||||
|
const zoneIds = props.zoneIds?.length ? props.zoneIds : [route.params.id];
|
||||||
|
for (const id of zoneIds) {
|
||||||
|
const url = `Zones/${id}/exclusions`;
|
||||||
|
let today = moment(dated.value);
|
||||||
|
let lastDay = today.clone().add(nMonths, 'months').endOf('month');
|
||||||
|
|
||||||
|
const { data } = await axios.get(`Zones/getEventsFiltered`, {
|
||||||
|
params: {
|
||||||
|
zoneFk: id,
|
||||||
|
started: today,
|
||||||
|
ended: lastDay,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
const existsEvent = data.events.find(
|
||||||
|
(event) => toDateFormat(event.dated) === toDateFormat(dated.value),
|
||||||
|
);
|
||||||
|
if (existsEvent) {
|
||||||
|
await axios.delete(`Zones/${existsEvent?.zoneFk}/events/${existsEvent?.id}`);
|
||||||
|
}
|
||||||
|
|
||||||
if (isNew.value || props.event?.type) await axios.post(`${url}`, [body]);
|
if (isNew.value || props.event?.type) await axios.post(`${url}`, [body]);
|
||||||
else await axios.put(`${url}/${props.event?.id}`, body);
|
else await axios.put(`${url}/${props.event?.id}`, body);
|
||||||
|
}
|
||||||
|
quasar.notify({
|
||||||
|
message: t('globals.dataSaved'),
|
||||||
|
type: 'positive',
|
||||||
|
});
|
||||||
await refetchEvents();
|
await refetchEvents();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -129,6 +168,7 @@ onMounted(() => {
|
||||||
:label="t('eventsExclusionForm.all')"
|
:label="t('eventsExclusionForm.all')"
|
||||||
/>
|
/>
|
||||||
<QRadio
|
<QRadio
|
||||||
|
v-if="!props.isMasiveEdit"
|
||||||
v-model="excludeType"
|
v-model="excludeType"
|
||||||
dense
|
dense
|
||||||
val="specificLocations"
|
val="specificLocations"
|
||||||
|
|
|
@ -2,6 +2,13 @@
|
||||||
import { ref, computed, onMounted } from 'vue';
|
import { ref, computed, onMounted } from 'vue';
|
||||||
import { useI18n } from 'vue-i18n';
|
import { useI18n } from 'vue-i18n';
|
||||||
import { useRoute } from 'vue-router';
|
import { useRoute } from 'vue-router';
|
||||||
|
import { useQuasar } from 'quasar';
|
||||||
|
import axios from 'axios';
|
||||||
|
import moment from 'moment';
|
||||||
|
|
||||||
|
import { useArrayData } from 'src/composables/useArrayData';
|
||||||
|
import { useWeekdayStore } from 'src/stores/useWeekdayStore';
|
||||||
|
import { useVnConfirm } from 'composables/useVnConfirm';
|
||||||
|
|
||||||
import VnRow from 'components/ui/VnRow.vue';
|
import VnRow from 'components/ui/VnRow.vue';
|
||||||
import FormPopup from 'components/FormPopup.vue';
|
import FormPopup from 'components/FormPopup.vue';
|
||||||
|
@ -9,11 +16,7 @@ import VnInputDate from 'src/components/common/VnInputDate.vue';
|
||||||
import VnWeekdayPicker from 'src/components/common/VnWeekdayPicker.vue';
|
import VnWeekdayPicker from 'src/components/common/VnWeekdayPicker.vue';
|
||||||
import VnInputTime from 'components/common/VnInputTime.vue';
|
import VnInputTime from 'components/common/VnInputTime.vue';
|
||||||
import VnInput from 'src/components/common/VnInput.vue';
|
import VnInput from 'src/components/common/VnInput.vue';
|
||||||
|
import { toDateFormat } from 'src/filters/date';
|
||||||
import { useArrayData } from 'src/composables/useArrayData';
|
|
||||||
import { useWeekdayStore } from 'src/stores/useWeekdayStore';
|
|
||||||
import { useVnConfirm } from 'composables/useVnConfirm';
|
|
||||||
import axios from 'axios';
|
|
||||||
|
|
||||||
const props = defineProps({
|
const props = defineProps({
|
||||||
date: {
|
date: {
|
||||||
|
@ -32,6 +35,14 @@ const props = defineProps({
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
default: true,
|
default: true,
|
||||||
},
|
},
|
||||||
|
isMasiveEdit: {
|
||||||
|
type: Boolean,
|
||||||
|
default: false,
|
||||||
|
},
|
||||||
|
zoneIds: {
|
||||||
|
type: Array,
|
||||||
|
default: () => [],
|
||||||
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
const emit = defineEmits(['onSubmit', 'closeForm']);
|
const emit = defineEmits(['onSubmit', 'closeForm']);
|
||||||
|
@ -40,10 +51,10 @@ const route = useRoute();
|
||||||
const { t } = useI18n();
|
const { t } = useI18n();
|
||||||
const weekdayStore = useWeekdayStore();
|
const weekdayStore = useWeekdayStore();
|
||||||
const { openConfirmationModal } = useVnConfirm();
|
const { openConfirmationModal } = useVnConfirm();
|
||||||
|
const quasar = useQuasar();
|
||||||
const isNew = computed(() => props.isNewMode);
|
const isNew = computed(() => props.isNewMode);
|
||||||
const eventInclusionFormData = ref({ wdays: [] });
|
const eventInclusionFormData = ref({ wdays: [] });
|
||||||
|
const dated = ref(props.date || Date.vnNew());
|
||||||
const _inclusionType = ref('indefinitely');
|
const _inclusionType = ref('indefinitely');
|
||||||
const inclusionType = computed({
|
const inclusionType = computed({
|
||||||
get: () => _inclusionType.value,
|
get: () => _inclusionType.value,
|
||||||
|
@ -56,8 +67,12 @@ const inclusionType = computed({
|
||||||
const arrayData = useArrayData('ZoneEvents');
|
const arrayData = useArrayData('ZoneEvents');
|
||||||
|
|
||||||
const createEvent = async () => {
|
const createEvent = async () => {
|
||||||
|
const defaultMonths = await axios.get('ZoneConfigs');
|
||||||
|
const nMonths = defaultMonths.data[0].defaultMonths;
|
||||||
|
|
||||||
eventInclusionFormData.value.weekDays = weekdayStore.toSet(
|
eventInclusionFormData.value.weekDays = weekdayStore.toSet(
|
||||||
eventInclusionFormData.value.wdays,
|
eventInclusionFormData.value.wdays,
|
||||||
|
eventInclusionFormData.value.wdays,
|
||||||
);
|
);
|
||||||
|
|
||||||
if (inclusionType.value == 'day') eventInclusionFormData.value.weekDays = '';
|
if (inclusionType.value == 'day') eventInclusionFormData.value.weekDays = '';
|
||||||
|
@ -68,14 +83,43 @@ const createEvent = async () => {
|
||||||
eventInclusionFormData.value.ended = null;
|
eventInclusionFormData.value.ended = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const zoneIds = props.zoneIds?.length ? props.zoneIds : [route.params.id];
|
||||||
|
for (const id of zoneIds) {
|
||||||
|
let today = eventInclusionFormData.value.dated
|
||||||
|
? moment(eventInclusionFormData.value.dated)
|
||||||
|
: moment(dated.value);
|
||||||
|
let lastDay = today.clone().add(nMonths, 'months').endOf('month');
|
||||||
|
|
||||||
|
const { data } = await axios.get(`Zones/getEventsFiltered`, {
|
||||||
|
params: {
|
||||||
|
zoneFk: id,
|
||||||
|
started: today,
|
||||||
|
ended: lastDay,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
const existsExclusion = data.exclusions.find(
|
||||||
|
(exclusion) =>
|
||||||
|
toDateFormat(exclusion.dated) ===
|
||||||
|
toDateFormat(eventInclusionFormData.value.dated),
|
||||||
|
);
|
||||||
|
if (existsExclusion) {
|
||||||
|
await axios.delete(
|
||||||
|
`Zones/${existsExclusion?.zoneFk}/exclusions/${existsExclusion?.id}`,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
if (isNew.value)
|
if (isNew.value)
|
||||||
await axios.post(`Zones/${route.params.id}/events`, eventInclusionFormData.value);
|
await axios.post(`Zones/${id}/events`, eventInclusionFormData.value);
|
||||||
else
|
else
|
||||||
await axios.put(
|
await axios.put(
|
||||||
`Zones/${route.params.id}/events/${props.event?.id}`,
|
`Zones/${id}/events/${props.event?.id}`,
|
||||||
eventInclusionFormData.value,
|
eventInclusionFormData.value,
|
||||||
);
|
);
|
||||||
|
}
|
||||||
|
quasar.notify({
|
||||||
|
message: t('globals.dataSaved'),
|
||||||
|
type: 'positive',
|
||||||
|
});
|
||||||
await refetchEvents();
|
await refetchEvents();
|
||||||
emit('onSubmit');
|
emit('onSubmit');
|
||||||
};
|
};
|
||||||
|
@ -97,9 +141,11 @@ const refetchEvents = async () => {
|
||||||
|
|
||||||
onMounted(() => {
|
onMounted(() => {
|
||||||
if (props.event) {
|
if (props.event) {
|
||||||
|
dated.value = props.event?.dated;
|
||||||
eventInclusionFormData.value = { ...props.event };
|
eventInclusionFormData.value = { ...props.event };
|
||||||
inclusionType.value = props.event?.type || 'day';
|
inclusionType.value = props.event?.type || 'day';
|
||||||
} else if (props.date) {
|
} else if (props.date) {
|
||||||
|
dated.value = props.date;
|
||||||
eventInclusionFormData.value.dated = props.date;
|
eventInclusionFormData.value.dated = props.date;
|
||||||
inclusionType.value = 'day';
|
inclusionType.value = 'day';
|
||||||
} else inclusionType.value = 'indefinitely';
|
} else inclusionType.value = 'indefinitely';
|
||||||
|
@ -125,6 +171,7 @@ onMounted(() => {
|
||||||
data-cy="ZoneEventInclusionDayRadio"
|
data-cy="ZoneEventInclusionDayRadio"
|
||||||
/>
|
/>
|
||||||
<QRadio
|
<QRadio
|
||||||
|
v-if="!props.isMasiveEdit"
|
||||||
v-model="inclusionType"
|
v-model="inclusionType"
|
||||||
dense
|
dense
|
||||||
val="indefinitely"
|
val="indefinitely"
|
||||||
|
@ -132,6 +179,7 @@ onMounted(() => {
|
||||||
data-cy="ZoneEventInclusionIndefinitelyRadio"
|
data-cy="ZoneEventInclusionIndefinitelyRadio"
|
||||||
/>
|
/>
|
||||||
<QRadio
|
<QRadio
|
||||||
|
v-if="!props.isMasiveEdit"
|
||||||
v-model="inclusionType"
|
v-model="inclusionType"
|
||||||
dense
|
dense
|
||||||
val="range"
|
val="range"
|
||||||
|
|
|
@ -37,6 +37,7 @@ const onSelected = async (val, node) => {
|
||||||
? '--unchecked'
|
? '--unchecked'
|
||||||
: '--indeterminate',
|
: '--indeterminate',
|
||||||
]"
|
]"
|
||||||
|
data-cy="ZoneLocationTreeCheckbox"
|
||||||
/>
|
/>
|
||||||
</template>
|
</template>
|
||||||
</ZoneLocationsTree>
|
</ZoneLocationsTree>
|
||||||
|
|
|
@ -42,7 +42,7 @@ const refreshEvents = () => {
|
||||||
days.value = {};
|
days.value = {};
|
||||||
if (!data.value) return;
|
if (!data.value) return;
|
||||||
|
|
||||||
let day = new Date(firstDay.value.getTime());
|
let day = new Date(firstDay?.value?.getTime());
|
||||||
|
|
||||||
while (day <= lastDay.value) {
|
while (day <= lastDay.value) {
|
||||||
let stamp = day.getTime();
|
let stamp = day.getTime();
|
||||||
|
@ -156,7 +156,7 @@ watch(
|
||||||
(value) => {
|
(value) => {
|
||||||
data.value = value;
|
data.value = value;
|
||||||
},
|
},
|
||||||
{ immediate: true }
|
{ immediate: true },
|
||||||
);
|
);
|
||||||
|
|
||||||
const getMonthNameAndYear = (date) => {
|
const getMonthNameAndYear = (date) => {
|
||||||
|
|
|
@ -14,7 +14,11 @@ import VnTable from 'src/components/VnTable/VnTable.vue';
|
||||||
import VnSelect from 'src/components/common/VnSelect.vue';
|
import VnSelect from 'src/components/common/VnSelect.vue';
|
||||||
import VnInput from 'src/components/common/VnInput.vue';
|
import VnInput from 'src/components/common/VnInput.vue';
|
||||||
import VnInputTime from 'src/components/common/VnInputTime.vue';
|
import VnInputTime from 'src/components/common/VnInputTime.vue';
|
||||||
|
|
||||||
import VnSection from 'src/components/common/VnSection.vue';
|
import VnSection from 'src/components/common/VnSection.vue';
|
||||||
|
import VnSubToolbar from 'src/components/ui/VnSubToolbar.vue';
|
||||||
|
import ZoneEventInclusionForm from './Card/ZoneEventInclusionForm.vue';
|
||||||
|
import ZoneEventExclusionForm from './Card/ZoneEventExclusionForm.vue';
|
||||||
|
|
||||||
const { t } = useI18n();
|
const { t } = useI18n();
|
||||||
const router = useRouter();
|
const router = useRouter();
|
||||||
|
@ -24,6 +28,11 @@ const { openConfirmationModal } = useVnConfirm();
|
||||||
const tableRef = ref();
|
const tableRef = ref();
|
||||||
const warehouseOptions = ref([]);
|
const warehouseOptions = ref([]);
|
||||||
const dataKey = 'ZoneList';
|
const dataKey = 'ZoneList';
|
||||||
|
const selectedRows = ref([]);
|
||||||
|
const hasSelectedRows = computed(() => selectedRows.value.length > 0);
|
||||||
|
const openInclusionForm = ref();
|
||||||
|
const showZoneEventForm = ref(false);
|
||||||
|
const zoneIds = ref({});
|
||||||
const tableFilter = {
|
const tableFilter = {
|
||||||
include: [
|
include: [
|
||||||
{
|
{
|
||||||
|
@ -191,6 +200,16 @@ const exprBuilder = (param, value) => {
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
function openForm(value, rows) {
|
||||||
|
zoneIds.value = rows.map((row) => row.id);
|
||||||
|
openInclusionForm.value = value;
|
||||||
|
showZoneEventForm.value = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
const closeEventForm = () => {
|
||||||
|
showZoneEventForm.value = false;
|
||||||
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
|
@ -206,6 +225,28 @@ const exprBuilder = (param, value) => {
|
||||||
}"
|
}"
|
||||||
>
|
>
|
||||||
<template #body>
|
<template #body>
|
||||||
|
<VnSubToolbar>
|
||||||
|
<template #st-actions>
|
||||||
|
<QBtnGroup style="column-gap: 10px">
|
||||||
|
<QBtn
|
||||||
|
color="primary"
|
||||||
|
icon-right="event_available"
|
||||||
|
:disable="!hasSelectedRows"
|
||||||
|
@click="openForm(true, selectedRows)"
|
||||||
|
>
|
||||||
|
<QTooltip>{{ t('list.includeEvent') }}</QTooltip>
|
||||||
|
</QBtn>
|
||||||
|
<QBtn
|
||||||
|
color="primary"
|
||||||
|
icon-right="event_busy"
|
||||||
|
:disable="!hasSelectedRows"
|
||||||
|
@click="openForm(false, selectedRows)"
|
||||||
|
>
|
||||||
|
<QTooltip>{{ t('list.excludeEvent') }}</QTooltip>
|
||||||
|
</QBtn>
|
||||||
|
</QBtnGroup>
|
||||||
|
</template>
|
||||||
|
</VnSubToolbar>
|
||||||
<div class="table-container">
|
<div class="table-container">
|
||||||
<div class="column items-center">
|
<div class="column items-center">
|
||||||
<VnTable
|
<VnTable
|
||||||
|
@ -220,6 +261,11 @@ const exprBuilder = (param, value) => {
|
||||||
formInitialData: {},
|
formInitialData: {},
|
||||||
}"
|
}"
|
||||||
table-height="85vh"
|
table-height="85vh"
|
||||||
|
v-model:selected="selectedRows"
|
||||||
|
:table="{
|
||||||
|
'row-key': 'id',
|
||||||
|
selection: 'multiple',
|
||||||
|
}"
|
||||||
>
|
>
|
||||||
<template #column-addressFk="{ row }">
|
<template #column-addressFk="{ row }">
|
||||||
{{ dashIfEmpty(formatRow(row)) }}
|
{{ dashIfEmpty(formatRow(row)) }}
|
||||||
|
@ -271,6 +317,21 @@ const exprBuilder = (param, value) => {
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
</VnSection>
|
</VnSection>
|
||||||
|
<QDialog v-model="showZoneEventForm" @hide="closeEventForm()">
|
||||||
|
<ZoneEventInclusionForm
|
||||||
|
v-if="openInclusionForm"
|
||||||
|
:event="'event'"
|
||||||
|
:is-masive-edit="true"
|
||||||
|
:zone-ids="zoneIds"
|
||||||
|
@close-form="closeEventForm"
|
||||||
|
/>
|
||||||
|
<ZoneEventExclusionForm
|
||||||
|
v-else
|
||||||
|
:zone-ids="zoneIds"
|
||||||
|
:is-masive-edit="true"
|
||||||
|
@close-form="closeEventForm"
|
||||||
|
/>
|
||||||
|
</QDialog>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
|
|
|
@ -25,6 +25,7 @@ list:
|
||||||
agency: Agency
|
agency: Agency
|
||||||
close: Close
|
close: Close
|
||||||
price: Price
|
price: Price
|
||||||
|
priceOptimum: Optimal price
|
||||||
create: Create zone
|
create: Create zone
|
||||||
openSummary: Details
|
openSummary: Details
|
||||||
searchZone: Search zones
|
searchZone: Search zones
|
||||||
|
@ -37,6 +38,8 @@ list:
|
||||||
createZone: Create zone
|
createZone: Create zone
|
||||||
zoneSummary: Summary
|
zoneSummary: Summary
|
||||||
addressFk: Address
|
addressFk: Address
|
||||||
|
includeEvent: Include event
|
||||||
|
excludeEvent: Exclude event
|
||||||
create:
|
create:
|
||||||
name: Name
|
name: Name
|
||||||
closingHour: Closing hour
|
closingHour: Closing hour
|
||||||
|
|
|
@ -39,6 +39,8 @@ list:
|
||||||
createZone: Crear zona
|
createZone: Crear zona
|
||||||
zoneSummary: Resumen
|
zoneSummary: Resumen
|
||||||
addressFk: Consignatario
|
addressFk: Consignatario
|
||||||
|
includeEvent: Incluir evento
|
||||||
|
excludeEvent: Excluir evento
|
||||||
create:
|
create:
|
||||||
closingHour: Hora de cierre
|
closingHour: Hora de cierre
|
||||||
itemMaxSize: Medida máxima
|
itemMaxSize: Medida máxima
|
||||||
|
|
|
@ -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',
|
||||||
|
|
|
@ -8,13 +8,10 @@ export default {
|
||||||
icon: 'grid_view',
|
icon: 'grid_view',
|
||||||
moduleName: 'Monitor',
|
moduleName: 'Monitor',
|
||||||
keyBinding: 'm',
|
keyBinding: 'm',
|
||||||
|
menu: ['MonitorTickets', 'MonitorClientsActions'],
|
||||||
},
|
},
|
||||||
component: RouterView,
|
component: RouterView,
|
||||||
redirect: { name: 'MonitorMain' },
|
redirect: { name: 'MonitorMain' },
|
||||||
menus: {
|
|
||||||
main: ['MonitorTickets', 'MonitorClientsActions'],
|
|
||||||
card: [],
|
|
||||||
},
|
|
||||||
children: [
|
children: [
|
||||||
{
|
{
|
||||||
path: '',
|
path: '',
|
||||||
|
|
|
@ -220,6 +220,7 @@ export default {
|
||||||
path: '',
|
path: '',
|
||||||
name: 'RouteIndexMain',
|
name: 'RouteIndexMain',
|
||||||
redirect: { name: 'RouteList' },
|
redirect: { name: 'RouteList' },
|
||||||
|
component: () => import('src/pages/Route/RouteList.vue'),
|
||||||
children: [
|
children: [
|
||||||
{
|
{
|
||||||
name: 'RouteList',
|
name: 'RouteList',
|
||||||
|
@ -228,7 +229,6 @@ export default {
|
||||||
title: 'list',
|
title: 'list',
|
||||||
icon: 'view_list',
|
icon: 'view_list',
|
||||||
},
|
},
|
||||||
component: () => import('src/pages/Route/RouteList.vue'),
|
|
||||||
},
|
},
|
||||||
routeCard,
|
routeCard,
|
||||||
],
|
],
|
||||||
|
@ -264,6 +264,7 @@ export default {
|
||||||
path: 'roadmap',
|
path: 'roadmap',
|
||||||
name: 'RouteRoadmap',
|
name: 'RouteRoadmap',
|
||||||
redirect: { name: 'RoadmapList' },
|
redirect: { name: 'RoadmapList' },
|
||||||
|
component: () => import('src/pages/Route/RouteRoadmap.vue'),
|
||||||
meta: {
|
meta: {
|
||||||
title: 'RouteRoadmap',
|
title: 'RouteRoadmap',
|
||||||
icon: 'vn:troncales',
|
icon: 'vn:troncales',
|
||||||
|
@ -276,7 +277,6 @@ export default {
|
||||||
title: 'list',
|
title: 'list',
|
||||||
icon: 'view_list',
|
icon: 'view_list',
|
||||||
},
|
},
|
||||||
component: () => import('src/pages/Route/RouteRoadmap.vue'),
|
|
||||||
},
|
},
|
||||||
roadmapCard,
|
roadmapCard,
|
||||||
],
|
],
|
||||||
|
@ -294,6 +294,7 @@ export default {
|
||||||
path: 'agency',
|
path: 'agency',
|
||||||
name: 'RouteAgency',
|
name: 'RouteAgency',
|
||||||
redirect: { name: 'AgencyList' },
|
redirect: { name: 'AgencyList' },
|
||||||
|
component: () => import('src/pages/Route/Agency/AgencyList.vue'),
|
||||||
meta: {
|
meta: {
|
||||||
title: 'agency',
|
title: 'agency',
|
||||||
icon: 'garage_home',
|
icon: 'garage_home',
|
||||||
|
@ -306,8 +307,6 @@ export default {
|
||||||
title: 'list',
|
title: 'list',
|
||||||
icon: 'view_list',
|
icon: 'view_list',
|
||||||
},
|
},
|
||||||
component: () =>
|
|
||||||
import('src/pages/Route/Agency/AgencyList.vue'),
|
|
||||||
},
|
},
|
||||||
agencyCard,
|
agencyCard,
|
||||||
],
|
],
|
||||||
|
@ -316,6 +315,7 @@ export default {
|
||||||
path: 'vehicle',
|
path: 'vehicle',
|
||||||
name: 'RouteVehicle',
|
name: 'RouteVehicle',
|
||||||
redirect: { name: 'VehicleList' },
|
redirect: { name: 'VehicleList' },
|
||||||
|
component: () => import('src/pages/Route/Vehicle/VehicleList.vue'),
|
||||||
meta: {
|
meta: {
|
||||||
title: 'vehicle',
|
title: 'vehicle',
|
||||||
icon: 'directions_car',
|
icon: 'directions_car',
|
||||||
|
@ -328,8 +328,6 @@ export default {
|
||||||
title: 'vehicleList',
|
title: 'vehicleList',
|
||||||
icon: 'directions_car',
|
icon: 'directions_car',
|
||||||
},
|
},
|
||||||
component: () =>
|
|
||||||
import('src/pages/Route/Vehicle/VehicleList.vue'),
|
|
||||||
},
|
},
|
||||||
vehicleCard,
|
vehicleCard,
|
||||||
],
|
],
|
||||||
|
|
|
@ -271,12 +271,14 @@ export default {
|
||||||
path: 'department',
|
path: 'department',
|
||||||
name: 'Department',
|
name: 'Department',
|
||||||
redirect: { name: 'WorkerDepartment' },
|
redirect: { name: 'WorkerDepartment' },
|
||||||
component: () => import('src/pages/Worker/WorkerDepartment.vue'),
|
meta: { title: 'department', icon: 'vn:greuge' },
|
||||||
children: [
|
children: [
|
||||||
{
|
{
|
||||||
|
component: () =>
|
||||||
|
import('src/pages/Worker/WorkerDepartment.vue'),
|
||||||
|
meta: { title: 'department', icon: 'vn:greuge' },
|
||||||
name: 'WorkerDepartment',
|
name: 'WorkerDepartment',
|
||||||
path: 'list',
|
path: 'list',
|
||||||
meta: { title: 'department', icon: 'vn:greuge' },
|
|
||||||
},
|
},
|
||||||
departmentCard,
|
departmentCard,
|
||||||
],
|
],
|
||||||
|
|
|
@ -0,0 +1,28 @@
|
||||||
|
import { describe, expect, it, beforeEach } from 'vitest';
|
||||||
|
import 'app/test/vitest/helper';
|
||||||
|
|
||||||
|
import { useDescriptorStore } from 'src/stores/useDescriptorStore';
|
||||||
|
import { useStateStore } from 'stores/useStateStore';
|
||||||
|
|
||||||
|
describe('useDescriptorStore', () => {
|
||||||
|
const { get, has } = useDescriptorStore();
|
||||||
|
const stateStore = useStateStore();
|
||||||
|
|
||||||
|
beforeEach(() => {
|
||||||
|
stateStore.setDescriptors({});
|
||||||
|
});
|
||||||
|
|
||||||
|
function getDescriptors() {
|
||||||
|
return stateStore.descriptors;
|
||||||
|
}
|
||||||
|
|
||||||
|
it('should get descriptors in stateStore', async () => {
|
||||||
|
expect(Object.keys(getDescriptors()).length).toBe(0);
|
||||||
|
get();
|
||||||
|
expect(Object.keys(getDescriptors()).length).toBeGreaterThan(0);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should find ticketDescriptor if search ticketFk', async () => {
|
||||||
|
expect(has('ticketFk')).toBeDefined();
|
||||||
|
});
|
||||||
|
});
|
|
@ -0,0 +1,35 @@
|
||||||
|
import { defineAsyncComponent } from 'vue';
|
||||||
|
import { defineStore } from 'pinia';
|
||||||
|
import { useStateStore } from 'stores/useStateStore';
|
||||||
|
|
||||||
|
export const useDescriptorStore = defineStore('descriptorStore', () => {
|
||||||
|
const { descriptors, setDescriptors } = useStateStore();
|
||||||
|
function get() {
|
||||||
|
if (Object.keys(descriptors).length) return descriptors;
|
||||||
|
|
||||||
|
const currentDescriptors = {};
|
||||||
|
const files = import.meta.glob(`/src/**/*DescriptorProxy.vue`);
|
||||||
|
const moduleParser = {
|
||||||
|
account: 'user',
|
||||||
|
client: 'customer',
|
||||||
|
};
|
||||||
|
for (const file in files) {
|
||||||
|
const name = file.split('/').at(-1).slice(0, -19).toLowerCase();
|
||||||
|
const descriptor = moduleParser[name] ?? name;
|
||||||
|
currentDescriptors[descriptor + 'Fk'] = defineAsyncComponent(
|
||||||
|
() => import(/* @vite-ignore */ file),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
setDescriptors(currentDescriptors);
|
||||||
|
return currentDescriptors;
|
||||||
|
}
|
||||||
|
|
||||||
|
function has(name) {
|
||||||
|
return get()[name];
|
||||||
|
}
|
||||||
|
|
||||||
|
return {
|
||||||
|
has,
|
||||||
|
get,
|
||||||
|
};
|
||||||
|
});
|
|
@ -8,6 +8,7 @@ export const useStateStore = defineStore('stateStore', () => {
|
||||||
const rightAdvancedDrawer = ref(false);
|
const rightAdvancedDrawer = ref(false);
|
||||||
const subToolbar = ref(false);
|
const subToolbar = ref(false);
|
||||||
const cardDescriptor = ref(null);
|
const cardDescriptor = ref(null);
|
||||||
|
const descriptors = ref({});
|
||||||
|
|
||||||
function cardDescriptorChangeValue(descriptor) {
|
function cardDescriptorChangeValue(descriptor) {
|
||||||
cardDescriptor.value = descriptor;
|
cardDescriptor.value = descriptor;
|
||||||
|
@ -52,6 +53,10 @@ export const useStateStore = defineStore('stateStore', () => {
|
||||||
return subToolbar.value;
|
return subToolbar.value;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function setDescriptors(value) {
|
||||||
|
descriptors.value = value;
|
||||||
|
}
|
||||||
|
|
||||||
return {
|
return {
|
||||||
cardDescriptor,
|
cardDescriptor,
|
||||||
cardDescriptorChangeValue,
|
cardDescriptorChangeValue,
|
||||||
|
@ -68,5 +73,7 @@ export const useStateStore = defineStore('stateStore', () => {
|
||||||
isSubToolbarShown,
|
isSubToolbarShown,
|
||||||
toggleSubToolbar,
|
toggleSubToolbar,
|
||||||
rightDrawerChangeValue,
|
rightDrawerChangeValue,
|
||||||
|
descriptors,
|
||||||
|
setDescriptors,
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
|
@ -77,14 +77,14 @@ export const useWeekdayStore = defineStore('weekdayStore', () => {
|
||||||
const locales = {};
|
const locales = {};
|
||||||
for (let code of localeOrder.es) {
|
for (let code of localeOrder.es) {
|
||||||
const weekDay = weekdaysMap[code];
|
const weekDay = weekdaysMap[code];
|
||||||
const locale = t(`weekdays.${weekdaysMap[code].code}`);
|
const locale = t(`weekdays.${weekDay?.code}`);
|
||||||
const obj = {
|
const obj = {
|
||||||
...weekDay,
|
...weekDay,
|
||||||
locale,
|
locale,
|
||||||
localeChar: locale.substr(0, 1),
|
localeChar: locale.substr(0, 1),
|
||||||
localeAbr: locale.substr(0, 3),
|
localeAbr: locale.substr(0, 3),
|
||||||
};
|
};
|
||||||
locales[weekDay.code] = obj;
|
locales[weekDay?.code] = obj;
|
||||||
}
|
}
|
||||||
return locales;
|
return locales;
|
||||||
});
|
});
|
||||||
|
|
|
@ -34,7 +34,7 @@ describe('OrderCatalog', () => {
|
||||||
searchByCustomTagInput('Silver');
|
searchByCustomTagInput('Silver');
|
||||||
});
|
});
|
||||||
|
|
||||||
it('filters by custom value dialog', () => {
|
it.skip('filters by custom value dialog', () => {
|
||||||
Cypress.on('uncaught:exception', (err) => {
|
Cypress.on('uncaught:exception', (err) => {
|
||||||
if (err.message.includes('canceled')) {
|
if (err.message.includes('canceled')) {
|
||||||
return false;
|
return false;
|
||||||
|
@ -55,9 +55,9 @@ describe('OrderCatalog', () => {
|
||||||
it('removes a secondary tag', () => {
|
it('removes a secondary tag', () => {
|
||||||
cy.get(':nth-child(1) > [data-cy="catalogFilterCategory"]').click();
|
cy.get(':nth-child(1) > [data-cy="catalogFilterCategory"]').click();
|
||||||
cy.selectOption('[data-cy="catalogFilterType"]', 'Anthurium');
|
cy.selectOption('[data-cy="catalogFilterType"]', 'Anthurium');
|
||||||
cy.dataCy('vnFilterPanelChip').should('exist');
|
cy.dataCy('vnFilterPanelChip_typeFk').should('exist');
|
||||||
cy.get('[data-cy="catalogFilterCustomTag"] > .q-chip__icon--remove').click();
|
cy.get('[data-cy="catalogFilterCustomTag"] > .q-chip__icon--remove').click();
|
||||||
cy.dataCy('vnFilterPanelChip').should('not.exist');
|
cy.dataCy('vnFilterPanelChip_typeFk').should('not.exist');
|
||||||
});
|
});
|
||||||
|
|
||||||
it('Removes category tag', () => {
|
it('Removes category tag', () => {
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/// <reference types="cypress" />
|
/// <reference types="cypress" />
|
||||||
describe('ClaimDevelopment', () => {
|
describe.skip('ClaimDevelopment', () => {
|
||||||
const claimId = 1;
|
const claimId = 1;
|
||||||
const firstLineReason = 'tbody > :nth-child(1) > :nth-child(2)';
|
const firstLineReason = 'tbody > :nth-child(1) > :nth-child(2)';
|
||||||
const thirdRow = 'tbody > :nth-child(3)';
|
const thirdRow = 'tbody > :nth-child(3)';
|
||||||
|
@ -19,11 +19,10 @@ describe('ClaimDevelopment', () => {
|
||||||
cy.getValue(firstLineReason).should('equal', lastReason);
|
cy.getValue(firstLineReason).should('equal', lastReason);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should edit line', () => {
|
it.skip('should edit line', () => {
|
||||||
cy.selectOption(firstLineReason, newReason);
|
cy.selectOption(firstLineReason, newReason);
|
||||||
|
|
||||||
cy.saveCard();
|
cy.saveCard();
|
||||||
cy.login('developer');
|
|
||||||
cy.visit(`/#/claim/${claimId}/development`);
|
cy.visit(`/#/claim/${claimId}/development`);
|
||||||
|
|
||||||
cy.getValue(firstLineReason).should('equal', newReason);
|
cy.getValue(firstLineReason).should('equal', newReason);
|
||||||
|
@ -49,12 +48,9 @@ describe('ClaimDevelopment', () => {
|
||||||
cy.fillRow(thirdRow, rowData);
|
cy.fillRow(thirdRow, rowData);
|
||||||
|
|
||||||
cy.saveCard();
|
cy.saveCard();
|
||||||
cy.login('developer');
|
|
||||||
cy.visit(`/#/claim/${claimId}/development`);
|
|
||||||
|
|
||||||
cy.validateRow(thirdRow, rowData);
|
cy.validateRow(thirdRow, rowData);
|
||||||
|
|
||||||
cy.reload();
|
cy.visit(`/#/claim/${claimId}/development`);
|
||||||
cy.validateRow(thirdRow, rowData);
|
cy.validateRow(thirdRow, rowData);
|
||||||
|
|
||||||
//remove row
|
//remove row
|
||||||
|
@ -63,7 +59,7 @@ describe('ClaimDevelopment', () => {
|
||||||
cy.clickConfirm();
|
cy.clickConfirm();
|
||||||
cy.get(thirdRow).should('not.exist');
|
cy.get(thirdRow).should('not.exist');
|
||||||
|
|
||||||
cy.reload();
|
cy.visit(`/#/claim/${claimId}/development`);
|
||||||
cy.get(thirdRow).should('not.exist');
|
cy.get(thirdRow).should('not.exist');
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
|
@ -53,7 +53,7 @@ describe.skip('Client list', () => {
|
||||||
it('Client founded create ticket', () => {
|
it('Client founded create ticket', () => {
|
||||||
const search = 'Jessica Jones';
|
const search = 'Jessica Jones';
|
||||||
cy.searchByLabel('Name', search);
|
cy.searchByLabel('Name', search);
|
||||||
cy.openActionDescriptor('Create ticket');
|
cy.selectDescriptorOption();
|
||||||
cy.waitForElement('#formModel');
|
cy.waitForElement('#formModel');
|
||||||
cy.waitForElement('.q-form');
|
cy.waitForElement('.q-form');
|
||||||
cy.checkValueForm(1, search);
|
cy.checkValueForm(1, search);
|
||||||
|
|
|
@ -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,50 @@
|
||||||
|
import '../commands.js';
|
||||||
|
|
||||||
|
describe('EntryNotes', () => {
|
||||||
|
beforeEach(() => {
|
||||||
|
cy.viewport(1920, 1080);
|
||||||
|
cy.login('buyer');
|
||||||
|
cy.visit(`/#/entry/list`);
|
||||||
|
});
|
||||||
|
|
||||||
|
const createObservation = (type, description) => {
|
||||||
|
cy.dataCy('vnTableCreateBtn').click();
|
||||||
|
cy.dataCy('Observation type_select').eq(1).should('be.visible').type(type);
|
||||||
|
cy.get('div[role="listbox"] > div > div[role="option"]').eq(0).click();
|
||||||
|
cy.dataCy('Description_input').should('be.visible').type(description);
|
||||||
|
cy.dataCy('FormModelPopup_save').should('be.enabled').click();
|
||||||
|
};
|
||||||
|
|
||||||
|
const editObservation = (rowIndex, type, description) => {
|
||||||
|
cy.get(`td[data-col-field="description"][data-row-index="${rowIndex}"]`)
|
||||||
|
.click()
|
||||||
|
.clear()
|
||||||
|
.type(description);
|
||||||
|
cy.get(`td[data-col-field="observationTypeFk"][data-row-index="${rowIndex}"]`)
|
||||||
|
.click()
|
||||||
|
.clear()
|
||||||
|
.type(type);
|
||||||
|
cy.get('div[role="listbox"] > div > div[role="option"]').eq(0).click();
|
||||||
|
cy.saveCard();
|
||||||
|
};
|
||||||
|
|
||||||
|
it('Create, delete, and edit observations', () => {
|
||||||
|
cy.createEntry();
|
||||||
|
cy.waitForElement('[data-cy="entry-buys"]');
|
||||||
|
|
||||||
|
cy.dataCy('EntryNotes-menu-item').click();
|
||||||
|
|
||||||
|
createObservation('Packager', 'test');
|
||||||
|
cy.get('.q-notification__message').eq(0).should('have.text', 'Data created');
|
||||||
|
|
||||||
|
editObservation(0, 'Administrative', 'test2');
|
||||||
|
|
||||||
|
createObservation('Administrative', 'test');
|
||||||
|
cy.get('.q-notification__message')
|
||||||
|
.eq(2)
|
||||||
|
.should('have.text', "The observation type can't be repeated");
|
||||||
|
cy.dataCy('FormModelPopup_cancel').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,223 +1,54 @@
|
||||||
describe('Entry', () => {
|
import './commands';
|
||||||
|
|
||||||
|
describe('EntryList', () => {
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
cy.viewport(1920, 1080);
|
cy.viewport(1920, 1080);
|
||||||
cy.login('buyer');
|
cy.login('buyer');
|
||||||
cy.visit(`/#/entry/list`);
|
cy.visit(`/#/entry/list`);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('Filter deleted entries and other fields', () => {
|
it('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('button[title="Summary"]').eq(1).should('be.visible').click();
|
||||||
|
cy.dataCy('entry-summary').should('be.visible');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('Show supplierDescriptor on click on supplierDescriptor', () => {
|
||||||
cy.typeSearchbar('{enter}');
|
cy.typeSearchbar('{enter}');
|
||||||
cy.url().should('include', 'order');
|
cy.get('td[data-col-field="supplierFk"] > div > span').eq(0).click();
|
||||||
cy.get('td[data-row-index="0"][data-col-field="landed"]').should(
|
cy.get('div[role="menu"] > div[class="descriptor"]').should('be.visible');
|
||||||
'have.text',
|
|
||||||
'-',
|
|
||||||
);
|
|
||||||
});
|
});
|
||||||
|
|
||||||
it.skip('Create entry, modify travel and add buys', () => {
|
it('Landed badge should display the right color', () => {
|
||||||
createEntryAndBuy();
|
cy.typeSearchbar('{enter}');
|
||||||
cy.get('a[data-cy="EntryBasicData-menu-item"]').click();
|
|
||||||
selectTravel('two');
|
const checkBadgeDate = (selector, comparisonFn) => {
|
||||||
cy.saveCard();
|
cy.get(selector)
|
||||||
cy.get('.q-notification__message').eq(0).should('have.text', 'Data created');
|
.should('exist')
|
||||||
deleteEntry();
|
.each(($badge) => {
|
||||||
|
const badgeText = $badge.text().trim();
|
||||||
|
const badgeDate = new Date(badgeText);
|
||||||
|
const compareDate = new Date('01/01/2001');
|
||||||
|
comparisonFn(badgeDate, compareDate);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('Clone entry and recalculate rates', () => {
|
|
||||||
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();
|
|
||||||
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() {
|
|
||||||
const entryBuySelector = 'a[data-cy="EntryBuys-menu-item"]';
|
|
||||||
cy.get(entryBuySelector).should('be.visible');
|
|
||||||
cy.waitForElement('[data-cy="entry-buys"]');
|
|
||||||
cy.get(entryBuySelector).click();
|
|
||||||
}
|
|
||||||
|
|
||||||
function 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');
|
|
||||||
}
|
|
||||||
|
|
||||||
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();
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
|
|
|
@ -0,0 +1,23 @@
|
||||||
|
describe('EntryStockBought', () => {
|
||||||
|
beforeEach(() => {
|
||||||
|
cy.viewport(1920, 1080);
|
||||||
|
cy.login('buyer');
|
||||||
|
cy.visit(`/#/entry/stock-Bought`);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('Should edit the reserved space adjust the purchased spaces and check detail', () => {
|
||||||
|
cy.get('[data-cy="edit-travel"]').should('be.visible').click();
|
||||||
|
cy.get('input[aria-label="m3"]').clear().type('60');
|
||||||
|
cy.get('[data-cy="FormModelPopup_save"]').click();
|
||||||
|
cy.get('.vn-row > div > :nth-child(2)').should('have.text', '60');
|
||||||
|
|
||||||
|
cy.get('.q-field__native.q-placeholder').should('have.value', '01/01/2001');
|
||||||
|
cy.get('[data-col-field="reserve"][data-row-index="0"]').click();
|
||||||
|
cy.get('input[name="reserve"]').type('10{enter}');
|
||||||
|
cy.get('button[title="Save"]').click();
|
||||||
|
cy.checkNotification('Data saved');
|
||||||
|
|
||||||
|
cy.get('[data-cy="searchBtn"]').eq(0).click();
|
||||||
|
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,50 +0,0 @@
|
||||||
describe('EntryStockBought', () => {
|
|
||||||
beforeEach(() => {
|
|
||||||
cy.viewport(1920, 1080);
|
|
||||||
cy.login('buyer');
|
|
||||||
cy.visit(`/#/entry/stock-Bought`);
|
|
||||||
});
|
|
||||||
it('Should edit the reserved space', () => {
|
|
||||||
cy.get('.q-field__native.q-placeholder').should('have.value', '01/01/2001');
|
|
||||||
cy.get('[data-col-field="reserve"][data-row-index="0"]').click();
|
|
||||||
cy.get('input[name="reserve"]').type('10{enter}');
|
|
||||||
cy.get('button[title="Save"]').click();
|
|
||||||
cy.checkNotification('Data saved');
|
|
||||||
});
|
|
||||||
it('Should add a new reserved space for buyerBoss', () => {
|
|
||||||
cy.addBtnClick();
|
|
||||||
cy.get('input[aria-label="Reserve"]').type('1');
|
|
||||||
cy.get('input[aria-label="Date"]').eq(1).clear();
|
|
||||||
cy.get('input[aria-label="Date"]').eq(1).type('01-01');
|
|
||||||
cy.get('input[aria-label="Buyer"]').type('itNick');
|
|
||||||
cy.get('div[role="listbox"] > div > div[role="option"]')
|
|
||||||
.eq(1)
|
|
||||||
.should('be.visible')
|
|
||||||
.click();
|
|
||||||
|
|
||||||
cy.get('[data-cy="FormModelPopup_save"]').click();
|
|
||||||
cy.get('.q-notification__message').should('have.text', 'Data created');
|
|
||||||
|
|
||||||
cy.get('[data-col-field="reserve"][data-row-index="1"]').click().clear();
|
|
||||||
cy.get('[data-cy="searchBtn"]').eq(1).click();
|
|
||||||
cy.get('.q-table__bottom.row.items-center.q-table__bottom--nodata')
|
|
||||||
.should('have.text', 'warningNo data available')
|
|
||||||
.type('{esc}');
|
|
||||||
cy.get('[data-col-field="reserve"][data-row-index="1"]')
|
|
||||||
.click()
|
|
||||||
.type('{backspace}{enter}');
|
|
||||||
cy.get('[data-cy="crudModelDefaultSaveBtn"]').should('be.enabled').click();
|
|
||||||
cy.get('.q-notification__message').eq(1).should('have.text', 'Data saved');
|
|
||||||
});
|
|
||||||
it('Should check detail for the buyer', () => {
|
|
||||||
cy.get('[data-cy="searchBtn"]').eq(0).click();
|
|
||||||
cy.get('tBody > tr').eq(1).its('length').should('eq', 1);
|
|
||||||
});
|
|
||||||
|
|
||||||
it('Should edit travel m3 and refresh', () => {
|
|
||||||
cy.get('[data-cy="edit-travel"]').should('be.visible').click();
|
|
||||||
cy.get('input[aria-label="m3"]').clear().type('60');
|
|
||||||
cy.get('[data-cy="FormModelPopup_save"]').click();
|
|
||||||
cy.get('.vn-row > div > :nth-child(2)').should('have.text', '60');
|
|
||||||
});
|
|
||||||
});
|
|
|
@ -1,26 +1,40 @@
|
||||||
/// <reference types="cypress" />
|
/// <reference types="cypress" />
|
||||||
|
import moment from 'moment';
|
||||||
describe('InvoiceInBasicData', () => {
|
describe('InvoiceInBasicData', () => {
|
||||||
const firstFormSelect = '.q-card > .vn-row:nth-child(1) > .q-select';
|
|
||||||
const dialogInputs = '.q-dialog input';
|
const dialogInputs = '.q-dialog input';
|
||||||
const resetBtn = '.q-btn-group--push > .q-btn--flat';
|
|
||||||
const getDocumentBtns = (opt) => `[data-cy="dms-buttons"] > :nth-child(${opt})`;
|
const getDocumentBtns = (opt) => `[data-cy="dms-buttons"] > :nth-child(${opt})`;
|
||||||
|
const futureDate = moment().add(1, 'days').format('DD-MM-YYYY');
|
||||||
|
const mock = {
|
||||||
|
invoiceInBasicDataSupplier: { val: 'Bros nick', type: 'select' },
|
||||||
|
invoiceInBasicDataSupplierRef_input: 'mockInvoice41',
|
||||||
|
invoiceInBasicDataIssued: { val: futureDate, type: 'date' },
|
||||||
|
invoiceInBasicDataOperated: { val: futureDate, type: 'date' },
|
||||||
|
invoiceInBasicDatabookEntried: { val: futureDate, type: 'date' },
|
||||||
|
invoiceInBasicDataBooked: {
|
||||||
|
val: moment().add(5, 'days').format('DD-MM-YYYY'),
|
||||||
|
type: 'date',
|
||||||
|
},
|
||||||
|
invoiceInBasicDataDeductibleExpenseFk: {
|
||||||
|
val: '4751000000',
|
||||||
|
type: 'select',
|
||||||
|
},
|
||||||
|
invoiceInBasicDataCurrencyFk: { val: 'USD', type: 'select' },
|
||||||
|
invoiceInBasicDataCompanyFk: { val: 'CCs', type: 'select' },
|
||||||
|
invoiceInBasicDataWithholdingSageFk: {
|
||||||
|
val: 'Arrendamiento y subarrendamiento',
|
||||||
|
type: 'select',
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
cy.login('developer');
|
cy.login('administrative');
|
||||||
cy.visit(`/#/invoice-in/1/basic-data`);
|
cy.visit(`/#/invoice-in/1/basic-data`);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should edit the provideer and supplier ref', () => {
|
it('should edit every field', () => {
|
||||||
cy.dataCy('UnDeductibleVatSelect').type('4751000000');
|
cy.fillInForm(mock, { attr: 'data-cy' });
|
||||||
cy.get('.q-menu .q-item').contains('4751000000').click();
|
|
||||||
cy.get(resetBtn).click();
|
|
||||||
|
|
||||||
cy.waitForElement('#formModel').within(() => {
|
|
||||||
cy.dataCy('vnSupplierSelect').type('Bros nick');
|
|
||||||
})
|
|
||||||
cy.get('.q-menu .q-item').contains('Bros nick').click();
|
|
||||||
cy.saveCard();
|
cy.saveCard();
|
||||||
cy.get(`${firstFormSelect} input`).invoke('val').should('eq', 'Bros nick');
|
cy.validateForm(mock, { attr: 'data-cy' });
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should edit, remove and create the dms data', () => {
|
it('should edit, remove and create the dms data', () => {
|
||||||
|
@ -44,7 +58,7 @@ describe('InvoiceInBasicData', () => {
|
||||||
cy.checkNotification('Data saved');
|
cy.checkNotification('Data saved');
|
||||||
|
|
||||||
//create
|
//create
|
||||||
cy.get('[data-cy="dms-create"]').eq(0).click();
|
cy.get('[data-cy="invoiceInBasicDataDmsAdd"]').eq(0).click();
|
||||||
cy.get('[data-cy="VnDms_inputFile"').selectFile(
|
cy.get('[data-cy="VnDms_inputFile"').selectFile(
|
||||||
'test/cypress/fixtures/image.jpg',
|
'test/cypress/fixtures/image.jpg',
|
||||||
{
|
{
|
||||||
|
|
|
@ -1,22 +1,59 @@
|
||||||
/// <reference types="cypress" />
|
describe('invoiceInCorrective', () => {
|
||||||
describe('InvoiceInCorrective', () => {
|
beforeEach(() => cy.login('administrative'));
|
||||||
const saveDialog = '.q-card > .q-card__actions > .q-btn--standard ';
|
|
||||||
|
|
||||||
it('should create a correcting invoice', () => {
|
it('should modify the invoice', () => {
|
||||||
cy.viewport(1280, 720);
|
cy.visit('/#/invoice-in/1/summary');
|
||||||
cy.login('developer');
|
|
||||||
cy.visit(`/#/invoice-in/1/summary`);
|
|
||||||
cy.intercept('POST', '/api/InvoiceIns/corrective').as('corrective');
|
cy.intercept('POST', '/api/InvoiceIns/corrective').as('corrective');
|
||||||
|
cy.intercept('POST', '/api/InvoiceInCorrections/crud').as('crud');
|
||||||
|
cy.intercept('GET', /InvoiceInCorrections\?filter=.+/).as('getCorrective');
|
||||||
|
|
||||||
cy.openActionsDescriptor();
|
cy.selectDescriptorOption(4);
|
||||||
|
cy.dataCy('saveCorrectiveInvoice').click();
|
||||||
|
|
||||||
cy.dataCy('createCorrectiveItem').click();
|
cy.wait('@corrective').then(({ response }) => {
|
||||||
cy.get(saveDialog).click();
|
const correctingFk = response.body;
|
||||||
cy.wait('@corrective').then((interception) => {
|
cy.url().should('include', `/invoice-in/${correctingFk}/summary`);
|
||||||
const correctingId = interception.response.body;
|
cy.visit(`/#/invoice-in/${correctingFk}/corrective`);
|
||||||
cy.url().should('include', `/invoice-in/${correctingId}/summary`);
|
cy.selectOption('[data-cy="invoiceInCorrective_class"]', 'r4');
|
||||||
cy.visit(`/#/invoice-in/${correctingId}/corrective`);
|
cy.selectOption('[data-cy="invoiceInCorrective_type"]', 'sustitución');
|
||||||
});
|
cy.selectOption('[data-cy="invoiceInCorrective_reason"]', 'vat');
|
||||||
cy.get('tbody > tr:visible').should('have.length', 1);
|
cy.dataCy('crudModelDefaultSaveBtn').click();
|
||||||
|
|
||||||
|
cy.wait('@crud');
|
||||||
|
cy.reload();
|
||||||
|
cy.wait('@getCorrective');
|
||||||
|
cy.validateRow('tbody > :nth-of-type(1)', [
|
||||||
|
,
|
||||||
|
'S – Por sustitución',
|
||||||
|
'R4',
|
||||||
|
'Error in VAT calculation',
|
||||||
|
]);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should not be able to modify the invoice if the original invoice is booked', () => {
|
||||||
|
cy.intercept('POST', '/api/InvoiceIns/corrective').as('corrective');
|
||||||
|
cy.visit('/#/invoice-in/4/summary');
|
||||||
|
cy.selectDescriptorOption();
|
||||||
|
cy.dataCy('VnConfirm_confirm').click();
|
||||||
|
cy.selectDescriptorOption(4);
|
||||||
|
cy.dataCy('saveCorrectiveInvoice').click();
|
||||||
|
|
||||||
|
cy.wait('@corrective').then(({ response }) => {
|
||||||
|
const correctingFk = response.body;
|
||||||
|
cy.url().should('include', `/invoice-in/${correctingFk}/summary`);
|
||||||
|
cy.visit(`/#/invoice-in/${correctingFk}/corrective`);
|
||||||
|
|
||||||
|
cy.dataCy('invoiceInCorrective_class').should('be.disabled');
|
||||||
|
cy.dataCy('invoiceInCorrective_type').should('be.disabled');
|
||||||
|
cy.dataCy('invoiceInCorrective_reason').should('be.disabled');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should show/hide the section if it is a corrective invoice', () => {
|
||||||
|
cy.visit('/#/invoice-in/1/summary');
|
||||||
|
cy.get('[data-cy="InvoiceInCorrective-menu-item"]').should('not.exist');
|
||||||
|
cy.clicDescriptorAction(4);
|
||||||
|
cy.get('[data-cy="InvoiceInCorrective-menu-item"]').should('exist');
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
|
@ -1,21 +1,147 @@
|
||||||
describe('InvoiceInDescriptor', () => {
|
describe('InvoiceInDescriptor', () => {
|
||||||
const book = '.summaryHeader > .no-wrap > .q-btn';
|
beforeEach(() => cy.login('administrative'));
|
||||||
const firstDescritorOpt = '.q-menu > .q-list > :nth-child(5) > .q-item__section';
|
|
||||||
const checkbox = ':nth-child(5) > .q-checkbox';
|
|
||||||
|
|
||||||
|
describe('more options', () => {
|
||||||
it('should booking and unbooking the invoice properly', () => {
|
it('should booking and unbooking the invoice properly', () => {
|
||||||
cy.viewport(1280, 720);
|
const checkbox = '[data-cy="vnLvIs booked"] > .q-checkbox';
|
||||||
cy.login('developer');
|
cy.visit('/#/invoice-in/2/summary');
|
||||||
|
cy.selectDescriptorOption();
|
||||||
|
cy.dataCy('VnConfirm_confirm').click();
|
||||||
|
cy.validateCheckbox(checkbox);
|
||||||
|
cy.selectDescriptorOption();
|
||||||
|
cy.dataCy('VnConfirm_confirm').click();
|
||||||
|
cy.validateCheckbox(checkbox, false);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should delete the invoice properly', () => {
|
||||||
|
cy.visit('/#/invoice-in/2/summary');
|
||||||
|
cy.selectDescriptorOption(2);
|
||||||
|
cy.clickConfirm();
|
||||||
|
cy.checkNotification('invoice deleted');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should clone the invoice properly', () => {
|
||||||
|
cy.visit('/#/invoice-in/3/summary');
|
||||||
|
cy.selectDescriptorOption(3);
|
||||||
|
cy.clickConfirm();
|
||||||
|
cy.checkNotification('Invoice cloned');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should show the agricultural PDF properly', () => {
|
||||||
|
cy.visit('/#/invoice-in/6/summary');
|
||||||
|
cy.validatePdfDownload(
|
||||||
|
/api\/InvoiceIns\/6\/invoice-in-pdf\?access_token=.*/,
|
||||||
|
() => cy.selectDescriptorOption(4),
|
||||||
|
);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should send the agricultural PDF properly', () => {
|
||||||
|
cy.intercept('POST', 'api/InvoiceIns/6/invoice-in-email').as('sendEmail');
|
||||||
|
cy.visit('/#/invoice-in/6/summary');
|
||||||
|
cy.selectDescriptorOption(5);
|
||||||
|
|
||||||
|
cy.dataCy('SendEmailNotifiactionDialogInput_input').type(
|
||||||
|
'{selectall}jorgito@gmail.mx',
|
||||||
|
);
|
||||||
|
cy.clickConfirm();
|
||||||
|
cy.checkNotification('Notification sent');
|
||||||
|
cy.wait('@sendEmail').then(({ request, response }) => {
|
||||||
|
expect(request.body).to.deep.equal({
|
||||||
|
recipientId: 2,
|
||||||
|
recipient: 'jorgito@gmail.mx',
|
||||||
|
});
|
||||||
|
expect(response.statusCode).to.equal(200);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
// https://redmine.verdnatura.es/issues/8767
|
||||||
|
it.skip('should download the file properly', () => {
|
||||||
cy.visit('/#/invoice-in/1/summary');
|
cy.visit('/#/invoice-in/1/summary');
|
||||||
cy.waitForElement('.q-page');
|
cy.validateDownload(() => cy.selectDescriptorOption(5));
|
||||||
|
|
||||||
cy.get(book).click();
|
|
||||||
cy.dataCy('VnConfirm_confirm').click();
|
|
||||||
cy.get(checkbox).invoke('attr', 'aria-checked').should('eq', 'true');
|
|
||||||
|
|
||||||
cy.dataCy('descriptor-more-opts').first().click();
|
|
||||||
cy.get(firstDescritorOpt).click();
|
|
||||||
cy.dataCy('VnConfirm_confirm').click();
|
|
||||||
cy.get(checkbox).invoke('attr', 'aria-checked').should('eq', 'false');
|
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
describe('buttons', () => {
|
||||||
|
beforeEach(() => cy.visit('/#/invoice-in/1/summary'));
|
||||||
|
|
||||||
|
it('should navigate to the supplier summary', () => {
|
||||||
|
cy.clicDescriptorAction(1);
|
||||||
|
cy.url().should('to.match', /supplier\/\d+\/summary/);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should navigate to the entry summary', () => {
|
||||||
|
cy.clicDescriptorAction(2);
|
||||||
|
cy.url().should('to.match', /entry\/\d+\/summary/);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should navigate to the invoiceIn list', () => {
|
||||||
|
cy.clicDescriptorAction(3);
|
||||||
|
cy.url().should('to.match', /invoice-in\/list\?table=\{.*supplierFk.+\}/);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('corrective', () => {
|
||||||
|
const originalId = 4;
|
||||||
|
|
||||||
|
beforeEach(() => cy.visit(`/#/invoice-in/${originalId}/summary`));
|
||||||
|
|
||||||
|
it('should create a correcting invoice and redirect to original invoice', () => {
|
||||||
|
createCorrective();
|
||||||
|
redirect(originalId);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should create a correcting invoice and navigate to list filtered by corrective', () => {
|
||||||
|
createCorrective();
|
||||||
|
redirect(originalId);
|
||||||
|
|
||||||
|
cy.clicDescriptorAction(4);
|
||||||
|
cy.validateVnTableRows({
|
||||||
|
cols: [
|
||||||
|
{
|
||||||
|
name: 'supplierRef',
|
||||||
|
val: '1237',
|
||||||
|
operation: 'include',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('link', () => {
|
||||||
|
it('should open the supplier descriptor popup', () => {
|
||||||
|
cy.visit('/#/invoice-in/1/summary');
|
||||||
|
cy.intercept('GET', /Suppliers\/\d+/).as('getSupplier');
|
||||||
|
|
||||||
|
cy.dataCy('invoiceInDescriptor_supplier').then(($el) => {
|
||||||
|
const alias = $el.text().trim();
|
||||||
|
$el.click();
|
||||||
|
cy.wait('@getSupplier').then(() =>
|
||||||
|
cy.validateDescriptor({ listbox: { 1: alias }, popup: true }),
|
||||||
|
);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
function createCorrective() {
|
||||||
|
cy.intercept('POST', '/api/InvoiceIns/corrective').as('corrective');
|
||||||
|
|
||||||
|
cy.selectDescriptorOption(4);
|
||||||
|
cy.dataCy('saveCorrectiveInvoice').click();
|
||||||
|
|
||||||
|
cy.wait('@corrective').then(({ response }) => {
|
||||||
|
const correctingId = response.body;
|
||||||
|
cy.url().should('include', `/invoice-in/${correctingId}/summary`);
|
||||||
|
cy.visit(`/#/invoice-in/${correctingId}/corrective`);
|
||||||
|
cy.dataCy('invoiceInCorrective_class').should('contain.value', 'R2');
|
||||||
|
cy.dataCy('invoiceInCorrective_type').should('contain.value', 'diferencias');
|
||||||
|
cy.dataCy('invoiceInCorrective_reason').should('contain.value', 'sales details');
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function redirect(subtitle) {
|
||||||
|
const regex = new RegExp(`InvoiceIns/${subtitle}\\?filter=.*`);
|
||||||
|
cy.intercept('GET', regex).as('getOriginal');
|
||||||
|
cy.clicDescriptorAction(4);
|
||||||
|
cy.wait('@getOriginal');
|
||||||
|
cy.validateDescriptor({ subtitle });
|
||||||
|
}
|
||||||
|
|
|
@ -4,7 +4,7 @@ describe('InvoiceInDueDay', () => {
|
||||||
const addBtn = '.q-page-sticky > div > .q-btn > .q-btn__content';
|
const addBtn = '.q-page-sticky > div > .q-btn > .q-btn__content';
|
||||||
|
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
cy.login('developer');
|
cy.login('administrative');
|
||||||
cy.visit(`/#/invoice-in/6/due-day`);
|
cy.visit(`/#/invoice-in/6/due-day`);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
@ -6,7 +6,7 @@ describe('InvoiceInIntrastat', () => {
|
||||||
const firstRowAmount = `${firstRow} > :nth-child(3)`;
|
const firstRowAmount = `${firstRow} > :nth-child(3)`;
|
||||||
|
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
cy.login('developer');
|
cy.login('administrative');
|
||||||
cy.visit(`/#/invoice-in/1/intrastat`);
|
cy.visit(`/#/invoice-in/1/intrastat`);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
@ -1,13 +1,21 @@
|
||||||
/// <reference types="cypress" />
|
/// <reference types="cypress" />
|
||||||
|
|
||||||
describe('InvoiceInList', () => {
|
describe('InvoiceInList', () => {
|
||||||
const firstRow = 'tbody.q-virtual-scroll__content tr:nth-child(1)';
|
const firstRow = 'tbody.q-virtual-scroll__content tr:nth-child(1)';
|
||||||
const firstId = `${firstRow} > td:nth-child(2) span`;
|
const firstId = `${firstRow} > td:nth-child(2) span`;
|
||||||
const firstDetailBtn = `${firstRow} .q-btn:nth-child(1)`;
|
const firstDetailBtn = `${firstRow} .q-btn:nth-child(1)`;
|
||||||
const summaryHeaders = '.summaryBody .header-link';
|
const summaryHeaders = '.summaryBody .header-link';
|
||||||
|
const mockInvoiceRef = `createMockInvoice${Math.floor(Math.random() * 100)}`;
|
||||||
|
const mock = {
|
||||||
|
vnSupplierSelect: { val: 'farmer king', type: 'select' },
|
||||||
|
'Invoice nº_input': mockInvoiceRef,
|
||||||
|
Company_select: { val: 'orn', type: 'select' },
|
||||||
|
'Expedition date_inputDate': '16-11-2001',
|
||||||
|
};
|
||||||
|
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
cy.viewport(1920, 1080);
|
cy.viewport(1920, 1080);
|
||||||
cy.login('developer');
|
cy.login('administrative');
|
||||||
cy.visit(`/#/invoice-in/list`);
|
cy.visit(`/#/invoice-in/list`);
|
||||||
cy.get('#searchbar input').type('{enter}');
|
cy.get('#searchbar input').type('{enter}');
|
||||||
});
|
});
|
||||||
|
@ -27,4 +35,18 @@ describe('InvoiceInList', () => {
|
||||||
cy.get(summaryHeaders).eq(1).contains('Basic data');
|
cy.get(summaryHeaders).eq(1).contains('Basic data');
|
||||||
cy.get(summaryHeaders).eq(4).contains('Vat');
|
cy.get(summaryHeaders).eq(4).contains('Vat');
|
||||||
});
|
});
|
||||||
|
|
||||||
|
it('should create a new Invoice', () => {
|
||||||
|
cy.dataCy('vnTableCreateBtn').click();
|
||||||
|
cy.fillInForm({ ...mock }, { attr: 'data-cy' });
|
||||||
|
cy.dataCy('FormModelPopup_save').click();
|
||||||
|
cy.intercept('GET', /\/api\/InvoiceIns\/\d+\/getTotals$/).as('invoice');
|
||||||
|
cy.wait('@invoice').then(() =>
|
||||||
|
cy.validateDescriptor({
|
||||||
|
title: mockInvoiceRef,
|
||||||
|
listBox: { 0: '11/16/2001', 3: 'The farmer' },
|
||||||
|
}),
|
||||||
|
);
|
||||||
|
cy.get('[data-cy="vnLvCompany"]').should('contain.text', 'ORN');
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|
|
@ -0,0 +1,23 @@
|
||||||
|
describe('InvoiceInSerial', () => {
|
||||||
|
beforeEach(() => {
|
||||||
|
cy.login('administrative');
|
||||||
|
cy.visit('#/invoice-in/serial');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should filter by serial number', () => {
|
||||||
|
cy.dataCy('serial_input').type('R{enter}');
|
||||||
|
cy.validateVnTableRows({ cols: [{ name: 'serial', val: 'r' }] });
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should filter by last days ', () => {
|
||||||
|
let before;
|
||||||
|
cy.dataCy('vnTableCell_total')
|
||||||
|
.invoke('text')
|
||||||
|
.then((total) => (before = +total));
|
||||||
|
|
||||||
|
cy.dataCy('Last days_input').type('{selectall}1{enter}');
|
||||||
|
cy.dataCy('vnTableCell_total')
|
||||||
|
.invoke('text')
|
||||||
|
.then((total) => expect(+total).to.be.lessThan(before));
|
||||||
|
});
|
||||||
|
});
|
|
@ -0,0 +1,24 @@
|
||||||
|
describe('InvoiceInSummary', () => {
|
||||||
|
beforeEach(() => {
|
||||||
|
cy.login('administrative');
|
||||||
|
cy.visit('/#/invoice-in/3/summary');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should booking and unbooking the invoice properly', () => {
|
||||||
|
const checkbox = '[data-cy="vnLvIs booked"] > .q-checkbox';
|
||||||
|
cy.dataCy('invoiceInSummary_book').click();
|
||||||
|
cy.dataCy('VnConfirm_confirm').click();
|
||||||
|
cy.validateCheckbox(checkbox);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should open the supplier descriptor popup', () => {
|
||||||
|
cy.intercept('GET', /Suppliers\/\d+/).as('getSupplier');
|
||||||
|
cy.dataCy('invoiceInSummary_supplier').then(($el) => {
|
||||||
|
const description = $el.text().trim();
|
||||||
|
$el.click();
|
||||||
|
cy.wait('@getSupplier').then(() =>
|
||||||
|
cy.validateDescriptor({ description, popup: true }),
|
||||||
|
);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue