Merge branch 'dev' into vnTable_multi_check
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
af8909177e
|
@ -125,7 +125,7 @@ pipeline {
|
||||||
sh "docker-compose ${env.COMPOSE_PARAMS} pull db"
|
sh "docker-compose ${env.COMPOSE_PARAMS} pull db"
|
||||||
sh "docker-compose ${env.COMPOSE_PARAMS} up -d"
|
sh "docker-compose ${env.COMPOSE_PARAMS} up -d"
|
||||||
|
|
||||||
def modules = sh(script: 'node test/cypress/docker/find/find.js', returnStdout: true).trim()
|
def modules = sh(script: "node test/cypress/docker/find/find.js ${env.COMPOSE_TAG}", returnStdout: true).trim()
|
||||||
echo "E2E MODULES: ${modules}"
|
echo "E2E MODULES: ${modules}"
|
||||||
image.inside("--network ${env.COMPOSE_PROJECT}_default -e CI -e TZ --init") {
|
image.inside("--network ${env.COMPOSE_PROJECT}_default -e CI -e TZ --init") {
|
||||||
sh "sh test/cypress/docker/cypressParallel.sh 1 '${modules}'"
|
sh "sh test/cypress/docker/cypressParallel.sh 1 '${modules}'"
|
||||||
|
|
|
@ -156,6 +156,9 @@ const selectTravel = ({ id }) => {
|
||||||
option-label="name"
|
option-label="name"
|
||||||
option-value="id"
|
option-value="id"
|
||||||
v-model="travelFilterParams.warehouseOutFk"
|
v-model="travelFilterParams.warehouseOutFk"
|
||||||
|
:where="{
|
||||||
|
isOrigin: true,
|
||||||
|
}"
|
||||||
/>
|
/>
|
||||||
<VnSelect
|
<VnSelect
|
||||||
:label="t('globals.warehouseIn')"
|
:label="t('globals.warehouseIn')"
|
||||||
|
@ -164,6 +167,9 @@ const selectTravel = ({ id }) => {
|
||||||
option-label="name"
|
option-label="name"
|
||||||
option-value="id"
|
option-value="id"
|
||||||
v-model="travelFilterParams.warehouseInFk"
|
v-model="travelFilterParams.warehouseInFk"
|
||||||
|
:where="{
|
||||||
|
isDestiny: true,
|
||||||
|
}"
|
||||||
/>
|
/>
|
||||||
<VnInputDate
|
<VnInputDate
|
||||||
:label="t('globals.shipped')"
|
:label="t('globals.shipped')"
|
||||||
|
|
|
@ -40,6 +40,9 @@ const onDataSaved = (data) => {
|
||||||
url="Warehouses"
|
url="Warehouses"
|
||||||
@on-fetch="(data) => (warehousesOptions = data)"
|
@on-fetch="(data) => (warehousesOptions = data)"
|
||||||
auto-load
|
auto-load
|
||||||
|
:where="{
|
||||||
|
isInventory: true,
|
||||||
|
}"
|
||||||
/>
|
/>
|
||||||
<FormModelPopup
|
<FormModelPopup
|
||||||
url-create="Items/regularize"
|
url-create="Items/regularize"
|
||||||
|
|
|
@ -368,7 +368,6 @@ function getCaption(opt) {
|
||||||
hide-bottom-space
|
hide-bottom-space
|
||||||
:input-debounce="useURL ? '300' : '0'"
|
:input-debounce="useURL ? '300' : '0'"
|
||||||
:loading="someIsLoading"
|
:loading="someIsLoading"
|
||||||
:disable="someIsLoading"
|
|
||||||
@virtual-scroll="onScroll"
|
@virtual-scroll="onScroll"
|
||||||
@keydown="handleKeyDown"
|
@keydown="handleKeyDown"
|
||||||
:data-cy="$attrs.dataCy ?? $attrs.label + '_select'"
|
:data-cy="$attrs.dataCy ?? $attrs.label + '_select'"
|
||||||
|
|
|
@ -222,7 +222,7 @@ defineExpose({
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div class="full-width" v-bind="attrs">
|
<div class="full-width">
|
||||||
<div
|
<div
|
||||||
v-if="!store.data && !store.data?.length && !isLoading"
|
v-if="!store.data && !store.data?.length && !isLoading"
|
||||||
class="info-row q-pa-md text-center"
|
class="info-row q-pa-md text-center"
|
||||||
|
|
|
@ -77,10 +77,10 @@ const isDefaultAddress = (address) => {
|
||||||
return client?.value?.defaultAddressFk === address.id ? 1 : 0;
|
return client?.value?.defaultAddressFk === address.id ? 1 : 0;
|
||||||
};
|
};
|
||||||
|
|
||||||
const setDefault = (address) => {
|
const setDefault = async (address) => {
|
||||||
const url = `Clients/${route.params.id}`;
|
const url = `Clients/${route.params.id}`;
|
||||||
const payload = { defaultAddressFk: address.id };
|
const payload = { defaultAddressFk: address.id };
|
||||||
axios.patch(url, payload).then((res) => {
|
await axios.patch(url, payload).then((res) => {
|
||||||
if (res.data) {
|
if (res.data) {
|
||||||
client.value.defaultAddressFk = res.data.defaultAddressFk;
|
client.value.defaultAddressFk = res.data.defaultAddressFk;
|
||||||
sortAddresses();
|
sortAddresses();
|
||||||
|
|
|
@ -162,6 +162,9 @@ const entryFilterPanel = ref();
|
||||||
v-model="params.warehouseOutFk"
|
v-model="params.warehouseOutFk"
|
||||||
@update:model-value="searchFn()"
|
@update:model-value="searchFn()"
|
||||||
url="Warehouses"
|
url="Warehouses"
|
||||||
|
:where="{
|
||||||
|
isOrigin: true,
|
||||||
|
}"
|
||||||
:fields="['id', 'name']"
|
:fields="['id', 'name']"
|
||||||
sort-by="name ASC"
|
sort-by="name ASC"
|
||||||
hide-selected
|
hide-selected
|
||||||
|
@ -177,6 +180,9 @@ const entryFilterPanel = ref();
|
||||||
v-model="params.warehouseInFk"
|
v-model="params.warehouseInFk"
|
||||||
@update:model-value="searchFn()"
|
@update:model-value="searchFn()"
|
||||||
url="Warehouses"
|
url="Warehouses"
|
||||||
|
:where="{
|
||||||
|
isDestiny: true,
|
||||||
|
}"
|
||||||
:fields="['id', 'name']"
|
:fields="['id', 'name']"
|
||||||
sort-by="name ASC"
|
sort-by="name ASC"
|
||||||
hide-selected
|
hide-selected
|
||||||
|
|
|
@ -6,13 +6,18 @@ import { useRoute } from 'vue-router';
|
||||||
import { useSession } from 'src/composables/useSession';
|
import { useSession } from 'src/composables/useSession';
|
||||||
import { toDateHourMin } from 'filters/index';
|
import { toDateHourMin } from 'filters/index';
|
||||||
import { useStateStore } from 'src/stores/useStateStore';
|
import { useStateStore } from 'src/stores/useStateStore';
|
||||||
|
import { dashIfEmpty } from 'src/filters';
|
||||||
|
|
||||||
|
import AgencyDescriptorProxy from '../Agency/Card/AgencyDescriptorProxy.vue';
|
||||||
|
import CustomerDescriptorProxy from 'src/pages/Customer/Card/CustomerDescriptorProxy.vue';
|
||||||
|
import RouteDescriptorProxy from '../Card/RouteDescriptorProxy.vue';
|
||||||
|
import SupplierDescriptorProxy from 'src/pages/Supplier/Card/SupplierDescriptorProxy.vue';
|
||||||
import TicketDescriptorProxy from 'pages/Ticket/Card/TicketDescriptorProxy.vue';
|
import TicketDescriptorProxy from 'pages/Ticket/Card/TicketDescriptorProxy.vue';
|
||||||
import CustomerDescriptorProxy from 'pages/Customer/Card/CustomerDescriptorProxy.vue';
|
|
||||||
|
|
||||||
import VnSubToolbar from 'src/components/ui/VnSubToolbar.vue';
|
import VnSubToolbar from 'src/components/ui/VnSubToolbar.vue';
|
||||||
import VnTable from 'components/VnTable/VnTable.vue';
|
import VnTable from 'components/VnTable/VnTable.vue';
|
||||||
import VnSearchbar from 'src/components/ui/VnSearchbar.vue';
|
import VnSearchbar from 'src/components/ui/VnSearchbar.vue';
|
||||||
|
import VnInput from 'src/components/common/VnInput.vue';
|
||||||
|
|
||||||
const route = useRoute();
|
const route = useRoute();
|
||||||
const { t } = useI18n();
|
const { t } = useI18n();
|
||||||
|
@ -30,39 +35,117 @@ const userParams = {
|
||||||
|
|
||||||
const columns = computed(() => [
|
const columns = computed(() => [
|
||||||
{
|
{
|
||||||
align: 'left',
|
align: 'right',
|
||||||
name: 'cmrFk',
|
name: 'cmrFk',
|
||||||
label: t('route.cmr.params.cmrFk'),
|
label: t('cmr.params.cmrFk'),
|
||||||
chip: {
|
chip: {
|
||||||
condition: () => true,
|
condition: () => true,
|
||||||
},
|
},
|
||||||
isId: true,
|
isId: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
align: 'center',
|
align: 'right',
|
||||||
name: 'hasCmrDms',
|
label: t('cmr.params.ticketFk'),
|
||||||
label: t('route.cmr.params.hasCmrDms'),
|
|
||||||
component: 'checkbox',
|
|
||||||
cardVisible: true,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
align: 'left',
|
|
||||||
label: t('route.cmr.params.ticketFk'),
|
|
||||||
name: 'ticketFk',
|
name: 'ticketFk',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
align: 'left',
|
align: 'right',
|
||||||
label: t('route.cmr.params.routeFk'),
|
label: t('cmr.params.routeFk'),
|
||||||
name: 'routeFk',
|
name: 'routeFk',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
align: 'left',
|
label: t('cmr.params.client'),
|
||||||
label: t('route.cmr.params.clientFk'),
|
|
||||||
name: 'clientFk',
|
name: 'clientFk',
|
||||||
|
component: 'select',
|
||||||
|
attrs: {
|
||||||
|
url: 'Clients',
|
||||||
|
fields: ['id', 'name'],
|
||||||
|
},
|
||||||
|
columnFilter: {
|
||||||
|
name: 'clientFk',
|
||||||
|
attrs: {
|
||||||
|
url: 'Clients',
|
||||||
|
fields: ['id', 'name'],
|
||||||
|
},
|
||||||
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
align: 'right',
|
label: t('cmr.params.agency'),
|
||||||
label: t('route.cmr.params.countryFk'),
|
name: 'agencyModeFk',
|
||||||
|
component: 'select',
|
||||||
|
attrs: {
|
||||||
|
url: 'Agencies',
|
||||||
|
fields: ['id', 'name'],
|
||||||
|
},
|
||||||
|
columnFilter: {
|
||||||
|
name: 'agencyModeFk',
|
||||||
|
attrs: {
|
||||||
|
url: 'Agencies',
|
||||||
|
fields: ['id', 'name'],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
format: ({ agencyName }) => agencyName,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: t('cmr.params.supplier'),
|
||||||
|
name: 'supplierFk',
|
||||||
|
component: 'select',
|
||||||
|
attrs: {
|
||||||
|
url: 'suppliers',
|
||||||
|
fields: ['id', 'name'],
|
||||||
|
},
|
||||||
|
columnFilter: {
|
||||||
|
name: 'supplierFk',
|
||||||
|
attrs: {
|
||||||
|
url: 'suppliers',
|
||||||
|
fields: ['id', 'name'],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: t('cmr.params.sender'),
|
||||||
|
name: 'addressFromFk',
|
||||||
|
component: 'select',
|
||||||
|
attrs: {
|
||||||
|
url: 'Addresses',
|
||||||
|
fields: ['id', 'nickname'],
|
||||||
|
optionValue: 'id',
|
||||||
|
optionLabel: 'nickname',
|
||||||
|
},
|
||||||
|
columnFilter: {
|
||||||
|
name: 'addressFromFk',
|
||||||
|
attrs: {
|
||||||
|
url: 'Addresses',
|
||||||
|
fields: ['id', 'nickname'],
|
||||||
|
optionValue: 'id',
|
||||||
|
optionLabel: 'nickname',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
format: ({ origin }) => origin,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: t('cmr.params.destination'),
|
||||||
|
name: 'addressToFk',
|
||||||
|
component: 'select',
|
||||||
|
attrs: {
|
||||||
|
url: 'addresses',
|
||||||
|
fields: ['id', 'nickname'],
|
||||||
|
optionValue: 'id',
|
||||||
|
optionLabel: 'nickname',
|
||||||
|
},
|
||||||
|
columnFilter: {
|
||||||
|
name: 'addressToFk',
|
||||||
|
attrs: {
|
||||||
|
url: 'addresses',
|
||||||
|
fields: ['id', 'nickname'],
|
||||||
|
optionValue: 'id',
|
||||||
|
optionLabel: 'nickname',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
format: ({ destination }) => destination,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: t('cmr.params.country'),
|
||||||
name: 'countryFk',
|
name: 'countryFk',
|
||||||
component: 'select',
|
component: 'select',
|
||||||
attrs: {
|
attrs: {
|
||||||
|
@ -79,16 +162,61 @@ const columns = computed(() => [
|
||||||
format: ({ countryName }) => countryName,
|
format: ({ countryName }) => countryName,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
align: 'right',
|
label: t('cmr.params.created'),
|
||||||
label: t('route.cmr.params.shipped'),
|
name: 'created',
|
||||||
name: 'shipped',
|
|
||||||
cardVisible: true,
|
|
||||||
component: 'date',
|
component: 'date',
|
||||||
format: ({ shipped }) => toDateHourMin(shipped),
|
format: ({ created }) => dashIfEmpty(toDateHourMin(created)),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
align: 'right',
|
label: t('cmr.params.shipped'),
|
||||||
label: t('route.cmr.params.warehouseFk'),
|
name: 'shipped',
|
||||||
|
component: 'date',
|
||||||
|
format: ({ shipped }) => dashIfEmpty(toDateHourMin(shipped)),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: t('cmr.params.etd'),
|
||||||
|
name: 'ead',
|
||||||
|
component: 'date',
|
||||||
|
format: ({ ead }) => dashIfEmpty(toDateHourMin(ead)),
|
||||||
|
toolTip: t('cmr.params.etdTooltip'),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: t('globals.landed'),
|
||||||
|
name: 'landed',
|
||||||
|
component: 'date',
|
||||||
|
format: ({ landed }) => dashIfEmpty(toDateHourMin(landed)),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
align: 'left',
|
||||||
|
label: t('cmr.params.packageList'),
|
||||||
|
name: 'packagesList',
|
||||||
|
columnFilter: false,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
align: 'left',
|
||||||
|
label: t('cmr.params.observation'),
|
||||||
|
name: 'observation',
|
||||||
|
columnFilter: false,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
align: 'left',
|
||||||
|
label: t('cmr.params.senderInstructions'),
|
||||||
|
name: 'senderInstruccions',
|
||||||
|
columnFilter: false,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
align: 'left',
|
||||||
|
label: t('cmr.params.paymentInstructions'),
|
||||||
|
name: 'paymentInstruccions',
|
||||||
|
columnFilter: false,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
align: 'left',
|
||||||
|
label: t('cmr.params.vehiclePlate'),
|
||||||
|
name: 'truckPlate',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: t('cmr.params.warehouse'),
|
||||||
name: 'warehouseFk',
|
name: 'warehouseFk',
|
||||||
component: 'select',
|
component: 'select',
|
||||||
attrs: {
|
attrs: {
|
||||||
|
@ -96,7 +224,6 @@ const columns = computed(() => [
|
||||||
fields: ['id', 'name'],
|
fields: ['id', 'name'],
|
||||||
},
|
},
|
||||||
columnFilter: {
|
columnFilter: {
|
||||||
inWhere: true,
|
|
||||||
name: 'warehouseFk',
|
name: 'warehouseFk',
|
||||||
attrs: {
|
attrs: {
|
||||||
url: 'warehouses',
|
url: 'warehouses',
|
||||||
|
@ -105,12 +232,23 @@ const columns = computed(() => [
|
||||||
},
|
},
|
||||||
format: ({ warehouseName }) => warehouseName,
|
format: ({ warehouseName }) => warehouseName,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
align: 'left',
|
||||||
|
name: 'specialAgreements',
|
||||||
|
label: t('cmr.params.specialAgreements'),
|
||||||
|
columnFilter: false,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'hasCmrDms',
|
||||||
|
label: t('cmr.params.hasCmrDms'),
|
||||||
|
component: 'checkbox',
|
||||||
|
},
|
||||||
{
|
{
|
||||||
align: 'center',
|
align: 'center',
|
||||||
name: 'tableActions',
|
name: 'tableActions',
|
||||||
actions: [
|
actions: [
|
||||||
{
|
{
|
||||||
title: t('route.cmr.params.viewCmr'),
|
title: t('cmr.params.viewCmr'),
|
||||||
icon: 'visibility',
|
icon: 'visibility',
|
||||||
isPrimary: true,
|
isPrimary: true,
|
||||||
action: (row) => window.open(getCmrUrl(row?.cmrFk), '_blank'),
|
action: (row) => window.open(getCmrUrl(row?.cmrFk), '_blank'),
|
||||||
|
@ -151,11 +289,7 @@ function downloadPdfs() {
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
<template>
|
<template>
|
||||||
<VnSearchbar
|
<VnSearchbar :data-key :label="t('cmr.search')" :info="t('cmr.searchInfo')" />
|
||||||
:data-key
|
|
||||||
:label="t('route.cmr.search')"
|
|
||||||
:info="t('route.cmr.searchInfo')"
|
|
||||||
/>
|
|
||||||
<VnSubToolbar>
|
<VnSubToolbar>
|
||||||
<template #st-actions>
|
<template #st-actions>
|
||||||
<QBtn
|
<QBtn
|
||||||
|
@ -165,7 +299,7 @@ function downloadPdfs() {
|
||||||
:disable="!selectedRows?.length"
|
:disable="!selectedRows?.length"
|
||||||
@click="downloadPdfs"
|
@click="downloadPdfs"
|
||||||
>
|
>
|
||||||
<QTooltip>{{ t('route.cmr.params.downloadCmrs') }}</QTooltip>
|
<QTooltip>{{ t('cmr.params.downloadCmrs') }}</QTooltip>
|
||||||
</QBtn>
|
</QBtn>
|
||||||
</template>
|
</template>
|
||||||
</VnSubToolbar>
|
</VnSubToolbar>
|
||||||
|
@ -191,11 +325,72 @@ function downloadPdfs() {
|
||||||
<TicketDescriptorProxy :id="row.ticketFk" />
|
<TicketDescriptorProxy :id="row.ticketFk" />
|
||||||
</span>
|
</span>
|
||||||
</template>
|
</template>
|
||||||
|
<template #column-routeFk="{ row }">
|
||||||
|
<span class="link" @click.stop>
|
||||||
|
{{ row.routeFk }}
|
||||||
|
<RouteDescriptorProxy :id="row.routeFk" />
|
||||||
|
</span>
|
||||||
|
</template>
|
||||||
<template #column-clientFk="{ row }">
|
<template #column-clientFk="{ row }">
|
||||||
<span class="link" @click.stop>
|
<span class="link" @click.stop>
|
||||||
{{ row.clientFk }}
|
{{ row.clientName }}
|
||||||
<CustomerDescriptorProxy :id="row.clientFk" />
|
<CustomerDescriptorProxy :id="row.clientFk" />
|
||||||
</span>
|
</span>
|
||||||
</template>
|
</template>
|
||||||
|
<template #column-agencyModeFk="{ row }">
|
||||||
|
<span class="link" @click.stop>
|
||||||
|
{{ row.agencyName }}
|
||||||
|
<AgencyDescriptorProxy :id="row.agencyModeFk" />
|
||||||
|
</span>
|
||||||
|
</template>
|
||||||
|
<template #column-supplierFk="{ row }">
|
||||||
|
<span class="link" @click.stop>
|
||||||
|
{{ row.carrierName }}
|
||||||
|
<SupplierDescriptorProxy :id="row.supplierFk" />
|
||||||
|
</span>
|
||||||
|
</template>
|
||||||
|
<template #column-observation="{ row }">
|
||||||
|
<VnInput
|
||||||
|
v-if="row.observation"
|
||||||
|
type="textarea"
|
||||||
|
v-model="row.observation"
|
||||||
|
readonly
|
||||||
|
dense
|
||||||
|
rows="2"
|
||||||
|
style="overflow: hidden; text-overflow: ellipsis; white-space: nowrap"
|
||||||
|
/>
|
||||||
|
</template>
|
||||||
|
<template #column-packagesList="{ row }">
|
||||||
|
<span>
|
||||||
|
{{ row.packagesList }}
|
||||||
|
<QTooltip v-if="row.packagesList" :label="row.packagesList">
|
||||||
|
{{ row.packagesList }}
|
||||||
|
</QTooltip>
|
||||||
|
</span>
|
||||||
|
</template>
|
||||||
|
<template #column-senderInstruccions="{ row }">
|
||||||
|
<span>
|
||||||
|
{{ row.senderInstruccions }}
|
||||||
|
<QTooltip v-if="row.packagesList" :label="row.packagesList">
|
||||||
|
{{ row.senderInstruccions }}
|
||||||
|
</QTooltip>
|
||||||
|
</span>
|
||||||
|
</template>
|
||||||
|
<template #column-paymentInstruccions="{ row }">
|
||||||
|
<span>
|
||||||
|
{{ row.paymentInstruccions }}
|
||||||
|
<QTooltip v-if="row.packagesList" :label="row.packagesList">
|
||||||
|
{{ row.paymentInstruccions }}
|
||||||
|
</QTooltip>
|
||||||
|
</span>
|
||||||
|
</template>
|
||||||
|
<template #column-specialAgreements="{ row }">
|
||||||
|
<span>
|
||||||
|
{{ row.specialAgreements }}
|
||||||
|
<QTooltip v-if="row.packagesList" :label="row.packagesList">
|
||||||
|
{{ row.specialAgreements }}
|
||||||
|
</QTooltip>
|
||||||
|
</span>
|
||||||
|
</template>
|
||||||
</VnTable>
|
</VnTable>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
@ -0,0 +1,31 @@
|
||||||
|
cmr:
|
||||||
|
search: Search Cmr
|
||||||
|
searchInfo: You can search Cmr by Id
|
||||||
|
params:
|
||||||
|
agency: Agency
|
||||||
|
client: Client
|
||||||
|
cmrFk: CMR id
|
||||||
|
country: Country
|
||||||
|
created: Created
|
||||||
|
destination: Destination
|
||||||
|
downloadCmrs: Download CMRs
|
||||||
|
etd: ETD
|
||||||
|
etdTooltip: Estimated Time Delivery
|
||||||
|
hasCmrDms: Attached in gestdoc
|
||||||
|
observation: Observation
|
||||||
|
packageList: Package List
|
||||||
|
paymentInstructions: Payment instructions
|
||||||
|
routeFk: Route id
|
||||||
|
results: results
|
||||||
|
search: General search
|
||||||
|
sender: Sender
|
||||||
|
senderInstructions: Sender instructions
|
||||||
|
shipped: Shipped
|
||||||
|
specialAgreements: Special agreements
|
||||||
|
supplier: Carrier
|
||||||
|
ticketFk: Ticket id
|
||||||
|
vehiclePlate: Vehicle plate
|
||||||
|
viewCmr: View CMR
|
||||||
|
warehouse: Warehouse
|
||||||
|
'true': 'Yes'
|
||||||
|
'false': 'No'
|
|
@ -0,0 +1,31 @@
|
||||||
|
cmr:
|
||||||
|
search: Buscar Cmr
|
||||||
|
searchInfo: Puedes buscar cmr por id
|
||||||
|
params:
|
||||||
|
agency: Agencia
|
||||||
|
client: Cliente
|
||||||
|
cmrFk: Id cmr
|
||||||
|
country: País
|
||||||
|
created: Creado
|
||||||
|
destination: Destinatario
|
||||||
|
downloadCmrs: Descargar CMRs
|
||||||
|
etd: ETD
|
||||||
|
etdTooltip: Fecha estimada de entrega
|
||||||
|
hasCmrDms: Adjunto en gestdoc
|
||||||
|
observation: Observaciones
|
||||||
|
packageList: Listado embalajes
|
||||||
|
paymentInstructions: Instrucciones de pago
|
||||||
|
routeFk: Id ruta
|
||||||
|
results: Resultados
|
||||||
|
search: Busqueda general
|
||||||
|
sender: Remitente
|
||||||
|
senderInstructions: Instrucciones de envío
|
||||||
|
shipped: F. envío
|
||||||
|
specialAgreements: Acuerdos especiales
|
||||||
|
supplier: Transportista
|
||||||
|
ticketFk: Id ticket
|
||||||
|
vehiclePlate: Matrícula
|
||||||
|
viewCmr: Ver CMR
|
||||||
|
warehouse: Almacén
|
||||||
|
'true': 'Si'
|
||||||
|
'false': 'No'
|
|
@ -51,6 +51,11 @@ route:
|
||||||
agencyModeName: Agency route
|
agencyModeName: Agency route
|
||||||
isOwn: Own
|
isOwn: Own
|
||||||
isAnyVolumeAllowed: Any volume allowed
|
isAnyVolumeAllowed: Any volume allowed
|
||||||
|
created: Created
|
||||||
|
addressFromFk: Sender
|
||||||
|
addressToFk: Destination
|
||||||
|
landed: Landed
|
||||||
|
ead: EAD
|
||||||
Worker: Worker
|
Worker: Worker
|
||||||
Agency: Agency
|
Agency: Agency
|
||||||
Vehicle: Vehicle
|
Vehicle: Vehicle
|
||||||
|
@ -70,21 +75,3 @@ route:
|
||||||
searchInfo: You can search by route reference
|
searchInfo: You can search by route reference
|
||||||
dated: Dated
|
dated: Dated
|
||||||
preview: Preview
|
preview: Preview
|
||||||
cmr:
|
|
||||||
search: Search Cmr
|
|
||||||
searchInfo: You can search Cmr by Id
|
|
||||||
params:
|
|
||||||
results: results
|
|
||||||
cmrFk: CMR id
|
|
||||||
hasCmrDms: Attached in gestdoc
|
|
||||||
'true': 'Yes'
|
|
||||||
'false': 'No'
|
|
||||||
ticketFk: Ticketd id
|
|
||||||
routeFk: Route id
|
|
||||||
countryFk: Country
|
|
||||||
clientFk: Client id
|
|
||||||
warehouseFk: Warehouse
|
|
||||||
shipped: Preparation date
|
|
||||||
viewCmr: View CMR
|
|
||||||
downloadCmrs: Download CMRs
|
|
||||||
search: General search
|
|
||||||
|
|
|
@ -47,11 +47,16 @@ route:
|
||||||
routeFk: Id ruta
|
routeFk: Id ruta
|
||||||
clientFk: Id cliente
|
clientFk: Id cliente
|
||||||
countryFk: Pais
|
countryFk: Pais
|
||||||
shipped: Fecha preparación
|
shipped: F. envío
|
||||||
agencyModeName: Agencia Ruta
|
agencyModeName: Agencia Ruta
|
||||||
agencyAgreement: Agencia Acuerdo
|
agencyAgreement: Agencia Acuerdo
|
||||||
isOwn: Propio
|
isOwn: Propio
|
||||||
isAnyVolumeAllowed: Cualquier volumen
|
isAnyVolumeAllowed: Cualquier volumen
|
||||||
|
created: Creado
|
||||||
|
addressFromFk: Remitente
|
||||||
|
addressToFk: Destinatario
|
||||||
|
landed: F. entrega
|
||||||
|
ead: ETD
|
||||||
Worker: Trabajador
|
Worker: Trabajador
|
||||||
Agency: Agencia
|
Agency: Agencia
|
||||||
Vehicle: Vehículo
|
Vehicle: Vehículo
|
||||||
|
|
|
@ -239,6 +239,9 @@ async function getZone(options) {
|
||||||
<FetchData
|
<FetchData
|
||||||
url="Warehouses"
|
url="Warehouses"
|
||||||
@on-fetch="(data) => (warehousesOptions = data)"
|
@on-fetch="(data) => (warehousesOptions = data)"
|
||||||
|
:where="{
|
||||||
|
isForTicket: true,
|
||||||
|
}"
|
||||||
auto-load
|
auto-load
|
||||||
/>
|
/>
|
||||||
<FetchData
|
<FetchData
|
||||||
|
@ -414,13 +417,6 @@ async function getZone(options) {
|
||||||
:rules="validate('ticketList.shipped')"
|
:rules="validate('ticketList.shipped')"
|
||||||
@update:model-value="setShipped"
|
@update:model-value="setShipped"
|
||||||
/>
|
/>
|
||||||
<VnInputTime
|
|
||||||
:label="t('basicData.shippedHour')"
|
|
||||||
v-model="formData.shipped"
|
|
||||||
:required="true"
|
|
||||||
:rules="validate('basicData.shippedHour')"
|
|
||||||
@update:model-value="setShipped"
|
|
||||||
/>
|
|
||||||
<VnInputDate
|
<VnInputDate
|
||||||
:label="t('basicData.landed')"
|
:label="t('basicData.landed')"
|
||||||
v-model="formData.landed"
|
v-model="formData.landed"
|
||||||
|
|
|
@ -55,73 +55,75 @@ async function handleSave(e) {
|
||||||
auto-load
|
auto-load
|
||||||
url="ObservationTypes"
|
url="ObservationTypes"
|
||||||
/>
|
/>
|
||||||
<div class="flex justify-center">
|
<div class="full-width flex justify-center">
|
||||||
<CrudModel
|
<QPage class="card-width q-pa-lg">
|
||||||
ref="ticketNotesCrudRef"
|
<CrudModel
|
||||||
data-key="TicketNotes"
|
class="fit"
|
||||||
url="TicketObservations"
|
ref="ticketNotesCrudRef"
|
||||||
model="TicketNotes"
|
data-key="TicketNotes"
|
||||||
:filter="crudModelFilter"
|
url="TicketObservations"
|
||||||
:data-required="crudModelRequiredData"
|
model="TicketNotes"
|
||||||
:default-remove="false"
|
:filter="crudModelFilter"
|
||||||
auto-load
|
:data-required="crudModelRequiredData"
|
||||||
style="max-width: 800px"
|
:default-remove="false"
|
||||||
>
|
auto-load
|
||||||
<template #body="{ rows }">
|
>
|
||||||
<QCard class="q-px-lg q-py-md">
|
<template #body="{ rows }">
|
||||||
<div
|
<QCard class="q-px-lg q-py-md">
|
||||||
v-for="(row, index) in rows"
|
<div
|
||||||
:key="index"
|
v-for="(row, index) in rows"
|
||||||
class="q-mb-md row q-gutter-x-md"
|
:key="index"
|
||||||
>
|
class="q-mb-md row items-center q-gutter-x-md"
|
||||||
<VnSelect
|
|
||||||
:label="t('ticketNotes.observationType')"
|
|
||||||
:options="observationTypes"
|
|
||||||
hide-selected
|
|
||||||
option-label="description"
|
|
||||||
option-value="id"
|
|
||||||
v-model="row.observationTypeFk"
|
|
||||||
:disable="!!row.id"
|
|
||||||
data-cy="ticketNotesObservationType"
|
|
||||||
/>
|
|
||||||
<VnInput
|
|
||||||
:label="t('basicData.description')"
|
|
||||||
v-model="row.description"
|
|
||||||
class="col"
|
|
||||||
@keydown.enter.stop="handleSave"
|
|
||||||
autogrow
|
|
||||||
data-cy="ticketNotesDescription"
|
|
||||||
/>
|
|
||||||
<QIcon
|
|
||||||
name="delete"
|
|
||||||
size="sm"
|
|
||||||
class="cursor-pointer"
|
|
||||||
color="primary"
|
|
||||||
@click="handleDelete(row)"
|
|
||||||
data-cy="ticketNotesRemoveNoteBtn"
|
|
||||||
>
|
>
|
||||||
<QTooltip>
|
<VnSelect
|
||||||
{{ t('ticketNotes.removeNote') }}
|
:label="t('ticketNotes.observationType')"
|
||||||
</QTooltip>
|
:options="observationTypes"
|
||||||
</QIcon>
|
hide-selected
|
||||||
</div>
|
option-label="description"
|
||||||
<VnRow v-if="observationTypes.length > rows.length">
|
option-value="id"
|
||||||
<QBtn
|
v-model="row.observationTypeFk"
|
||||||
icon="add_circle"
|
:disable="!!row.id"
|
||||||
v-shortcut="'+'"
|
data-cy="ticketNotesObservationType"
|
||||||
flat
|
/>
|
||||||
class="fill-icon-on-hover q-ml-md"
|
<VnInput
|
||||||
color="primary"
|
:label="t('basicData.description')"
|
||||||
@click="ticketNotesCrudRef.insert()"
|
v-model="row.description"
|
||||||
data-cy="ticketNotesAddNoteBtn"
|
class="col"
|
||||||
>
|
@keydown.enter.stop="handleSave"
|
||||||
<QTooltip>
|
autogrow
|
||||||
{{ t('ticketNotes.addNote') }}
|
data-cy="ticketNotesDescription"
|
||||||
</QTooltip>
|
/>
|
||||||
</QBtn>
|
<QIcon
|
||||||
</VnRow>
|
name="delete"
|
||||||
</QCard>
|
size="sm"
|
||||||
</template>
|
class="cursor-pointer"
|
||||||
</CrudModel>
|
color="primary"
|
||||||
|
@click="handleDelete(row)"
|
||||||
|
data-cy="ticketNotesRemoveNoteBtn"
|
||||||
|
>
|
||||||
|
<QTooltip>
|
||||||
|
{{ t('ticketNotes.removeNote') }}
|
||||||
|
</QTooltip>
|
||||||
|
</QIcon>
|
||||||
|
</div>
|
||||||
|
<VnRow v-if="observationTypes.length > rows.length">
|
||||||
|
<QBtn
|
||||||
|
icon="add_circle"
|
||||||
|
v-shortcut="'+'"
|
||||||
|
flat
|
||||||
|
class="fill-icon-on-hover q-ml-md"
|
||||||
|
color="primary"
|
||||||
|
@click="ticketNotesCrudRef.insert()"
|
||||||
|
data-cy="ticketNotesAddNoteBtn"
|
||||||
|
>
|
||||||
|
<QTooltip>
|
||||||
|
{{ t('ticketNotes.addNote') }}
|
||||||
|
</QTooltip>
|
||||||
|
</QBtn>
|
||||||
|
</VnRow>
|
||||||
|
</QCard>
|
||||||
|
</template>
|
||||||
|
</CrudModel>
|
||||||
|
</QPage>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
@ -49,88 +49,95 @@ watch(
|
||||||
<FetchData
|
<FetchData
|
||||||
@on-fetch="(data) => (listPackagingsOptions = data)"
|
@on-fetch="(data) => (listPackagingsOptions = data)"
|
||||||
auto-load
|
auto-load
|
||||||
:filter="{ fields: ['packagingFk', 'name'], order: 'name ASC' }"
|
|
||||||
url="Packagings/listPackaging"
|
url="Packagings/listPackaging"
|
||||||
|
:filter="{
|
||||||
|
fields: ['packagingFk', 'name'],
|
||||||
|
order: ['name ASC'],
|
||||||
|
}"
|
||||||
/>
|
/>
|
||||||
<div class="flex justify-center">
|
<div class="full-width flex justify-center">
|
||||||
<CrudModel
|
<QPage class="card-width q-pa-lg">
|
||||||
ref="ticketPackagingsCrudRef"
|
<CrudModel
|
||||||
data-key="TicketPackagings"
|
ref="ticketPackagingsCrudRef"
|
||||||
url="TicketPackagings"
|
data-key="TicketPackagings"
|
||||||
model="TicketPackagings"
|
url="TicketPackagings"
|
||||||
:filter="crudModelFilter"
|
model="TicketPackagings"
|
||||||
:data-required="crudModelRequiredData"
|
:filter="crudModelFilter"
|
||||||
:default-remove="false"
|
:data-required="crudModelRequiredData"
|
||||||
auto-load
|
:default-remove="false"
|
||||||
style="max-width: 800px"
|
auto-load
|
||||||
>
|
>
|
||||||
<template #body="{ rows, validate }">
|
<template #body="{ rows, validate }">
|
||||||
<QCard class="q-px-lg q-py-md">
|
<QCard class="q-px-lg q-py-md">
|
||||||
<div
|
<div
|
||||||
v-for="(row, index) in rows"
|
v-for="(row, index) in rows"
|
||||||
:key="index"
|
:key="index"
|
||||||
class="q-mb-md row items-center q-gutter-x-md"
|
class="q-mb-md row items-center q-gutter-x-md"
|
||||||
>
|
|
||||||
<VnSelect
|
|
||||||
:label="t('package.package')"
|
|
||||||
:options="listPackagingsOptions"
|
|
||||||
hide-selected
|
|
||||||
option-label="name"
|
|
||||||
option-value="packagingFk"
|
|
||||||
v-model="row.packagingFk"
|
|
||||||
>
|
>
|
||||||
<template #option="scope">
|
<VnSelect
|
||||||
<QItem v-bind="scope.itemProps">
|
:label="t('package.package')"
|
||||||
<QItemSection>
|
:options="listPackagingsOptions"
|
||||||
<QItemLabel>
|
hide-selected
|
||||||
{{ scope.opt?.name }}
|
option-label="name"
|
||||||
</QItemLabel>
|
option-value="packagingFk"
|
||||||
<QItemLabel caption>
|
v-model="row.packagingFk"
|
||||||
#{{ scope.opt?.itemFk }}
|
>
|
||||||
</QItemLabel>
|
<template #option="scope">
|
||||||
</QItemSection>
|
<QItem v-bind="scope.itemProps">
|
||||||
</QItem>
|
<QItemSection>
|
||||||
</template>
|
<QItemLabel>
|
||||||
</VnSelect>
|
{{ scope.opt?.name }}
|
||||||
<VnInput
|
</QItemLabel>
|
||||||
:label="t('basicData.quantity')"
|
<QItemLabel caption>
|
||||||
v-model.number="row.quantity"
|
#{{ scope.opt?.itemFk }}
|
||||||
class="col"
|
</QItemLabel>
|
||||||
type="number"
|
</QItemSection>
|
||||||
min="1"
|
</QItem>
|
||||||
:required="true"
|
</template>
|
||||||
@update:model-value="handleInputQuantityClear(row)"
|
</VnSelect>
|
||||||
:rules="validate('TicketPackaging.quantity')"
|
<VnInput
|
||||||
/>
|
:label="t('basicData.quantity')"
|
||||||
<VnInputDate :label="t('package.added')" v-model="row.created" />
|
v-model.number="row.quantity"
|
||||||
<QIcon
|
class="col"
|
||||||
name="delete"
|
type="number"
|
||||||
size="sm"
|
min="1"
|
||||||
class="cursor-pointer"
|
:required="true"
|
||||||
color="primary"
|
@update:model-value="handleInputQuantityClear(row)"
|
||||||
@click="ticketPackagingsCrudRef.remove([row])"
|
:rules="validate('TicketPackaging.quantity')"
|
||||||
>
|
/>
|
||||||
<QTooltip>
|
<VnInputDate
|
||||||
{{ t('package.removePackage') }}
|
:label="t('package.added')"
|
||||||
</QTooltip>
|
v-model="row.created"
|
||||||
</QIcon>
|
/>
|
||||||
</div>
|
<QIcon
|
||||||
<VnRow>
|
name="delete"
|
||||||
<QBtn
|
size="sm"
|
||||||
icon="add_circle"
|
class="cursor-pointer"
|
||||||
v-shortcut="'+'"
|
color="primary"
|
||||||
flat
|
@click="ticketPackagingsCrudRef.remove([row])"
|
||||||
class="fill-icon-on-hover q-ml-md"
|
>
|
||||||
color="primary"
|
<QTooltip>
|
||||||
@click="ticketPackagingsCrudRef.insert()"
|
{{ t('package.removePackage') }}
|
||||||
>
|
</QTooltip>
|
||||||
<QTooltip>
|
</QIcon>
|
||||||
{{ t('package.addPackage') }}
|
</div>
|
||||||
</QTooltip>
|
<VnRow>
|
||||||
</QBtn>
|
<QBtn
|
||||||
</VnRow>
|
icon="add_circle"
|
||||||
</QCard>
|
v-shortcut="'+'"
|
||||||
</template>
|
flat
|
||||||
</CrudModel>
|
class="fill-icon-on-hover q-ml-md"
|
||||||
|
color="primary"
|
||||||
|
@click="ticketPackagingsCrudRef.insert()"
|
||||||
|
>
|
||||||
|
<QTooltip>
|
||||||
|
{{ t('package.addPackage') }}
|
||||||
|
</QTooltip>
|
||||||
|
</QBtn>
|
||||||
|
</VnRow>
|
||||||
|
</QCard>
|
||||||
|
</template>
|
||||||
|
</CrudModel>
|
||||||
|
</QPage>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
@ -47,7 +47,14 @@ const setUserParams = (params) => {
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<FetchData url="Warehouses" @on-fetch="(data) => (warehouses = data)" auto-load />
|
<FetchData
|
||||||
|
url="Warehouses"
|
||||||
|
@on-fetch="(data) => (warehouses = data)"
|
||||||
|
:where="{
|
||||||
|
isForTicket: true,
|
||||||
|
}"
|
||||||
|
auto-load
|
||||||
|
/>
|
||||||
<FetchData
|
<FetchData
|
||||||
url="ItemCategories"
|
url="ItemCategories"
|
||||||
:filter="{ fields: ['id', 'name'], order: 'name ASC' }"
|
:filter="{ fields: ['id', 'name'], order: 'name ASC' }"
|
||||||
|
|
|
@ -385,7 +385,12 @@ watch(
|
||||||
if (!$el) return;
|
if (!$el) return;
|
||||||
const head = $el.querySelector('thead');
|
const head = $el.querySelector('thead');
|
||||||
const firstRow = $el.querySelector('thead > tr');
|
const firstRow = $el.querySelector('thead > tr');
|
||||||
|
const headSelectionCol = $el.querySelector(
|
||||||
|
'thead tr.bg-header th.q-table--col-auto-width',
|
||||||
|
);
|
||||||
|
if (headSelectionCol) {
|
||||||
|
headSelectionCol.classList.add('horizontal-separator');
|
||||||
|
}
|
||||||
const newRow = document.createElement('tr');
|
const newRow = document.createElement('tr');
|
||||||
destinationElRef.value = document.createElement('th');
|
destinationElRef.value = document.createElement('th');
|
||||||
originElRef.value = document.createElement('th');
|
originElRef.value = document.createElement('th');
|
||||||
|
@ -394,8 +399,8 @@ watch(
|
||||||
destinationElRef.value.classList.add('text-uppercase', 'color-vn-label');
|
destinationElRef.value.classList.add('text-uppercase', 'color-vn-label');
|
||||||
originElRef.value.classList.add('text-uppercase', 'color-vn-label');
|
originElRef.value.classList.add('text-uppercase', 'color-vn-label');
|
||||||
|
|
||||||
destinationElRef.value.setAttribute('colspan', '7');
|
destinationElRef.value.setAttribute('colspan', '10');
|
||||||
originElRef.value.setAttribute('colspan', '9');
|
originElRef.value.setAttribute('colspan', '10');
|
||||||
|
|
||||||
destinationElRef.value.textContent = `${t(
|
destinationElRef.value.textContent = `${t(
|
||||||
'advanceTickets.destination',
|
'advanceTickets.destination',
|
||||||
|
@ -490,8 +495,6 @@ watch(
|
||||||
selection: 'multiple',
|
selection: 'multiple',
|
||||||
}"
|
}"
|
||||||
v-model:selected="selectedTickets"
|
v-model:selected="selectedTickets"
|
||||||
:pagination="{ rowsPerPage: 0 }"
|
|
||||||
:no-data-label="$t('globals.noResults')"
|
|
||||||
:right-search="false"
|
:right-search="false"
|
||||||
:order="['futureTotalWithVat ASC']"
|
:order="['futureTotalWithVat ASC']"
|
||||||
auto-load
|
auto-load
|
||||||
|
|
|
@ -51,6 +51,9 @@ onMounted(async () => await getItemPackingTypes());
|
||||||
<FetchData
|
<FetchData
|
||||||
url="Warehouses"
|
url="Warehouses"
|
||||||
@on-fetch="(data) => (warehousesOptions = data)"
|
@on-fetch="(data) => (warehousesOptions = data)"
|
||||||
|
:where="{
|
||||||
|
isForTicket: true,
|
||||||
|
}"
|
||||||
auto-load
|
auto-load
|
||||||
/>
|
/>
|
||||||
<VnFilterPanel
|
<VnFilterPanel
|
||||||
|
|
|
@ -67,14 +67,12 @@ const onClientSelected = async (formData) => {
|
||||||
|
|
||||||
const fetchAvailableAgencies = async (formData) => {
|
const fetchAvailableAgencies = async (formData) => {
|
||||||
resetAgenciesSelector(formData);
|
resetAgenciesSelector(formData);
|
||||||
const response= await getAgencies(formData, selectedClient.value);
|
const response = await getAgencies(formData, selectedClient.value);
|
||||||
if (!response) return;
|
if (!response) return;
|
||||||
|
|
||||||
const { options, agency } = response
|
const { options, agency } = response;
|
||||||
if(options)
|
if (options) agenciesOptions.value = options;
|
||||||
agenciesOptions.value = options;
|
if (agency) formData.agencyModeId = agency;
|
||||||
if(agency)
|
|
||||||
formData.agencyModeId = agency;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
const redirectToTicketList = (_, { id }) => {
|
const redirectToTicketList = (_, { id }) => {
|
||||||
|
@ -92,6 +90,9 @@ const redirectToTicketList = (_, { id }) => {
|
||||||
<FetchData
|
<FetchData
|
||||||
url="Warehouses"
|
url="Warehouses"
|
||||||
@on-fetch="(data) => (warehousesOptions = data)"
|
@on-fetch="(data) => (warehousesOptions = data)"
|
||||||
|
:where="{
|
||||||
|
isForTicket: true,
|
||||||
|
}"
|
||||||
order="name"
|
order="name"
|
||||||
auto-load
|
auto-load
|
||||||
/>
|
/>
|
||||||
|
|
|
@ -40,7 +40,7 @@ onBeforeMount(async () => {
|
||||||
|
|
||||||
function resetAgenciesSelector(formData) {
|
function resetAgenciesSelector(formData) {
|
||||||
agenciesOptions.value = [];
|
agenciesOptions.value = [];
|
||||||
if(formData) formData.agencyModeId = null;
|
if (formData) formData.agencyModeId = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
const fetchClient = async (formData) => {
|
const fetchClient = async (formData) => {
|
||||||
|
@ -67,14 +67,12 @@ const onClientSelected = async (formData) => {
|
||||||
|
|
||||||
const fetchAvailableAgencies = async (formData) => {
|
const fetchAvailableAgencies = async (formData) => {
|
||||||
resetAgenciesSelector(formData);
|
resetAgenciesSelector(formData);
|
||||||
const response= await getAgencies(formData, selectedClient.value);
|
const response = await getAgencies(formData, selectedClient.value);
|
||||||
if (!response) return;
|
if (!response) return;
|
||||||
|
|
||||||
const { options, agency } = response
|
const { options, agency } = response;
|
||||||
if(options)
|
if (options) agenciesOptions.value = options;
|
||||||
agenciesOptions.value = options;
|
if (agency) formData.agencyModeId = agency;
|
||||||
if(agency)
|
|
||||||
formData.agencyModeId = agency;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
const redirectToTicketList = (_, { id }) => {
|
const redirectToTicketList = (_, { id }) => {
|
||||||
|
@ -86,6 +84,9 @@ const redirectToTicketList = (_, { id }) => {
|
||||||
<FetchData
|
<FetchData
|
||||||
url="Warehouses"
|
url="Warehouses"
|
||||||
@on-fetch="(data) => (warehousesOptions = data)"
|
@on-fetch="(data) => (warehousesOptions = data)"
|
||||||
|
:where="{
|
||||||
|
isForTicket: true,
|
||||||
|
}"
|
||||||
order="name"
|
order="name"
|
||||||
auto-load
|
auto-load
|
||||||
/>
|
/>
|
||||||
|
|
|
@ -41,8 +41,19 @@ const groupedStates = ref([]);
|
||||||
@on-fetch="(data) => (agencies = data)"
|
@on-fetch="(data) => (agencies = data)"
|
||||||
auto-load
|
auto-load
|
||||||
/>
|
/>
|
||||||
<FetchData url="Warehouses" @on-fetch="(data) => (warehouses = data)" auto-load />
|
<FetchData
|
||||||
<VnFilterPanel :data-key="props.dataKey" :search-button="true">
|
url="Warehouses"
|
||||||
|
@on-fetch="(data) => (warehouses = data)"
|
||||||
|
auto-load
|
||||||
|
:where="{
|
||||||
|
isForTicket: true,
|
||||||
|
}"
|
||||||
|
/>
|
||||||
|
<VnFilterPanel
|
||||||
|
:data-key="props.dataKey"
|
||||||
|
:search-button="true"
|
||||||
|
:unremovableParams="['from', 'to']"
|
||||||
|
>
|
||||||
<template #tags="{ tag, formatFn }">
|
<template #tags="{ tag, formatFn }">
|
||||||
<div class="q-gutter-x-xs">
|
<div class="q-gutter-x-xs">
|
||||||
<strong>{{ t(`params.${tag.label}`) }}: </strong>
|
<strong>{{ t(`params.${tag.label}`) }}: </strong>
|
||||||
|
|
|
@ -89,7 +89,7 @@ const ticketColumns = computed(() => [
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: t('advanceTickets.import'),
|
label: t('advanceTickets.import'),
|
||||||
name: 'import',
|
name: 'totalWithVat',
|
||||||
align: 'left',
|
align: 'left',
|
||||||
headerClass: 'horizontal-separator',
|
headerClass: 'horizontal-separator',
|
||||||
columnFilter: false,
|
columnFilter: false,
|
||||||
|
@ -317,7 +317,7 @@ watch(
|
||||||
</QBadge>
|
</QBadge>
|
||||||
<span v-else> {{ dashIfEmpty(row.state) }}</span>
|
<span v-else> {{ dashIfEmpty(row.state) }}</span>
|
||||||
</template>
|
</template>
|
||||||
<template #column-import="{ row }">
|
<template #column-totalWithVat="{ row }">
|
||||||
<QBadge
|
<QBadge
|
||||||
:text-color="
|
:text-color="
|
||||||
totalPriceColor(row.totalWithVat) === 'warning'
|
totalPriceColor(row.totalWithVat) === 'warning'
|
||||||
|
|
|
@ -55,6 +55,9 @@ onMounted(async () => {
|
||||||
<FetchData
|
<FetchData
|
||||||
url="Warehouses"
|
url="Warehouses"
|
||||||
@on-fetch="(data) => (warehousesOptions = data)"
|
@on-fetch="(data) => (warehousesOptions = data)"
|
||||||
|
:where="{
|
||||||
|
isForTicket: true,
|
||||||
|
}"
|
||||||
auto-load
|
auto-load
|
||||||
/>
|
/>
|
||||||
<VnFilterPanel
|
<VnFilterPanel
|
||||||
|
|
|
@ -204,6 +204,9 @@ const columns = computed(() => [
|
||||||
attrs: {
|
attrs: {
|
||||||
url: 'warehouses',
|
url: 'warehouses',
|
||||||
fields: ['id', 'name'],
|
fields: ['id', 'name'],
|
||||||
|
where: {
|
||||||
|
isForTicket: true,
|
||||||
|
},
|
||||||
},
|
},
|
||||||
format: (row) => row.warehouse,
|
format: (row) => row.warehouse,
|
||||||
columnField: {
|
columnField: {
|
||||||
|
@ -670,9 +673,11 @@ function setReference(data) {
|
||||||
:sort-by="['name']"
|
:sort-by="['name']"
|
||||||
:label="t('globals.warehouse')"
|
:label="t('globals.warehouse')"
|
||||||
v-model="data.warehouseId"
|
v-model="data.warehouseId"
|
||||||
:options="warehousesOptions"
|
|
||||||
hide-selected
|
hide-selected
|
||||||
required
|
required
|
||||||
|
:where="{
|
||||||
|
isForTicket: true,
|
||||||
|
}"
|
||||||
@update:model-value="() => fetchAvailableAgencies(data)"
|
@update:model-value="() => fetchAvailableAgencies(data)"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -102,6 +102,9 @@ const columns = computed(() => [
|
||||||
attrs: {
|
attrs: {
|
||||||
url: 'Warehouses',
|
url: 'Warehouses',
|
||||||
fields: ['id', 'name'],
|
fields: ['id', 'name'],
|
||||||
|
where: {
|
||||||
|
isForTicket: true,
|
||||||
|
},
|
||||||
},
|
},
|
||||||
inWhere: true,
|
inWhere: true,
|
||||||
},
|
},
|
||||||
|
|
|
@ -208,6 +208,7 @@ ticketList:
|
||||||
hour: Hour
|
hour: Hour
|
||||||
rounding: Rounding
|
rounding: Rounding
|
||||||
noVerifiedData: No verified data
|
noVerifiedData: No verified data
|
||||||
|
warehouse: Warehouse
|
||||||
purchaseRequest: Purchase request
|
purchaseRequest: Purchase request
|
||||||
notVisible: Not visible
|
notVisible: Not visible
|
||||||
clientFrozen: Client frozen
|
clientFrozen: Client frozen
|
||||||
|
|
|
@ -28,13 +28,17 @@ const warehousesOptionsIn = ref([]);
|
||||||
url="Warehouses"
|
url="Warehouses"
|
||||||
@on-fetch="(data) => (warehousesOptionsOut = data)"
|
@on-fetch="(data) => (warehousesOptionsOut = data)"
|
||||||
auto-load
|
auto-load
|
||||||
:filter="{ where: { isOrigin: TRUE } }"
|
:where="{
|
||||||
|
isOrigin: true,
|
||||||
|
}"
|
||||||
/>
|
/>
|
||||||
<FetchData
|
<FetchData
|
||||||
url="Warehouses"
|
url="Warehouses"
|
||||||
@on-fetch="(data) => (warehousesOptionsIn = data)"
|
@on-fetch="(data) => (warehousesOptionsIn = data)"
|
||||||
auto-load
|
auto-load
|
||||||
:filter="{ where: { isDestiny: TRUE } }"
|
:where="{
|
||||||
|
isDestiny: true,
|
||||||
|
}"
|
||||||
/>
|
/>
|
||||||
<FormModel :url-update="`Travels/${route.params.id}`" model="Travel">
|
<FormModel :url-update="`Travels/${route.params.id}`" model="Travel">
|
||||||
<template #form="{ data }">
|
<template #form="{ data }">
|
||||||
|
|
|
@ -183,7 +183,9 @@ warehouses();
|
||||||
<VnSelect
|
<VnSelect
|
||||||
:label="t('extraCommunity.filter.warehouseOutFk')"
|
:label="t('extraCommunity.filter.warehouseOutFk')"
|
||||||
v-model="params.warehouseOutFk"
|
v-model="params.warehouseOutFk"
|
||||||
:options="warehousesOptions"
|
:options="
|
||||||
|
warehousesOptions.filter((option) => option.isOrigin === true)
|
||||||
|
"
|
||||||
option-value="id"
|
option-value="id"
|
||||||
option-label="name"
|
option-label="name"
|
||||||
hide-selected
|
hide-selected
|
||||||
|
@ -197,7 +199,11 @@ warehouses();
|
||||||
<VnSelect
|
<VnSelect
|
||||||
:label="t('extraCommunity.filter.warehouseInFk')"
|
:label="t('extraCommunity.filter.warehouseInFk')"
|
||||||
v-model="params.warehouseInFk"
|
v-model="params.warehouseInFk"
|
||||||
:options="warehousesOptions"
|
:options="
|
||||||
|
warehousesOptions.filter(
|
||||||
|
(option) => option.isDestiny === true,
|
||||||
|
)
|
||||||
|
"
|
||||||
option-value="id"
|
option-value="id"
|
||||||
option-label="name"
|
option-label="name"
|
||||||
hide-selected
|
hide-selected
|
||||||
|
|
|
@ -81,6 +81,9 @@ const redirectToTravelBasicData = (_, { id }) => {
|
||||||
option-value="id"
|
option-value="id"
|
||||||
option-label="name"
|
option-label="name"
|
||||||
hide-selected
|
hide-selected
|
||||||
|
:where="{
|
||||||
|
isOrigin: true,
|
||||||
|
}"
|
||||||
/>
|
/>
|
||||||
<VnSelect
|
<VnSelect
|
||||||
:label="t('globals.warehouseIn')"
|
:label="t('globals.warehouseIn')"
|
||||||
|
@ -89,6 +92,9 @@ const redirectToTravelBasicData = (_, { id }) => {
|
||||||
option-value="id"
|
option-value="id"
|
||||||
option-label="name"
|
option-label="name"
|
||||||
hide-selected
|
hide-selected
|
||||||
|
:where="{
|
||||||
|
isDestiny: true,
|
||||||
|
}"
|
||||||
/>
|
/>
|
||||||
</VnRow>
|
</VnRow>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
@ -64,6 +64,9 @@ defineExpose({ states });
|
||||||
option-filter="name"
|
option-filter="name"
|
||||||
dense
|
dense
|
||||||
filled
|
filled
|
||||||
|
:where="{
|
||||||
|
isDestiny: true,
|
||||||
|
}"
|
||||||
/>
|
/>
|
||||||
<VnInputDate
|
<VnInputDate
|
||||||
:label="t('travel.shipped')"
|
:label="t('travel.shipped')"
|
||||||
|
@ -89,6 +92,9 @@ defineExpose({ states });
|
||||||
option-filter="name"
|
option-filter="name"
|
||||||
dense
|
dense
|
||||||
filled
|
filled
|
||||||
|
:where="{
|
||||||
|
isOrigin: true,
|
||||||
|
}"
|
||||||
/>
|
/>
|
||||||
<VnInputDate
|
<VnInputDate
|
||||||
:label="t('travel.landed')"
|
:label="t('travel.landed')"
|
||||||
|
|
|
@ -99,6 +99,7 @@ const columns = computed(() => [
|
||||||
fields: ['id', 'name'],
|
fields: ['id', 'name'],
|
||||||
optionLabel: 'name',
|
optionLabel: 'name',
|
||||||
optionValue: 'id',
|
optionValue: 'id',
|
||||||
|
where: { isDestiny: true },
|
||||||
},
|
},
|
||||||
format: (row) => row.warehouseInName,
|
format: (row) => row.warehouseInName,
|
||||||
columnField: {
|
columnField: {
|
||||||
|
@ -133,6 +134,7 @@ const columns = computed(() => [
|
||||||
attrs: {
|
attrs: {
|
||||||
url: 'warehouses',
|
url: 'warehouses',
|
||||||
fields: ['id', 'name'],
|
fields: ['id', 'name'],
|
||||||
|
where: { isOrigin: true },
|
||||||
},
|
},
|
||||||
format: (row) => row.warehouseOutName,
|
format: (row) => row.warehouseOutName,
|
||||||
columnField: {
|
columnField: {
|
||||||
|
|
|
@ -6,6 +6,9 @@ const FINDED_PATHS = ['src', E2E_PATH];
|
||||||
|
|
||||||
function getGitDiff(options) {
|
function getGitDiff(options) {
|
||||||
const TARGET_BRANCH = options[2] || 'dev';
|
const TARGET_BRANCH = options[2] || 'dev';
|
||||||
|
execSync(`git fetch origin ${TARGET_BRANCH}`, {
|
||||||
|
encoding: 'utf-8',
|
||||||
|
});
|
||||||
const diff = execSync(`git diff --name-only origin/${TARGET_BRANCH}`, {
|
const diff = execSync(`git diff --name-only origin/${TARGET_BRANCH}`, {
|
||||||
encoding: 'utf-8',
|
encoding: 'utf-8',
|
||||||
});
|
});
|
||||||
|
|
|
@ -5,6 +5,9 @@ describe('Cmr list', () => {
|
||||||
const selectors = {
|
const selectors = {
|
||||||
ticket: getLinkSelector('ticketFk'),
|
ticket: getLinkSelector('ticketFk'),
|
||||||
client: getLinkSelector('clientFk'),
|
client: getLinkSelector('clientFk'),
|
||||||
|
route: getLinkSelector('routeFk'),
|
||||||
|
agency: getLinkSelector('agencyModeFk'),
|
||||||
|
carrier: getLinkSelector('supplierFk'),
|
||||||
lastRowSelectCheckBox:
|
lastRowSelectCheckBox:
|
||||||
'.q-virtual-scroll__content > tr:last-child > :nth-child(1) > .q-checkbox',
|
'.q-virtual-scroll__content > tr:last-child > :nth-child(1) > .q-checkbox',
|
||||||
downloadBtn: '#subToolbar > .q-btn',
|
downloadBtn: '#subToolbar > .q-btn',
|
||||||
|
@ -21,6 +24,10 @@ describe('Cmr list', () => {
|
||||||
const data = {
|
const data = {
|
||||||
ticket: '1',
|
ticket: '1',
|
||||||
client: 'Bruce Wayne',
|
client: 'Bruce Wayne',
|
||||||
|
route: 'first route',
|
||||||
|
routeId: '1',
|
||||||
|
agency: 'inhouse pickup',
|
||||||
|
carrier: 'PLANTS SL',
|
||||||
};
|
};
|
||||||
|
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
|
@ -68,6 +75,26 @@ describe('Cmr list', () => {
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
describe('Route pop-ups', () => {
|
||||||
|
it('Should redirect to the route summary from the route descriptor pop-up', () => {
|
||||||
|
cy.get(selectors.route).should('be.visible').click();
|
||||||
|
cy.containContent(selectors.descriptorId, data.routeId);
|
||||||
|
cy.get(selectors.descriptorGoToSummaryBtn).should('be.visible').click();
|
||||||
|
cy.url().should('include', '/route/1/summary');
|
||||||
|
cy.containContent(selectors.summaryTitle, data.route);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('Should redirect to the route summary from summary pop-up from the route descriptor pop-up', () => {
|
||||||
|
cy.get(selectors.route).should('be.visible').click();
|
||||||
|
cy.containContent(selectors.descriptorId, data.routeId);
|
||||||
|
cy.get(selectors.descriptorOpenSummaryBtn).should('be.visible').click();
|
||||||
|
cy.containContent(selectors.summaryTitle, data.route);
|
||||||
|
cy.get(selectors.summaryGoToSummaryBtn).should('be.visible').click();
|
||||||
|
cy.url().should('include', '/route/1/summary');
|
||||||
|
cy.containContent(selectors.summaryTitle, data.route);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
describe('Client pop-ups', () => {
|
describe('Client pop-ups', () => {
|
||||||
it('Should redirect to the client summary from the client descriptor pop-up', () => {
|
it('Should redirect to the client summary from the client descriptor pop-up', () => {
|
||||||
cy.get(selectors.client).should('be.visible').click();
|
cy.get(selectors.client).should('be.visible').click();
|
||||||
|
@ -87,4 +114,44 @@ describe('Cmr list', () => {
|
||||||
cy.containContent(selectors.summaryTitle, data.client);
|
cy.containContent(selectors.summaryTitle, data.client);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
describe('Agency pop-ups', () => {
|
||||||
|
it('Should redirect to the agency summary from the agency descriptor pop-up', () => {
|
||||||
|
cy.get(selectors.agency).should('be.visible').click();
|
||||||
|
cy.containContent(selectors.descriptorTitle, data.agency);
|
||||||
|
cy.get(selectors.descriptorGoToSummaryBtn).should('be.visible').click();
|
||||||
|
cy.url().should('include', '/agency/1/summary');
|
||||||
|
cy.containContent(selectors.summaryTitle, data.agency);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('Should redirect to the agency summary from summary pop-up from the agency descriptor pop-up', () => {
|
||||||
|
cy.get(selectors.agency).should('be.visible').click();
|
||||||
|
cy.containContent(selectors.descriptorTitle, data.agency);
|
||||||
|
cy.get(selectors.descriptorOpenSummaryBtn).should('be.visible').click();
|
||||||
|
cy.containContent(selectors.summaryTitle, data.agency);
|
||||||
|
cy.get(selectors.summaryGoToSummaryBtn).should('be.visible').click();
|
||||||
|
cy.url().should('include', '/agency/1/summary');
|
||||||
|
cy.containContent(selectors.summaryTitle, data.agency);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('Carrier pop-ups', () => {
|
||||||
|
it('Should redirect to the supplier summary from the supplier descriptor pop-up', () => {
|
||||||
|
cy.get(selectors.carrier).should('be.visible').click();
|
||||||
|
cy.containContent(selectors.descriptorTitle, data.carrier);
|
||||||
|
cy.get(selectors.descriptorGoToSummaryBtn).should('be.visible').click();
|
||||||
|
cy.url().should('include', '/supplier/1/summary');
|
||||||
|
cy.containContent(selectors.summaryTitle, data.carrier);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('Should redirect to the supplier summary from summary pop-up from the supplier descriptor pop-up', () => {
|
||||||
|
cy.get(selectors.carrier).should('be.visible').click();
|
||||||
|
cy.containContent(selectors.descriptorTitle, data.carrier);
|
||||||
|
cy.get(selectors.descriptorOpenSummaryBtn).should('be.visible').click();
|
||||||
|
cy.containContent(selectors.summaryTitle, data.carrier);
|
||||||
|
cy.get(selectors.summaryGoToSummaryBtn).should('be.visible').click();
|
||||||
|
cy.url().should('include', '/supplier/1/summary');
|
||||||
|
cy.containContent(selectors.summaryTitle, data.carrier);
|
||||||
|
});
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|
|
@ -76,16 +76,13 @@ describe('TicketList', () => {
|
||||||
});
|
});
|
||||||
}).as('ticket');
|
}).as('ticket');
|
||||||
|
|
||||||
cy.get('[data-cy="Warehouse_select"]').type('Warehouse Five');
|
cy.get('[data-cy="Warehouse_select"]').type('Warehouse One');
|
||||||
cy.get('.q-menu .q-item').contains('Warehouse Five').click();
|
cy.get('.q-menu .q-item').contains('Warehouse One').click();
|
||||||
cy.wait('@ticket').then((interception) => {
|
cy.wait('@ticket').then((interception) => {
|
||||||
const data = interception.response.body[1];
|
const data = interception.response.body[0];
|
||||||
expect(data.hasComponentLack).to.equal(1);
|
expect(data.hasComponentLack).to.equal(1);
|
||||||
expect(data.isTooLittle).to.equal(1);
|
|
||||||
expect(data.hasItemShortage).to.equal(1);
|
|
||||||
});
|
});
|
||||||
cy.get('.icon-components').should('exist');
|
cy.get('.icon-components').should('exist');
|
||||||
cy.get('.icon-unavailable').should('exist');
|
cy.get('.icon-unavailable').should('exist');
|
||||||
cy.get('.icon-isTooLittle').should('exist');
|
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue