Compare commits
18 Commits
dev
...
7984-addCu
Author | SHA1 | Date |
---|---|---|
|
0e535663b1 | |
|
8593f1d760 | |
|
9ea4d785aa | |
|
f309d21682 | |
|
84f2948f8b | |
|
a9e01dd71e | |
|
1b2573bfc6 | |
|
2e085c6b15 | |
|
05b35f8d29 | |
|
b4e7ea1eac | |
|
65bbd0768c | |
|
552d05098c | |
|
583a774d7d | |
|
1ac0672f1e | |
|
8626b99273 | |
|
f076c62bab | |
|
3c6a4c1e16 | |
|
f3f0c0e88c |
|
@ -47,6 +47,8 @@ const darkMode = computed({
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
const foreignCurrency = ref();
|
||||||
|
|
||||||
const user = state.getUser();
|
const user = state.getUser();
|
||||||
const warehousesData = ref();
|
const warehousesData = ref();
|
||||||
const companiesData = ref();
|
const companiesData = ref();
|
||||||
|
@ -58,6 +60,8 @@ onMounted(async () => {
|
||||||
});
|
});
|
||||||
|
|
||||||
function updatePreferences() {
|
function updatePreferences() {
|
||||||
|
foreignCurrency.value = user.value.foreignCurrency;
|
||||||
|
|
||||||
if (user.value.darkMode !== null) {
|
if (user.value.darkMode !== null) {
|
||||||
darkMode.value = user.value.darkMode;
|
darkMode.value = user.value.darkMode;
|
||||||
}
|
}
|
||||||
|
@ -116,6 +120,11 @@ async function saveUserData(param, value) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async function saveCurrency(value) {
|
||||||
|
user.value.foreignCurrency = value;
|
||||||
|
useState().setUser(user.value);
|
||||||
|
}
|
||||||
|
|
||||||
const onDataSaved = () => {
|
const onDataSaved = () => {
|
||||||
notify('globals.dataSaved', 'positive');
|
notify('globals.dataSaved', 'positive');
|
||||||
};
|
};
|
||||||
|
@ -169,6 +178,14 @@ const onDataError = () => {
|
||||||
color="primary"
|
color="primary"
|
||||||
unchecked-icon="light_mode"
|
unchecked-icon="light_mode"
|
||||||
/>
|
/>
|
||||||
|
<QToggle
|
||||||
|
v-model="foreignCurrency"
|
||||||
|
:label="t(`globals.foreignCurrency`)"
|
||||||
|
@update:model-value="saveCurrency"
|
||||||
|
color="primary"
|
||||||
|
unchecked-icon="euro_symbol"
|
||||||
|
checked-icon="currency_exchange"
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<QSeparator vertical inset class="q-mx-lg" />
|
<QSeparator vertical inset class="q-mx-lg" />
|
||||||
|
|
|
@ -11,6 +11,7 @@ import VnInputDate from 'components/common/VnInputDate.vue';
|
||||||
import VnInputTime from 'components/common/VnInputTime.vue';
|
import VnInputTime from 'components/common/VnInputTime.vue';
|
||||||
import VnComponent from 'components/common/VnComponent.vue';
|
import VnComponent from 'components/common/VnComponent.vue';
|
||||||
import VnUserLink from 'components/ui/VnUserLink.vue';
|
import VnUserLink from 'components/ui/VnUserLink.vue';
|
||||||
|
import VnCurrency from '../ui/VnCurrency.vue';
|
||||||
import VnSelectEnum from '../common/VnSelectEnum.vue';
|
import VnSelectEnum from '../common/VnSelectEnum.vue';
|
||||||
import VnCheckbox from '../common/VnCheckbox.vue';
|
import VnCheckbox from '../common/VnCheckbox.vue';
|
||||||
|
|
||||||
|
@ -152,6 +153,9 @@ const defaultComponents = {
|
||||||
userLink: {
|
userLink: {
|
||||||
component: markRaw(VnUserLink),
|
component: markRaw(VnUserLink),
|
||||||
},
|
},
|
||||||
|
currency: {
|
||||||
|
component: markRaw(VnCurrency),
|
||||||
|
},
|
||||||
toggle: {
|
toggle: {
|
||||||
component: markRaw(QToggle),
|
component: markRaw(QToggle),
|
||||||
},
|
},
|
||||||
|
|
|
@ -60,7 +60,7 @@ async function confirm() {
|
||||||
v-model="address"
|
v-model="address"
|
||||||
is-outlined
|
is-outlined
|
||||||
autofocus
|
autofocus
|
||||||
data-cy="SendEmailNotificationDialogInput"
|
data-cy="SendEmailNotifiactionDialogInput"
|
||||||
/>
|
/>
|
||||||
</QCardSection>
|
</QCardSection>
|
||||||
<QCardActions align="right">
|
<QCardActions align="right">
|
||||||
|
|
|
@ -10,7 +10,6 @@ import { useFilterParams } from 'src/composables/useFilterParams';
|
||||||
import FetchData from '../FetchData.vue';
|
import FetchData from '../FetchData.vue';
|
||||||
import { useValidator } from 'src/composables/useValidator';
|
import { useValidator } from 'src/composables/useValidator';
|
||||||
import { useCapitalize } from 'src/composables/useCapitalize';
|
import { useCapitalize } from 'src/composables/useCapitalize';
|
||||||
import VnAvatar from '../ui/VnAvatar.vue';
|
|
||||||
|
|
||||||
const $props = defineProps({
|
const $props = defineProps({
|
||||||
dataKey: {
|
dataKey: {
|
||||||
|
@ -100,6 +99,7 @@ function getActions() {
|
||||||
:columns="columns"
|
:columns="columns"
|
||||||
:redirect="false"
|
:redirect="false"
|
||||||
:hiddenTags="['originFk', 'creationDate']"
|
:hiddenTags="['originFk', 'creationDate']"
|
||||||
|
:exprBuilder
|
||||||
search-url="logs"
|
search-url="logs"
|
||||||
:showTagChips="false"
|
:showTagChips="false"
|
||||||
>
|
>
|
||||||
|
|
|
@ -0,0 +1,43 @@
|
||||||
|
<script setup>
|
||||||
|
import VnSelect from 'components/common/VnSelect.vue';
|
||||||
|
import axios from 'axios';
|
||||||
|
import { onMounted } from 'vue';
|
||||||
|
import { ref } from 'vue';
|
||||||
|
import { watch } from 'vue';
|
||||||
|
|
||||||
|
const model = defineModel({
|
||||||
|
type: [String, Number, Object],
|
||||||
|
default: null,
|
||||||
|
});
|
||||||
|
|
||||||
|
const clientId = defineModel('clientId', {
|
||||||
|
type: Number,
|
||||||
|
default: null,
|
||||||
|
});
|
||||||
|
|
||||||
|
const companyList = ref([]);
|
||||||
|
onMounted(async () => {
|
||||||
|
companyList.value = (await axios.get('Companies')).data;
|
||||||
|
});
|
||||||
|
|
||||||
|
watch(
|
||||||
|
() => clientId.value,
|
||||||
|
async (newId) => {
|
||||||
|
if (!newId) return;
|
||||||
|
const { data } = await axios.get(`Clients/${newId}`, {
|
||||||
|
fields: ['defaultCompanyFk'],
|
||||||
|
});
|
||||||
|
model.value = data.defaultCompanyFk;
|
||||||
|
}
|
||||||
|
);
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<VnSelect
|
||||||
|
:label="$t('globals.company')"
|
||||||
|
v-bind="$attrs"
|
||||||
|
v-model="model"
|
||||||
|
:options="companyList"
|
||||||
|
option-label="code"
|
||||||
|
/>
|
||||||
|
</template>
|
|
@ -0,0 +1,57 @@
|
||||||
|
<script setup>
|
||||||
|
import VnSelect from 'components/common/VnSelect.vue';
|
||||||
|
import axios from 'axios';
|
||||||
|
import { onMounted } from 'vue';
|
||||||
|
import { ref } from 'vue';
|
||||||
|
import { watch } from 'vue';
|
||||||
|
|
||||||
|
const model = defineModel({
|
||||||
|
type: Number,
|
||||||
|
default: null,
|
||||||
|
});
|
||||||
|
|
||||||
|
const clientId = defineModel('clientId', {
|
||||||
|
type: Number,
|
||||||
|
default: null,
|
||||||
|
});
|
||||||
|
|
||||||
|
const currencyList = ref([]);
|
||||||
|
|
||||||
|
const emit = defineEmits(['newValue']);
|
||||||
|
|
||||||
|
onMounted(async () => {
|
||||||
|
currencyList.value = (await axios.get('Currencies')).data;
|
||||||
|
emitCurrency(model.value);
|
||||||
|
});
|
||||||
|
|
||||||
|
watch(
|
||||||
|
() => clientId.value,
|
||||||
|
async (newId) => {
|
||||||
|
if (!newId) return;
|
||||||
|
const { data } = await axios.get(`Clients/${newId}`, {
|
||||||
|
fields: ['defaultCurrencyFk'],
|
||||||
|
});
|
||||||
|
model.value = data.defaultCurrencyFk;
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
|
function emitCurrency(id) {
|
||||||
|
if (!id) return;
|
||||||
|
emit(
|
||||||
|
'newValue',
|
||||||
|
currencyList.value?.find((c) => c.id == id)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<VnSelect
|
||||||
|
:label="$t('globals.currency')"
|
||||||
|
v-bind="$attrs"
|
||||||
|
v-model="model"
|
||||||
|
:options="currencyList"
|
||||||
|
option-label="name"
|
||||||
|
option-caption="code"
|
||||||
|
@update:model-value="(id) => emitCurrency(id)"
|
||||||
|
/>
|
||||||
|
</template>
|
|
@ -177,8 +177,6 @@ async function fetch() {
|
||||||
.value {
|
.value {
|
||||||
color: var(--vn-text-color);
|
color: var(--vn-text-color);
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
white-space: nowrap;
|
|
||||||
text-overflow: ellipsis;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.header {
|
.header {
|
||||||
|
@ -210,21 +208,27 @@ async function fetch() {
|
||||||
}
|
}
|
||||||
|
|
||||||
.vn-card-group {
|
.vn-card-group {
|
||||||
display: grid;
|
display: flex;
|
||||||
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
flex-direction: column;
|
||||||
gap: 16px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.vn-card-content {
|
.vn-card-content {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
overflow: hidden;
|
|
||||||
white-space: nowrap;
|
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
> div {
|
> div {
|
||||||
max-height: 70px;
|
max-height: 70px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (min-width: 1010px) {
|
||||||
|
.vn-card-group {
|
||||||
|
flex-direction: row;
|
||||||
|
}
|
||||||
|
.vn-card-content {
|
||||||
|
flex: 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
.summaryHeader .vn-label-value {
|
.summaryHeader .vn-label-value {
|
||||||
|
|
|
@ -6,8 +6,7 @@ import VnLv from 'components/ui/VnLv.vue';
|
||||||
import VnImg from 'src/components/ui/VnImg.vue';
|
import VnImg from 'src/components/ui/VnImg.vue';
|
||||||
import OrderCatalogItemDialog from 'pages/Order/Card/OrderCatalogItemDialog.vue';
|
import OrderCatalogItemDialog from 'pages/Order/Card/OrderCatalogItemDialog.vue';
|
||||||
import ItemDescriptorProxy from 'src/pages/Item/Card/ItemDescriptorProxy.vue';
|
import ItemDescriptorProxy from 'src/pages/Item/Card/ItemDescriptorProxy.vue';
|
||||||
|
import VnCurrency from './VnCurrency.vue';
|
||||||
import { toCurrency } from 'filters/index';
|
|
||||||
|
|
||||||
const DEFAULT_PRICE_KG = 0;
|
const DEFAULT_PRICE_KG = 0;
|
||||||
|
|
||||||
|
@ -61,7 +60,7 @@ const card = toRef(props, 'item');
|
||||||
<div class="price">
|
<div class="price">
|
||||||
<p v-if="isCatalog">
|
<p v-if="isCatalog">
|
||||||
{{ card.available }} {{ t('to') }}
|
{{ card.available }} {{ t('to') }}
|
||||||
{{ toCurrency(card.price) }}
|
<VnCurrency :model="card" array-data-model="Order" />
|
||||||
</p>
|
</p>
|
||||||
<slot name="price" />
|
<slot name="price" />
|
||||||
<QIcon v-if="isCatalog" name="add_circle" class="icon">
|
<QIcon v-if="isCatalog" name="add_circle" class="icon">
|
||||||
|
@ -81,7 +80,12 @@ const card = toRef(props, 'item');
|
||||||
</div>
|
</div>
|
||||||
<p v-if="card.priceKg" class="price-kg">
|
<p v-if="card.priceKg" class="price-kg">
|
||||||
{{ t('price-kg') }}
|
{{ t('price-kg') }}
|
||||||
{{ toCurrency(card.priceKg) || DEFAULT_PRICE_KG }}
|
<VnCurrency
|
||||||
|
v-model="card"
|
||||||
|
array-data-model="Order"
|
||||||
|
local-field="priceKg"
|
||||||
|
foreign-field="foreignPriceKg"
|
||||||
|
/>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -0,0 +1,82 @@
|
||||||
|
<script setup>
|
||||||
|
import { toCurrency } from 'src/filters';
|
||||||
|
import { watch, ref } from 'vue';
|
||||||
|
import { useArrayData } from 'src/composables/useArrayData';
|
||||||
|
import { useState } from 'src/composables/useState';
|
||||||
|
|
||||||
|
const $props = defineProps({
|
||||||
|
model: {
|
||||||
|
type: Object,
|
||||||
|
required: true,
|
||||||
|
description: 'object to use foreignField and localField',
|
||||||
|
},
|
||||||
|
currencyCode: {
|
||||||
|
type: String,
|
||||||
|
default: undefined,
|
||||||
|
},
|
||||||
|
foreignField: {
|
||||||
|
type: [String, undefined],
|
||||||
|
default: undefined,
|
||||||
|
},
|
||||||
|
localField: {
|
||||||
|
type: String,
|
||||||
|
default: 'price',
|
||||||
|
},
|
||||||
|
arrayDataModel: {
|
||||||
|
type: String,
|
||||||
|
default: undefined,
|
||||||
|
description: 'find currency code in array data model',
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
const state = useState();
|
||||||
|
const user = state.getUser();
|
||||||
|
|
||||||
|
const toCurrencyLabel = ref();
|
||||||
|
const foreignValue = ref();
|
||||||
|
const localValue = ref();
|
||||||
|
const currency = ref();
|
||||||
|
|
||||||
|
watch(
|
||||||
|
() => $props.model,
|
||||||
|
() => calculate(),
|
||||||
|
{ immediate: true, deep: true },
|
||||||
|
);
|
||||||
|
|
||||||
|
function calculate() {
|
||||||
|
if (!$props.model) return;
|
||||||
|
|
||||||
|
currency.value = $props.currencyCode;
|
||||||
|
if ($props.arrayDataModel) {
|
||||||
|
const arrayData = $props.arrayDataModel && useArrayData($props.arrayDataModel);
|
||||||
|
currency.value = arrayData.store.data?.currency?.code;
|
||||||
|
}
|
||||||
|
foreignValue.value = $props.model[getForeignFieldComputed()];
|
||||||
|
localValue.value = $props.model?.[$props.localField];
|
||||||
|
|
||||||
|
toCurrencyLabel.value = toCurrency(
|
||||||
|
foreignValue.value ?? localValue.value,
|
||||||
|
currency.value,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
function getForeignFieldComputed() {
|
||||||
|
return (
|
||||||
|
$props.foreignField ??
|
||||||
|
'foreign' + $props.localField.charAt(0).toUpperCase() + $props.localField.slice(1)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<span :title="toCurrencyLabel">
|
||||||
|
<template v-if="currency && (localValue || localValue === 0)">
|
||||||
|
{{
|
||||||
|
foreignValue && user.foreignCurrency && currency != user.currencyCode
|
||||||
|
? toCurrencyLabel
|
||||||
|
: toCurrency(localValue)
|
||||||
|
}}
|
||||||
|
</template>
|
||||||
|
<template v-else>-</template>
|
||||||
|
</span>
|
||||||
|
</template>
|
|
@ -252,10 +252,6 @@ const toModule = computed(() => {
|
||||||
content: ':';
|
content: ':';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
&.ellipsis > .value {
|
|
||||||
text-overflow: ellipsis;
|
|
||||||
white-space: pre;
|
|
||||||
}
|
|
||||||
.value {
|
.value {
|
||||||
color: var(--vn-text-color);
|
color: var(--vn-text-color);
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
|
|
|
@ -13,7 +13,7 @@ export function useRole() {
|
||||||
name: data.user.name,
|
name: data.user.name,
|
||||||
nickname: data.user.nickname,
|
nickname: data.user.nickname,
|
||||||
lang: data.user.lang || 'es',
|
lang: data.user.lang || 'es',
|
||||||
departmentFk: data.user?.worker?.department?.departmentFk,
|
departmentFk: data.user.worker.department.departmentFk,
|
||||||
};
|
};
|
||||||
state.setUser(userData);
|
state.setUser(userData);
|
||||||
state.setRoles(roles);
|
state.setRoles(roles);
|
||||||
|
|
|
@ -60,7 +60,7 @@ export function useSession() {
|
||||||
const { data: isValidToken } = await axios.get('VnUsers/validateToken');
|
const { data: isValidToken } = await axios.get('VnUsers/validateToken');
|
||||||
if (isValidToken)
|
if (isValidToken)
|
||||||
destroyTokenPromises = Object.entries(tokens).map(([key, url]) =>
|
destroyTokenPromises = Object.entries(tokens).map(([key, url]) =>
|
||||||
destroyToken(url, storage, key)
|
destroyToken(url, storage, key),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
} finally {
|
} finally {
|
||||||
|
@ -75,6 +75,8 @@ export function useSession() {
|
||||||
nickname: '',
|
nickname: '',
|
||||||
lang: '',
|
lang: '',
|
||||||
darkMode: null,
|
darkMode: null,
|
||||||
|
foreignCurrency: true,
|
||||||
|
currencyCode: 'EUR', //FIXME: use config
|
||||||
});
|
});
|
||||||
|
|
||||||
stopRenewer();
|
stopRenewer();
|
||||||
|
|
|
@ -10,6 +10,7 @@ const user = ref({
|
||||||
darkMode: null,
|
darkMode: null,
|
||||||
companyFk: null,
|
companyFk: null,
|
||||||
warehouseFk: null,
|
warehouseFk: null,
|
||||||
|
foreignCurrency: true,
|
||||||
});
|
});
|
||||||
if (sessionStorage.getItem('user'))
|
if (sessionStorage.getItem('user'))
|
||||||
user.value = JSON.parse(sessionStorage.getItem('user'));
|
user.value = JSON.parse(sessionStorage.getItem('user'));
|
||||||
|
|
|
@ -22,7 +22,7 @@ export function useVnConfirm() {
|
||||||
{ customHTML: () => h(component, props) }
|
{ customHTML: () => h(component, props) }
|
||||||
),
|
),
|
||||||
}).onOk(async () => {
|
}).onOk(async () => {
|
||||||
if (successFn) successFn();
|
if (successFn) await successFn();
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
import { useI18n } from 'vue-i18n';
|
// import { useI18n } from 'vue-i18n';
|
||||||
|
|
||||||
export default function (value, symbol = 'EUR', fractionSize = 2) {
|
export default function (value, symbol = 'EUR', fractionSize = 2) {
|
||||||
if (value == null || value === '') value = 0;
|
if (value == null || value === '') value = 0;
|
||||||
|
|
||||||
const { locale } = useI18n();
|
// const { locale } = useI18n(); // sacar en el boot, cuando se añade al user. Y aqui usarlo
|
||||||
|
|
||||||
const options = {
|
const options = {
|
||||||
style: 'currency',
|
style: 'currency',
|
||||||
|
@ -12,7 +12,7 @@ export default function (value, symbol = 'EUR', fractionSize = 2) {
|
||||||
maximumFractionDigits: fractionSize,
|
maximumFractionDigits: fractionSize,
|
||||||
};
|
};
|
||||||
|
|
||||||
const lang = locale.value == 'es' ? 'de' : locale.value;
|
const lang = 'de';
|
||||||
|
|
||||||
return new Intl.NumberFormat(lang, options).format(value);
|
return new Intl.NumberFormat(lang, options).format(value);
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,8 +2,9 @@ globals:
|
||||||
lang:
|
lang:
|
||||||
es: Spanish
|
es: Spanish
|
||||||
en: English
|
en: English
|
||||||
language: Language
|
foreignCurrency: Foreign currency
|
||||||
quantity: Quantity
|
quantity: Quantity
|
||||||
|
language: Language
|
||||||
entity: Entity
|
entity: Entity
|
||||||
preview: Preview
|
preview: Preview
|
||||||
user: User
|
user: User
|
||||||
|
@ -136,6 +137,7 @@ globals:
|
||||||
medium: Medium
|
medium: Medium
|
||||||
big: Big
|
big: Big
|
||||||
email: Email
|
email: Email
|
||||||
|
currency: Currency
|
||||||
supplier: Supplier
|
supplier: Supplier
|
||||||
ticketList: Ticket List
|
ticketList: Ticket List
|
||||||
created: Created
|
created: Created
|
||||||
|
|
|
@ -2,6 +2,7 @@ globals:
|
||||||
lang:
|
lang:
|
||||||
es: Español
|
es: Español
|
||||||
en: Inglés
|
en: Inglés
|
||||||
|
foreignCurrency: Moneda extranjera
|
||||||
language: Idioma
|
language: Idioma
|
||||||
quantity: Cantidad
|
quantity: Cantidad
|
||||||
entity: Entidad
|
entity: Entidad
|
||||||
|
@ -140,6 +141,7 @@ globals:
|
||||||
medium: Mediano/a
|
medium: Mediano/a
|
||||||
big: Grande
|
big: Grande
|
||||||
email: Correo
|
email: Correo
|
||||||
|
currency: Moneda
|
||||||
supplier: Proveedor
|
supplier: Proveedor
|
||||||
ticketList: Listado de tickets
|
ticketList: Listado de tickets
|
||||||
created: Fecha creación
|
created: Fecha creación
|
||||||
|
|
|
@ -9,6 +9,8 @@ import VnRow from 'components/ui/VnRow.vue';
|
||||||
import VnInput from 'src/components/common/VnInput.vue';
|
import VnInput from 'src/components/common/VnInput.vue';
|
||||||
import VnSelect from 'src/components/common/VnSelect.vue';
|
import VnSelect from 'src/components/common/VnSelect.vue';
|
||||||
import { getDifferences, getUpdatedValues } from 'src/filters';
|
import { getDifferences, getUpdatedValues } from 'src/filters';
|
||||||
|
import VnSelectCompany from 'src/components/common/VnSelectCompany.vue';
|
||||||
|
import VnSelectCurrency from 'src/components/common/VnSelectCurrency.vue';
|
||||||
|
|
||||||
const route = useRoute();
|
const route = useRoute();
|
||||||
const { t } = useI18n();
|
const { t } = useI18n();
|
||||||
|
@ -136,6 +138,10 @@ function onBeforeSave(formData, originalData) {
|
||||||
:input-debounce="0"
|
:input-debounce="0"
|
||||||
/>
|
/>
|
||||||
</VnRow>
|
</VnRow>
|
||||||
|
<VnRow>
|
||||||
|
<VnSelectCompany v-model="data.defaultCompanyFk" />
|
||||||
|
<VnSelectCurrency v-model="data.defaultCurrencyFk" />
|
||||||
|
</VnRow>
|
||||||
<VnRow>
|
<VnRow>
|
||||||
<VnSelect
|
<VnSelect
|
||||||
url="Clients"
|
url="Clients"
|
||||||
|
|
|
@ -104,11 +104,8 @@ const sumRisk = ({ clientRisks }) => {
|
||||||
:value="entity.email"
|
:value="entity.email"
|
||||||
class="ellipsis"
|
class="ellipsis"
|
||||||
copy
|
copy
|
||||||
>
|
><template #value> <VnLinkMail :email="entity.email" /> </template
|
||||||
<template #value>
|
></VnLv>
|
||||||
<VnLinkMail :email="entity.email" />
|
|
||||||
</template>
|
|
||||||
</VnLv>
|
|
||||||
<VnLv :label="t('globals.department')">
|
<VnLv :label="t('globals.department')">
|
||||||
<template #value>
|
<template #value>
|
||||||
<span class="link" v-text="entity.department?.name" />
|
<span class="link" v-text="entity.department?.name" />
|
||||||
|
|
|
@ -15,6 +15,7 @@ import InvoiceOutDescriptorProxy from 'pages/InvoiceOut/Card/InvoiceOutDescripto
|
||||||
import RouteDescriptorProxy from 'src/pages/Route/Card/RouteDescriptorProxy.vue';
|
import RouteDescriptorProxy from 'src/pages/Route/Card/RouteDescriptorProxy.vue';
|
||||||
import VnTable from 'src/components/VnTable/VnTable.vue';
|
import VnTable from 'src/components/VnTable/VnTable.vue';
|
||||||
import CustomerDescriptorProxy from '../Card/CustomerDescriptorProxy.vue';
|
import CustomerDescriptorProxy from '../Card/CustomerDescriptorProxy.vue';
|
||||||
|
import VnCurrency from 'src/components/ui/VnCurrency.vue';
|
||||||
|
|
||||||
const { t } = useI18n();
|
const { t } = useI18n();
|
||||||
const route = useRoute();
|
const route = useRoute();
|
||||||
|
@ -47,6 +48,7 @@ const filter = {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
{ relation: 'currency' },
|
||||||
],
|
],
|
||||||
where: { clientFk: $props.id ?? route.params.id },
|
where: { clientFk: $props.id ?? route.params.id },
|
||||||
order: ['shipped DESC', 'id'],
|
order: ['shipped DESC', 'id'],
|
||||||
|
@ -218,9 +220,19 @@ const getItemPackagingType = (ticketSales) => {
|
||||||
:color="setTotalPriceColor(row)"
|
:color="setTotalPriceColor(row)"
|
||||||
text-color="black"
|
text-color="black"
|
||||||
>
|
>
|
||||||
{{ toCurrency(row.totalWithVat) }}
|
<VnCurrency
|
||||||
|
:model="row"
|
||||||
|
local-field="totalWithVat"
|
||||||
|
:currency-code="row.currency.code"
|
||||||
|
/>
|
||||||
</QBadge>
|
</QBadge>
|
||||||
<span v-else> {{ toCurrency(row.totalWithVat) }}</span>
|
<span v-else>
|
||||||
|
<VnCurrency
|
||||||
|
:model="row"
|
||||||
|
local-field="totalWithVat"
|
||||||
|
:currency-code="row.currency.code"
|
||||||
|
/>
|
||||||
|
</span>
|
||||||
</template>
|
</template>
|
||||||
<template #column-state="{ row }">
|
<template #column-state="{ row }">
|
||||||
<span v-if="row.invoiceOut" @click.stop>
|
<span v-if="row.invoiceOut" @click.stop>
|
||||||
|
|
|
@ -70,8 +70,8 @@ onMounted(async () => {
|
||||||
:url="`#/entry/${entityId}/basic-data`"
|
:url="`#/entry/${entityId}/basic-data`"
|
||||||
:text="t('globals.summary.basicData')"
|
:text="t('globals.summary.basicData')"
|
||||||
/>
|
/>
|
||||||
<div class="vn-card-group">
|
<div class="card-group">
|
||||||
<div class="vn-card-content">
|
<div class="card-content">
|
||||||
<VnLv
|
<VnLv
|
||||||
:label="t('entry.summary.commission')"
|
:label="t('entry.summary.commission')"
|
||||||
:value="entry?.commission"
|
:value="entry?.commission"
|
||||||
|
@ -93,7 +93,7 @@ onMounted(async () => {
|
||||||
:value="entry?.invoiceNumber"
|
:value="entry?.invoiceNumber"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div class="vn-card-content">
|
<div class="card-content">
|
||||||
<VnCheckbox
|
<VnCheckbox
|
||||||
:label="t('entry.list.tableVisibleColumns.isOrdered')"
|
:label="t('entry.list.tableVisibleColumns.isOrdered')"
|
||||||
v-model="entry.isOrdered"
|
v-model="entry.isOrdered"
|
||||||
|
@ -130,8 +130,8 @@ onMounted(async () => {
|
||||||
:url="`#/travel/${entry.travel.id}/summary`"
|
:url="`#/travel/${entry.travel.id}/summary`"
|
||||||
:text="t('Travel')"
|
:text="t('Travel')"
|
||||||
/>
|
/>
|
||||||
<div class="vn-card-group">
|
<div class="card-group">
|
||||||
<div class="vn-card-content">
|
<div class="card-content">
|
||||||
<VnLv :label="t('entry.summary.travelReference')">
|
<VnLv :label="t('entry.summary.travelReference')">
|
||||||
<template #value>
|
<template #value>
|
||||||
<span class="link">
|
<span class="link">
|
||||||
|
@ -161,7 +161,7 @@ onMounted(async () => {
|
||||||
:value="entry.travel.warehouseIn?.name"
|
:value="entry.travel.warehouseIn?.name"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div class="vn-card-content">
|
<div class="card-content">
|
||||||
<VnLv :label="t('travel.awbFk')" :value="entry.travel.awbFk" />
|
<VnLv :label="t('travel.awbFk')" :value="entry.travel.awbFk" />
|
||||||
<VnCheckbox
|
<VnCheckbox
|
||||||
:label="t('entry.summary.travelDelivered')"
|
:label="t('entry.summary.travelDelivered')"
|
||||||
|
@ -193,6 +193,31 @@ onMounted(async () => {
|
||||||
</template>
|
</template>
|
||||||
</CardSummary>
|
</CardSummary>
|
||||||
</template>
|
</template>
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
.card-group {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
|
||||||
|
.card-content {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
> div {
|
||||||
|
max-height: 24px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width: 1010px) {
|
||||||
|
.card-group {
|
||||||
|
flex-direction: row;
|
||||||
|
}
|
||||||
|
.card-content {
|
||||||
|
flex: 1;
|
||||||
|
margin-right: 16px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
<i18n>
|
<i18n>
|
||||||
es:
|
es:
|
||||||
Travel: Envío
|
Travel: Envío
|
||||||
|
|
|
@ -10,10 +10,13 @@ import VnSelect from 'components/common/VnSelect.vue';
|
||||||
import VnInput from 'components/common/VnInput.vue';
|
import VnInput from 'components/common/VnInput.vue';
|
||||||
import VnInputDate from 'components/common/VnInputDate.vue';
|
import VnInputDate from 'components/common/VnInputDate.vue';
|
||||||
import VnSubToolbar from 'src/components/ui/VnSubToolbar.vue';
|
import VnSubToolbar from 'src/components/ui/VnSubToolbar.vue';
|
||||||
|
import VnSelectCompany from 'src/components/common/VnSelectCompany.vue';
|
||||||
|
import VnSelectCurrency from 'src/components/common/VnSelectCurrency.vue';
|
||||||
|
|
||||||
const { t } = useI18n();
|
const { t } = useI18n();
|
||||||
const route = useRoute();
|
const route = useRoute();
|
||||||
const state = useState();
|
const state = useState();
|
||||||
|
const ORDER_MODEL = 'Order';
|
||||||
|
|
||||||
const isNew = Boolean(!route.params.id);
|
const isNew = Boolean(!route.params.id);
|
||||||
const clientList = ref([]);
|
const clientList = ref([]);
|
||||||
|
@ -81,10 +84,9 @@ const onClientChange = async (clientId) => {
|
||||||
<div class="q-pa-md">
|
<div class="q-pa-md">
|
||||||
<FormModel
|
<FormModel
|
||||||
:url-update="`Orders/${route.params.id}/updateBasicData`"
|
:url-update="`Orders/${route.params.id}/updateBasicData`"
|
||||||
model="Order"
|
:model="ORDER_MODEL"
|
||||||
:filter="orderFilter"
|
:filter="orderFilter"
|
||||||
@on-fetch="fetchOrderDetails"
|
@on-fetch="fetchOrderDetails"
|
||||||
auto-load
|
|
||||||
>
|
>
|
||||||
<template #form="{ data }">
|
<template #form="{ data }">
|
||||||
<VnRow>
|
<VnRow>
|
||||||
|
@ -164,6 +166,10 @@ const onClientChange = async (clientId) => {
|
||||||
"
|
"
|
||||||
/>
|
/>
|
||||||
</VnRow>
|
</VnRow>
|
||||||
|
<VnRow>
|
||||||
|
<VnSelectCompany v-model="data.companyFk" />
|
||||||
|
<VnSelectCurrency v-model="data.currencyFk" />
|
||||||
|
</VnRow>
|
||||||
<VnRow>
|
<VnRow>
|
||||||
<VnInput
|
<VnInput
|
||||||
:label="t('globals.notes')"
|
:label="t('globals.notes')"
|
||||||
|
|
|
@ -7,6 +7,7 @@ import { useRoute } from 'vue-router';
|
||||||
import useNotify from 'composables/useNotify';
|
import useNotify from 'composables/useNotify';
|
||||||
import VnInputNumber from 'src/components/common/VnInputNumber.vue';
|
import VnInputNumber from 'src/components/common/VnInputNumber.vue';
|
||||||
import { useState } from 'src/composables/useState';
|
import { useState } from 'src/composables/useState';
|
||||||
|
import VnCurrency from 'src/components/ui/VnCurrency.vue';
|
||||||
|
|
||||||
const { t } = useI18n();
|
const { t } = useI18n();
|
||||||
const { notify } = useNotify();
|
const { notify } = useNotify();
|
||||||
|
@ -72,10 +73,10 @@ const canAddToOrder = () => {
|
||||||
<QMarkupTable class="shadow-0">
|
<QMarkupTable class="shadow-0">
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr v-for="price in prices" :key="price.warehouse">
|
<tr v-for="price in prices" :key="price.warehouse">
|
||||||
<td class="text-bold q-pr-md td" style="width: 35%">
|
<td class="text-bold q-pr-md" style="width: 10%">
|
||||||
{{ price.warehouse }}
|
{{ price.warehouse }}
|
||||||
</td>
|
</td>
|
||||||
<td class="text-right" style="width: 35%">
|
<td class="text-right" style="width: 60%">
|
||||||
<span
|
<span
|
||||||
class="link"
|
class="link"
|
||||||
@click.shift="
|
@click.shift="
|
||||||
|
@ -91,12 +92,18 @@ const canAddToOrder = () => {
|
||||||
>
|
>
|
||||||
{{ price.grouping }}
|
{{ price.grouping }}
|
||||||
</span>
|
</span>
|
||||||
x {{ toCurrency(price.price) }}
|
x
|
||||||
|
<VnCurrency
|
||||||
|
:model="price"
|
||||||
|
array-data-model="Order"
|
||||||
|
class="q-pr-sm"
|
||||||
|
/>
|
||||||
</td>
|
</td>
|
||||||
<td class="text-right">
|
<td style="width: 30%">
|
||||||
<VnInputNumber
|
<VnInputNumber
|
||||||
v-model.number="price.quantity"
|
v-model.number="price.quantity"
|
||||||
:step="price.grouping"
|
:step="price.grouping"
|
||||||
|
input-class="text-right"
|
||||||
min="0"
|
min="0"
|
||||||
/>
|
/>
|
||||||
</td>
|
</td>
|
||||||
|
@ -116,12 +123,6 @@ const canAddToOrder = () => {
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
|
||||||
.td {
|
|
||||||
width: 200px;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
|
|
||||||
<i18n>
|
<i18n>
|
||||||
es:
|
es:
|
||||||
noAmount: La cantidad no puede ser 0
|
noAmount: La cantidad no puede ser 0
|
||||||
|
|
|
@ -6,6 +6,7 @@ import { toCurrency, toDate } from 'src/filters';
|
||||||
import { useState } from 'src/composables/useState';
|
import { useState } from 'src/composables/useState';
|
||||||
import VnLv from 'src/components/ui/VnLv.vue';
|
import VnLv from 'src/components/ui/VnLv.vue';
|
||||||
import FetchData from 'components/FetchData.vue';
|
import FetchData from 'components/FetchData.vue';
|
||||||
|
import VnCurrency from 'src/components/ui/VnCurrency.vue';
|
||||||
import OrderCard from './OrderCard.vue';
|
import OrderCard from './OrderCard.vue';
|
||||||
import CardDescriptor from 'src/components/ui/CardDescriptor.vue';
|
import CardDescriptor from 'src/components/ui/CardDescriptor.vue';
|
||||||
import DepartmentDescriptorProxy from 'src/pages/Worker/Department/Card/DepartmentDescriptorProxy.vue';
|
import DepartmentDescriptorProxy from 'src/pages/Worker/Department/Card/DepartmentDescriptorProxy.vue';
|
||||||
|
@ -24,13 +25,13 @@ const route = useRoute();
|
||||||
const state = useState();
|
const state = useState();
|
||||||
const { t } = useI18n();
|
const { t } = useI18n();
|
||||||
const getTotalRef = ref();
|
const getTotalRef = ref();
|
||||||
const total = ref(0);
|
|
||||||
|
|
||||||
const entityId = computed(() => {
|
const entityId = computed(() => {
|
||||||
return $props.id || route.params.id;
|
return $props.id || route.params.id;
|
||||||
});
|
});
|
||||||
|
|
||||||
const orderTotal = computed(() => state.get('orderTotal') ?? 0);
|
const orderTotal = computed(() => state.get('orderTotal') ?? {});
|
||||||
|
const total = ref();
|
||||||
|
|
||||||
const setData = (entity) => {
|
const setData = (entity) => {
|
||||||
if (!entity) return;
|
if (!entity) return;
|
||||||
|
@ -41,17 +42,18 @@ const setData = (entity) => {
|
||||||
const getConfirmationValue = (isConfirmed) => {
|
const getConfirmationValue = (isConfirmed) => {
|
||||||
return t(isConfirmed ? 'globals.confirmed' : 'order.summary.notConfirmed');
|
return t(isConfirmed ? 'globals.confirmed' : 'order.summary.notConfirmed');
|
||||||
};
|
};
|
||||||
|
|
||||||
|
function setTotal(response) {
|
||||||
|
total.value = response;
|
||||||
|
state.set('orderTotal', response);
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<FetchData
|
<FetchData
|
||||||
ref="getTotalRef"
|
ref="getTotalRef"
|
||||||
:url="`Orders/${entityId}/getTotal`"
|
:url="`Orders/${entityId}/getTotal`"
|
||||||
@on-fetch="
|
@on-fetch="(response) => setTotal(response)"
|
||||||
(response) => {
|
|
||||||
total = response;
|
|
||||||
}
|
|
||||||
"
|
|
||||||
/>
|
/>
|
||||||
<CardDescriptor
|
<CardDescriptor
|
||||||
v-bind="$attrs"
|
v-bind="$attrs"
|
||||||
|
@ -81,7 +83,16 @@ const getConfirmationValue = (isConfirmed) => {
|
||||||
:label="t('order.summary.items')"
|
:label="t('order.summary.items')"
|
||||||
:value="(entity?.rows?.length || DEFAULT_ITEMS).toString()"
|
:value="(entity?.rows?.length || DEFAULT_ITEMS).toString()"
|
||||||
/>
|
/>
|
||||||
<VnLv :label="t('order.summary.total')" :value="toCurrency(orderTotal)" />
|
<VnLv :label="t('order.summary.total')">
|
||||||
|
<template #value>
|
||||||
|
<VnCurrency
|
||||||
|
:model="orderTotal"
|
||||||
|
array-data-model="Order"
|
||||||
|
local-field="total"
|
||||||
|
foreign-field="foreignTotal"
|
||||||
|
/>
|
||||||
|
</template>
|
||||||
|
</VnLv>
|
||||||
</template>
|
</template>
|
||||||
<template #actions="{ entity }">
|
<template #actions="{ entity }">
|
||||||
<QCardActions>
|
<QCardActions>
|
||||||
|
|
|
@ -22,5 +22,8 @@ export default {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
relation: 'currency',
|
||||||
|
},
|
||||||
],
|
],
|
||||||
};
|
};
|
||||||
|
|
|
@ -15,6 +15,7 @@ import VnImg from 'src/components/ui/VnImg.vue';
|
||||||
import VnLv from 'src/components/ui/VnLv.vue';
|
import VnLv from 'src/components/ui/VnLv.vue';
|
||||||
import FetchedTags from 'src/components/ui/FetchedTags.vue';
|
import FetchedTags from 'src/components/ui/FetchedTags.vue';
|
||||||
import ItemDescriptorProxy from 'src/pages/Item/Card/ItemDescriptorProxy.vue';
|
import ItemDescriptorProxy from 'src/pages/Item/Card/ItemDescriptorProxy.vue';
|
||||||
|
import VnCurrency from 'src/components/ui/VnCurrency.vue';
|
||||||
import RightMenu from 'src/components/common/RightMenu.vue';
|
import RightMenu from 'src/components/common/RightMenu.vue';
|
||||||
|
|
||||||
const router = useRouter();
|
const router = useRouter();
|
||||||
|
@ -27,7 +28,9 @@ const tableLinesRef = ref();
|
||||||
const order = ref();
|
const order = ref();
|
||||||
const orderSummary = ref({
|
const orderSummary = ref({
|
||||||
total: null,
|
total: null,
|
||||||
|
foreignTotal: null,
|
||||||
vat: null,
|
vat: null,
|
||||||
|
foreignVat: null,
|
||||||
});
|
});
|
||||||
const getTotalRef = ref();
|
const getTotalRef = ref();
|
||||||
const getVATRef = ref();
|
const getVATRef = ref();
|
||||||
|
@ -90,16 +93,14 @@ const columns = computed(() => [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
columnFilter: false,
|
columnFilter: false,
|
||||||
|
cardVisible: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
align: 'left',
|
align: 'left',
|
||||||
name: 'id',
|
name: 'id',
|
||||||
label: t('lines.item'),
|
label: t('lines.item'),
|
||||||
chip: {
|
|
||||||
condition: () => true,
|
|
||||||
},
|
|
||||||
isId: true,
|
|
||||||
format: (row) => row?.item?.id,
|
format: (row) => row?.item?.id,
|
||||||
|
cardVisible: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
align: 'left',
|
align: 'left',
|
||||||
|
@ -155,12 +156,12 @@ const columns = computed(() => [
|
||||||
name: 'price',
|
name: 'price',
|
||||||
label: t('lines.price'),
|
label: t('lines.price'),
|
||||||
cardVisible: true,
|
cardVisible: true,
|
||||||
format: (row) => toCurrency(row.price),
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
align: 'left',
|
align: 'left',
|
||||||
name: 'amount',
|
name: 'amount',
|
||||||
label: t('lines.amount'),
|
label: t('lines.amount'),
|
||||||
|
cardVisible: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
align: 'right',
|
align: 'right',
|
||||||
|
@ -253,14 +254,14 @@ watch(
|
||||||
ref="getTotalRef"
|
ref="getTotalRef"
|
||||||
:key="componentKey"
|
:key="componentKey"
|
||||||
:url="`Orders/${route.params.id}/getTotal`"
|
:url="`Orders/${route.params.id}/getTotal`"
|
||||||
@on-fetch="(data) => (orderSummary.total = data)"
|
@on-fetch="(data) => (orderSummary = { ...orderSummary, ...data })"
|
||||||
auto-load
|
auto-load
|
||||||
/>
|
/>
|
||||||
<FetchData
|
<FetchData
|
||||||
ref="getVATRef"
|
ref="getVATRef"
|
||||||
:key="componentKey"
|
:key="componentKey"
|
||||||
:url="`Orders/${route.params.id}/getVAT`"
|
:url="`Orders/${route.params.id}/getVAT`"
|
||||||
@on-fetch="(data) => (orderSummary.vat = data)"
|
@on-fetch="(data) => (orderSummary = { ...orderSummary, ...data })"
|
||||||
auto-load
|
auto-load
|
||||||
/>
|
/>
|
||||||
<RightMenu>
|
<RightMenu>
|
||||||
|
@ -275,12 +276,38 @@ watch(
|
||||||
<VnLv
|
<VnLv
|
||||||
:label="t('subtotal') + ': '"
|
:label="t('subtotal') + ': '"
|
||||||
:value="toCurrency(orderSummary.total - orderSummary.vat)"
|
:value="toCurrency(orderSummary.total - orderSummary.vat)"
|
||||||
|
>
|
||||||
|
<template #value>
|
||||||
|
<VnCurrency
|
||||||
|
:model="{
|
||||||
|
price: orderSummary.total - orderSummary.vat,
|
||||||
|
foreignPrice:
|
||||||
|
orderSummary.foreignTotal - orderSummary.foreignVat,
|
||||||
|
}"
|
||||||
|
array-data-model="Order"
|
||||||
/>
|
/>
|
||||||
<VnLv :label="t('VAT') + ': '" :value="toCurrency(orderSummary?.vat)" />
|
</template>
|
||||||
<VnLv
|
</VnLv>
|
||||||
:label="t('total') + ': '"
|
<VnLv :label="t('VAT') + ': '">
|
||||||
:value="toCurrency(orderSummary?.total)"
|
<template #value>
|
||||||
|
<VnCurrency
|
||||||
|
:model="orderSummary"
|
||||||
|
array-data-model="Order"
|
||||||
|
local-field="vat"
|
||||||
|
foreign-field="foreignVat"
|
||||||
/>
|
/>
|
||||||
|
</template>
|
||||||
|
</VnLv>
|
||||||
|
<VnLv :label="t('total') + ': '">
|
||||||
|
<template #value>
|
||||||
|
<VnCurrency
|
||||||
|
:model="orderSummary"
|
||||||
|
array-data-model="Order"
|
||||||
|
local-field="total"
|
||||||
|
foreign-field="foreignTotal"
|
||||||
|
/>
|
||||||
|
</template>
|
||||||
|
</VnLv>
|
||||||
</QCard>
|
</QCard>
|
||||||
</template>
|
</template>
|
||||||
</RightMenu>
|
</RightMenu>
|
||||||
|
@ -316,10 +343,19 @@ watch(
|
||||||
{{ row?.item?.subName.toUpperCase() }}
|
{{ row?.item?.subName.toUpperCase() }}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<FetchedTags :item="row?.item" />
|
<FetchedTags :item="row?.item" :columns="3" />
|
||||||
</template>
|
</template>
|
||||||
<template #column-amount="{ row }">
|
<template #column-price="{ row }">
|
||||||
{{ toCurrency(row.quantity * row.price) }}
|
<VnCurrency :model="row" array-data-model="Order" />
|
||||||
|
</template>
|
||||||
|
<template #column-amount="{ row: { price, quantity, foreignPrice } }">
|
||||||
|
<VnCurrency
|
||||||
|
:model="{
|
||||||
|
price: price * quantity,
|
||||||
|
foreignPrice: foreignPrice * quantity,
|
||||||
|
}"
|
||||||
|
array-data-model="Order"
|
||||||
|
/>
|
||||||
</template>
|
</template>
|
||||||
<template #column-tableActions="{ row }">
|
<template #column-tableActions="{ row }">
|
||||||
<QIcon
|
<QIcon
|
||||||
|
|
|
@ -15,6 +15,8 @@ import VnTable from 'src/components/VnTable/VnTable.vue';
|
||||||
import VnInputDate from 'src/components/common/VnInputDate.vue';
|
import VnInputDate from 'src/components/common/VnInputDate.vue';
|
||||||
import VnSelect from 'src/components/common/VnSelect.vue';
|
import VnSelect from 'src/components/common/VnSelect.vue';
|
||||||
import VnSection from 'src/components/common/VnSection.vue';
|
import VnSection from 'src/components/common/VnSection.vue';
|
||||||
|
import VnSelectCurrency from 'src/components/common/VnSelectCurrency.vue';
|
||||||
|
import VnSelectCompany from 'src/components/common/VnSelectCompany.vue';
|
||||||
import DepartmentDescriptorProxy from 'src/pages/Worker/Department/Card/DepartmentDescriptorProxy.vue';
|
import DepartmentDescriptorProxy from 'src/pages/Worker/Department/Card/DepartmentDescriptorProxy.vue';
|
||||||
import { getAddresses } from '../Customer/composables/getAddresses';
|
import { getAddresses } from '../Customer/composables/getAddresses';
|
||||||
|
|
||||||
|
@ -354,6 +356,14 @@ const isDefaultAddress = (opt, data) => {
|
||||||
option-value="agencyModeFk"
|
option-value="agencyModeFk"
|
||||||
option-label="agencyMode"
|
option-label="agencyMode"
|
||||||
/>
|
/>
|
||||||
|
<VnSelectCompany
|
||||||
|
v-model="data.companyId"
|
||||||
|
v-model:client-id="data.clientFk"
|
||||||
|
/>
|
||||||
|
<VnSelectCurrency
|
||||||
|
v-model="data.currencyId"
|
||||||
|
v-model:client-id="data.clientFk"
|
||||||
|
/>
|
||||||
</template>
|
</template>
|
||||||
</VnTable>
|
</VnTable>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
@ -9,6 +9,7 @@ import FetchData from 'components/FetchData.vue';
|
||||||
import { useStateStore } from 'stores/useStateStore';
|
import { useStateStore } from 'stores/useStateStore';
|
||||||
import { toCurrency } from 'filters/index';
|
import { toCurrency } from 'filters/index';
|
||||||
import { useRole } from 'src/composables/useRole';
|
import { useRole } from 'src/composables/useRole';
|
||||||
|
import VnCurrency from 'src/components/ui/VnCurrency.vue';
|
||||||
import VnCheckbox from 'src/components/common/VnCheckbox.vue';
|
import VnCheckbox from 'src/components/common/VnCheckbox.vue';
|
||||||
|
|
||||||
const haveNegatives = defineModel('have-negatives', { type: Boolean, required: true });
|
const haveNegatives = defineModel('have-negatives', { type: Boolean, required: true });
|
||||||
|
@ -19,7 +20,7 @@ const { t } = useI18n();
|
||||||
const { hasAny } = useRole();
|
const { hasAny } = useRole();
|
||||||
|
|
||||||
const ticketUpdateActions = ref(null);
|
const ticketUpdateActions = ref(null);
|
||||||
const rows = computed(() => formData.value?.sale?.items || []);
|
const rows = computed(() => formData.value?.sale?.sales || []);
|
||||||
|
|
||||||
const columns = computed(() => [
|
const columns = computed(() => [
|
||||||
{
|
{
|
||||||
|
@ -84,27 +85,13 @@ const loadDefaultTicketAction = () => {
|
||||||
formData.value.option = isSalesAssistant ? 'mana' : 'renewPrices';
|
formData.value.option = isSalesAssistant ? 'mana' : 'renewPrices';
|
||||||
};
|
};
|
||||||
|
|
||||||
const totalPrice = computed(() => {
|
|
||||||
return rows.value.reduce((acc, item) => acc + item.price * item.quantity, 0);
|
|
||||||
});
|
|
||||||
|
|
||||||
const totalNewPrice = computed(() => {
|
|
||||||
return rows.value.reduce(
|
|
||||||
(acc, item) => acc + item.component.newPrice * item.quantity,
|
|
||||||
0
|
|
||||||
);
|
|
||||||
});
|
|
||||||
|
|
||||||
const totalDifference = computed(() => {
|
|
||||||
return rows.value.reduce((acc, item) => acc + item.component?.difference || 0, 0);
|
|
||||||
});
|
|
||||||
const showMovableColumn = computed(() => (haveDifferences.value > 0 ? ['movable'] : []));
|
const showMovableColumn = computed(() => (haveDifferences.value > 0 ? ['movable'] : []));
|
||||||
const haveDifferences = computed(() => formData.value.sale?.haveDifferences);
|
const haveDifferences = computed(() => formData.value.sale?.haveDifferences);
|
||||||
async function ticketHaveNegatives() {
|
async function ticketHaveNegatives() {
|
||||||
let _haveNegatives = false;
|
let _haveNegatives = false;
|
||||||
let haveNotNegatives = false;
|
let haveNotNegatives = false;
|
||||||
formData.value.withoutNegatives = false;
|
formData.value.withoutNegatives = false;
|
||||||
formData.value?.sale?.items.forEach((item) => {
|
formData.value?.sale?.sales.forEach((item) => {
|
||||||
if (item.quantity > item.movable) _haveNegatives = true;
|
if (item.quantity > item.movable) _haveNegatives = true;
|
||||||
else haveNotNegatives = true;
|
else haveNotNegatives = true;
|
||||||
});
|
});
|
||||||
|
@ -142,17 +129,34 @@ onMounted(async () => {
|
||||||
<QCardSection class="column items-left" horizontal>
|
<QCardSection class="column items-left" horizontal>
|
||||||
<span>
|
<span>
|
||||||
{{ t('basicData.price') }}:
|
{{ t('basicData.price') }}:
|
||||||
{{ toCurrency(totalPrice) }}
|
<VnCurrency
|
||||||
|
:model="formData.sale"
|
||||||
|
local-field="totalUnitPrice"
|
||||||
|
foreign-field="totalForeignUnitPrice"
|
||||||
|
:currency-code="formData.currency.code"
|
||||||
|
/>
|
||||||
</span>
|
</span>
|
||||||
</QCardSection>
|
</QCardSection>
|
||||||
<QCardSection class="column items-left" horizontal>
|
<QCardSection class="column items-left" horizontal>
|
||||||
<span>
|
<span>
|
||||||
{{ t('basicData.newPrice') }}: {{ toCurrency(totalNewPrice) }}
|
{{ t('basicData.newPrice') }}:
|
||||||
|
<VnCurrency
|
||||||
|
:model="formData.sale"
|
||||||
|
local-field="totalNewPrice"
|
||||||
|
foreign-field="totalForeignNewPrice"
|
||||||
|
:currency-code="formData.currency.code"
|
||||||
|
/>
|
||||||
</span>
|
</span>
|
||||||
</QCardSection>
|
</QCardSection>
|
||||||
<QCardSection class="column items-left" horizontal>
|
<QCardSection class="column items-left" horizontal>
|
||||||
<span>
|
<span>
|
||||||
{{ t('basicData.difference') }}: {{ toCurrency(totalDifference) }}
|
{{ t('basicData.difference') }}:
|
||||||
|
<VnCurrency
|
||||||
|
:model="formData.sale"
|
||||||
|
local-field="totalDifference"
|
||||||
|
foreign-field="totalForeignDifference"
|
||||||
|
:currency-code="formData.currency.code"
|
||||||
|
/>
|
||||||
</span>
|
</span>
|
||||||
</QCardSection>
|
</QCardSection>
|
||||||
</QCard>
|
</QCard>
|
||||||
|
@ -242,5 +246,33 @@ onMounted(async () => {
|
||||||
/>
|
/>
|
||||||
</QTd>
|
</QTd>
|
||||||
</template>
|
</template>
|
||||||
|
<template #body-cell-price="{ row }">
|
||||||
|
<QTd class="number">
|
||||||
|
<VnCurrency
|
||||||
|
:model="row.component"
|
||||||
|
:currency-code="formData.currency.code"
|
||||||
|
/>
|
||||||
|
</QTd>
|
||||||
|
</template>
|
||||||
|
<template #body-cell-newPrice="{ row }">
|
||||||
|
<QTd class="number">
|
||||||
|
<VnCurrency
|
||||||
|
:model="row.component"
|
||||||
|
:currency-code="formData.currency.code"
|
||||||
|
local-field="newPrice"
|
||||||
|
foreign-field="newForeignPrice"
|
||||||
|
/>
|
||||||
|
</QTd>
|
||||||
|
</template>
|
||||||
|
<template #body-cell-difference="{ row }">
|
||||||
|
<QTd class="number">
|
||||||
|
<VnCurrency
|
||||||
|
:model="row.component"
|
||||||
|
:currency-code="formData.currency.code"
|
||||||
|
local-field="difference"
|
||||||
|
foreign-field="foreignDifference"
|
||||||
|
/>
|
||||||
|
</QTd>
|
||||||
|
</template>
|
||||||
</QTable>
|
</QTable>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
@ -15,6 +15,7 @@ import useNotify from 'src/composables/useNotify.js';
|
||||||
import { useAcl } from 'src/composables/useAcl';
|
import { useAcl } from 'src/composables/useAcl';
|
||||||
import { useValidator } from 'src/composables/useValidator';
|
import { useValidator } from 'src/composables/useValidator';
|
||||||
import { toTimeFormat } from 'filters/date.js';
|
import { toTimeFormat } from 'filters/date.js';
|
||||||
|
import VnSelectCurrency from 'src/components/common/VnSelectCurrency.vue';
|
||||||
|
|
||||||
const formData = defineModel({
|
const formData = defineModel({
|
||||||
type: Object,
|
type: Object,
|
||||||
|
@ -355,7 +356,7 @@ async function getZone(options) {
|
||||||
:rules="validate('basicData.alias')"
|
:rules="validate('basicData.alias')"
|
||||||
/>
|
/>
|
||||||
</VnRow>
|
</VnRow>
|
||||||
<VnRow class="row q-gutter-md q-mb-md no-wrap">
|
<VnRow>
|
||||||
<VnSelect
|
<VnSelect
|
||||||
:label="t('ticketList.company')"
|
:label="t('ticketList.company')"
|
||||||
v-model="formData.companyFk"
|
v-model="formData.companyFk"
|
||||||
|
@ -367,6 +368,12 @@ async function getZone(options) {
|
||||||
:required="true"
|
:required="true"
|
||||||
:rules="validate('ticketList.company')"
|
:rules="validate('ticketList.company')"
|
||||||
/>
|
/>
|
||||||
|
<VnSelectCurrency
|
||||||
|
v-model="formData.currencyFk"
|
||||||
|
@new-value="(value) => (formData.currency = value)"
|
||||||
|
/>
|
||||||
|
</VnRow>
|
||||||
|
<VnRow class="row q-gutter-md q-mb-md no-wrap">
|
||||||
<VnSelect
|
<VnSelect
|
||||||
:label="t('basicData.agency')"
|
:label="t('basicData.agency')"
|
||||||
v-model="agencyModeId"
|
v-model="agencyModeId"
|
||||||
|
|
|
@ -6,10 +6,10 @@ import { useRouter } from 'vue-router';
|
||||||
import TicketBasicData from './TicketBasicData.vue';
|
import TicketBasicData from './TicketBasicData.vue';
|
||||||
import TicketBasicDataForm from './TicketBasicDataForm.vue';
|
import TicketBasicDataForm from './TicketBasicDataForm.vue';
|
||||||
import { useVnConfirm } from 'composables/useVnConfirm';
|
import { useVnConfirm } from 'composables/useVnConfirm';
|
||||||
|
import { useArrayData } from 'composables/useArrayData';
|
||||||
|
|
||||||
import axios from 'axios';
|
import axios from 'axios';
|
||||||
import useNotify from 'src/composables/useNotify.js';
|
import useNotify from 'src/composables/useNotify';
|
||||||
import { useArrayData } from 'src/composables/useArrayData';
|
|
||||||
|
|
||||||
const { notify } = useNotify();
|
const { notify } = useNotify();
|
||||||
const router = useRouter();
|
const router = useRouter();
|
||||||
|
@ -42,6 +42,7 @@ const getPriceDifference = async () => {
|
||||||
zoneId: ticket.value.zoneFk,
|
zoneId: ticket.value.zoneFk,
|
||||||
warehouseId: ticket.value.warehouseFk,
|
warehouseId: ticket.value.warehouseFk,
|
||||||
shipped: ticket.value.shipped,
|
shipped: ticket.value.shipped,
|
||||||
|
currencyId: ticket.value.currencyFk,
|
||||||
};
|
};
|
||||||
const { data } = await axios.post(
|
const { data } = await axios.post(
|
||||||
`tickets/${ticket.value.id}/priceDifference`,
|
`tickets/${ticket.value.id}/priceDifference`,
|
||||||
|
@ -67,6 +68,7 @@ const submit = async () => {
|
||||||
option: ticket.value.option,
|
option: ticket.value.option,
|
||||||
isWithoutNegatives: ticket.value.withoutNegatives,
|
isWithoutNegatives: ticket.value.withoutNegatives,
|
||||||
withWarningAccept: ticket.value.withWarningAccept,
|
withWarningAccept: ticket.value.withWarningAccept,
|
||||||
|
currencyFk: ticket.value.currencyFk,
|
||||||
keepPrice: false,
|
keepPrice: false,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -78,6 +80,8 @@ const submit = async () => {
|
||||||
if (!data) return;
|
if (!data) return;
|
||||||
|
|
||||||
const ticketToMove = data.id;
|
const ticketToMove = data.id;
|
||||||
|
const arrayData = useArrayData('ticketData');
|
||||||
|
arrayData.fetch({});
|
||||||
notify(t('basicData.unroutedTicket'), 'positive');
|
notify(t('basicData.unroutedTicket'), 'positive');
|
||||||
router.push({ name: 'TicketSummary', params: { id: ticketToMove } });
|
router.push({ name: 'TicketSummary', params: { id: ticketToMove } });
|
||||||
};
|
};
|
||||||
|
@ -101,7 +105,7 @@ const onNextStep = async () => {
|
||||||
t('basicData.negativesConfirmMessage'),
|
t('basicData.negativesConfirmMessage'),
|
||||||
submitWithNegatives,
|
submitWithNegatives,
|
||||||
);
|
);
|
||||||
else submit();
|
else await submit();
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -9,9 +9,9 @@ import TicketDescriptorMenu from './TicketDescriptorMenu.vue';
|
||||||
import VnLv from 'src/components/ui/VnLv.vue';
|
import VnLv from 'src/components/ui/VnLv.vue';
|
||||||
import { toDateTimeFormat } from 'src/filters/date';
|
import { toDateTimeFormat } from 'src/filters/date';
|
||||||
import filter from './TicketFilter.js';
|
import filter from './TicketFilter.js';
|
||||||
import FetchData from 'src/components/FetchData.vue';
|
|
||||||
import TicketProblems from 'src/components/TicketProblems.vue';
|
import TicketProblems from 'src/components/TicketProblems.vue';
|
||||||
import axios from 'axios';
|
import axios from 'axios';
|
||||||
|
import useCardDescription from 'src/composables/useCardDescription';
|
||||||
|
|
||||||
const $props = defineProps({
|
const $props = defineProps({
|
||||||
id: {
|
id: {
|
||||||
|
@ -31,6 +31,8 @@ const { t } = useI18n();
|
||||||
const entityId = computed(() => {
|
const entityId = computed(() => {
|
||||||
return $props.id || route.params.id;
|
return $props.id || route.params.id;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
const data = ref(useCardDescription());
|
||||||
const problems = ref({});
|
const problems = ref({});
|
||||||
const originalTicket = ref();
|
const originalTicket = ref();
|
||||||
|
|
||||||
|
|
|
@ -5,6 +5,7 @@ import { computed, ref } from 'vue';
|
||||||
import { useRoute } from 'vue-router';
|
import { useRoute } from 'vue-router';
|
||||||
import { toCurrency } from 'src/filters';
|
import { toCurrency } from 'src/filters';
|
||||||
import VnUsesMana from 'components/ui/VnUsesMana.vue';
|
import VnUsesMana from 'components/ui/VnUsesMana.vue';
|
||||||
|
import VnCurrency from 'src/components/ui/VnCurrency.vue';
|
||||||
|
|
||||||
const $props = defineProps({
|
const $props = defineProps({
|
||||||
newPrice: {
|
newPrice: {
|
||||||
|
@ -58,7 +59,15 @@ defineExpose({ save });
|
||||||
data-cy="ticketEditManaProxy"
|
data-cy="ticketEditManaProxy"
|
||||||
>
|
>
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="header">Mana: {{ toCurrency(mana) }}</div>
|
<div class="header">
|
||||||
|
Mana:
|
||||||
|
<VnCurrency
|
||||||
|
:model="{ mana }"
|
||||||
|
local-field="mana"
|
||||||
|
foreign-field="mana"
|
||||||
|
arrayDataModel="ticketData"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
<QSpinner v-if="!hasMana" color="primary" size="md" />
|
<QSpinner v-if="!hasMana" color="primary" size="md" />
|
||||||
<div class="q-pa-md" v-else>
|
<div class="q-pa-md" v-else>
|
||||||
<slot :popup="QPopupProxyRef" />
|
<slot :popup="QPopupProxyRef" />
|
||||||
|
|
|
@ -68,5 +68,6 @@ export default {
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
{ relation: 'currency' },
|
||||||
],
|
],
|
||||||
};
|
};
|
||||||
|
|
|
@ -5,11 +5,13 @@ import { useI18n } from 'vue-i18n';
|
||||||
|
|
||||||
import FetchData from 'components/FetchData.vue';
|
import FetchData from 'components/FetchData.vue';
|
||||||
import CatalogItem from 'components/ui/CatalogItem.vue';
|
import CatalogItem from 'components/ui/CatalogItem.vue';
|
||||||
|
import VnCurrency from 'src/components/ui/VnCurrency.vue';
|
||||||
import { toCurrency } from 'filters/index';
|
import { useArrayData } from 'composables/useArrayData';
|
||||||
|
|
||||||
const { t } = useI18n();
|
const { t } = useI18n();
|
||||||
const route = useRoute();
|
const route = useRoute();
|
||||||
|
const arrayData = useArrayData('ticketData');
|
||||||
|
const { store } = arrayData;
|
||||||
|
|
||||||
const salesFilter = {
|
const salesFilter = {
|
||||||
include: {
|
include: {
|
||||||
|
@ -37,7 +39,12 @@ const sales = ref([]);
|
||||||
<div class="q-mt-md full-width row justify-between items-center">
|
<div class="q-mt-md full-width row justify-between items-center">
|
||||||
<span class="text-h6">{{ sale.quantity }}</span>
|
<span class="text-h6">{{ sale.quantity }}</span>
|
||||||
<span>{{ t('by') }}</span>
|
<span>{{ t('by') }}</span>
|
||||||
<span class="text-h6">{{ toCurrency(sale?.price) }}</span>
|
<span class="text-h6">
|
||||||
|
<VnCurrency
|
||||||
|
:model="sale"
|
||||||
|
:currency-code="store.data.currency.code"
|
||||||
|
/>
|
||||||
|
</span>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
</CatalogItem>
|
</CatalogItem>
|
||||||
|
|
|
@ -0,0 +1,59 @@
|
||||||
|
<script setup>
|
||||||
|
import RightMenu from 'src/components/common/RightMenu.vue';
|
||||||
|
import { useArrayData } from 'composables/useArrayData';
|
||||||
|
import VnCurrency from 'src/components/ui/VnCurrency.vue';
|
||||||
|
const arrayData = useArrayData('ticketData');
|
||||||
|
const store = arrayData.store;
|
||||||
|
</script>
|
||||||
|
<template>
|
||||||
|
<RightMenu>
|
||||||
|
<template #right-panel>
|
||||||
|
<div
|
||||||
|
class="q-pa-md q-mb-md q-ma-md color-vn-text"
|
||||||
|
style="border: 2px solid black"
|
||||||
|
>
|
||||||
|
<QCardSection class="justify-end text-subtitle1" horizontal>
|
||||||
|
<span class="q-mr-xs color-vn-label"
|
||||||
|
>{{ $t('ticketSale.subtotal') }}:
|
||||||
|
</span>
|
||||||
|
<VnCurrency
|
||||||
|
:model="store.data"
|
||||||
|
:currency-code="store.data?.currency?.code"
|
||||||
|
local-field="totalWithoutVat"
|
||||||
|
foreign-field="foreignTotalWithoutVat"
|
||||||
|
/>
|
||||||
|
</QCardSection>
|
||||||
|
<QCardSection class="justify-end text-subtitle1" horizontal>
|
||||||
|
<span class="q-mr-xs color-vn-label">
|
||||||
|
{{ $t('ticketSale.tax') }}:
|
||||||
|
</span>
|
||||||
|
<VnCurrency
|
||||||
|
:model="{
|
||||||
|
vat: store.data?.totalWithVat - store.data?.totalWithoutVat,
|
||||||
|
foreignVat:
|
||||||
|
store.data?.foreignTotalWithVat -
|
||||||
|
store.data?.foreignTotalWithoutVat,
|
||||||
|
}"
|
||||||
|
:currency-code="store.data?.currency?.code"
|
||||||
|
local-field="vat"
|
||||||
|
foreign-field="foreignVat"
|
||||||
|
/>
|
||||||
|
</QCardSection>
|
||||||
|
<QCardSection
|
||||||
|
class="justify-end text-weight-bold text-subtitle1"
|
||||||
|
horizontal
|
||||||
|
>
|
||||||
|
<span class="q-mr-xs color-vn-label">
|
||||||
|
{{ $t('basicData.total') }}:
|
||||||
|
</span>
|
||||||
|
<VnCurrency
|
||||||
|
:model="store.data"
|
||||||
|
:currency-code="store.data?.currency?.code"
|
||||||
|
local-field="totalWithVat"
|
||||||
|
foreign-field="foreignTotalWithVat"
|
||||||
|
/>
|
||||||
|
</QCardSection>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
</RightMenu>
|
||||||
|
</template>
|
|
@ -3,6 +3,7 @@ import { onMounted, ref, computed, watch, inject } from 'vue';
|
||||||
import { useI18n } from 'vue-i18n';
|
import { useI18n } from 'vue-i18n';
|
||||||
import { useRouter, useRoute } from 'vue-router';
|
import { useRouter, useRoute } from 'vue-router';
|
||||||
import { useQuasar } from 'quasar';
|
import { useQuasar } from 'quasar';
|
||||||
|
import { useState } from 'src/composables/useState';
|
||||||
|
|
||||||
import FetchData from 'components/FetchData.vue';
|
import FetchData from 'components/FetchData.vue';
|
||||||
import FetchedTags from 'components/ui/FetchedTags.vue';
|
import FetchedTags from 'components/ui/FetchedTags.vue';
|
||||||
|
@ -23,12 +24,16 @@ import useNotify from 'src/composables/useNotify.js';
|
||||||
import axios from 'axios';
|
import axios from 'axios';
|
||||||
import VnTable from 'src/components/VnTable/VnTable.vue';
|
import VnTable from 'src/components/VnTable/VnTable.vue';
|
||||||
import VnConfirm from 'src/components/ui/VnConfirm.vue';
|
import VnConfirm from 'src/components/ui/VnConfirm.vue';
|
||||||
|
import VnCurrency from 'src/components/ui/VnCurrency.vue';
|
||||||
|
import TicketRightTotals from './TicketRightTotals.vue';
|
||||||
import TicketProblems from 'src/components/TicketProblems.vue';
|
import TicketProblems from 'src/components/TicketProblems.vue';
|
||||||
import RightMenu from 'src/components/common/RightMenu.vue';
|
|
||||||
const app = inject('app');
|
const app = inject('app');
|
||||||
const route = useRoute();
|
const route = useRoute();
|
||||||
const router = useRouter();
|
const router = useRouter();
|
||||||
const { t } = useI18n();
|
const { t } = useI18n();
|
||||||
|
const state = useState();
|
||||||
|
const user = state.getUser();
|
||||||
|
|
||||||
const { notify } = useNotify();
|
const { notify } = useNotify();
|
||||||
const { openConfirmationModal } = useVnConfirm();
|
const { openConfirmationModal } = useVnConfirm();
|
||||||
const editPriceProxyRef = ref(null);
|
const editPriceProxyRef = ref(null);
|
||||||
|
@ -130,7 +135,7 @@ const columns = computed(() => [
|
||||||
{
|
{
|
||||||
align: 'left',
|
align: 'left',
|
||||||
label: t('globals.amount'),
|
label: t('globals.amount'),
|
||||||
name: 'amount',
|
name: 'total',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
align: 'left',
|
align: 'left',
|
||||||
|
@ -160,11 +165,6 @@ const getConfig = async () => {
|
||||||
ticketConfig.value = data;
|
ticketConfig.value = data;
|
||||||
};
|
};
|
||||||
|
|
||||||
const onSalesFetched = (salesData) => {
|
|
||||||
sales.value = salesData;
|
|
||||||
for (let sale of salesData) sale.amount = getSaleTotal(sale);
|
|
||||||
};
|
|
||||||
|
|
||||||
const getSaleTotal = (sale) => {
|
const getSaleTotal = (sale) => {
|
||||||
if (sale.quantity == null || sale.price == null) return null;
|
if (sale.quantity == null || sale.price == null) return null;
|
||||||
|
|
||||||
|
@ -284,7 +284,9 @@ const selectedValidSales = computed(() => {
|
||||||
const onOpenEditPricePopover = async (sale) => {
|
const onOpenEditPricePopover = async (sale) => {
|
||||||
edit.value = {
|
edit.value = {
|
||||||
sale: JSON.parse(JSON.stringify(sale)),
|
sale: JSON.parse(JSON.stringify(sale)),
|
||||||
price: sale.price,
|
price: user.value.foreignCurrency
|
||||||
|
? (sale.foreignPrice ?? sale.price)
|
||||||
|
: sale.price,
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -312,7 +314,10 @@ const changePrice = async (sale) => {
|
||||||
};
|
};
|
||||||
const updatePrice = async (sale, newPrice) => {
|
const updatePrice = async (sale, newPrice) => {
|
||||||
try {
|
try {
|
||||||
await axios.post(`Sales/${sale.id}/updatePrice`, { newPrice });
|
await axios.post(`Sales/${sale.id}/updatePrice`, {
|
||||||
|
newPrice,
|
||||||
|
isForeign: user.value.foreignCurrency,
|
||||||
|
});
|
||||||
sale.price = newPrice;
|
sale.price = newPrice;
|
||||||
edit.value = { ...DEFAULT_EDIT };
|
edit.value = { ...DEFAULT_EDIT };
|
||||||
notify('globals.dataSaved', 'positive');
|
notify('globals.dataSaved', 'positive');
|
||||||
|
@ -362,7 +367,10 @@ const getNewPrice = computed(() => {
|
||||||
if (edit.value?.sale) {
|
if (edit.value?.sale) {
|
||||||
const sale = edit.value.sale;
|
const sale = edit.value.sale;
|
||||||
let newDiscount = sale.discount;
|
let newDiscount = sale.discount;
|
||||||
let newPrice = edit.value.price || sale.price;
|
let newPrice = user.value.foreignCurrency
|
||||||
|
? (sale.foreignPrice ?? sale.price)
|
||||||
|
: sale.price;
|
||||||
|
// let newPrice = edit.value.price || sale.price;
|
||||||
|
|
||||||
if (edit.value.discount != null) newDiscount = edit.value.discount;
|
if (edit.value.discount != null) newDiscount = edit.value.discount;
|
||||||
|
|
||||||
|
@ -476,7 +484,7 @@ const updateItem = async (row) => {
|
||||||
row.price = selectedItem.price;
|
row.price = selectedItem.price;
|
||||||
row.discount = 0;
|
row.discount = 0;
|
||||||
row.quantity = 0;
|
row.quantity = 0;
|
||||||
row.amount = row.price * row.quantity;
|
row.total = 0;
|
||||||
}
|
}
|
||||||
endNewRow(selectedItem);
|
endNewRow(selectedItem);
|
||||||
};
|
};
|
||||||
|
@ -497,7 +505,7 @@ const addRow = (original = null) => {
|
||||||
quantity: original.quantity,
|
quantity: original.quantity,
|
||||||
price: original.price,
|
price: original.price,
|
||||||
discount: original.discount,
|
discount: original.discount,
|
||||||
amount: original.amount,
|
total: original.total,
|
||||||
isNew: true,
|
isNew: true,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -659,38 +667,7 @@ watch(
|
||||||
</QBtnGroup>
|
</QBtnGroup>
|
||||||
</template>
|
</template>
|
||||||
</VnSubToolbar>
|
</VnSubToolbar>
|
||||||
<RightMenu>
|
<TicketRightTotals />
|
||||||
<template #right-panel>
|
|
||||||
<div
|
|
||||||
class="q-pa-md q-mb-md q-ma-md color-vn-text"
|
|
||||||
style="border: 2px solid black"
|
|
||||||
>
|
|
||||||
<QCardSection class="justify-end text-subtitle1" horizontal>
|
|
||||||
<span class="q-mr-xs color-vn-label"
|
|
||||||
>{{ t('ticketSale.subtotal') }}:
|
|
||||||
</span>
|
|
||||||
<span>{{ toCurrency(store.data?.totalWithoutVat) }}</span>
|
|
||||||
</QCardSection>
|
|
||||||
<QCardSection class="justify-end text-subtitle1" horizontal>
|
|
||||||
<span class="q-mr-xs color-vn-label">
|
|
||||||
{{ t('ticketSale.tax') }}:
|
|
||||||
</span>
|
|
||||||
<span>{{
|
|
||||||
toCurrency(store.data?.totalWithVat - store.data?.totalWithoutVat)
|
|
||||||
}}</span>
|
|
||||||
</QCardSection>
|
|
||||||
<QCardSection
|
|
||||||
class="justify-end text-weight-bold text-subtitle1"
|
|
||||||
horizontal
|
|
||||||
>
|
|
||||||
<span class="q-mr-xs color-vn-label">
|
|
||||||
{{ t('basicData.total') }}:
|
|
||||||
</span>
|
|
||||||
<span>{{ toCurrency(store.data?.totalWithVat) }}</span>
|
|
||||||
</QCardSection>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
</RightMenu>
|
|
||||||
<VnTable
|
<VnTable
|
||||||
ref="tableRef"
|
ref="tableRef"
|
||||||
data-key="TicketSales"
|
data-key="TicketSales"
|
||||||
|
@ -707,7 +684,7 @@ watch(
|
||||||
:column-search="false"
|
:column-search="false"
|
||||||
:disable-option="{ card: true }"
|
:disable-option="{ card: true }"
|
||||||
auto-load
|
auto-load
|
||||||
@on-fetch="onSalesFetched"
|
@on-fetch="(data) => (sales = data)"
|
||||||
:create="{
|
:create="{
|
||||||
onDataSaved: handleOnDataSave,
|
onDataSaved: handleOnDataSave,
|
||||||
}"
|
}"
|
||||||
|
@ -814,7 +791,10 @@ watch(
|
||||||
<template #column-price="{ row }">
|
<template #column-price="{ row }">
|
||||||
<template v-if="isTicketEditable && row.id">
|
<template v-if="isTicketEditable && row.id">
|
||||||
<QBtn flat class="link" dense @click="onOpenEditPricePopover(row)">
|
<QBtn flat class="link" dense @click="onOpenEditPricePopover(row)">
|
||||||
{{ toCurrency(row.price) }}
|
<VnCurrency
|
||||||
|
:model="row"
|
||||||
|
:currency-code="store.data?.currency?.code"
|
||||||
|
/>
|
||||||
</QBtn>
|
</QBtn>
|
||||||
<TicketEditManaProxy
|
<TicketEditManaProxy
|
||||||
ref="editPriceProxyRef"
|
ref="editPriceProxyRef"
|
||||||
|
@ -830,7 +810,9 @@ watch(
|
||||||
/>
|
/>
|
||||||
</TicketEditManaProxy>
|
</TicketEditManaProxy>
|
||||||
</template>
|
</template>
|
||||||
<span v-else>{{ toCurrency(row.price) }}</span>
|
<span v-else>
|
||||||
|
<VnCurrency :model="row" :currency-code="store.data?.currency?.code" />
|
||||||
|
</span>
|
||||||
</template>
|
</template>
|
||||||
<template #column-discount="{ row }">
|
<template #column-discount="{ row }">
|
||||||
<template v-if="!isLocked && row.id">
|
<template v-if="!isLocked && row.id">
|
||||||
|
@ -850,14 +832,17 @@ watch(
|
||||||
@keyup.enter.stop="() => editManaProxyRef.save(row)"
|
@keyup.enter.stop="() => editManaProxyRef.save(row)"
|
||||||
v-model.number="edit.discount"
|
v-model.number="edit.discount"
|
||||||
:label="t('ticketSale.discount')"
|
:label="t('ticketSale.discount')"
|
||||||
type="number"
|
|
||||||
/>
|
/>
|
||||||
</TicketEditManaProxy>
|
</TicketEditManaProxy>
|
||||||
</template>
|
</template>
|
||||||
<span v-else>{{ toPercentage(row.discount / 100) }}</span>
|
<span v-else>{{ toPercentage(row.discount / 100) }}</span>
|
||||||
</template>
|
</template>
|
||||||
<template #column-amount="{ row }">
|
<template #column-total="{ row }">
|
||||||
{{ toCurrency(getSaleTotal(row)) }}
|
<VnCurrency
|
||||||
|
:model="row"
|
||||||
|
:currency-code="store.data?.currency?.code"
|
||||||
|
local-field="total"
|
||||||
|
/>
|
||||||
</template>
|
</template>
|
||||||
</VnTable>
|
</VnTable>
|
||||||
|
|
||||||
|
|
|
@ -12,10 +12,14 @@ import VnInput from 'src/components/common/VnInput.vue';
|
||||||
import { useArrayData } from 'src/composables/useArrayData';
|
import { useArrayData } from 'src/composables/useArrayData';
|
||||||
import useNotify from 'src/composables/useNotify.js';
|
import useNotify from 'src/composables/useNotify.js';
|
||||||
import axios from 'axios';
|
import axios from 'axios';
|
||||||
|
import TicketRightTotals from './TicketRightTotals.vue';
|
||||||
|
import { useState } from 'src/composables/useState';
|
||||||
|
|
||||||
const route = useRoute();
|
const route = useRoute();
|
||||||
const router = useRouter();
|
const router = useRouter();
|
||||||
const { t } = useI18n();
|
const { t } = useI18n();
|
||||||
|
const state = useState();
|
||||||
|
const user = state.getUser();
|
||||||
const ticketServiceTypeFetchRef = ref(null);
|
const ticketServiceTypeFetchRef = ref(null);
|
||||||
const ticketServiceCrudRef = ref(null);
|
const ticketServiceCrudRef = ref(null);
|
||||||
const ticketServiceOptions = ref([]);
|
const ticketServiceOptions = ref([]);
|
||||||
|
@ -174,6 +178,7 @@ function beforeSave(data) {
|
||||||
auto-load
|
auto-load
|
||||||
url="TicketServiceTypes"
|
url="TicketServiceTypes"
|
||||||
/>
|
/>
|
||||||
|
<TicketRightTotals />
|
||||||
<CrudModel
|
<CrudModel
|
||||||
ref="ticketServiceCrudRef"
|
ref="ticketServiceCrudRef"
|
||||||
data-key="TicketService"
|
data-key="TicketService"
|
||||||
|
@ -241,7 +246,9 @@ function beforeSave(data) {
|
||||||
<QTd auto-width>
|
<QTd auto-width>
|
||||||
<VnInput
|
<VnInput
|
||||||
:label="col.label"
|
:label="col.label"
|
||||||
v-model.number="row.price"
|
v-model.number="
|
||||||
|
row[user.foreignCurrency ? 'foreignPrice' : 'price']
|
||||||
|
"
|
||||||
type="number"
|
type="number"
|
||||||
:required="true"
|
:required="true"
|
||||||
min="0"
|
min="0"
|
||||||
|
|
|
@ -20,6 +20,7 @@ import ZoneDescriptorProxy from 'src/pages/Zone/Card/ZoneDescriptorProxy.vue';
|
||||||
import VnSelect from 'src/components/common/VnSelect.vue';
|
import VnSelect from 'src/components/common/VnSelect.vue';
|
||||||
import VnToSummary from 'src/components/ui/VnToSummary.vue';
|
import VnToSummary from 'src/components/ui/VnToSummary.vue';
|
||||||
import TicketDescriptorMenu from './TicketDescriptorMenu.vue';
|
import TicketDescriptorMenu from './TicketDescriptorMenu.vue';
|
||||||
|
import VnCurrency from 'src/components/ui/VnCurrency.vue';
|
||||||
import TicketProblems from 'src/components/TicketProblems.vue';
|
import TicketProblems from 'src/components/TicketProblems.vue';
|
||||||
import VnDropdown from 'src/components/common/VnDropdown.vue';
|
import VnDropdown from 'src/components/common/VnDropdown.vue';
|
||||||
|
|
||||||
|
@ -277,19 +278,38 @@ onMounted(async () => {
|
||||||
<QCard class="vn-one">
|
<QCard class="vn-one">
|
||||||
<VnTitle :text="t('ticket.summary.summaryAmount')" />
|
<VnTitle :text="t('ticket.summary.summaryAmount')" />
|
||||||
<div class="bodyCard">
|
<div class="bodyCard">
|
||||||
<VnLv
|
<VnLv :label="t('globals.subtotal')">
|
||||||
:label="t('globals.subtotal')"
|
<template #value>
|
||||||
:value="toCurrency(entity.totalWithoutVat)"
|
<VnCurrency
|
||||||
|
:model="entity"
|
||||||
|
:currency-code="entity.currency.code"
|
||||||
|
local-field="totalWithoutVat"
|
||||||
/>
|
/>
|
||||||
<VnLv
|
</template>
|
||||||
:label="t('globals.vat')"
|
</VnLv>
|
||||||
:value="toCurrency(entity.totalWithVat - entity.totalWithoutVat)"
|
<VnLv :label="t('globals.vat')">
|
||||||
|
<template #value>
|
||||||
|
<VnCurrency
|
||||||
|
:model="{
|
||||||
|
vat: entity.totalWithVat - entity.totalWithoutVat,
|
||||||
|
foreignVat:
|
||||||
|
entity.foreignTotalWithVat -
|
||||||
|
entity.foreignTotalWithoutVat,
|
||||||
|
}"
|
||||||
|
:currency-code="entity.currency.code"
|
||||||
|
local-field="vat"
|
||||||
/>
|
/>
|
||||||
<VnLv
|
</template>
|
||||||
:label="t('ticket.summary.total')"
|
</VnLv>
|
||||||
:value="toCurrency(ticket.totalWithVat)"
|
<VnLv :label="t('ticket.summary.total')" style="font-weight: bold">
|
||||||
style="font-weight: bold"
|
<template #value>
|
||||||
|
<VnCurrency
|
||||||
|
:model="entity"
|
||||||
|
:currency-code="entity.currency.code"
|
||||||
|
local-field="totalWithVat"
|
||||||
/>
|
/>
|
||||||
|
</template>
|
||||||
|
</VnLv>
|
||||||
</div>
|
</div>
|
||||||
</QCard>
|
</QCard>
|
||||||
<QCard class="vn-max">
|
<QCard class="vn-max">
|
||||||
|
@ -371,16 +391,28 @@ onMounted(async () => {
|
||||||
:item="props.row.item"
|
:item="props.row.item"
|
||||||
></FetchedTags>
|
></FetchedTags>
|
||||||
</QTd>
|
</QTd>
|
||||||
<QTd>{{ props.row.price }} €</QTd>
|
<QTd>
|
||||||
|
<VnCurrency
|
||||||
|
:model="props.row"
|
||||||
|
:currency-code="entity.currency.code"
|
||||||
|
/>
|
||||||
|
</QTd>
|
||||||
<QTd>{{ props.row.discount }} %</QTd>
|
<QTd>{{ props.row.discount }} %</QTd>
|
||||||
<QTd
|
<QTd>
|
||||||
>{{
|
<VnCurrency
|
||||||
toCurrency(
|
:model="{
|
||||||
|
amount:
|
||||||
props.row.quantity *
|
props.row.quantity *
|
||||||
props.row.price *
|
props.row.price *
|
||||||
((100 - props.row.discount) / 100),
|
((100 - props.row.discount) / 100),
|
||||||
)
|
foreignAmount:
|
||||||
}}
|
props.row.quantity *
|
||||||
|
props.row.foreignPrice *
|
||||||
|
((100 - props.row.discount) / 100),
|
||||||
|
}"
|
||||||
|
local-field="amount"
|
||||||
|
:currency-code="entity.currency.code"
|
||||||
|
/>
|
||||||
</QTd>
|
</QTd>
|
||||||
<QTd>{{ dashIfEmpty(props.row.item.itemPackingTypeFk) }}</QTd>
|
<QTd>{{ dashIfEmpty(props.row.item.itemPackingTypeFk) }}</QTd>
|
||||||
</QTr>
|
</QTr>
|
||||||
|
@ -425,7 +457,12 @@ onMounted(async () => {
|
||||||
<QTr :props="props">
|
<QTr :props="props">
|
||||||
<QTd>{{ props.row.quantity }}</QTd>
|
<QTd>{{ props.row.quantity }}</QTd>
|
||||||
<QTd>{{ props.row.description }}</QTd>
|
<QTd>{{ props.row.description }}</QTd>
|
||||||
<QTd>{{ toCurrency(props.row.price) }}</QTd>
|
<QTd>
|
||||||
|
<VnCurrency
|
||||||
|
:model="props.row"
|
||||||
|
:currency-code="entity.currency.code"
|
||||||
|
/>
|
||||||
|
</QTd>
|
||||||
<QTd>{{ props.row.taxClass.description }}</QTd>
|
<QTd>{{ props.row.taxClass.description }}</QTd>
|
||||||
<QTd>{{
|
<QTd>{{
|
||||||
toCurrency(props.row.quantity * props.row.price)
|
toCurrency(props.row.quantity * props.row.price)
|
||||||
|
|
|
@ -23,6 +23,9 @@ import { toTimeFormat } from 'src/filters/date';
|
||||||
import InvoiceOutDescriptorProxy from 'src/pages/InvoiceOut/Card/InvoiceOutDescriptorProxy.vue';
|
import InvoiceOutDescriptorProxy from 'src/pages/InvoiceOut/Card/InvoiceOutDescriptorProxy.vue';
|
||||||
import TicketProblems from 'src/components/TicketProblems.vue';
|
import TicketProblems from 'src/components/TicketProblems.vue';
|
||||||
import VnSection from 'src/components/common/VnSection.vue';
|
import VnSection from 'src/components/common/VnSection.vue';
|
||||||
|
import VnSelectCompany from 'src/components/common/VnSelectCompany.vue';
|
||||||
|
import VnSelectCurrency from 'src/components/common/VnSelectCurrency.vue';
|
||||||
|
import VnCurrency from 'src/components/ui/VnCurrency.vue';
|
||||||
import { getAddresses } from 'src/pages/Customer/composables/getAddresses';
|
import { getAddresses } from 'src/pages/Customer/composables/getAddresses';
|
||||||
import { getAgencies } from 'src/pages/Route/Agency/composables/getAgencies';
|
import { getAgencies } from 'src/pages/Route/Agency/composables/getAgencies';
|
||||||
|
|
||||||
|
@ -113,7 +116,7 @@ const columns = computed(() => [
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
align: 'left',
|
align: 'left',
|
||||||
name: 'shippedDate',
|
name: 'shipped',
|
||||||
cardVisible: true,
|
cardVisible: true,
|
||||||
label: t('ticketList.shipped'),
|
label: t('ticketList.shipped'),
|
||||||
columnFilter: {
|
columnFilter: {
|
||||||
|
@ -123,7 +126,7 @@ const columns = computed(() => [
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
align: 'left',
|
align: 'left',
|
||||||
name: 'shippedHour',
|
name: 'shipped',
|
||||||
component: 'time',
|
component: 'time',
|
||||||
columnFilter: false,
|
columnFilter: false,
|
||||||
label: t('ticketList.hour'),
|
label: t('ticketList.hour'),
|
||||||
|
@ -219,7 +222,6 @@ const columns = computed(() => [
|
||||||
component: 'number',
|
component: 'number',
|
||||||
inWhere: true,
|
inWhere: true,
|
||||||
},
|
},
|
||||||
format: (row) => toCurrency(row.totalWithVat),
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
align: 'left',
|
align: 'left',
|
||||||
|
@ -563,7 +565,11 @@ function setReference(data) {
|
||||||
dense
|
dense
|
||||||
square
|
square
|
||||||
>
|
>
|
||||||
{{ row.totalWithVat }}
|
<VnCurrency
|
||||||
|
:model="row"
|
||||||
|
:currency-code="row.currencyCode"
|
||||||
|
local-field="totalWithVat"
|
||||||
|
/>
|
||||||
</QChip>
|
</QChip>
|
||||||
</template>
|
</template>
|
||||||
<template #more-create-dialog="{ data }">
|
<template #more-create-dialog="{ data }">
|
||||||
|
@ -652,17 +658,14 @@ function setReference(data) {
|
||||||
</VnSelect>
|
</VnSelect>
|
||||||
</VnRow>
|
</VnRow>
|
||||||
<VnRow>
|
<VnRow>
|
||||||
<div class="col">
|
|
||||||
<VnInputDate
|
<VnInputDate
|
||||||
placeholder="dd-mm-aaa"
|
placeholder="dd-mm-aaa"
|
||||||
:label="t('globals.landed')"
|
:label="t('globals.landed')"
|
||||||
v-model="data.landed"
|
v-model="data.landed"
|
||||||
@update:model-value="() => fetchAvailableAgencies(data)"
|
@update:model-value="() => fetchAvailableAgencies(data)"
|
||||||
/>
|
/>
|
||||||
</div>
|
|
||||||
</VnRow>
|
</VnRow>
|
||||||
<VnRow>
|
<VnRow>
|
||||||
<div class="col">
|
|
||||||
<VnSelect
|
<VnSelect
|
||||||
url="Warehouses"
|
url="Warehouses"
|
||||||
:sort-by="['name']"
|
:sort-by="['name']"
|
||||||
|
@ -673,10 +676,8 @@ function setReference(data) {
|
||||||
required
|
required
|
||||||
@update:model-value="() => fetchAvailableAgencies(data)"
|
@update:model-value="() => fetchAvailableAgencies(data)"
|
||||||
/>
|
/>
|
||||||
</div>
|
|
||||||
</VnRow>
|
</VnRow>
|
||||||
<VnRow>
|
<VnRow>
|
||||||
<div class="col">
|
|
||||||
<VnSelect
|
<VnSelect
|
||||||
:label="t('globals.agency')"
|
:label="t('globals.agency')"
|
||||||
v-model="data.agencyModeId"
|
v-model="data.agencyModeId"
|
||||||
|
@ -685,8 +686,15 @@ function setReference(data) {
|
||||||
option-label="agencyMode"
|
option-label="agencyMode"
|
||||||
hide-selected
|
hide-selected
|
||||||
/>
|
/>
|
||||||
</div>
|
|
||||||
</VnRow>
|
</VnRow>
|
||||||
|
<VnSelectCompany
|
||||||
|
v-model="data.companyId"
|
||||||
|
v-model:client-id="data.clientId"
|
||||||
|
/>
|
||||||
|
<VnSelectCurrency
|
||||||
|
v-model="data.currencyId"
|
||||||
|
v-model:client-id="data.clientId"
|
||||||
|
/>
|
||||||
</template>
|
</template>
|
||||||
</VnTable>
|
</VnTable>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
@ -205,7 +205,6 @@ ticketList:
|
||||||
toLines: Go to lines
|
toLines: Go to lines
|
||||||
addressNickname: Address nickname
|
addressNickname: Address nickname
|
||||||
ref: Reference
|
ref: Reference
|
||||||
hour: Hour
|
|
||||||
rounding: Rounding
|
rounding: Rounding
|
||||||
noVerifiedData: No verified data
|
noVerifiedData: No verified data
|
||||||
purchaseRequest: Purchase request
|
purchaseRequest: Purchase request
|
||||||
|
|
|
@ -116,7 +116,7 @@ const handlePhotoUpdated = (evt = false) => {
|
||||||
<template #body="{ entity }">
|
<template #body="{ entity }">
|
||||||
<VnLv :label="t('globals.user')" :value="entity.user?.name" />
|
<VnLv :label="t('globals.user')" :value="entity.user?.name" />
|
||||||
<VnLv
|
<VnLv
|
||||||
class="ellipsis"
|
class="ellipsis-text"
|
||||||
:label="t('globals.params.email')"
|
:label="t('globals.params.email')"
|
||||||
:value="entity.user?.emailUser?.email"
|
:value="entity.user?.emailUser?.email"
|
||||||
copy
|
copy
|
||||||
|
|
|
@ -132,7 +132,6 @@ onBeforeMount(async () => {
|
||||||
<VnTitle :text="t('worker.summary.userData')" />
|
<VnTitle :text="t('worker.summary.userData')" />
|
||||||
<VnLv :label="t('globals.name')" :value="worker?.user?.nickname" />
|
<VnLv :label="t('globals.name')" :value="worker?.user?.nickname" />
|
||||||
<VnLv
|
<VnLv
|
||||||
class="ellipsis"
|
|
||||||
:label="t('globals.params.email')"
|
:label="t('globals.params.email')"
|
||||||
:value="worker.user?.emailUser?.email"
|
:value="worker.user?.emailUser?.email"
|
||||||
copy
|
copy
|
||||||
|
|
|
@ -75,13 +75,13 @@ onMounted(async () => {
|
||||||
<template #body="{ entity: zone }">
|
<template #body="{ entity: zone }">
|
||||||
<QCard class="vn-one">
|
<QCard class="vn-one">
|
||||||
<VnTitle :url="zoneUrl + `basic-data`" :text="t('summary.basicData')" />
|
<VnTitle :url="zoneUrl + `basic-data`" :text="t('summary.basicData')" />
|
||||||
<div class="vn-card-group">
|
<div class="card-group">
|
||||||
<div class="vn-card-content">
|
<div class="card-content">
|
||||||
<VnLv :label="t('list.agency')" :value="zone.agencyMode?.name" />
|
<VnLv :label="t('list.agency')" :value="zone.agencyMode?.name" />
|
||||||
<VnLv :label="t('list.price')" :value="toCurrency(zone.price)" />
|
<VnLv :label="t('list.price')" :value="toCurrency(zone.price)" />
|
||||||
<VnLv :label="t('zone.bonus')" :value="toCurrency(zone.bonus)" />
|
<VnLv :label="t('zone.bonus')" :value="toCurrency(zone.bonus)" />
|
||||||
</div>
|
</div>
|
||||||
<div class="vn-card-content">
|
<div class="card-content">
|
||||||
<VnLv
|
<VnLv
|
||||||
:label="t('summary.closeHour')"
|
:label="t('summary.closeHour')"
|
||||||
:value="toTimeFormat(zone.hour)"
|
:value="toTimeFormat(zone.hour)"
|
||||||
|
@ -98,7 +98,7 @@ onMounted(async () => {
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</QCard>
|
</QCard>
|
||||||
<QCard class="vn-max">
|
<QCard class="vn-one">
|
||||||
<VnTitle :url="zoneUrl + `warehouses`" :text="t('list.warehouse')" />
|
<VnTitle :url="zoneUrl + `warehouses`" :text="t('list.warehouse')" />
|
||||||
<QTable
|
<QTable
|
||||||
:columns="columns"
|
:columns="columns"
|
||||||
|
@ -109,3 +109,15 @@ onMounted(async () => {
|
||||||
</template>
|
</template>
|
||||||
</CardSummary>
|
</CardSummary>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
.card-group {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
|
||||||
|
.card-content {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
|
@ -9,6 +9,7 @@ const ticketCard = {
|
||||||
menu: [
|
menu: [
|
||||||
'TicketBasicData',
|
'TicketBasicData',
|
||||||
'TicketSale',
|
'TicketSale',
|
||||||
|
'TicketService',
|
||||||
'TicketLog',
|
'TicketLog',
|
||||||
'TicketExpedition',
|
'TicketExpedition',
|
||||||
'TicketDms',
|
'TicketDms',
|
||||||
|
@ -19,7 +20,6 @@ const ticketCard = {
|
||||||
'TicketVolume',
|
'TicketVolume',
|
||||||
'TicketComponents',
|
'TicketComponents',
|
||||||
'TicketPackage',
|
'TicketPackage',
|
||||||
'TicketService',
|
|
||||||
'TicketSaleTracking',
|
'TicketSaleTracking',
|
||||||
'TicketBoxing',
|
'TicketBoxing',
|
||||||
'TicketSms',
|
'TicketSms',
|
||||||
|
|
|
@ -40,7 +40,7 @@ describe('InvoiceInDescriptor', () => {
|
||||||
cy.visit('/#/invoice-in/6/summary');
|
cy.visit('/#/invoice-in/6/summary');
|
||||||
cy.selectDescriptorOption(5);
|
cy.selectDescriptorOption(5);
|
||||||
|
|
||||||
cy.dataCy('SendEmailNotificationDialogInput_input').type(
|
cy.dataCy('SendEmailNotifiactionDialogInput_input').type(
|
||||||
'{selectall}jorgito@gmail.mx',
|
'{selectall}jorgito@gmail.mx',
|
||||||
);
|
);
|
||||||
cy.clickConfirm();
|
cy.clickConfirm();
|
||||||
|
|
|
@ -37,7 +37,7 @@ describe('InvoiceOut summary', () => {
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
it.skip('should transfer the invoice ', () => {
|
it('should transfer the invoice ', () => {
|
||||||
cy.typeSearchbar('T1111111{enter}');
|
cy.typeSearchbar('T1111111{enter}');
|
||||||
cy.dataCy('descriptor-more-opts').click();
|
cy.dataCy('descriptor-more-opts').click();
|
||||||
cy.get(selectMenuOption(1)).click();
|
cy.get(selectMenuOption(1)).click();
|
||||||
|
@ -50,7 +50,7 @@ describe('InvoiceOut summary', () => {
|
||||||
cy.dataCy('descriptor-more-opts').click();
|
cy.dataCy('descriptor-more-opts').click();
|
||||||
cy.get(selectMenuOption(3)).click();
|
cy.get(selectMenuOption(3)).click();
|
||||||
cy.dataCy('InvoiceOutDescriptorMenuSendPdfOption').click();
|
cy.dataCy('InvoiceOutDescriptorMenuSendPdfOption').click();
|
||||||
cy.dataCy('SendEmailNotificationDialogInput').should('be.visible');
|
cy.dataCy('SendEmailNotifiactionDialogInput').should('be.visible');
|
||||||
cy.get(confirmSend).click();
|
cy.get(confirmSend).click();
|
||||||
cy.checkNotification('Notification sent');
|
cy.checkNotification('Notification sent');
|
||||||
});
|
});
|
||||||
|
@ -59,7 +59,7 @@ describe('InvoiceOut summary', () => {
|
||||||
cy.dataCy('descriptor-more-opts').click();
|
cy.dataCy('descriptor-more-opts').click();
|
||||||
cy.get(selectMenuOption(3)).click();
|
cy.get(selectMenuOption(3)).click();
|
||||||
cy.dataCy('InvoiceOutDescriptorMenuSendCsvOption').click();
|
cy.dataCy('InvoiceOutDescriptorMenuSendCsvOption').click();
|
||||||
cy.dataCy('SendEmailNotificationDialogInput').should('be.visible');
|
cy.dataCy('SendEmailNotifiactionDialogInput').should('be.visible');
|
||||||
cy.get(confirmSend).click();
|
cy.get(confirmSend).click();
|
||||||
cy.checkNotification('Notification sent');
|
cy.checkNotification('Notification sent');
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue