resolve conflicts
This commit is contained in:
commit
2eac632b32
10
CHANGELOG.md
10
CHANGELOG.md
|
@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file.
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
## [2352.01] - 2023-12-28
|
||||||
|
|
||||||
|
### Added
|
||||||
|
- (carros) => Se añade contador de carros. #6545
|
||||||
|
- (Reclamaciones) => Se añade la sección para hacer acciones sobre una reclamación. #5654
|
||||||
|
### Changed
|
||||||
|
### Fixed
|
||||||
|
- (Reclamaciones) => Se corrige el color de la barra según el tema y el evento de actualziar cantidades #6334
|
||||||
|
|
||||||
|
|
||||||
## [2253.01] - 2023-01-05
|
## [2253.01] - 2023-01-05
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
|
@ -8,7 +8,7 @@ module.exports = defineConfig({
|
||||||
supportFile: 'test/cypress/support/index.js',
|
supportFile: 'test/cypress/support/index.js',
|
||||||
videosFolder: 'test/cypress/videos',
|
videosFolder: 'test/cypress/videos',
|
||||||
video: false,
|
video: false,
|
||||||
specPattern: 'test/cypress/integration/*.spec.js',
|
specPattern: 'test/cypress/integration/**/*.spec.js',
|
||||||
experimentalRunAllSpecs: true,
|
experimentalRunAllSpecs: true,
|
||||||
component: {
|
component: {
|
||||||
componentFolder: 'src',
|
componentFolder: 'src',
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
"name": "salix-front",
|
"name": "salix-front",
|
||||||
"version": "23.48.01",
|
"version": "23.52.01",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "salix-front",
|
"name": "salix-front",
|
||||||
"version": "23.48.01",
|
"version": "23.52.01",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@quasar/cli": "^2.3.0",
|
"@quasar/cli": "^2.3.0",
|
||||||
"@quasar/extras": "^1.16.4",
|
"@quasar/extras": "^1.16.4",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "salix-front",
|
"name": "salix-front",
|
||||||
"version": "23.48.01",
|
"version": "23.52.01",
|
||||||
"description": "Salix frontend",
|
"description": "Salix frontend",
|
||||||
"productName": "Salix",
|
"productName": "Salix",
|
||||||
"author": "Verdnatura",
|
"author": "Verdnatura",
|
||||||
|
@ -9,7 +9,7 @@
|
||||||
"lint": "eslint --ext .js,.vue ./",
|
"lint": "eslint --ext .js,.vue ./",
|
||||||
"format": "prettier --write \"**/*.{js,vue,scss,html,md,json}\" --ignore-path .gitignore",
|
"format": "prettier --write \"**/*.{js,vue,scss,html,md,json}\" --ignore-path .gitignore",
|
||||||
"test:e2e": "cypress open",
|
"test:e2e": "cypress open",
|
||||||
"test:e2e:ci": "cd ../salix && gulp docker && cd ../salix-front && cypress run --browser chromium",
|
"test:e2e:ci": "cd ../salix && gulp docker && cd ../salix-front && cypress run",
|
||||||
"test": "echo \"See package.json => scripts for available tests.\" && exit 0",
|
"test": "echo \"See package.json => scripts for available tests.\" && exit 0",
|
||||||
"test:unit": "vitest",
|
"test:unit": "vitest",
|
||||||
"test:unit:ci": "vitest run"
|
"test:unit:ci": "vitest run"
|
||||||
|
@ -53,4 +53,4 @@
|
||||||
"vite": "^4.3.5",
|
"vite": "^4.3.5",
|
||||||
"vitest": "^0.31.1"
|
"vitest": "^0.31.1"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -29,7 +29,7 @@ module.exports = configure(function (/* ctx */) {
|
||||||
// app boot file (/src/boot)
|
// app boot file (/src/boot)
|
||||||
// --> boot files are part of "main.js"
|
// --> boot files are part of "main.js"
|
||||||
// https://v2.quasar.dev/quasar-cli/boot-files
|
// https://v2.quasar.dev/quasar-cli/boot-files
|
||||||
boot: ['i18n', 'axios', 'vnDate'],
|
boot: ['i18n', 'axios', 'vnDate', 'validations'],
|
||||||
|
|
||||||
// https://v2.quasar.dev/quasar-cli-vite/quasar-config-js#css
|
// https://v2.quasar.dev/quasar-cli-vite/quasar-config-js#css
|
||||||
css: ['app.scss'],
|
css: ['app.scss'],
|
||||||
|
@ -66,7 +66,9 @@ module.exports = configure(function (/* ctx */) {
|
||||||
// publicPath: '/',
|
// publicPath: '/',
|
||||||
// analyze: true,
|
// analyze: true,
|
||||||
// env: {},
|
// env: {},
|
||||||
// rawDefine: {}
|
rawDefine: {
|
||||||
|
'process.env.NODE_ENV': JSON.stringify(process.env.NODE_ENV)
|
||||||
|
},
|
||||||
// ignorePublicFolder: true,
|
// ignorePublicFolder: true,
|
||||||
// minify: false,
|
// minify: false,
|
||||||
// polyfillModulePreload: true,
|
// polyfillModulePreload: true,
|
||||||
|
@ -89,11 +91,12 @@ module.exports = configure(function (/* ctx */) {
|
||||||
|
|
||||||
vitePlugins: [
|
vitePlugins: [
|
||||||
[
|
[
|
||||||
VueI18nPlugin,
|
VueI18nPlugin({
|
||||||
|
runtimeOnly: false
|
||||||
|
}),
|
||||||
{
|
{
|
||||||
// if you want to use Vue I18n Legacy API, you need to set `compositionOnly: false`
|
// if you want to use Vue I18n Legacy API, you need to set `compositionOnly: false`
|
||||||
// compositionOnly: false,
|
// compositionOnly: false,
|
||||||
|
|
||||||
// you need to set i18n resource including paths !
|
// you need to set i18n resource including paths !
|
||||||
include: path.resolve(__dirname, './src/i18n/**'),
|
include: path.resolve(__dirname, './src/i18n/**'),
|
||||||
},
|
},
|
||||||
|
|
|
@ -0,0 +1,6 @@
|
||||||
|
import { boot } from 'quasar/wrappers';
|
||||||
|
import { useValidationsStore } from 'src/stores/useValidationsStore';
|
||||||
|
|
||||||
|
export default boot(async ({ store }) => {
|
||||||
|
await useValidationsStore(store).fetchModels();
|
||||||
|
});
|
|
@ -136,6 +136,10 @@ async function saveChanges(data) {
|
||||||
hasChanges.value = false;
|
hasChanges.value = false;
|
||||||
isLoading.value = false;
|
isLoading.value = false;
|
||||||
emit('saveChanges', data);
|
emit('saveChanges', data);
|
||||||
|
quasar.notify({
|
||||||
|
type: 'positive',
|
||||||
|
message: t('globals.dataSaved'),
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
async function insert() {
|
async function insert() {
|
||||||
|
|
|
@ -24,12 +24,13 @@ const address = ref(props.data.address);
|
||||||
const isLoading = ref(false);
|
const isLoading = ref(false);
|
||||||
|
|
||||||
async function confirm() {
|
async function confirm() {
|
||||||
const response = { address };
|
const response = { address: address.value };
|
||||||
|
|
||||||
if (props.promise) {
|
if (props.promise) {
|
||||||
isLoading.value = true;
|
isLoading.value = true;
|
||||||
|
const { address: _address, ...restData } = props.data;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
Object.assign(response, props.data);
|
Object.assign(response, restData);
|
||||||
await props.promise(response);
|
await props.promise(response);
|
||||||
} finally {
|
} finally {
|
||||||
isLoading.value = false;
|
isLoading.value = false;
|
||||||
|
|
|
@ -0,0 +1,41 @@
|
||||||
|
<script setup>
|
||||||
|
import { ref, watch } from 'vue';
|
||||||
|
import { QInput } from 'quasar';
|
||||||
|
|
||||||
|
const props = defineProps({
|
||||||
|
modelValue: {
|
||||||
|
type: String,
|
||||||
|
default: '',
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
const emit = defineEmits(['update:modelValue', 'accountShortToStandard']);
|
||||||
|
|
||||||
|
let internalValue = ref(props.modelValue);
|
||||||
|
|
||||||
|
watch(
|
||||||
|
() => props.modelValue,
|
||||||
|
(newVal) => {
|
||||||
|
internalValue.value = newVal;
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
|
watch(
|
||||||
|
() => internalValue.value,
|
||||||
|
(newVal) => {
|
||||||
|
emit('update:modelValue', newVal);
|
||||||
|
accountShortToStandard();
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
|
function accountShortToStandard() {
|
||||||
|
internalValue.value = internalValue.value.replace(
|
||||||
|
'.',
|
||||||
|
'0'.repeat(11 - internalValue.value.length)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<q-input v-model="internalValue" />
|
||||||
|
</template>
|
|
@ -0,0 +1,88 @@
|
||||||
|
<script setup>
|
||||||
|
import { watch } from 'vue';
|
||||||
|
import { toDateString } from 'src/filters';
|
||||||
|
|
||||||
|
const props = defineProps({
|
||||||
|
value: { type: [String, Number, Boolean, Object], default: undefined },
|
||||||
|
});
|
||||||
|
|
||||||
|
const maxStrLen = 512;
|
||||||
|
let t = '';
|
||||||
|
let cssClass = '';
|
||||||
|
let type;
|
||||||
|
const updateValue = () => {
|
||||||
|
type = typeof props.value;
|
||||||
|
|
||||||
|
if (props.value == null) {
|
||||||
|
t = '∅';
|
||||||
|
cssClass = 'json-null';
|
||||||
|
} else {
|
||||||
|
cssClass = `json-${type}`;
|
||||||
|
switch (type) {
|
||||||
|
case 'number':
|
||||||
|
if (Number.isInteger(props.value)) {
|
||||||
|
t = props.value.toString();
|
||||||
|
} else {
|
||||||
|
t = (
|
||||||
|
Math.round((props.value + Number.EPSILON) * 1000) / 1000
|
||||||
|
).toString();
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case 'boolean':
|
||||||
|
t = props.value ? '✓' : '✗';
|
||||||
|
cssClass = `json-${props.value ? 'true' : 'false'}`;
|
||||||
|
break;
|
||||||
|
case 'string':
|
||||||
|
t =
|
||||||
|
props.value.length <= maxStrLen
|
||||||
|
? props.value
|
||||||
|
: props.value.substring(0, maxStrLen) + '...';
|
||||||
|
break;
|
||||||
|
case 'object':
|
||||||
|
if (props.value instanceof Date) {
|
||||||
|
t = toDateString(props.value);
|
||||||
|
} else {
|
||||||
|
t = props.value.toString();
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
t = props.value.toString();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
watch(() => props.value, updateValue);
|
||||||
|
|
||||||
|
updateValue();
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<span
|
||||||
|
:title="type === 'string' && props.value.length > maxStrLen ? props.value : ''"
|
||||||
|
:class="{ [cssClass]: t !== '' }"
|
||||||
|
>
|
||||||
|
{{ t }}
|
||||||
|
</span>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
.json-string {
|
||||||
|
color: #d172cc;
|
||||||
|
}
|
||||||
|
.json-object {
|
||||||
|
color: #d1a572;
|
||||||
|
}
|
||||||
|
.json-number {
|
||||||
|
color: #85d0ff;
|
||||||
|
}
|
||||||
|
.json-true {
|
||||||
|
color: #7dc489;
|
||||||
|
}
|
||||||
|
.json-false {
|
||||||
|
color: #c74949;
|
||||||
|
}
|
||||||
|
.json-null {
|
||||||
|
color: #cd7c7c;
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
</style>
|
File diff suppressed because it is too large
Load Diff
|
@ -15,6 +15,10 @@ const $props = defineProps({
|
||||||
type: String,
|
type: String,
|
||||||
default: '',
|
default: '',
|
||||||
},
|
},
|
||||||
|
filterOptions: {
|
||||||
|
type: Array,
|
||||||
|
default: () => [],
|
||||||
|
},
|
||||||
isClearable: {
|
isClearable: {
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
default: true,
|
default: true,
|
||||||
|
@ -32,18 +36,22 @@ function setOptions(data) {
|
||||||
setOptions(options.value);
|
setOptions(options.value);
|
||||||
|
|
||||||
const filter = (val, options) => {
|
const filter = (val, options) => {
|
||||||
const search = val.toLowerCase();
|
const search = val.toString().toLowerCase();
|
||||||
|
|
||||||
if (val === '') return options;
|
if (!search) return options;
|
||||||
|
|
||||||
return options.filter((row) => {
|
return options.filter((row) => {
|
||||||
|
if ($props.filterOptions.length) {
|
||||||
|
return $props.filterOptions.some((prop) => {
|
||||||
|
const propValue = String(row[prop]).toLowerCase();
|
||||||
|
return propValue.includes(search);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
const id = row.id;
|
const id = row.id;
|
||||||
const name = row[$props.optionLabel].toLowerCase();
|
const optionLabel = String(row[$props.optionLabel]).toLowerCase();
|
||||||
|
|
||||||
const idMatches = id == search;
|
return id == search || optionLabel.includes(search);
|
||||||
const nameMatches = name.indexOf(search) > -1;
|
|
||||||
|
|
||||||
return idMatches || nameMatches;
|
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -85,6 +93,7 @@ const value = computed({
|
||||||
map-options
|
map-options
|
||||||
use-input
|
use-input
|
||||||
@filter="filterHandler"
|
@filter="filterHandler"
|
||||||
|
hide-selected
|
||||||
fill-input
|
fill-input
|
||||||
ref="vnSelectRef"
|
ref="vnSelectRef"
|
||||||
>
|
>
|
||||||
|
@ -97,7 +106,7 @@ const value = computed({
|
||||||
/>
|
/>
|
||||||
</template>
|
</template>
|
||||||
<template v-for="(_, slotName) in $slots" #[slotName]="slotData">
|
<template v-for="(_, slotName) in $slots" #[slotName]="slotData">
|
||||||
<slot :name="slotName" v-bind="slotData" />
|
<slot :name="slotName" v-bind="slotData ?? {}" />
|
||||||
</template>
|
</template>
|
||||||
</QSelect>
|
</QSelect>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
@ -1,6 +1,8 @@
|
||||||
<script setup>
|
<script setup>
|
||||||
import { onMounted, useSlots, ref, watch, computed } from 'vue';
|
import { onMounted, useSlots, ref, watch, computed } from 'vue';
|
||||||
import { useI18n } from 'vue-i18n';
|
import { useI18n } from 'vue-i18n';
|
||||||
|
import { useQuasar } from 'quasar';
|
||||||
|
import axios from 'axios';
|
||||||
import SkeletonDescriptor from 'components/ui/SkeletonDescriptor.vue';
|
import SkeletonDescriptor from 'components/ui/SkeletonDescriptor.vue';
|
||||||
import { useArrayData } from 'composables/useArrayData';
|
import { useArrayData } from 'composables/useArrayData';
|
||||||
|
|
||||||
|
@ -29,12 +31,19 @@ const $props = defineProps({
|
||||||
type: String,
|
type: String,
|
||||||
default: '',
|
default: '',
|
||||||
},
|
},
|
||||||
|
summary: {
|
||||||
|
type: Object,
|
||||||
|
default: null,
|
||||||
|
},
|
||||||
});
|
});
|
||||||
|
const quasar = useQuasar();
|
||||||
const slots = useSlots();
|
const slots = useSlots();
|
||||||
const { t } = useI18n();
|
const { t } = useI18n();
|
||||||
const entity = ref(null);
|
const entity = computed(() => useArrayData($props.dataKey).store.data);
|
||||||
|
|
||||||
|
defineExpose({
|
||||||
|
getData,
|
||||||
|
});
|
||||||
onMounted(async () => {
|
onMounted(async () => {
|
||||||
await getData();
|
await getData();
|
||||||
watch(
|
watch(
|
||||||
|
@ -58,28 +67,36 @@ async function getData() {
|
||||||
emit('onFetch', data);
|
emit('onFetch', data);
|
||||||
}
|
}
|
||||||
const emit = defineEmits(['onFetch']);
|
const emit = defineEmits(['onFetch']);
|
||||||
|
|
||||||
|
function viewSummary(id) {
|
||||||
|
quasar.dialog({
|
||||||
|
component: $props.summary,
|
||||||
|
componentProps: {
|
||||||
|
id,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div class="descriptor">
|
<div class="descriptor">
|
||||||
<template v-if="entity">
|
<template v-if="entity">
|
||||||
<div class="header bg-primary q-pa-sm">
|
<div class="header bg-primary q-pa-sm justify-between">
|
||||||
<RouterLink :to="{ name: `${module}List` }">
|
<QBtn
|
||||||
<QBtn
|
@click.stop="viewSummary(entity.id)"
|
||||||
class="link"
|
round
|
||||||
color="white"
|
flat
|
||||||
dense
|
dense
|
||||||
flat
|
size="md"
|
||||||
icon="view_list"
|
icon="preview"
|
||||||
round
|
color="white"
|
||||||
size="md"
|
class="link"
|
||||||
>
|
v-if="summary"
|
||||||
<QTooltip>
|
>
|
||||||
{{ t('components.cardDescriptor.mainList') }}
|
<QTooltip>
|
||||||
</QTooltip>
|
{{ t('components.smartCard.openSummary') }}
|
||||||
</QBtn>
|
</QTooltip>
|
||||||
</RouterLink>
|
</QBtn>
|
||||||
|
|
||||||
<RouterLink :to="{ name: `${module}Summary`, params: { id: entity.id } }">
|
<RouterLink :to="{ name: `${module}Summary`, params: { id: entity.id } }">
|
||||||
<QBtn
|
<QBtn
|
||||||
class="link"
|
class="link"
|
||||||
|
@ -95,7 +112,6 @@ const emit = defineEmits(['onFetch']);
|
||||||
</QTooltip>
|
</QTooltip>
|
||||||
</QBtn>
|
</QBtn>
|
||||||
</RouterLink>
|
</RouterLink>
|
||||||
|
|
||||||
<QBtn
|
<QBtn
|
||||||
color="white"
|
color="white"
|
||||||
dense
|
dense
|
||||||
|
@ -218,8 +234,6 @@ const emit = defineEmits(['onFetch']);
|
||||||
width: 256px;
|
width: 256px;
|
||||||
.header {
|
.header {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
|
||||||
align-items: stretch;
|
|
||||||
}
|
}
|
||||||
.icons {
|
.icons {
|
||||||
margin: 0 10px;
|
margin: 0 10px;
|
||||||
|
|
|
@ -83,12 +83,14 @@ watch(props, async () => {
|
||||||
.summaryBody {
|
.summaryBody {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
|
flex-wrap: wrap;
|
||||||
justify-content: space-evenly;
|
justify-content: space-evenly;
|
||||||
gap: 15px;
|
gap: 15px;
|
||||||
padding: 15px;
|
padding: 15px;
|
||||||
background-color: var(--vn-gray);
|
background-color: var(--vn-gray);
|
||||||
|
|
||||||
> .q-card.vn-one {
|
> .q-card.vn-one {
|
||||||
|
width: 350px;
|
||||||
flex: 1;
|
flex: 1;
|
||||||
}
|
}
|
||||||
> .q-card.vn-two {
|
> .q-card.vn-two {
|
||||||
|
@ -125,7 +127,6 @@ watch(props, async () => {
|
||||||
width: max-content;
|
width: max-content;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
text-overflow: ellipsis;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.header {
|
.header {
|
||||||
|
|
|
@ -0,0 +1,22 @@
|
||||||
|
<script setup>
|
||||||
|
import { useI18n } from 'vue-i18n';
|
||||||
|
const props = defineProps({
|
||||||
|
phoneNumber: { type: [String, Number], default: null },
|
||||||
|
});
|
||||||
|
const { t } = useI18n();
|
||||||
|
</script>
|
||||||
|
<template>
|
||||||
|
<QBtn
|
||||||
|
v-if="props.phoneNumber"
|
||||||
|
flat
|
||||||
|
round
|
||||||
|
icon="phone"
|
||||||
|
size="sm"
|
||||||
|
color="primary"
|
||||||
|
padding="none"
|
||||||
|
:href="`sip:${props.phoneNumber}`"
|
||||||
|
:title="t('globals.microsip')"
|
||||||
|
@click.stop
|
||||||
|
/>
|
||||||
|
</template>
|
||||||
|
<style scoped></style>
|
|
@ -4,9 +4,10 @@ import { dashIfEmpty } from 'src/filters';
|
||||||
|
|
||||||
const $props = defineProps({
|
const $props = defineProps({
|
||||||
label: { type: String, default: null },
|
label: { type: String, default: null },
|
||||||
value: { type: [Number, String, Boolean], default: null },
|
value: {
|
||||||
titleLabel: { type: String, default: null },
|
type: [String, Boolean],
|
||||||
titleValue: { type: [Number, String, Boolean], default: null },
|
default: null,
|
||||||
|
},
|
||||||
info: { type: String, default: null },
|
info: { type: String, default: null },
|
||||||
dash: { type: Boolean, default: true },
|
dash: { type: Boolean, default: true },
|
||||||
});
|
});
|
||||||
|
@ -16,7 +17,7 @@ const isBooleanValue = computed(() => typeof $props.value === 'boolean');
|
||||||
<div class="vn-label-value">
|
<div class="vn-label-value">
|
||||||
<div v-if="$props.label || $slots.label" class="label">
|
<div v-if="$props.label || $slots.label" class="label">
|
||||||
<slot name="label">
|
<slot name="label">
|
||||||
<span :title="$props.titleLabel ?? $props.label">{{ $props.label }}</span>
|
<span>{{ $props.label }}</span>
|
||||||
</slot>
|
</slot>
|
||||||
</div>
|
</div>
|
||||||
<div class="value">
|
<div class="value">
|
||||||
|
|
|
@ -76,9 +76,9 @@ async function search() {
|
||||||
const module = route.matched[1];
|
const module = route.matched[1];
|
||||||
if (rows.length === 1) {
|
if (rows.length === 1) {
|
||||||
const [firstRow] = rows;
|
const [firstRow] = rows;
|
||||||
await router.push({ path: `/${module.name}/${firstRow.id}` });
|
await router.push({ path: `${module.path}/${firstRow.id}` });
|
||||||
} else if (route.matched.length > 3) {
|
} else if (route.matched.length > 3) {
|
||||||
await router.push({ path: `/${module.name}` });
|
await router.push({ path: `/${module.path}` });
|
||||||
arrayData.updateStateParams();
|
arrayData.updateStateParams();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,11 @@
|
||||||
|
import { useSession } from 'src/composables/useSession';
|
||||||
|
import { getUrl } from './getUrl';
|
||||||
|
|
||||||
|
const session = useSession();
|
||||||
|
const token = session.getToken();
|
||||||
|
|
||||||
|
export async function downloadFile(dmsId) {
|
||||||
|
let appUrl = await getUrl('', 'lilium');
|
||||||
|
appUrl = appUrl.replace('/#/', '');
|
||||||
|
window.open(`${appUrl}/api/dms/${dmsId}/downloadFile?access_token=${token}`);
|
||||||
|
}
|
|
@ -1,11 +1,10 @@
|
||||||
import axios from 'axios';
|
import axios from 'axios';
|
||||||
|
|
||||||
export async function getUrl(route, appName = 'salix') {
|
export async function getUrl(route, app = 'salix') {
|
||||||
const filter = {
|
let url;
|
||||||
where: { and: [{ appName: appName }, { environment: process.env.NODE_ENV }] },
|
|
||||||
};
|
|
||||||
|
|
||||||
const { data } = await axios.get('Urls/findOne', { params: { filter } });
|
await axios.get('Urls/getUrl', { params: { app } }).then((res) => {
|
||||||
const url = data.url;
|
url = res.data + route;
|
||||||
return route ? url + route : url;
|
});
|
||||||
|
return url;
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,35 @@
|
||||||
|
export function djb2a(string) {
|
||||||
|
let hash = 5381;
|
||||||
|
for (let i = 0; i < string.length; i++)
|
||||||
|
hash = ((hash << 5) + hash) ^ string.charCodeAt(i);
|
||||||
|
return hash >>> 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
export function useColor(value) {
|
||||||
|
return '#' + colors[djb2a(value || '') % colors.length];
|
||||||
|
}
|
||||||
|
|
||||||
|
const colors = [
|
||||||
|
'b5b941', // Yellow
|
||||||
|
'ae9681', // Peach
|
||||||
|
'd78767', // Salmon
|
||||||
|
'cc7000', // Orange bright
|
||||||
|
'e2553d', // Coral
|
||||||
|
'8B0000', // Red dark
|
||||||
|
'de4362', // Red crimson
|
||||||
|
'FF1493', // Ping intense
|
||||||
|
'be39a2', // Pink light
|
||||||
|
'b754cf', // Purple middle
|
||||||
|
'a87ba8', // Pink
|
||||||
|
'8a69cd', // Blue lavender
|
||||||
|
'ab20ab', // Purple dark
|
||||||
|
'00b5b8', // Turquoise
|
||||||
|
'1fa8a1', // Green ocean
|
||||||
|
'5681cf', // Blue steel
|
||||||
|
'3399fe', // Blue sky
|
||||||
|
'6d9c3e', // Green chartreuse
|
||||||
|
'51bb51', // Green lime
|
||||||
|
'518b8b', // Gray board
|
||||||
|
'7e7e7e', // Gray
|
||||||
|
'5d5d5d', // Gray dark
|
||||||
|
];
|
|
@ -1,19 +1,12 @@
|
||||||
import { ref } from 'vue';
|
|
||||||
import { useI18n } from 'vue-i18n';
|
import { useI18n } from 'vue-i18n';
|
||||||
import axios from 'axios';
|
|
||||||
import validator from 'validator';
|
import validator from 'validator';
|
||||||
|
import { useValidationsStore } from 'src/stores/useValidationsStore';
|
||||||
const models = ref(null);
|
|
||||||
|
|
||||||
export function useValidator() {
|
export function useValidator() {
|
||||||
if (!models.value) fetch();
|
const models = useValidationsStore().validations;
|
||||||
|
|
||||||
function fetch() {
|
|
||||||
axios.get('Schemas/ModelInfo').then((response) => (models.value = response.data));
|
|
||||||
}
|
|
||||||
|
|
||||||
function validate(propertyRule) {
|
function validate(propertyRule) {
|
||||||
const modelInfo = models.value;
|
const modelInfo = models;
|
||||||
if (!modelInfo || !propertyRule) return;
|
if (!modelInfo || !propertyRule) return;
|
||||||
|
|
||||||
const rule = propertyRule.split('.');
|
const rule = propertyRule.split('.');
|
||||||
|
@ -75,5 +68,6 @@ export function useValidator() {
|
||||||
|
|
||||||
return {
|
return {
|
||||||
validate,
|
validate,
|
||||||
|
models,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -33,6 +33,7 @@ body.body--light {
|
||||||
--vn-gray: #f5f5f5;
|
--vn-gray: #f5f5f5;
|
||||||
--vn-label: #5f5f5f;
|
--vn-label: #5f5f5f;
|
||||||
--vn-dark: white;
|
--vn-dark: white;
|
||||||
|
--vn-light-gray: #e7e3e3;
|
||||||
}
|
}
|
||||||
|
|
||||||
body.body--dark {
|
body.body--dark {
|
||||||
|
@ -40,6 +41,7 @@ body.body--dark {
|
||||||
--vn-gray: #313131;
|
--vn-gray: #313131;
|
||||||
--vn-label: #a8a8a8;
|
--vn-label: #a8a8a8;
|
||||||
--vn-dark: #292929;
|
--vn-dark: #292929;
|
||||||
|
--vn-light-gray: #424242;
|
||||||
}
|
}
|
||||||
|
|
||||||
.bg-vn-dark {
|
.bg-vn-dark {
|
||||||
|
|
|
@ -2,6 +2,7 @@ import toLowerCase from './toLowerCase';
|
||||||
import toDate from './toDate';
|
import toDate from './toDate';
|
||||||
import toDateString from './toDateString';
|
import toDateString from './toDateString';
|
||||||
import toDateHour from './toDateHour';
|
import toDateHour from './toDateHour';
|
||||||
|
import toRelativeDate from './toRelativeDate';
|
||||||
import toCurrency from './toCurrency';
|
import toCurrency from './toCurrency';
|
||||||
import toPercentage from './toPercentage';
|
import toPercentage from './toPercentage';
|
||||||
import toLowerCamel from './toLowerCamel';
|
import toLowerCamel from './toLowerCamel';
|
||||||
|
@ -13,6 +14,7 @@ export {
|
||||||
toDate,
|
toDate,
|
||||||
toDateString,
|
toDateString,
|
||||||
toDateHour,
|
toDateHour,
|
||||||
|
toRelativeDate,
|
||||||
toCurrency,
|
toCurrency,
|
||||||
toPercentage,
|
toPercentage,
|
||||||
dashIfEmpty,
|
dashIfEmpty,
|
||||||
|
|
|
@ -0,0 +1,32 @@
|
||||||
|
import { useI18n } from 'vue-i18n';
|
||||||
|
|
||||||
|
export default function formatDate(dateVal) {
|
||||||
|
const { t } = useI18n();
|
||||||
|
const today = new Date();
|
||||||
|
if (dateVal == null) return '';
|
||||||
|
|
||||||
|
const date = new Date(dateVal);
|
||||||
|
const dateZeroTime = new Date(dateVal);
|
||||||
|
dateZeroTime.setHours(0, 0, 0, 0);
|
||||||
|
const diff = Math.trunc(
|
||||||
|
(today.getTime() - dateZeroTime.getTime()) / (1000 * 3600 * 24)
|
||||||
|
);
|
||||||
|
let format;
|
||||||
|
if (diff === 0) format = t('globals.today');
|
||||||
|
else if (diff === 1) format = t('globals.yesterday');
|
||||||
|
else if (diff > 1 && diff < 7) {
|
||||||
|
const options = { weekday: 'short' };
|
||||||
|
format = date.toLocaleDateString(t('globals.dateFormat'), options);
|
||||||
|
} else if (today.getFullYear() === date.getFullYear()) {
|
||||||
|
const options = { day: 'numeric', month: 'short' };
|
||||||
|
format = date.toLocaleDateString(t('globals.dateFormat'), options);
|
||||||
|
} else {
|
||||||
|
const options = { year: 'numeric', month: '2-digit', day: '2-digit' };
|
||||||
|
format = date.toLocaleDateString(t('globals.dateFormat'), options);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Formatear la hora en HH:mm
|
||||||
|
const hours = date.getHours().toString().padStart(2, '0');
|
||||||
|
const minutes = date.getMinutes().toString().padStart(2, '0');
|
||||||
|
return `${format} ${hours}:${minutes}`;
|
||||||
|
}
|
|
@ -5,6 +5,9 @@ export default {
|
||||||
en: 'English',
|
en: 'English',
|
||||||
},
|
},
|
||||||
language: 'Language',
|
language: 'Language',
|
||||||
|
entity: 'Entity',
|
||||||
|
user: 'User',
|
||||||
|
details: 'Details',
|
||||||
collapseMenu: 'Collapse left menu',
|
collapseMenu: 'Collapse left menu',
|
||||||
backToDashboard: 'Return to dashboard',
|
backToDashboard: 'Return to dashboard',
|
||||||
notifications: 'Notifications',
|
notifications: 'Notifications',
|
||||||
|
@ -13,8 +16,11 @@ export default {
|
||||||
pinnedModules: 'Pinned modules',
|
pinnedModules: 'Pinned modules',
|
||||||
darkMode: 'Dark mode',
|
darkMode: 'Dark mode',
|
||||||
logOut: 'Log out',
|
logOut: 'Log out',
|
||||||
|
date: 'Date',
|
||||||
dataSaved: 'Data saved',
|
dataSaved: 'Data saved',
|
||||||
dataDeleted: 'Data deleted',
|
dataDeleted: 'Data deleted',
|
||||||
|
search: 'Search',
|
||||||
|
changes: 'Changes',
|
||||||
dataCreated: 'Data created',
|
dataCreated: 'Data created',
|
||||||
add: 'Add',
|
add: 'Add',
|
||||||
create: 'Create',
|
create: 'Create',
|
||||||
|
@ -37,6 +43,10 @@ export default {
|
||||||
summary: {
|
summary: {
|
||||||
basicData: 'Basic data',
|
basicData: 'Basic data',
|
||||||
},
|
},
|
||||||
|
today: 'Today',
|
||||||
|
yesterday: 'Yesterday',
|
||||||
|
dateFormat: 'en-GB',
|
||||||
|
microsip: 'Open in MicroSIP',
|
||||||
noSelectedRows: `You don't have any line selected`,
|
noSelectedRows: `You don't have any line selected`,
|
||||||
downloadCSVSuccess: 'CSV downloaded successfully',
|
downloadCSVSuccess: 'CSV downloaded successfully',
|
||||||
// labels compartidos entre vistas
|
// labels compartidos entre vistas
|
||||||
|
@ -362,7 +372,7 @@ export default {
|
||||||
},
|
},
|
||||||
invoiceOut: {
|
invoiceOut: {
|
||||||
pageTitles: {
|
pageTitles: {
|
||||||
invoiceOuts: 'Invoices Out',
|
invoiceOuts: 'Invoice out',
|
||||||
list: 'List',
|
list: 'List',
|
||||||
negativeBases: 'Negative Bases',
|
negativeBases: 'Negative Bases',
|
||||||
globalInvoicing: 'Global invoicing',
|
globalInvoicing: 'Global invoicing',
|
||||||
|
@ -457,7 +467,7 @@ export default {
|
||||||
list: {
|
list: {
|
||||||
parking: 'Parking',
|
parking: 'Parking',
|
||||||
priority: 'Priority',
|
priority: 'Priority',
|
||||||
newShelving: 'New Shelving'
|
newShelving: 'New Shelving',
|
||||||
},
|
},
|
||||||
summary: {
|
summary: {
|
||||||
code: 'Code',
|
code: 'Code',
|
||||||
|
@ -473,6 +483,71 @@ export default {
|
||||||
recyclable: 'Recyclable',
|
recyclable: 'Recyclable',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
invoiceIn: {
|
||||||
|
pageTitles: {
|
||||||
|
invoiceIns: 'Invoices In',
|
||||||
|
list: 'List',
|
||||||
|
createInvoiceIn: 'Create invoice in',
|
||||||
|
summary: 'Summary',
|
||||||
|
basicData: 'Basic data',
|
||||||
|
vat: 'VAT',
|
||||||
|
dueDay: 'Due day',
|
||||||
|
intrastat: 'Intrastat',
|
||||||
|
log: 'Logs',
|
||||||
|
},
|
||||||
|
list: {
|
||||||
|
ref: 'Reference',
|
||||||
|
supplier: 'Supplier',
|
||||||
|
supplierRef: 'Supplier ref.',
|
||||||
|
serialNumber: 'Serial number',
|
||||||
|
serial: 'Serial',
|
||||||
|
file: 'File',
|
||||||
|
issued: 'Issued',
|
||||||
|
isBooked: 'Is booked',
|
||||||
|
awb: 'AWB',
|
||||||
|
amount: 'Amount',
|
||||||
|
},
|
||||||
|
card: {
|
||||||
|
issued: 'Issued',
|
||||||
|
amount: 'Amount',
|
||||||
|
client: 'Client',
|
||||||
|
company: 'Company',
|
||||||
|
customerCard: 'Customer card',
|
||||||
|
ticketList: 'Ticket List',
|
||||||
|
vat: 'Vat',
|
||||||
|
dueDay: 'Due day',
|
||||||
|
intrastat: 'Intrastat',
|
||||||
|
},
|
||||||
|
summary: {
|
||||||
|
supplier: 'Supplier',
|
||||||
|
supplierRef: 'Supplier ref.',
|
||||||
|
currency: 'Currency',
|
||||||
|
docNumber: 'Doc number',
|
||||||
|
issued: 'Expedition date',
|
||||||
|
operated: 'Operation date',
|
||||||
|
bookEntried: 'Entry date',
|
||||||
|
bookedDate: 'Booked date',
|
||||||
|
sage: 'Sage withholding',
|
||||||
|
vat: 'Undeductible VAT',
|
||||||
|
company: 'Company',
|
||||||
|
booked: 'Booked',
|
||||||
|
expense: 'Expense',
|
||||||
|
taxableBase: 'Taxable base',
|
||||||
|
rate: 'Rate',
|
||||||
|
sageVat: 'Sage vat',
|
||||||
|
sageTransaction: 'Sage transaction',
|
||||||
|
dueDay: 'Date',
|
||||||
|
bank: 'Bank',
|
||||||
|
amount: 'Amount',
|
||||||
|
foreignValue: 'Foreign value',
|
||||||
|
dueTotal: 'Due day',
|
||||||
|
noMatch: 'Do not match',
|
||||||
|
code: 'Code',
|
||||||
|
net: 'Net',
|
||||||
|
stems: 'Stems',
|
||||||
|
country: 'Country',
|
||||||
|
},
|
||||||
|
},
|
||||||
worker: {
|
worker: {
|
||||||
pageTitles: {
|
pageTitles: {
|
||||||
workers: 'Workers',
|
workers: 'Workers',
|
||||||
|
@ -531,6 +606,7 @@ export default {
|
||||||
typesList: 'Types List',
|
typesList: 'Types List',
|
||||||
typeCreate: 'Create type',
|
typeCreate: 'Create type',
|
||||||
typeEdit: 'Edit type',
|
typeEdit: 'Edit type',
|
||||||
|
wagonCounter: 'Trolley counter',
|
||||||
},
|
},
|
||||||
type: {
|
type: {
|
||||||
name: 'Name',
|
name: 'Name',
|
||||||
|
@ -669,6 +745,7 @@ export default {
|
||||||
logOut: 'Log Out',
|
logOut: 'Log Out',
|
||||||
},
|
},
|
||||||
smartCard: {
|
smartCard: {
|
||||||
|
downloadFile: 'Download file',
|
||||||
clone: 'Clone',
|
clone: 'Clone',
|
||||||
openCard: 'View',
|
openCard: 'View',
|
||||||
openSummary: 'Summary',
|
openSummary: 'Summary',
|
||||||
|
|
|
@ -5,6 +5,9 @@ export default {
|
||||||
en: 'Inglés',
|
en: 'Inglés',
|
||||||
},
|
},
|
||||||
language: 'Idioma',
|
language: 'Idioma',
|
||||||
|
entity: 'Entidad',
|
||||||
|
user: 'Usuario',
|
||||||
|
details: 'Detalles',
|
||||||
collapseMenu: 'Contraer menú lateral',
|
collapseMenu: 'Contraer menú lateral',
|
||||||
backToDashboard: 'Volver al tablón',
|
backToDashboard: 'Volver al tablón',
|
||||||
notifications: 'Notificaciones',
|
notifications: 'Notificaciones',
|
||||||
|
@ -13,8 +16,11 @@ export default {
|
||||||
pinnedModules: 'Módulos fijados',
|
pinnedModules: 'Módulos fijados',
|
||||||
darkMode: 'Modo oscuro',
|
darkMode: 'Modo oscuro',
|
||||||
logOut: 'Cerrar sesión',
|
logOut: 'Cerrar sesión',
|
||||||
|
date: 'Fecha',
|
||||||
dataSaved: 'Datos guardados',
|
dataSaved: 'Datos guardados',
|
||||||
dataDeleted: 'Datos eliminados',
|
dataDeleted: 'Datos eliminados',
|
||||||
|
search: 'Buscar',
|
||||||
|
changes: 'Cambios',
|
||||||
dataCreated: 'Datos creados',
|
dataCreated: 'Datos creados',
|
||||||
add: 'Añadir',
|
add: 'Añadir',
|
||||||
create: 'Crear',
|
create: 'Crear',
|
||||||
|
@ -37,9 +43,13 @@ export default {
|
||||||
summary: {
|
summary: {
|
||||||
basicData: 'Datos básicos',
|
basicData: 'Datos básicos',
|
||||||
},
|
},
|
||||||
|
today: 'Hoy',
|
||||||
|
yesterday: 'Ayer',
|
||||||
|
dateFormat: 'es-ES',
|
||||||
noSelectedRows: `No tienes ninguna línea seleccionada`,
|
noSelectedRows: `No tienes ninguna línea seleccionada`,
|
||||||
downloadCSVSuccess: 'Descarga de CSV exitosa',
|
microsip: 'Abrir en MicroSIP',
|
||||||
// labels compartidos entre vistas
|
// labels compartidos entre vistas
|
||||||
|
downloadCSVSuccess: 'Descarga de CSV exitosa',
|
||||||
reference: 'Referencia',
|
reference: 'Referencia',
|
||||||
agency: 'Agencia',
|
agency: 'Agencia',
|
||||||
wareHouseOut: 'Alm. salida',
|
wareHouseOut: 'Alm. salida',
|
||||||
|
@ -459,7 +469,7 @@ export default {
|
||||||
list: {
|
list: {
|
||||||
parking: 'Parking',
|
parking: 'Parking',
|
||||||
priority: 'Prioridad',
|
priority: 'Prioridad',
|
||||||
newShelving: 'Nuevo Carro'
|
newShelving: 'Nuevo Carro',
|
||||||
},
|
},
|
||||||
summary: {
|
summary: {
|
||||||
code: 'Código',
|
code: 'Código',
|
||||||
|
@ -475,6 +485,69 @@ export default {
|
||||||
recyclable: 'Reciclable',
|
recyclable: 'Reciclable',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
invoiceIn: {
|
||||||
|
pageTitles: {
|
||||||
|
invoiceIns: 'Fact. recibidas',
|
||||||
|
list: 'Listado',
|
||||||
|
createInvoiceIn: 'Crear fact. recibida',
|
||||||
|
summary: 'Resumen',
|
||||||
|
basicData: 'Datos básicos',
|
||||||
|
vat: 'IVA',
|
||||||
|
dueDay: 'Vencimiento',
|
||||||
|
intrastat: 'Intrastat',
|
||||||
|
log: 'Registros de auditoría',
|
||||||
|
},
|
||||||
|
list: {
|
||||||
|
ref: 'Referencia',
|
||||||
|
supplier: 'Proveedor',
|
||||||
|
supplierRef: 'Ref. proveedor',
|
||||||
|
serialNumber: 'Num. serie',
|
||||||
|
shortIssued: 'F. emisión',
|
||||||
|
serial: 'Serie',
|
||||||
|
file: 'Fichero',
|
||||||
|
issued: 'Fecha emisión',
|
||||||
|
isBooked: 'Conciliada',
|
||||||
|
awb: 'AWB',
|
||||||
|
amount: 'Importe',
|
||||||
|
},
|
||||||
|
card: {
|
||||||
|
issued: 'Fecha emisión',
|
||||||
|
amount: 'Importe',
|
||||||
|
client: 'Cliente',
|
||||||
|
company: 'Empresa',
|
||||||
|
customerCard: 'Ficha del cliente',
|
||||||
|
ticketList: 'Listado de tickets',
|
||||||
|
vat: 'Iva',
|
||||||
|
dueDay: 'Fecha de vencimiento',
|
||||||
|
},
|
||||||
|
summary: {
|
||||||
|
supplier: 'Proveedor',
|
||||||
|
supplierRef: 'Ref. proveedor',
|
||||||
|
currency: 'Divisa',
|
||||||
|
docNumber: 'Número documento',
|
||||||
|
issued: 'Fecha de expedición',
|
||||||
|
operated: 'Fecha operación',
|
||||||
|
bookEntried: 'Fecha asiento',
|
||||||
|
bookedDate: 'Fecha contable',
|
||||||
|
sage: 'Retención sage',
|
||||||
|
vat: 'Iva no deducible',
|
||||||
|
company: 'Empresa',
|
||||||
|
booked: 'Contabilizada',
|
||||||
|
expense: 'Gasto',
|
||||||
|
taxableBase: 'Base imp.',
|
||||||
|
rate: 'Tasa',
|
||||||
|
sageTransaction: 'Sage transación',
|
||||||
|
dueDay: 'Fecha',
|
||||||
|
bank: 'Caja',
|
||||||
|
amount: 'Importe',
|
||||||
|
foreignValue: 'Divisa',
|
||||||
|
dueTotal: 'Vencimiento',
|
||||||
|
code: 'Código',
|
||||||
|
net: 'Neto',
|
||||||
|
stems: 'Tallos',
|
||||||
|
country: 'País',
|
||||||
|
},
|
||||||
|
},
|
||||||
worker: {
|
worker: {
|
||||||
pageTitles: {
|
pageTitles: {
|
||||||
workers: 'Trabajadores',
|
workers: 'Trabajadores',
|
||||||
|
@ -533,6 +606,7 @@ export default {
|
||||||
typesList: 'Listado tipos',
|
typesList: 'Listado tipos',
|
||||||
typeCreate: 'Crear tipo',
|
typeCreate: 'Crear tipo',
|
||||||
typeEdit: 'Editar tipo',
|
typeEdit: 'Editar tipo',
|
||||||
|
wagonCounter: 'Contador de carros',
|
||||||
},
|
},
|
||||||
type: {
|
type: {
|
||||||
name: 'Nombre',
|
name: 'Nombre',
|
||||||
|
@ -671,6 +745,7 @@ export default {
|
||||||
logOut: 'Cerrar sesión',
|
logOut: 'Cerrar sesión',
|
||||||
},
|
},
|
||||||
smartCard: {
|
smartCard: {
|
||||||
|
downloadFile: 'Descargar archivo',
|
||||||
clone: 'Clonar',
|
clone: 'Clonar',
|
||||||
openCard: 'Ficha',
|
openCard: 'Ficha',
|
||||||
openSummary: 'Detalles',
|
openSummary: 'Detalles',
|
||||||
|
|
|
@ -7,6 +7,7 @@ import { useState } from 'src/composables/useState';
|
||||||
|
|
||||||
import TicketDescriptorProxy from 'pages/Ticket/Card/TicketDescriptorProxy.vue';
|
import TicketDescriptorProxy from 'pages/Ticket/Card/TicketDescriptorProxy.vue';
|
||||||
import WorkerDescriptorProxy from 'src/pages/Worker/Card/WorkerDescriptorProxy.vue';
|
import WorkerDescriptorProxy from 'src/pages/Worker/Card/WorkerDescriptorProxy.vue';
|
||||||
|
import CustomerDescriptorProxy from 'src/pages/Customer/Card/CustomerDescriptorProxy.vue';
|
||||||
import ClaimDescriptorMenu from 'pages/Claim/Card/ClaimDescriptorMenu.vue';
|
import ClaimDescriptorMenu from 'pages/Claim/Card/ClaimDescriptorMenu.vue';
|
||||||
import CardDescriptor from 'components/ui/CardDescriptor.vue';
|
import CardDescriptor from 'components/ui/CardDescriptor.vue';
|
||||||
import VnLv from 'src/components/ui/VnLv.vue';
|
import VnLv from 'src/components/ui/VnLv.vue';
|
||||||
|
@ -119,7 +120,7 @@ const setData = (entity) => {
|
||||||
<template #value>
|
<template #value>
|
||||||
<span class="link">
|
<span class="link">
|
||||||
{{ entity.worker.user.name }}
|
{{ entity.worker.user.name }}
|
||||||
<WorkerDescriptorProxy :id="entity.worker.userFk" />
|
<WorkerDescriptorProxy :id="entity.worker.user.id" />
|
||||||
</span>
|
</span>
|
||||||
</template>
|
</template>
|
||||||
</VnLv>
|
</VnLv>
|
||||||
|
|
|
@ -37,7 +37,7 @@ function confirmPickupOrder() {
|
||||||
data: {
|
data: {
|
||||||
address: customer.email,
|
address: customer.email,
|
||||||
},
|
},
|
||||||
send: sendPickupOrder,
|
promise: sendPickupOrder,
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
|
@ -46,7 +46,7 @@ async function onFetchClaim(data) {
|
||||||
const amount = ref(0);
|
const amount = ref(0);
|
||||||
const amountClaimed = ref(0);
|
const amountClaimed = ref(0);
|
||||||
async function onFetch(rows) {
|
async function onFetch(rows) {
|
||||||
if (!rows || rows.length) return;
|
if (!rows || !rows.length) return;
|
||||||
amount.value = rows.reduce(
|
amount.value = rows.reduce(
|
||||||
(acumulator, { sale }) => acumulator + sale.price * sale.quantity,
|
(acumulator, { sale }) => acumulator + sale.price * sale.quantity,
|
||||||
0
|
0
|
||||||
|
@ -155,7 +155,7 @@ function showImportDialog() {
|
||||||
</script>
|
</script>
|
||||||
<template>
|
<template>
|
||||||
<Teleport to="#st-data" v-if="stateStore.isSubToolbarShown()">
|
<Teleport to="#st-data" v-if="stateStore.isSubToolbarShown()">
|
||||||
<QToolbar class="bg-dark text-white">
|
<QToolbar>
|
||||||
<div class="row q-gutter-md">
|
<div class="row q-gutter-md">
|
||||||
<div>
|
<div>
|
||||||
{{ t('Amount') }}
|
{{ t('Amount') }}
|
||||||
|
|
|
@ -26,6 +26,7 @@ const client = ref({});
|
||||||
const inputFile = ref();
|
const inputFile = ref();
|
||||||
const files = ref({});
|
const files = ref({});
|
||||||
|
|
||||||
|
const spinnerRef = ref();
|
||||||
const claimDmsRef = ref();
|
const claimDmsRef = ref();
|
||||||
const dmsType = ref({});
|
const dmsType = ref({});
|
||||||
const config = ref({});
|
const config = ref({});
|
||||||
|
@ -118,11 +119,11 @@ async function create() {
|
||||||
clientId: client.value.id,
|
clientId: client.value.id,
|
||||||
}).toUpperCase(),
|
}).toUpperCase(),
|
||||||
};
|
};
|
||||||
|
spinnerRef.value.show();
|
||||||
await axios.post(query, formData, {
|
await axios.post(query, formData, {
|
||||||
params: dms,
|
params: dms,
|
||||||
});
|
});
|
||||||
|
spinnerRef.value.hide();
|
||||||
quasar.notify({
|
quasar.notify({
|
||||||
message: t('globals.dataSaved'),
|
message: t('globals.dataSaved'),
|
||||||
type: 'positive',
|
type: 'positive',
|
||||||
|
@ -234,7 +235,9 @@ function onDrag() {
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<QDialog ref="spinnerRef">
|
||||||
|
<QSpinner color="primary" size="xl" />
|
||||||
|
</QDialog>
|
||||||
<QPageSticky position="bottom-right" :offset="[25, 25]">
|
<QPageSticky position="bottom-right" :offset="[25, 25]">
|
||||||
<label for="fileInput">
|
<label for="fileInput">
|
||||||
<QBtn fab @click="inputFile.nativeEl.click()" icon="add" color="primary">
|
<QBtn fab @click="inputFile.nativeEl.click()" icon="add" color="primary">
|
||||||
|
|
|
@ -5,12 +5,13 @@ import { useQuasar } from 'quasar';
|
||||||
import { useStateStore } from 'stores/useStateStore';
|
import { useStateStore } from 'stores/useStateStore';
|
||||||
import { toDate } from 'filters/index';
|
import { toDate } from 'filters/index';
|
||||||
import VnPaginate from 'src/components/ui/VnPaginate.vue';
|
import VnPaginate from 'src/components/ui/VnPaginate.vue';
|
||||||
import ClaimSummaryDialog from './Card/ClaimSummaryDialog.vue';
|
|
||||||
import CustomerDescriptorProxy from 'pages/Customer/Card/CustomerDescriptorProxy.vue';
|
|
||||||
import VnSearchbar from 'components/ui/VnSearchbar.vue';
|
import VnSearchbar from 'components/ui/VnSearchbar.vue';
|
||||||
import ClaimFilter from './ClaimFilter.vue';
|
import ClaimFilter from './ClaimFilter.vue';
|
||||||
import VnLv from 'src/components/ui/VnLv.vue';
|
import VnLv from 'src/components/ui/VnLv.vue';
|
||||||
import CardList from 'src/components/ui/CardList.vue';
|
import CardList from 'src/components/ui/CardList.vue';
|
||||||
|
import ClaimSummaryDialog from './Card/ClaimSummaryDialog.vue';
|
||||||
|
import CustomerDescriptorProxy from 'src/pages/Customer/Card/CustomerDescriptorProxy.vue';
|
||||||
|
import WorkerDescriptorProxy from '../Worker/Card/WorkerDescriptorProxy.vue';
|
||||||
|
|
||||||
const stateStore = useStateStore();
|
const stateStore = useStateStore();
|
||||||
const router = useRouter();
|
const router = useRouter();
|
||||||
|
@ -37,6 +38,15 @@ function viewSummary(id) {
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function viewDescriptor(id) {
|
||||||
|
quasar.dialog({
|
||||||
|
component: CustomerDescriptorProxy,
|
||||||
|
componentProps: {
|
||||||
|
id,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
|
@ -86,14 +96,22 @@ function viewSummary(id) {
|
||||||
v-for="row of rows"
|
v-for="row of rows"
|
||||||
>
|
>
|
||||||
<template #list-items>
|
<template #list-items>
|
||||||
<VnLv
|
<VnLv :label="t('claim.list.customer')" @click.stop>
|
||||||
:label="t('claim.list.customer')"
|
<template #value>
|
||||||
:value="row.clientName"
|
<span class="link">
|
||||||
/>
|
{{ row.clientName }}
|
||||||
<VnLv
|
<CustomerDescriptorProxy :id="row.clientFk" />
|
||||||
:label="t('claim.list.assignedTo')"
|
</span>
|
||||||
:value="row.workerName"
|
</template>
|
||||||
/>
|
</VnLv>
|
||||||
|
<VnLv :label="t('claim.list.assignedTo')" @click.stop>
|
||||||
|
<template #value>
|
||||||
|
<span class="link">
|
||||||
|
{{ row.workerName }}
|
||||||
|
<WorkerDescriptorProxy :id="row.workerFk" />
|
||||||
|
</span>
|
||||||
|
</template>
|
||||||
|
</VnLv>
|
||||||
<VnLv
|
<VnLv
|
||||||
:label="t('claim.list.created')"
|
:label="t('claim.list.created')"
|
||||||
:value="toDate(row.created)"
|
:value="toDate(row.created)"
|
||||||
|
|
|
@ -14,6 +14,10 @@ const $props = defineProps({
|
||||||
required: false,
|
required: false,
|
||||||
default: null,
|
default: null,
|
||||||
},
|
},
|
||||||
|
summary: {
|
||||||
|
type: Object,
|
||||||
|
default: null,
|
||||||
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
const route = useRoute();
|
const route = useRoute();
|
||||||
|
@ -34,6 +38,7 @@ const setData = (entity) => (data.value = useCardDescription(entity.name, entity
|
||||||
:title="data.title"
|
:title="data.title"
|
||||||
:subtitle="data.subtitle"
|
:subtitle="data.subtitle"
|
||||||
@on-fetch="setData"
|
@on-fetch="setData"
|
||||||
|
:summary="$props.summary"
|
||||||
data-key="customerData"
|
data-key="customerData"
|
||||||
>
|
>
|
||||||
<template #body="{ entity }">
|
<template #body="{ entity }">
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
<script setup>
|
<script setup>
|
||||||
import CustomerDescriptor from './CustomerDescriptor.vue';
|
import CustomerDescriptor from './CustomerDescriptor.vue';
|
||||||
|
import CustomerSummaryDialog from './CustomerSummaryDialog.vue';
|
||||||
|
|
||||||
const $props = defineProps({
|
const $props = defineProps({
|
||||||
id: {
|
id: {
|
||||||
|
@ -8,8 +9,13 @@ const $props = defineProps({
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<QPopupProxy>
|
<QPopupProxy>
|
||||||
<CustomerDescriptor v-if="$props.id" :id="$props.id" />
|
<CustomerDescriptor
|
||||||
|
v-if="$props.id"
|
||||||
|
:id="$props.id"
|
||||||
|
:summary="CustomerSummaryDialog"
|
||||||
|
/>
|
||||||
</QPopupProxy>
|
</QPopupProxy>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
@ -6,6 +6,7 @@ import { toCurrency, toPercentage, toDate } from 'src/filters';
|
||||||
import CardSummary from 'components/ui/CardSummary.vue';
|
import CardSummary from 'components/ui/CardSummary.vue';
|
||||||
import { getUrl } from 'src/composables/getUrl';
|
import { getUrl } from 'src/composables/getUrl';
|
||||||
import VnLv from 'src/components/ui/VnLv.vue';
|
import VnLv from 'src/components/ui/VnLv.vue';
|
||||||
|
import VnLinkPhone from 'src/components/ui/VnLinkPhone.vue';
|
||||||
|
|
||||||
const route = useRoute();
|
const route = useRoute();
|
||||||
const { t } = useI18n();
|
const { t } = useI18n();
|
||||||
|
@ -68,8 +69,18 @@ const creditWarning = computed(() => {
|
||||||
<VnLv :label="t('customer.summary.customerId')" :value="entity.id" />
|
<VnLv :label="t('customer.summary.customerId')" :value="entity.id" />
|
||||||
<VnLv :label="t('customer.summary.name')" :value="entity.name" />
|
<VnLv :label="t('customer.summary.name')" :value="entity.name" />
|
||||||
<VnLv :label="t('customer.summary.contact')" :value="entity.contact" />
|
<VnLv :label="t('customer.summary.contact')" :value="entity.contact" />
|
||||||
<VnLv :label="t('customer.summary.phone')" :value="entity.phone" />
|
<VnLv :value="entity.phone">
|
||||||
<VnLv :label="t('customer.summary.mobile')" :value="entity.mobile" />
|
<template #label>
|
||||||
|
{{ t('customer.summary.phone') }}
|
||||||
|
<VnLinkPhone :phone-number="entity.phone" />
|
||||||
|
</template>
|
||||||
|
</VnLv>
|
||||||
|
<VnLv :value="entity.mobile">
|
||||||
|
<template #label>
|
||||||
|
{{ t('customer.summary.mobile') }}
|
||||||
|
<VnLinkPhone :phone-number="entity.mobile" />
|
||||||
|
</template>
|
||||||
|
</VnLv>
|
||||||
<VnLv :label="t('customer.summary.email')" :value="entity.email" />
|
<VnLv :label="t('customer.summary.email')" :value="entity.email" />
|
||||||
<VnLv
|
<VnLv
|
||||||
:label="t('customer.summary.salesPerson')"
|
:label="t('customer.summary.salesPerson')"
|
||||||
|
|
|
@ -9,6 +9,7 @@ import VnSearchbar from 'src/components/ui/VnSearchbar.vue';
|
||||||
import CustomerFilter from './CustomerFilter.vue';
|
import CustomerFilter from './CustomerFilter.vue';
|
||||||
import VnLv from 'src/components/ui/VnLv.vue';
|
import VnLv from 'src/components/ui/VnLv.vue';
|
||||||
import CardList from 'src/components/ui/CardList.vue';
|
import CardList from 'src/components/ui/CardList.vue';
|
||||||
|
import VnLinkPhone from 'src/components/ui/VnLinkPhone.vue';
|
||||||
|
|
||||||
const stateStore = useStateStore();
|
const stateStore = useStateStore();
|
||||||
const router = useRouter();
|
const router = useRouter();
|
||||||
|
@ -77,7 +78,12 @@ function viewSummary(id) {
|
||||||
>
|
>
|
||||||
<template #list-items>
|
<template #list-items>
|
||||||
<VnLv :label="t('customer.list.email')" :value="row.email" />
|
<VnLv :label="t('customer.list.email')" :value="row.email" />
|
||||||
<VnLv :label="t('customer.list.phone')" :value="row.phone" />
|
<VnLv :value="row.phone">
|
||||||
|
<template #label>
|
||||||
|
{{ t('customer.list.phone') }}
|
||||||
|
<VnLinkPhone :phone-number="row.phone" />
|
||||||
|
</template>
|
||||||
|
</VnLv>
|
||||||
</template>
|
</template>
|
||||||
<template #actions>
|
<template #actions>
|
||||||
<QBtn
|
<QBtn
|
||||||
|
|
|
@ -0,0 +1,710 @@
|
||||||
|
<script setup>
|
||||||
|
import { ref, computed } from 'vue';
|
||||||
|
import { useRoute } from 'vue-router';
|
||||||
|
import { useI18n } from 'vue-i18n';
|
||||||
|
import { useQuasar } from 'quasar';
|
||||||
|
import { useArrayData } from 'src/composables/useArrayData';
|
||||||
|
|
||||||
|
import { downloadFile } from 'src/composables/downloadFile';
|
||||||
|
import FetchData from 'src/components/FetchData.vue';
|
||||||
|
import FormModel from 'components/FormModel.vue';
|
||||||
|
import VnSelectFilter from 'src/components/common/VnSelectFilter.vue';
|
||||||
|
import axios from 'axios';
|
||||||
|
|
||||||
|
const quasar = useQuasar();
|
||||||
|
const route = useRoute();
|
||||||
|
const { t } = useI18n();
|
||||||
|
|
||||||
|
const dms = ref({});
|
||||||
|
const editDownloadDisabled = ref(false);
|
||||||
|
const arrayData = useArrayData('InvoiceIn');
|
||||||
|
const invoiceIn = computed(() => arrayData.store.data);
|
||||||
|
const userConfig = ref(null);
|
||||||
|
|
||||||
|
const suppliers = ref([]);
|
||||||
|
const suppliersRef = ref();
|
||||||
|
const currencies = ref([]);
|
||||||
|
const currenciesRef = ref();
|
||||||
|
const companies = ref([]);
|
||||||
|
const companiesRef = ref();
|
||||||
|
const dmsTypes = ref([]);
|
||||||
|
const dmsTypesRef = ref();
|
||||||
|
const warehouses = ref([]);
|
||||||
|
const warehousesRef = ref();
|
||||||
|
const allowTypesRef = ref();
|
||||||
|
const allowedContentTypes = ref([]);
|
||||||
|
const inputFileRef = ref();
|
||||||
|
const editDmsRef = ref();
|
||||||
|
const createDmsRef = ref();
|
||||||
|
|
||||||
|
const requiredFieldRule = (val) => val || t('Required field');
|
||||||
|
const dateMask = '####-##-##';
|
||||||
|
const fillMask = '_';
|
||||||
|
|
||||||
|
async function checkFileExists(dmsId) {
|
||||||
|
if (!dmsId) return;
|
||||||
|
try {
|
||||||
|
await axios.get(`Dms/${dmsId}`, { fields: ['id'] });
|
||||||
|
editDownloadDisabled.value = false;
|
||||||
|
} catch (e) {
|
||||||
|
editDownloadDisabled.value = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
async function setEditDms(dmsId) {
|
||||||
|
const { data } = await axios.get(`Dms/${dmsId}`);
|
||||||
|
dms.value = {
|
||||||
|
warehouseId: data.warehouseFk,
|
||||||
|
companyId: data.companyFk,
|
||||||
|
dmsTypeId: data.dmsTypeFk,
|
||||||
|
...data,
|
||||||
|
};
|
||||||
|
|
||||||
|
if (!allowedContentTypes.value.length) await allowTypesRef.value.fetch();
|
||||||
|
|
||||||
|
editDmsRef.value.show();
|
||||||
|
}
|
||||||
|
|
||||||
|
async function setCreateDms() {
|
||||||
|
const { data } = await axios.get('DmsTypes/findOne', {
|
||||||
|
where: { code: 'invoiceIn' },
|
||||||
|
});
|
||||||
|
dms.value = {
|
||||||
|
reference: invoiceIn.value.supplierRef,
|
||||||
|
warehouseId: userConfig.value.warehouseFk,
|
||||||
|
companyId: userConfig.value.companyFk,
|
||||||
|
dmsTypeId: data.id,
|
||||||
|
description: invoiceIn.value.supplier.name,
|
||||||
|
hasFile: true,
|
||||||
|
hasFileAttached: true,
|
||||||
|
files: null,
|
||||||
|
};
|
||||||
|
|
||||||
|
createDmsRef.value.show();
|
||||||
|
}
|
||||||
|
|
||||||
|
async function upsert() {
|
||||||
|
try {
|
||||||
|
const isEdit = !!dms.value.id;
|
||||||
|
const errors = {
|
||||||
|
companyId: `The company can't be empty`,
|
||||||
|
warehouseId: `The warehouse can't be empty`,
|
||||||
|
dmsTypeId: `The DMS Type can't be empty`,
|
||||||
|
description: `The description can't be empty`,
|
||||||
|
};
|
||||||
|
|
||||||
|
Object.keys(errors).forEach((key) => {
|
||||||
|
if (!dms.value[key]) throw Error(t(errors[key]));
|
||||||
|
});
|
||||||
|
|
||||||
|
if (!isEdit && !dms.value.files) throw Error(t(`The files can't be empty`));
|
||||||
|
|
||||||
|
const formData = new FormData();
|
||||||
|
|
||||||
|
if (dms.value.files) {
|
||||||
|
for (let i = 0; i < dms.value.files.length; i++)
|
||||||
|
formData.append(dms.value.files[i].name, dms.value.files[i]);
|
||||||
|
dms.value.hasFileAttached = true;
|
||||||
|
}
|
||||||
|
const url = isEdit ? `dms/${dms.value.id}/updateFile` : 'Dms/uploadFile';
|
||||||
|
const { data } = await axios.post(url, formData, {
|
||||||
|
params: dms.value,
|
||||||
|
});
|
||||||
|
|
||||||
|
if (data.length) invoiceIn.value.dmsFk = data[0].id;
|
||||||
|
|
||||||
|
if (!isEdit) {
|
||||||
|
createDmsRef.value.hide();
|
||||||
|
} else {
|
||||||
|
editDmsRef.value.hide();
|
||||||
|
}
|
||||||
|
|
||||||
|
quasar.notify({
|
||||||
|
message: t('globals.dataSaved'),
|
||||||
|
type: 'positive',
|
||||||
|
});
|
||||||
|
} catch (error) {
|
||||||
|
quasar.notify({
|
||||||
|
message: t(`${error.message}`),
|
||||||
|
type: 'negative',
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
<template>
|
||||||
|
<FetchData
|
||||||
|
ref="suppliersRef"
|
||||||
|
url="Suppliers"
|
||||||
|
:filter="{ fields: ['id', 'nickname'] }"
|
||||||
|
limit="30"
|
||||||
|
@on-fetch="(data) => (suppliers = data)"
|
||||||
|
/>
|
||||||
|
<FetchData
|
||||||
|
ref="currenciesRef"
|
||||||
|
url="Currencies"
|
||||||
|
:filter="{ fields: ['id', 'code'] }"
|
||||||
|
order="code"
|
||||||
|
@on-fetch="(data) => (currencies = data)"
|
||||||
|
/>
|
||||||
|
<FetchData
|
||||||
|
ref="companiesRef"
|
||||||
|
url="Companies"
|
||||||
|
:filter="{ fields: ['id', 'code'] }"
|
||||||
|
order="code"
|
||||||
|
@on-fetch="(data) => (companies = data)"
|
||||||
|
/>
|
||||||
|
<FetchData
|
||||||
|
ref="dmsTypesRef"
|
||||||
|
url="DmsTypes"
|
||||||
|
:filter="{ fields: ['id', 'name'] }"
|
||||||
|
order="name"
|
||||||
|
@on-fetch="(data) => (dmsTypes = data)"
|
||||||
|
/>
|
||||||
|
<FetchData
|
||||||
|
ref="warehousesRef"
|
||||||
|
url="Warehouses"
|
||||||
|
:filter="{ fields: ['id', 'name'] }"
|
||||||
|
order="name"
|
||||||
|
@on-fetch="(data) => (warehouses = data)"
|
||||||
|
/>
|
||||||
|
<FetchData
|
||||||
|
ref="allowTypesRef"
|
||||||
|
url="DmsContainers/allowedContentTypes"
|
||||||
|
@on-fetch="(data) => (allowedContentTypes = data)"
|
||||||
|
/>
|
||||||
|
<FetchData
|
||||||
|
url="UserConfigs/getUserConfig"
|
||||||
|
@on-fetch="(data) => (userConfig = data)"
|
||||||
|
auto-load
|
||||||
|
/>
|
||||||
|
<FormModel v-if="invoiceIn" :url="`InvoiceIns/${route.params.id}`" model="invoiceIn">
|
||||||
|
<template #form="{ data }">
|
||||||
|
<div class="row q-gutter-md q-mb-md">
|
||||||
|
<div class="col">
|
||||||
|
<VnSelectFilter
|
||||||
|
v-if="suppliersRef"
|
||||||
|
:label="t('supplierFk')"
|
||||||
|
v-model="data.supplierFk"
|
||||||
|
:options="suppliers"
|
||||||
|
option-value="id"
|
||||||
|
option-label="nickname"
|
||||||
|
:input-debounce="100"
|
||||||
|
@input-value="suppliersRef.fetch()"
|
||||||
|
>
|
||||||
|
<template #option="scope">
|
||||||
|
<QItem v-bind="scope.itemProps">
|
||||||
|
<QItemSection>
|
||||||
|
<QItemLabel>{{
|
||||||
|
`${scope.opt.id} - ${scope.opt.nickname}`
|
||||||
|
}}</QItemLabel>
|
||||||
|
</QItemSection>
|
||||||
|
</QItem>
|
||||||
|
</template>
|
||||||
|
</VnSelectFilter>
|
||||||
|
</div>
|
||||||
|
<div class="col">
|
||||||
|
<QInput
|
||||||
|
clearable
|
||||||
|
clear-icon="close"
|
||||||
|
:label="t('Supplier ref')"
|
||||||
|
v-model="data.supplierRef"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row q-gutter-md q-mb-md">
|
||||||
|
<div class="col">
|
||||||
|
<QInput
|
||||||
|
:label="t('Expedition date')"
|
||||||
|
v-model="data.issued"
|
||||||
|
:mask="dateMask"
|
||||||
|
>
|
||||||
|
<template #append>
|
||||||
|
<QIcon
|
||||||
|
name="event"
|
||||||
|
class="cursor-pointer"
|
||||||
|
:fill-mask="fillMask"
|
||||||
|
>
|
||||||
|
<QPopupProxy
|
||||||
|
cover
|
||||||
|
transition-show="scale"
|
||||||
|
transition-hide="scale"
|
||||||
|
>
|
||||||
|
<QDate v-model="data.issued">
|
||||||
|
<div class="row items-center justify-end">
|
||||||
|
<QBtn
|
||||||
|
v-close-popup
|
||||||
|
label="Close"
|
||||||
|
color="primary"
|
||||||
|
flat
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</QDate>
|
||||||
|
</QPopupProxy>
|
||||||
|
</QIcon>
|
||||||
|
</template>
|
||||||
|
</QInput>
|
||||||
|
</div>
|
||||||
|
<div class="col">
|
||||||
|
<QInput
|
||||||
|
:label="t('Operation date')"
|
||||||
|
v-model="data.operated"
|
||||||
|
:mask="dateMask"
|
||||||
|
:fill-mask="fillMask"
|
||||||
|
autofocus
|
||||||
|
>
|
||||||
|
<template #append>
|
||||||
|
<QIcon name="event" class="cursor-pointer">
|
||||||
|
<QPopupProxy
|
||||||
|
cover
|
||||||
|
transition-show="scale"
|
||||||
|
transition-hide="scale"
|
||||||
|
>
|
||||||
|
<QDate v-model="data.operated" :mask="dateMask">
|
||||||
|
<div class="row items-center justify-end">
|
||||||
|
<QBtn
|
||||||
|
v-close-popup
|
||||||
|
label="Close"
|
||||||
|
color="primary"
|
||||||
|
flat
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</QDate>
|
||||||
|
</QPopupProxy>
|
||||||
|
</QIcon>
|
||||||
|
</template>
|
||||||
|
</QInput>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row q-gutter-md q-mb-md">
|
||||||
|
<div class="col">
|
||||||
|
<QInput
|
||||||
|
:label="t('Undeductible VAT')"
|
||||||
|
v-model="data.deductibleExpenseFk"
|
||||||
|
clearable
|
||||||
|
clear-icon="close"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div class="col">
|
||||||
|
<QInput
|
||||||
|
:label="t('Document')"
|
||||||
|
v-model="data.dmsFk"
|
||||||
|
clearable
|
||||||
|
clear-icon="close"
|
||||||
|
@update:model-value="checkFileExists(data.dmsFk)"
|
||||||
|
>
|
||||||
|
<template #prepend>
|
||||||
|
<QBtn
|
||||||
|
v-if="data.dmsFk"
|
||||||
|
:class="{
|
||||||
|
'no-pointer-events': editDownloadDisabled,
|
||||||
|
}"
|
||||||
|
:disable="editDownloadDisabled"
|
||||||
|
icon="cloud_download"
|
||||||
|
:title="t('Download file')"
|
||||||
|
padding="xs"
|
||||||
|
round
|
||||||
|
@click="downloadFile(data.dmsFk)"
|
||||||
|
/>
|
||||||
|
</template>
|
||||||
|
<template #append>
|
||||||
|
<QBtn
|
||||||
|
:class="{
|
||||||
|
'no-pointer-events': editDownloadDisabled,
|
||||||
|
}"
|
||||||
|
:disable="editDownloadDisabled"
|
||||||
|
v-if="data.dmsFk"
|
||||||
|
icon="edit"
|
||||||
|
round
|
||||||
|
padding="xs"
|
||||||
|
@click="setEditDms(data.dmsFk)"
|
||||||
|
>
|
||||||
|
<QTooltip>{{ t('Edit document') }}</QTooltip>
|
||||||
|
</QBtn>
|
||||||
|
<QBtn
|
||||||
|
v-else
|
||||||
|
icon="add_circle"
|
||||||
|
round
|
||||||
|
padding="xs"
|
||||||
|
@click="setCreateDms()"
|
||||||
|
>
|
||||||
|
<QTooltip>{{ t('Create document') }}</QTooltip>
|
||||||
|
</QBtn>
|
||||||
|
</template>
|
||||||
|
</QInput>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row q-gutter-md q-mb-md">
|
||||||
|
<div class="col">
|
||||||
|
<QInput
|
||||||
|
:label="t('Entry date')"
|
||||||
|
v-model="data.bookEntried"
|
||||||
|
clearable
|
||||||
|
clear-icon="close"
|
||||||
|
:mask="dateMask"
|
||||||
|
:fill-mask="fillMask"
|
||||||
|
>
|
||||||
|
<template #append>
|
||||||
|
<QIcon name="event" class="cursor-pointer">
|
||||||
|
<QPopupProxy
|
||||||
|
cover
|
||||||
|
transition-show="scale"
|
||||||
|
transition-hide="scale"
|
||||||
|
>
|
||||||
|
<QDate v-model="data.bookEntried" :mask="dateMask">
|
||||||
|
<div class="row items-center justify-end">
|
||||||
|
<QBtn
|
||||||
|
v-close-popup
|
||||||
|
label="Close"
|
||||||
|
color="primary"
|
||||||
|
flat
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</QDate>
|
||||||
|
</QPopupProxy>
|
||||||
|
</QIcon>
|
||||||
|
</template>
|
||||||
|
</QInput>
|
||||||
|
</div>
|
||||||
|
<div class="col">
|
||||||
|
<QInput
|
||||||
|
:label="t('Accounted date')"
|
||||||
|
v-model="data.booked"
|
||||||
|
clearable
|
||||||
|
clear-icon="close"
|
||||||
|
:mask="dateMask"
|
||||||
|
:fill-mask="fillMask"
|
||||||
|
>
|
||||||
|
<template #append>
|
||||||
|
<QIcon name="event" class="cursor-pointer">
|
||||||
|
<QPopupProxy
|
||||||
|
cover
|
||||||
|
transition-show="scale"
|
||||||
|
transition-hide="scale"
|
||||||
|
>
|
||||||
|
<QDate v-model="data.booked" :mask="maskDate">
|
||||||
|
<div class="row items-center justify-end">
|
||||||
|
<QBtn
|
||||||
|
v-close-popup
|
||||||
|
label="Close"
|
||||||
|
color="primary"
|
||||||
|
flat
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</QDate>
|
||||||
|
</QPopupProxy>
|
||||||
|
</QIcon>
|
||||||
|
</template>
|
||||||
|
</QInput>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row q-gutter-md q-mb-md">
|
||||||
|
<div class="col">
|
||||||
|
<VnSelectFilter
|
||||||
|
v-if="currenciesRef"
|
||||||
|
:label="t('Currency')"
|
||||||
|
v-model="data.currencyFk"
|
||||||
|
:options="currencies"
|
||||||
|
option-value="id"
|
||||||
|
option-label="code"
|
||||||
|
@input-value="currenciesRef.fetch()"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div class="col">
|
||||||
|
<VnSelectFilter
|
||||||
|
v-if="companiesRef"
|
||||||
|
:label="t('Company')"
|
||||||
|
v-model="data.companyFk"
|
||||||
|
:options="companies"
|
||||||
|
option-value="id"
|
||||||
|
option-label="code"
|
||||||
|
@input-value="companiesRef.fetch()"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row q-gutter-md q-mb-md">
|
||||||
|
<div class="col">
|
||||||
|
<QCheckbox
|
||||||
|
:label="t('invoiceIn.summary.booked')"
|
||||||
|
v-model="data.isBooked"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div class="col"></div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
</FormModel>
|
||||||
|
<QDialog ref="editDmsRef">
|
||||||
|
<QCard>
|
||||||
|
<QCardSection class="q-pb-none">
|
||||||
|
<QItem class="q-px-none">
|
||||||
|
<span class="text-primary text-h6 full-width">
|
||||||
|
<QIcon name="edit" class="q-mr-xs" />
|
||||||
|
{{ t('Edit document') }}
|
||||||
|
</span>
|
||||||
|
<QBtn icon="close" flat round dense v-close-popup />
|
||||||
|
</QItem>
|
||||||
|
</QCardSection>
|
||||||
|
<QCardSection class="q-py-none">
|
||||||
|
<QItem>
|
||||||
|
<QInput
|
||||||
|
class="full-width q-pa-xs"
|
||||||
|
:label="t('Reference')"
|
||||||
|
v-model="dms.reference"
|
||||||
|
clearable
|
||||||
|
clear-icon="close"
|
||||||
|
/>
|
||||||
|
<VnSelectFilter
|
||||||
|
class="full-width q-pa-xs"
|
||||||
|
:label="`${t('Company')}*`"
|
||||||
|
v-model="dms.companyId"
|
||||||
|
:options="companies"
|
||||||
|
option-value="id"
|
||||||
|
option-label="code"
|
||||||
|
@input-value="companiesRef.fetch()"
|
||||||
|
:rules="[requiredFieldRule]"
|
||||||
|
/>
|
||||||
|
</QItem>
|
||||||
|
<QItem>
|
||||||
|
<VnSelectFilter
|
||||||
|
class="full-width q-pa-xs"
|
||||||
|
:label="`${t('Warehouse')}*`"
|
||||||
|
v-model="dms.warehouseId"
|
||||||
|
:options="warehouses"
|
||||||
|
option-value="id"
|
||||||
|
option-label="name"
|
||||||
|
@input-value="warehousesRef.fetch()"
|
||||||
|
:rules="[requiredFieldRule]"
|
||||||
|
/>
|
||||||
|
<VnSelectFilter
|
||||||
|
class="full-width q-pa-xs"
|
||||||
|
:label="`${t('Type')}*`"
|
||||||
|
v-model="dms.dmsTypeId"
|
||||||
|
:options="dmsTypes"
|
||||||
|
option-value="id"
|
||||||
|
option-label="name"
|
||||||
|
@input-value="dmsTypesRef.fetch()"
|
||||||
|
:rules="[requiredFieldRule]"
|
||||||
|
/>
|
||||||
|
</QItem>
|
||||||
|
<QItem>
|
||||||
|
<QInput
|
||||||
|
class="full-width q-pa-xs"
|
||||||
|
type="textarea"
|
||||||
|
size="lg"
|
||||||
|
autogrow
|
||||||
|
:label="`${t('Description')}*`"
|
||||||
|
v-model="dms.description"
|
||||||
|
clearable
|
||||||
|
clear-icon="close"
|
||||||
|
:rules="[(val) => val.length || t('Required field')]"
|
||||||
|
/>
|
||||||
|
</QItem>
|
||||||
|
<QItem>
|
||||||
|
<QFile
|
||||||
|
ref="inputFileRef"
|
||||||
|
class="full-width q-pa-xs"
|
||||||
|
:label="t('File')"
|
||||||
|
v-model="dms.files"
|
||||||
|
multiple
|
||||||
|
:accept="allowedContentTypes.join(',')"
|
||||||
|
clearable
|
||||||
|
clear-icon="close"
|
||||||
|
>
|
||||||
|
<template #append>
|
||||||
|
<QBtn
|
||||||
|
icon="attach_file_add"
|
||||||
|
flat
|
||||||
|
round
|
||||||
|
padding="xs"
|
||||||
|
@click="inputFileRef.pickFiles()"
|
||||||
|
>
|
||||||
|
<QTooltip>
|
||||||
|
{{ t('Select a file') }}
|
||||||
|
</QTooltip>
|
||||||
|
</QBtn>
|
||||||
|
<QBtn icon="info" flat round padding="xs">
|
||||||
|
<QTooltip max-width="30rem">
|
||||||
|
{{
|
||||||
|
`${t(
|
||||||
|
'Allowed content types'
|
||||||
|
)}: ${allowedContentTypes.join(', ')}`
|
||||||
|
}}
|
||||||
|
</QTooltip>
|
||||||
|
</QBtn>
|
||||||
|
</template>
|
||||||
|
</QFile>
|
||||||
|
</QItem>
|
||||||
|
<QItem>
|
||||||
|
<QCheckbox
|
||||||
|
:label="t('Generate identifier for original file')"
|
||||||
|
v-model="dms.hasFile"
|
||||||
|
/>
|
||||||
|
</QItem>
|
||||||
|
</QCardSection>
|
||||||
|
<QCardActions class="justify-end">
|
||||||
|
<QBtn flat :label="t('globals.close')" color="primary" v-close-popup />
|
||||||
|
<QBtn :label="t('globals.save')" color="primary" @click="upsert" />
|
||||||
|
</QCardActions>
|
||||||
|
</QCard>
|
||||||
|
</QDialog>
|
||||||
|
<QDialog ref="createDmsRef">
|
||||||
|
<QCard>
|
||||||
|
<QCardSection class="q-pb-none">
|
||||||
|
<QItem>
|
||||||
|
<span class="text-primary text-h6 full-width">
|
||||||
|
<QIcon name="edit" class="q-mr-xs" />
|
||||||
|
{{ t('Create document') }}
|
||||||
|
</span>
|
||||||
|
<QBtn icon="close" flat round dense v-close-popup align="right" />
|
||||||
|
</QItem>
|
||||||
|
</QCardSection>
|
||||||
|
<QCardSection class="q-pb-none">
|
||||||
|
<QItem>
|
||||||
|
<QInput
|
||||||
|
class="full-width q-pa-xs"
|
||||||
|
:label="t('Reference')"
|
||||||
|
v-model="dms.reference"
|
||||||
|
/>
|
||||||
|
<VnSelectFilter
|
||||||
|
class="full-width q-pa-xs"
|
||||||
|
:label="`${t('Company')}*`"
|
||||||
|
v-model="dms.companyId"
|
||||||
|
:options="companies"
|
||||||
|
option-value="id"
|
||||||
|
option-label="code"
|
||||||
|
@input-value="companiesRef.fetch()"
|
||||||
|
:rules="[requiredFieldRule]"
|
||||||
|
/>
|
||||||
|
</QItem>
|
||||||
|
<QItem>
|
||||||
|
<VnSelectFilter
|
||||||
|
class="full-width q-pa-xs"
|
||||||
|
:label="`${t('Warehouse')}*`"
|
||||||
|
v-model="dms.warehouseId"
|
||||||
|
:options="warehouses"
|
||||||
|
option-value="id"
|
||||||
|
option-label="name"
|
||||||
|
@input-value="warehousesRef.fetch()"
|
||||||
|
:rules="[requiredFieldRule]"
|
||||||
|
/>
|
||||||
|
<VnSelectFilter
|
||||||
|
class="full-width q-pa-xs"
|
||||||
|
:label="`${t('Type')}*`"
|
||||||
|
v-model="dms.dmsTypeId"
|
||||||
|
:options="dmsTypes"
|
||||||
|
option-value="id"
|
||||||
|
option-label="name"
|
||||||
|
@input-value="dmsTypesRef.fetch()"
|
||||||
|
:rules="[requiredFieldRule]"
|
||||||
|
/>
|
||||||
|
</QItem>
|
||||||
|
<QItem>
|
||||||
|
<QInput
|
||||||
|
class="full-width q-pa-xs"
|
||||||
|
type="textarea"
|
||||||
|
size="lg"
|
||||||
|
autogrow
|
||||||
|
:label="`${t('Description')}*`"
|
||||||
|
v-model="dms.description"
|
||||||
|
clearable
|
||||||
|
clear-icon="close"
|
||||||
|
:rules="[(val) => val.length || t('Required field')]"
|
||||||
|
/>
|
||||||
|
</QItem>
|
||||||
|
<QItem>
|
||||||
|
<QFile
|
||||||
|
ref="inputFileRef"
|
||||||
|
class="full-width q-pa-xs"
|
||||||
|
:label="t('File')"
|
||||||
|
v-model="dms.files"
|
||||||
|
multiple
|
||||||
|
:accept="allowedContentTypes.join(',')"
|
||||||
|
clearable
|
||||||
|
clear-icon="close"
|
||||||
|
>
|
||||||
|
<template #append>
|
||||||
|
<QBtn
|
||||||
|
icon="attach_file_add"
|
||||||
|
flat
|
||||||
|
round
|
||||||
|
padding="xs"
|
||||||
|
@click="inputFileRef.pickFiles()"
|
||||||
|
>
|
||||||
|
<QTooltip>
|
||||||
|
{{ t('Select a file') }}
|
||||||
|
</QTooltip>
|
||||||
|
</QBtn>
|
||||||
|
<QBtn icon="info" flat round padding="xs">
|
||||||
|
<QTooltip max-width="30rem">
|
||||||
|
{{
|
||||||
|
`${t(
|
||||||
|
'Allowed content types'
|
||||||
|
)}: ${allowedContentTypes.join(', ')}`
|
||||||
|
}}
|
||||||
|
</QTooltip>
|
||||||
|
</QBtn>
|
||||||
|
</template>
|
||||||
|
</QFile>
|
||||||
|
</QItem>
|
||||||
|
<QItem>
|
||||||
|
<QCheckbox
|
||||||
|
:label="t('Generate identifier for original file')"
|
||||||
|
v-model="dms.hasFile"
|
||||||
|
/>
|
||||||
|
</QItem>
|
||||||
|
</QCardSection>
|
||||||
|
<QCardActions align="right">
|
||||||
|
<QBtn flat :label="t('globals.close')" color="primary" v-close-popup />
|
||||||
|
<QBtn :label="t('globals.save')" color="primary" @click="upsert" />
|
||||||
|
</QCardActions>
|
||||||
|
</QCard>
|
||||||
|
</QDialog>
|
||||||
|
</template>
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
@media (max-width: $breakpoint-xs) {
|
||||||
|
.column {
|
||||||
|
.row:not(:last-child) {
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.q-dialog {
|
||||||
|
.q-card {
|
||||||
|
&__section:not(:first-child) {
|
||||||
|
.q-item {
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
<i18n>
|
||||||
|
en:
|
||||||
|
supplierFk: Supplier
|
||||||
|
es:
|
||||||
|
supplierFk: Proveedor
|
||||||
|
Supplier ref: Ref. proveedor
|
||||||
|
Expedition date: Fecha expedición
|
||||||
|
Operation date: Fecha operación
|
||||||
|
Undeductible VAT: Iva no deducible
|
||||||
|
Document: Documento
|
||||||
|
Download file: Descargar archivo
|
||||||
|
Entry date: Fecha asiento
|
||||||
|
Accounted date: Fecha contable
|
||||||
|
Currency: Moneda
|
||||||
|
Company: Empresa
|
||||||
|
Edit document: Editar documento
|
||||||
|
Reference: Referencia
|
||||||
|
Type: Tipo
|
||||||
|
Description: Descripción
|
||||||
|
Generate identifier for original file: Generar identificador para archivo original
|
||||||
|
Required field: Campo obligatorio
|
||||||
|
File: Fichero
|
||||||
|
Create document: Crear documento
|
||||||
|
Select a file: Seleccione un fichero
|
||||||
|
Allowed content types: Tipos de archivo permitidos
|
||||||
|
The company can't be empty: La empresa no puede estar vacía
|
||||||
|
The warehouse can't be empty: El almacén no puede estar vacío
|
||||||
|
The DMS Type can't be empty: El dms no puede estar vacío
|
||||||
|
The description can't be empty: La descripción no puede estar vacía
|
||||||
|
The files can't be empty: Los archivos no pueden estar vacíos
|
||||||
|
</i18n>
|
|
@ -0,0 +1,91 @@
|
||||||
|
<script setup>
|
||||||
|
import { useI18n } from 'vue-i18n';
|
||||||
|
import { useStateStore } from 'stores/useStateStore';
|
||||||
|
import InvoiceInDescriptor from './InvoiceInDescriptor.vue';
|
||||||
|
import LeftMenu from 'components/LeftMenu.vue';
|
||||||
|
import VnSearchbar from 'components/ui/VnSearchbar.vue';
|
||||||
|
import { useArrayData } from 'src/composables/useArrayData';
|
||||||
|
import { onMounted, watch } from 'vue';
|
||||||
|
import { useRoute } from 'vue-router';
|
||||||
|
|
||||||
|
const stateStore = useStateStore();
|
||||||
|
const { t } = useI18n();
|
||||||
|
const route = useRoute();
|
||||||
|
|
||||||
|
const filter = {
|
||||||
|
include: [
|
||||||
|
{
|
||||||
|
relation: 'supplier',
|
||||||
|
scope: {
|
||||||
|
include: {
|
||||||
|
relation: 'contacts',
|
||||||
|
scope: {
|
||||||
|
where: {
|
||||||
|
email: { neq: null },
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
relation: 'invoiceInDueDay',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
relation: 'company',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
relation: 'currency',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
};
|
||||||
|
const arrayData = useArrayData('InvoiceIn', {
|
||||||
|
url: `InvoiceIns/${route.params.id}`,
|
||||||
|
filter,
|
||||||
|
});
|
||||||
|
|
||||||
|
onMounted(async () => {
|
||||||
|
await arrayData.fetch({ append: false });
|
||||||
|
watch(
|
||||||
|
() => route.params.id,
|
||||||
|
async (newId, oldId) => {
|
||||||
|
if (newId) {
|
||||||
|
arrayData.store.url = `InvoiceIns/${newId}`;
|
||||||
|
await arrayData.fetch({ append: false });
|
||||||
|
}
|
||||||
|
}
|
||||||
|
);
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
<template>
|
||||||
|
<Teleport to="#searchbar" v-if="stateStore.isHeaderMounted()">
|
||||||
|
<VnSearchbar
|
||||||
|
data-key="InvoiceInList"
|
||||||
|
url="InvoiceIns/filter"
|
||||||
|
:label="t('Search invoice')"
|
||||||
|
:info="t('You can search by invoice reference')"
|
||||||
|
/>
|
||||||
|
</Teleport>
|
||||||
|
<QDrawer v-model="stateStore.leftDrawer" show-if-above :width="256">
|
||||||
|
<QScrollArea class="fit">
|
||||||
|
<InvoiceInDescriptor />
|
||||||
|
<QSeparator />
|
||||||
|
<LeftMenu source="card" />
|
||||||
|
</QScrollArea>
|
||||||
|
</QDrawer>
|
||||||
|
<QPageContainer>
|
||||||
|
<QPage>
|
||||||
|
<QToolbar class="bg-vn-dark justify-end">
|
||||||
|
<div id="st-data"></div>
|
||||||
|
<QSpace />
|
||||||
|
<div id="st-actions"></div>
|
||||||
|
</QToolbar>
|
||||||
|
<div class="q-pa-md"><RouterView></RouterView></div>
|
||||||
|
</QPage>
|
||||||
|
</QPageContainer>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<i18n>
|
||||||
|
es:
|
||||||
|
Search invoice: Buscar factura emitida
|
||||||
|
You can search by invoice reference: Puedes buscar por referencia de la factura
|
||||||
|
</i18n>
|
|
@ -0,0 +1,327 @@
|
||||||
|
<script setup>
|
||||||
|
import { ref, computed } from 'vue';
|
||||||
|
import { useRoute, useRouter } from 'vue-router';
|
||||||
|
import { useI18n } from 'vue-i18n';
|
||||||
|
import { useQuasar } from 'quasar';
|
||||||
|
import axios from 'axios';
|
||||||
|
import { toCurrency, toDate } from 'src/filters';
|
||||||
|
import { useRole } from 'src/composables/useRole';
|
||||||
|
import useCardDescription from 'src/composables/useCardDescription';
|
||||||
|
import { downloadFile } from 'src/composables/downloadFile';
|
||||||
|
import { useArrayData } from 'src/composables/useArrayData';
|
||||||
|
import { usePrintService } from 'composables/usePrintService';
|
||||||
|
import VnLv from 'src/components/ui/VnLv.vue';
|
||||||
|
import CardDescriptor from 'components/ui/CardDescriptor.vue';
|
||||||
|
import FetchData from 'src/components/FetchData.vue';
|
||||||
|
import SendEmailDialog from 'components/common/SendEmailDialog.vue';
|
||||||
|
import VnConfirm from 'src/components/ui/VnConfirm.vue';
|
||||||
|
|
||||||
|
const $props = defineProps({
|
||||||
|
id: {
|
||||||
|
type: Number,
|
||||||
|
required: false,
|
||||||
|
default: null,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
const route = useRoute();
|
||||||
|
const router = useRouter();
|
||||||
|
const quasar = useQuasar();
|
||||||
|
const { hasAny } = useRole();
|
||||||
|
const { t } = useI18n();
|
||||||
|
const { openReport, sendEmail } = usePrintService();
|
||||||
|
const arrayData = useArrayData('InvoiceIn');
|
||||||
|
|
||||||
|
const invoiceIn = computed(() => arrayData.store.data);
|
||||||
|
const cardDescriptorRef = ref();
|
||||||
|
const entityId = computed(() => $props.id || route.params.id);
|
||||||
|
const totalAmount = ref();
|
||||||
|
const currentAction = ref();
|
||||||
|
const config = ref();
|
||||||
|
|
||||||
|
const actions = {
|
||||||
|
book: {
|
||||||
|
title: 'Are you sure you want to book this invoice?',
|
||||||
|
cb: checkToBook,
|
||||||
|
action: toBook,
|
||||||
|
},
|
||||||
|
delete: {
|
||||||
|
title: 'Are you sure you want to delete this invoice?',
|
||||||
|
action: deleteInvoice,
|
||||||
|
},
|
||||||
|
clone: {
|
||||||
|
title: 'Are you sure you want to clone this invoice?',
|
||||||
|
action: cloneInvoice,
|
||||||
|
},
|
||||||
|
showPdf: {
|
||||||
|
cb: showPdfInvoice,
|
||||||
|
},
|
||||||
|
sendPdf: {
|
||||||
|
cb: sendPdfInvoiceConfirmation,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
const filter = {
|
||||||
|
include: [
|
||||||
|
{
|
||||||
|
relation: 'supplier',
|
||||||
|
scope: {
|
||||||
|
include: {
|
||||||
|
relation: 'contacts',
|
||||||
|
scope: {
|
||||||
|
where: {
|
||||||
|
email: { neq: null },
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
relation: 'invoiceInDueDay',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
relation: 'company',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
relation: 'currency',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
};
|
||||||
|
|
||||||
|
const data = ref(useCardDescription());
|
||||||
|
|
||||||
|
async function setData(entity) {
|
||||||
|
data.value = useCardDescription(entity.supplierRef, entity.id);
|
||||||
|
const { totalDueDay } = await getTotals();
|
||||||
|
totalAmount.value = totalDueDay;
|
||||||
|
}
|
||||||
|
|
||||||
|
async function getTotals() {
|
||||||
|
const { data } = await axios.get(`InvoiceIns/${entityId.value}/getTotals`);
|
||||||
|
return data;
|
||||||
|
}
|
||||||
|
|
||||||
|
function openDialog() {
|
||||||
|
quasar.dialog({
|
||||||
|
component: VnConfirm,
|
||||||
|
componentProps: {
|
||||||
|
title: currentAction.value.title,
|
||||||
|
promise: currentAction.value.action,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
async function checkToBook() {
|
||||||
|
let directBooking = true;
|
||||||
|
|
||||||
|
const totals = await getTotals();
|
||||||
|
const taxableBaseNotEqualDueDay = totals.totalDueDay != totals.totalTaxableBase;
|
||||||
|
const vatNotEqualDueDay = totals.totalDueDay != totals.totalVat;
|
||||||
|
|
||||||
|
if (taxableBaseNotEqualDueDay && vatNotEqualDueDay) directBooking = false;
|
||||||
|
|
||||||
|
const { data: dueDaysCount } = await axios.get('InvoiceInDueDays/count', {
|
||||||
|
where: {
|
||||||
|
invoiceInFk: entityId.value,
|
||||||
|
dueDated: { gte: Date.vnNew() },
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
if (dueDaysCount) directBooking = false;
|
||||||
|
|
||||||
|
if (!directBooking) openDialog();
|
||||||
|
else toBook();
|
||||||
|
}
|
||||||
|
|
||||||
|
async function toBook() {
|
||||||
|
await axios.post(`InvoiceIns/${entityId.value}/toBook`);
|
||||||
|
|
||||||
|
// Pendiente de sincronizar todo con arrayData
|
||||||
|
quasar.notify({
|
||||||
|
type: 'positive',
|
||||||
|
message: t('globals.dataSaved'),
|
||||||
|
});
|
||||||
|
|
||||||
|
await cardDescriptorRef.value.getData();
|
||||||
|
setTimeout(() => location.reload(), 500);
|
||||||
|
}
|
||||||
|
|
||||||
|
async function deleteInvoice() {
|
||||||
|
await axios.delete(`InvoiceIns/${entityId.value}`);
|
||||||
|
quasar.notify({
|
||||||
|
type: 'positive',
|
||||||
|
message: t('Invoice deleted'),
|
||||||
|
});
|
||||||
|
router.push({ path: '/invoice-in' });
|
||||||
|
}
|
||||||
|
|
||||||
|
async function cloneInvoice() {
|
||||||
|
const { data } = await axios.post(`InvoiceIns/${entityId.value}/clone`);
|
||||||
|
quasar.notify({
|
||||||
|
type: 'positive',
|
||||||
|
message: t('Invoice cloned'),
|
||||||
|
});
|
||||||
|
router.push({ path: `/invoice-in/${data.id}/summary` });
|
||||||
|
}
|
||||||
|
|
||||||
|
const isAdministrative = () => hasAny(['administrative']);
|
||||||
|
|
||||||
|
const isAgricultural = () =>
|
||||||
|
invoiceIn.value.supplier.sageWithholdingFk == config.value[0].sageWithholdingFk;
|
||||||
|
|
||||||
|
function showPdfInvoice() {
|
||||||
|
if (isAgricultural()) openReport(`InvoiceIns/${entityId.value}/invoice-in-pdf`);
|
||||||
|
}
|
||||||
|
|
||||||
|
function sendPdfInvoiceConfirmation() {
|
||||||
|
quasar.dialog({
|
||||||
|
component: SendEmailDialog,
|
||||||
|
componentProps: {
|
||||||
|
data: {
|
||||||
|
address: invoiceIn.value.supplier.contacts[0].email,
|
||||||
|
},
|
||||||
|
promise: sendPdfInvoice,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function sendPdfInvoice({ address }) {
|
||||||
|
if (!address)
|
||||||
|
quasar.notify({
|
||||||
|
type: 'negative',
|
||||||
|
message: t(`The email can't be empty`),
|
||||||
|
});
|
||||||
|
else
|
||||||
|
return sendEmail(`InvoiceIns/${entityId.value}/invoice-in-email`, {
|
||||||
|
recipientId: invoiceIn.value.supplier.id,
|
||||||
|
recipient: address,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function triggerMenu(type) {
|
||||||
|
currentAction.value = actions[type];
|
||||||
|
if (currentAction.value.cb) currentAction.value.cb();
|
||||||
|
else openDialog(type);
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<FetchData
|
||||||
|
url="InvoiceInConfigs"
|
||||||
|
:where="{ fields: ['sageWithholdingFk'] }"
|
||||||
|
auto-load
|
||||||
|
@on-fetch="(data) => (config = data)"
|
||||||
|
/>
|
||||||
|
<!--Refactor para añadir en el arrayData-->
|
||||||
|
<CardDescriptor
|
||||||
|
ref="cardDescriptorRef"
|
||||||
|
module="InvoiceIn"
|
||||||
|
:url="`InvoiceIns/${entityId}`"
|
||||||
|
:filter="filter"
|
||||||
|
:title="data.title"
|
||||||
|
:subtitle="data.subtitle"
|
||||||
|
@on-fetch="setData"
|
||||||
|
data-key="invoiceInData"
|
||||||
|
>
|
||||||
|
<template #menu="{ entity }">
|
||||||
|
<QItem
|
||||||
|
v-if="!entity.isBooked && isAdministrative()"
|
||||||
|
v-ripple
|
||||||
|
clickable
|
||||||
|
@click="triggerMenu('book')"
|
||||||
|
>
|
||||||
|
<QItemSection>{{ t('To book') }}</QItemSection>
|
||||||
|
</QItem>
|
||||||
|
<QItem
|
||||||
|
v-if="isAdministrative()"
|
||||||
|
v-ripple
|
||||||
|
clickable
|
||||||
|
@click="triggerMenu('delete')"
|
||||||
|
>
|
||||||
|
<QItemSection>{{ t('Delete invoice') }}</QItemSection>
|
||||||
|
</QItem>
|
||||||
|
<QItem
|
||||||
|
v-if="isAdministrative()"
|
||||||
|
v-ripple
|
||||||
|
clickable
|
||||||
|
@click="triggerMenu('clone')"
|
||||||
|
>
|
||||||
|
<QItemSection>{{ t('Clone invoice') }}</QItemSection>
|
||||||
|
</QItem>
|
||||||
|
<QItem
|
||||||
|
v-if="isAgricultural()"
|
||||||
|
v-ripple
|
||||||
|
clickable
|
||||||
|
@click="triggerMenu('showPdf')"
|
||||||
|
>
|
||||||
|
<QItemSection>{{ t('Show agricultural receipt as PDF') }}</QItemSection>
|
||||||
|
</QItem>
|
||||||
|
<QItem
|
||||||
|
v-if="isAgricultural()"
|
||||||
|
v-ripple
|
||||||
|
clickable
|
||||||
|
@click="triggerMenu('sendPdf')"
|
||||||
|
>
|
||||||
|
<QItemSection
|
||||||
|
>{{ t('Send agricultural receipt as PDF') }}...</QItemSection
|
||||||
|
>
|
||||||
|
</QItem>
|
||||||
|
<QItem
|
||||||
|
v-if="entity.dmsFk"
|
||||||
|
v-ripple
|
||||||
|
clickable
|
||||||
|
@click="downloadFile(entity.dmsFk)"
|
||||||
|
>
|
||||||
|
<QItemSection>{{ t('components.smartCard.downloadFile') }}</QItemSection>
|
||||||
|
</QItem>
|
||||||
|
</template>
|
||||||
|
<template #body="{ entity }">
|
||||||
|
<VnLv :label="t('invoiceIn.card.issued')" :value="toDate(entity.issued)" />
|
||||||
|
<VnLv :label="t('invoiceIn.summary.booked')" :value="toDate(entity.booked)" />
|
||||||
|
<VnLv :label="t('invoiceIn.card.amount')" :value="toCurrency(totalAmount)" />
|
||||||
|
<VnLv
|
||||||
|
:label="t('invoiceIn.summary.supplier')"
|
||||||
|
:value="entity.supplier?.nickname"
|
||||||
|
/>
|
||||||
|
</template>
|
||||||
|
<template #actions="{ entity }">
|
||||||
|
<QCardActions>
|
||||||
|
<!--Sección proveedores no disponible-->
|
||||||
|
<!--Sección entradas no disponible-->
|
||||||
|
<QBtn
|
||||||
|
size="md"
|
||||||
|
icon="vn:ticket"
|
||||||
|
color="primary"
|
||||||
|
:to="{
|
||||||
|
name: 'InvoiceInList',
|
||||||
|
query: {
|
||||||
|
params: JSON.stringify({ supplierFk: entity.supplierFk }),
|
||||||
|
},
|
||||||
|
}"
|
||||||
|
>
|
||||||
|
<QTooltip>{{ t('invoiceOut.card.ticketList') }}</QTooltip>
|
||||||
|
</QBtn>
|
||||||
|
</QCardActions>
|
||||||
|
</template>
|
||||||
|
</CardDescriptor>
|
||||||
|
</template>
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
.q-dialog {
|
||||||
|
.q-card {
|
||||||
|
width: 35em;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
<i18n>
|
||||||
|
es:
|
||||||
|
To book: Contabilizar
|
||||||
|
Are you sure you want to book this invoice?: Estas seguro de querer asentar esta factura?
|
||||||
|
Delete invoice: Eliminar factura
|
||||||
|
Are you sure you want to delete this invoice?: Estas seguro de querer eliminar esta factura?
|
||||||
|
Invoice deleted: Factura eliminada
|
||||||
|
Clone invoice: Clonar factura
|
||||||
|
Invoice cloned: Factura clonada
|
||||||
|
Show agricultural receipt as PDF: Ver recibo agrícola como PDF
|
||||||
|
Send agricultural receipt as PDF: Enviar recibo agrícola como PDF
|
||||||
|
Are you sure you want to send it?: Estás seguro que quieres enviarlo?
|
||||||
|
Send PDF invoice: Enviar factura a PDF
|
||||||
|
</i18n>
|
|
@ -0,0 +1,294 @@
|
||||||
|
<script setup>
|
||||||
|
import { ref, computed } from 'vue';
|
||||||
|
import { useRoute } from 'vue-router';
|
||||||
|
import { useI18n } from 'vue-i18n';
|
||||||
|
import axios from 'axios';
|
||||||
|
import { toDate } from 'src/filters';
|
||||||
|
import { useArrayData } from 'src/composables/useArrayData';
|
||||||
|
import CrudModel from 'src/components/CrudModel.vue';
|
||||||
|
import FetchData from 'src/components/FetchData.vue';
|
||||||
|
import VnSelectFilter from 'src/components/common/VnSelectFilter.vue';
|
||||||
|
|
||||||
|
const route = useRoute();
|
||||||
|
const { t } = useI18n();
|
||||||
|
const arrayData = useArrayData('InvoiceIn');
|
||||||
|
const invoiceIn = computed(() => arrayData.store.data);
|
||||||
|
|
||||||
|
const rowsSelected = ref([]);
|
||||||
|
const banks = ref([]);
|
||||||
|
const invoiceInFormRef = ref();
|
||||||
|
const invoiceId = route.params.id;
|
||||||
|
|
||||||
|
const placeholder = 'yyyy/mm/dd';
|
||||||
|
|
||||||
|
const filter = {
|
||||||
|
where: {
|
||||||
|
invoiceInFk: invoiceId,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
const columns = computed(() => [
|
||||||
|
{
|
||||||
|
name: 'duedate',
|
||||||
|
label: t('Date'),
|
||||||
|
field: (row) => toDate(row.dueDated),
|
||||||
|
sortable: true,
|
||||||
|
tabIndex: 1,
|
||||||
|
align: 'left',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'bank',
|
||||||
|
label: t('Bank'),
|
||||||
|
field: (row) => row.bankFk,
|
||||||
|
options: banks.value,
|
||||||
|
model: 'bankFk',
|
||||||
|
optionValue: 'id',
|
||||||
|
optionLabel: 'bank',
|
||||||
|
sortable: true,
|
||||||
|
tabIndex: 2,
|
||||||
|
align: 'left',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'amount',
|
||||||
|
label: t('Amount'),
|
||||||
|
field: (row) => row.amount,
|
||||||
|
sortable: true,
|
||||||
|
tabIndex: 3,
|
||||||
|
align: 'left',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'foreignvalue',
|
||||||
|
label: t('Foreign value'),
|
||||||
|
field: (row) => row.foreignValue,
|
||||||
|
sortable: true,
|
||||||
|
tabIndex: 4,
|
||||||
|
align: 'left',
|
||||||
|
},
|
||||||
|
]);
|
||||||
|
|
||||||
|
const isNotEuro = (code) => code != 'EUR';
|
||||||
|
|
||||||
|
async function insert() {
|
||||||
|
await axios.post('/InvoiceInDueDays/new ', { id: +invoiceId });
|
||||||
|
await invoiceInFormRef.value.reload();
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
<template>
|
||||||
|
<FetchData url="Banks" auto-load limit="30" @on-fetch="(data) => (banks = data)" />
|
||||||
|
<CrudModel
|
||||||
|
v-if="invoiceIn"
|
||||||
|
ref="invoiceInFormRef"
|
||||||
|
data-key="InvoiceInDueDays"
|
||||||
|
url="InvoiceInDueDays"
|
||||||
|
:filter="filter"
|
||||||
|
auto-load
|
||||||
|
:data-required="{ invoiceInFk: invoiceId }"
|
||||||
|
v-model:selected="rowsSelected"
|
||||||
|
@on-fetch="(data) => (areRows = !!data.length)"
|
||||||
|
>
|
||||||
|
<template #body="{ rows }">
|
||||||
|
<QTable
|
||||||
|
v-model:selected="rowsSelected"
|
||||||
|
selection="multiple"
|
||||||
|
:columns="columns"
|
||||||
|
:rows="rows"
|
||||||
|
row-key="$index"
|
||||||
|
hide-pagination
|
||||||
|
:grid="$q.screen.lt.sm"
|
||||||
|
>
|
||||||
|
<template #body-cell-duedate="{ row }">
|
||||||
|
<QTd>
|
||||||
|
<QInput
|
||||||
|
v-model="row.dueDated"
|
||||||
|
mask="date"
|
||||||
|
:placeholder="placeholder"
|
||||||
|
clearable
|
||||||
|
clear-icon="close"
|
||||||
|
>
|
||||||
|
<template #append>
|
||||||
|
<QIcon name="event" class="cursor-pointer">
|
||||||
|
<QPopupProxy
|
||||||
|
cover
|
||||||
|
transition-show="scale"
|
||||||
|
transition-hide="scale"
|
||||||
|
>
|
||||||
|
<QDate v-model="row.dueDated" landscape>
|
||||||
|
<div
|
||||||
|
class="row items-center justify-end q-gutter-sm"
|
||||||
|
>
|
||||||
|
<QBtn
|
||||||
|
:label="t('globals.cancel')"
|
||||||
|
color="primary"
|
||||||
|
flat
|
||||||
|
v-close-popup
|
||||||
|
/>
|
||||||
|
<QBtn
|
||||||
|
:label="t('globals.confirm')"
|
||||||
|
color="primary"
|
||||||
|
flat
|
||||||
|
v-close-popup
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</QDate>
|
||||||
|
</QPopupProxy>
|
||||||
|
</QIcon>
|
||||||
|
</template>
|
||||||
|
</QInput>
|
||||||
|
</QTd>
|
||||||
|
</template>
|
||||||
|
<template #body-cell-bank="{ row, col }">
|
||||||
|
<QTd>
|
||||||
|
<VnSelectFilter
|
||||||
|
v-model="row[col.model]"
|
||||||
|
:options="col.options"
|
||||||
|
:option-value="col.optionValue"
|
||||||
|
:option-label="col.optionLabel"
|
||||||
|
>
|
||||||
|
<template #option="scope">
|
||||||
|
<QItem v-bind="scope.itemProps">
|
||||||
|
<QItemSection>
|
||||||
|
<QItemLabel>{{
|
||||||
|
`${scope.opt.id}: ${scope.opt.bank}`
|
||||||
|
}}</QItemLabel>
|
||||||
|
</QItemSection>
|
||||||
|
</QItem>
|
||||||
|
</template>
|
||||||
|
</VnSelectFilter>
|
||||||
|
</QTd>
|
||||||
|
</template>
|
||||||
|
<template #body-cell-amount="{ row }">
|
||||||
|
<QTd>
|
||||||
|
<QInput v-model="row.amount" clearable clear-icon="close" />
|
||||||
|
</QTd>
|
||||||
|
</template>
|
||||||
|
<template #body-cell-foreignvalue="{ row }">
|
||||||
|
<QTd>
|
||||||
|
<QInput
|
||||||
|
:class="{
|
||||||
|
'no-pointer-events': !isNotEuro(invoiceIn.currency.code),
|
||||||
|
}"
|
||||||
|
:disable="!isNotEuro(invoiceIn.currency.code)"
|
||||||
|
v-model="row.foreignValue"
|
||||||
|
clearable
|
||||||
|
clear-icon="close"
|
||||||
|
/>
|
||||||
|
</QTd>
|
||||||
|
</template>
|
||||||
|
<template #item="props">
|
||||||
|
<div class="q-pa-xs col-xs-12 col-sm-6 grid-style-transition">
|
||||||
|
<QCard>
|
||||||
|
<QCardSection>
|
||||||
|
<QCheckbox v-model="props.selected" dense />
|
||||||
|
</QCardSection>
|
||||||
|
<QSeparator />
|
||||||
|
<QList>
|
||||||
|
<QItem>
|
||||||
|
<QInput
|
||||||
|
class="full-width"
|
||||||
|
:label="t('Date')"
|
||||||
|
v-model="props.row.dueDated"
|
||||||
|
mask="date"
|
||||||
|
:placeholder="placeholder"
|
||||||
|
clearable
|
||||||
|
clear-icon="close"
|
||||||
|
>
|
||||||
|
<template #append>
|
||||||
|
<QIcon name="event" class="cursor-pointer">
|
||||||
|
<QPopupProxy
|
||||||
|
cover
|
||||||
|
transition-show="scale"
|
||||||
|
transition-hide="scale"
|
||||||
|
>
|
||||||
|
<QDate
|
||||||
|
v-model="props.row.dueDated"
|
||||||
|
landscape
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="row items-center justify-end q-gutter-sm"
|
||||||
|
>
|
||||||
|
<QBtn
|
||||||
|
:label="
|
||||||
|
t('globals.cancel')
|
||||||
|
"
|
||||||
|
color="primary"
|
||||||
|
flat
|
||||||
|
v-close-popup
|
||||||
|
/>
|
||||||
|
<QBtn
|
||||||
|
:label="
|
||||||
|
t('globals.confirm')
|
||||||
|
"
|
||||||
|
color="primary"
|
||||||
|
flat
|
||||||
|
v-close-popup
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</QDate>
|
||||||
|
</QPopupProxy>
|
||||||
|
</QIcon>
|
||||||
|
</template>
|
||||||
|
</QInput>
|
||||||
|
</QItem>
|
||||||
|
<QItem>
|
||||||
|
<VnSelectFilter
|
||||||
|
:label="t('Bank')"
|
||||||
|
class="full-width"
|
||||||
|
v-model="props.row['bankFk']"
|
||||||
|
:options="banks"
|
||||||
|
option-value="id"
|
||||||
|
option-label="bank"
|
||||||
|
>
|
||||||
|
<template #option="scope">
|
||||||
|
<QItem v-bind="scope.itemProps">
|
||||||
|
<QItemSection>
|
||||||
|
<QItemLabel>{{
|
||||||
|
`${scope.opt.id}: ${scope.opt.bank}`
|
||||||
|
}}</QItemLabel>
|
||||||
|
</QItemSection>
|
||||||
|
</QItem>
|
||||||
|
</template>
|
||||||
|
</VnSelectFilter>
|
||||||
|
</QItem>
|
||||||
|
<QItem>
|
||||||
|
<QInput
|
||||||
|
:label="t('Amount')"
|
||||||
|
class="full-width"
|
||||||
|
v-model="props.row.amount"
|
||||||
|
clearable
|
||||||
|
clear-icon="close"
|
||||||
|
/>
|
||||||
|
</QItem>
|
||||||
|
<QItem>
|
||||||
|
<QInput
|
||||||
|
:label="t('Foreign value')"
|
||||||
|
class="full-width"
|
||||||
|
:class="{
|
||||||
|
'no-pointer-events': !isNotEuro(
|
||||||
|
invoiceIn.currency.code
|
||||||
|
),
|
||||||
|
}"
|
||||||
|
:disable="!isNotEuro(invoiceIn.currency.code)"
|
||||||
|
v-model="props.row.foreignValue"
|
||||||
|
clearable
|
||||||
|
clear-icon="close"
|
||||||
|
/>
|
||||||
|
</QItem>
|
||||||
|
</QList>
|
||||||
|
</QCard>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
</QTable>
|
||||||
|
</template>
|
||||||
|
</CrudModel>
|
||||||
|
<QPageSticky position="bottom-right" :offset="[25, 25]">
|
||||||
|
<QBtn color="primary" icon="add" size="lg" round @click="insert" />
|
||||||
|
</QPageSticky>
|
||||||
|
</template>
|
||||||
|
<style lang="scss" scoped></style>
|
||||||
|
<i18n>
|
||||||
|
es:
|
||||||
|
Date: Fecha
|
||||||
|
Bank: Caja
|
||||||
|
Amount: Importe
|
||||||
|
Foreign value: Divisa
|
||||||
|
</i18n>
|
|
@ -0,0 +1,280 @@
|
||||||
|
<script setup>
|
||||||
|
import { computed, ref } from 'vue';
|
||||||
|
import { useRoute } from 'vue-router';
|
||||||
|
import { useI18n } from 'vue-i18n';
|
||||||
|
import { toCurrency } from 'src/filters';
|
||||||
|
import CrudModel from 'src/components/CrudModel.vue';
|
||||||
|
import FetchData from 'src/components/FetchData.vue';
|
||||||
|
import VnSelectFilter from 'src/components/common/VnSelectFilter.vue';
|
||||||
|
import VnLv from 'src/components/ui/VnLv.vue';
|
||||||
|
|
||||||
|
const { t } = useI18n();
|
||||||
|
const route = useRoute();
|
||||||
|
|
||||||
|
const invoceInIntrastat = ref([]);
|
||||||
|
const amountTotal = computed(() => getTotal('amount'));
|
||||||
|
const netTotal = computed(() => getTotal('net'));
|
||||||
|
const stemsTotal = computed(() => getTotal('stems'));
|
||||||
|
const rowsSelected = ref([]);
|
||||||
|
const countries = ref([]);
|
||||||
|
const intrastats = ref([]);
|
||||||
|
const invoiceInFormRef = ref();
|
||||||
|
|
||||||
|
const filter = {
|
||||||
|
where: {
|
||||||
|
invoiceInFk: route.params.id,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
const columns = computed(() => [
|
||||||
|
{
|
||||||
|
name: 'code',
|
||||||
|
label: t('Code'),
|
||||||
|
field: (row) => row.intrastatFk,
|
||||||
|
options: intrastats.value,
|
||||||
|
model: 'intrastatFk',
|
||||||
|
optionValue: 'id',
|
||||||
|
optionLabel: 'description',
|
||||||
|
sortable: true,
|
||||||
|
tabIndex: 1,
|
||||||
|
align: 'left',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'amount',
|
||||||
|
label: t('amount'),
|
||||||
|
field: (row) => row.amount,
|
||||||
|
sortable: true,
|
||||||
|
tabIndex: 2,
|
||||||
|
align: 'left',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'net',
|
||||||
|
label: t('net'),
|
||||||
|
field: (row) => row.net,
|
||||||
|
sortable: true,
|
||||||
|
tabIndex: 3,
|
||||||
|
align: 'left',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'stems',
|
||||||
|
label: t('stems'),
|
||||||
|
field: (row) => row.stems,
|
||||||
|
sortable: true,
|
||||||
|
tabIndex: 4,
|
||||||
|
align: 'left',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'country',
|
||||||
|
label: t('country'),
|
||||||
|
field: (row) => row.countryFk,
|
||||||
|
options: countries.value,
|
||||||
|
model: 'countryFk',
|
||||||
|
optionValue: 'id',
|
||||||
|
optionLabel: 'code',
|
||||||
|
sortable: true,
|
||||||
|
tabIndex: 5,
|
||||||
|
align: 'left',
|
||||||
|
},
|
||||||
|
]);
|
||||||
|
|
||||||
|
function getTotal(type) {
|
||||||
|
if (!invoceInIntrastat.value.length) return 0.0;
|
||||||
|
return invoceInIntrastat.value.reduce(
|
||||||
|
(total, intrastat) => total + intrastat[type],
|
||||||
|
0.0
|
||||||
|
);
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
<template>
|
||||||
|
<FetchData
|
||||||
|
url="Countries"
|
||||||
|
auto-load
|
||||||
|
@on-fetch="(data) => (countries = data)"
|
||||||
|
sort-by="country"
|
||||||
|
/>
|
||||||
|
<FetchData
|
||||||
|
url="Intrastats"
|
||||||
|
sort-by="id"
|
||||||
|
auto-load
|
||||||
|
@on-fetch="(data) => (intrastats = data)"
|
||||||
|
/>
|
||||||
|
<div class="invoiceIn-intrastat">
|
||||||
|
<QCard v-if="invoceInIntrastat.length" class="full-width q-mb-md q-pa-sm">
|
||||||
|
<QItem class="justify-end">
|
||||||
|
<div>
|
||||||
|
<QItemLabel>
|
||||||
|
<VnLv
|
||||||
|
:label="t('Total amount')"
|
||||||
|
:value="toCurrency(amountTotal)"
|
||||||
|
/>
|
||||||
|
</QItemLabel>
|
||||||
|
<QItemLabel>
|
||||||
|
<VnLv :label="t('Total net')" :value="netTotal" />
|
||||||
|
</QItemLabel>
|
||||||
|
<QItemLabel>
|
||||||
|
<VnLv :label="t('Total stems')" :value="stemsTotal" />
|
||||||
|
</QItemLabel>
|
||||||
|
</div>
|
||||||
|
</QItem>
|
||||||
|
</QCard>
|
||||||
|
<CrudModel
|
||||||
|
ref="invoiceInFormRef"
|
||||||
|
data-key="InvoiceInIntrastats"
|
||||||
|
url="InvoiceInIntrastats"
|
||||||
|
auto-load
|
||||||
|
:data-required="{ invoiceInFk: route.params.id }"
|
||||||
|
:filter="filter"
|
||||||
|
v-model:selected="rowsSelected"
|
||||||
|
@on-fetch="(data) => (invoceInIntrastat = data)"
|
||||||
|
>
|
||||||
|
<template #body="{ rows }">
|
||||||
|
<QTable
|
||||||
|
v-model:selected="rowsSelected"
|
||||||
|
selection="multiple"
|
||||||
|
:columns="columns"
|
||||||
|
:rows="rows"
|
||||||
|
row-key="$index"
|
||||||
|
hide-pagination
|
||||||
|
:grid="$q.screen.lt.sm"
|
||||||
|
>
|
||||||
|
<template #body-cell="{ row, col }">
|
||||||
|
<QTd>
|
||||||
|
<QInput
|
||||||
|
v-model="row[col.name]"
|
||||||
|
clearable
|
||||||
|
clear-icon="close"
|
||||||
|
/>
|
||||||
|
</QTd>
|
||||||
|
</template>
|
||||||
|
<template #body-cell-code="{ row, col }">
|
||||||
|
<QTd>
|
||||||
|
<VnSelectFilter
|
||||||
|
v-model="row[col.model]"
|
||||||
|
:options="col.options"
|
||||||
|
option-value="id"
|
||||||
|
option-label="description"
|
||||||
|
:filter-options="['id', 'description']"
|
||||||
|
>
|
||||||
|
<template #option="scope">
|
||||||
|
<QItem v-bind="scope.itemProps">
|
||||||
|
{{ `${scope.opt.id}: ${scope.opt.description}` }}
|
||||||
|
</QItem>
|
||||||
|
</template>
|
||||||
|
</VnSelectFilter>
|
||||||
|
</QTd>
|
||||||
|
</template>
|
||||||
|
<template #body-cell-country="{ row, col }">
|
||||||
|
<QTd>
|
||||||
|
<VnSelectFilter
|
||||||
|
v-model="row[col.model]"
|
||||||
|
:options="col.options"
|
||||||
|
option-value="id"
|
||||||
|
option-label="code"
|
||||||
|
/>
|
||||||
|
</QTd>
|
||||||
|
</template>
|
||||||
|
<template #item="props">
|
||||||
|
<div class="q-pa-xs col-xs-12 col-sm-6 grid-style-transition">
|
||||||
|
<QCard>
|
||||||
|
<QCardSection>
|
||||||
|
<QCheckbox v-model="props.selected" dense />
|
||||||
|
</QCardSection>
|
||||||
|
<QSeparator />
|
||||||
|
<QList>
|
||||||
|
<QItem>
|
||||||
|
<VnSelectFilter
|
||||||
|
:label="t('code')"
|
||||||
|
class="full-width"
|
||||||
|
v-model="props.row['intrastatFk']"
|
||||||
|
:options="intrastats"
|
||||||
|
option-value="id"
|
||||||
|
option-label="description"
|
||||||
|
:filter-options="['id', 'description']"
|
||||||
|
>
|
||||||
|
<template #option="scope">
|
||||||
|
<QItem v-bind="scope.itemProps">
|
||||||
|
{{
|
||||||
|
`${scope.opt.id}: ${scope.opt.description}`
|
||||||
|
}}
|
||||||
|
</QItem>
|
||||||
|
</template>
|
||||||
|
</VnSelectFilter>
|
||||||
|
</QItem>
|
||||||
|
<QItem
|
||||||
|
v-for="(value, index) of [
|
||||||
|
'amount',
|
||||||
|
'net',
|
||||||
|
'stems',
|
||||||
|
]"
|
||||||
|
:key="index"
|
||||||
|
>
|
||||||
|
<QInput
|
||||||
|
:label="t(value)"
|
||||||
|
class="full-width"
|
||||||
|
v-model="props.row[value]"
|
||||||
|
clearable
|
||||||
|
clear-icon="close"
|
||||||
|
/>
|
||||||
|
</QItem>
|
||||||
|
<QItem>
|
||||||
|
<VnSelectFilter
|
||||||
|
:label="t('country')"
|
||||||
|
class="full-width"
|
||||||
|
v-model="props.row['countryFk']"
|
||||||
|
:options="countries"
|
||||||
|
option-value="id"
|
||||||
|
option-label="code"
|
||||||
|
/>
|
||||||
|
</QItem>
|
||||||
|
</QList>
|
||||||
|
</QCard>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
</QTable>
|
||||||
|
</template>
|
||||||
|
</CrudModel>
|
||||||
|
</div>
|
||||||
|
<QPageSticky position="bottom-right" :offset="[25, 25]">
|
||||||
|
<QBtn
|
||||||
|
color="primary"
|
||||||
|
icon="add"
|
||||||
|
size="lg"
|
||||||
|
round
|
||||||
|
@click="invoiceInFormRef.insert()"
|
||||||
|
/>
|
||||||
|
</QPageSticky>
|
||||||
|
</template>
|
||||||
|
<style lang="scss">
|
||||||
|
.invoiceIn-intrastat {
|
||||||
|
> .q-card {
|
||||||
|
.vn-label-value {
|
||||||
|
display: flex;
|
||||||
|
gap: 1em;
|
||||||
|
|
||||||
|
.label {
|
||||||
|
flex: 1;
|
||||||
|
}
|
||||||
|
.value {
|
||||||
|
flex: 0.5;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
<style lang="scss" scoped></style>
|
||||||
|
<i18n>
|
||||||
|
en:
|
||||||
|
amount: Amount
|
||||||
|
net: Net
|
||||||
|
stems: Stems
|
||||||
|
country: Country
|
||||||
|
es:
|
||||||
|
Code: Código
|
||||||
|
amount: Cantidad
|
||||||
|
net: Neto
|
||||||
|
stems: Tallos
|
||||||
|
country: País
|
||||||
|
Total amount: Total importe
|
||||||
|
Total net: Total neto
|
||||||
|
Total stems: Total tallos
|
||||||
|
</i18n>
|
|
@ -0,0 +1,428 @@
|
||||||
|
<script setup>
|
||||||
|
import { onMounted, ref, computed } from 'vue';
|
||||||
|
import { useRoute } from 'vue-router';
|
||||||
|
import { useI18n } from 'vue-i18n';
|
||||||
|
import { toCurrency, toDate } from 'src/filters';
|
||||||
|
import { getUrl } from 'src/composables/getUrl';
|
||||||
|
import CardSummary from 'components/ui/CardSummary.vue';
|
||||||
|
import VnLv from 'src/components/ui/VnLv.vue';
|
||||||
|
|
||||||
|
onMounted(async () => {
|
||||||
|
salixUrl.value = await getUrl('');
|
||||||
|
invoiceInUrl.value = salixUrl.value + `invoiceIn/${entityId.value}/`;
|
||||||
|
});
|
||||||
|
|
||||||
|
const route = useRoute();
|
||||||
|
const { t } = useI18n();
|
||||||
|
|
||||||
|
const $props = defineProps({
|
||||||
|
id: {
|
||||||
|
type: Number,
|
||||||
|
default: 0,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
const entityId = computed(() => $props.id || route.params.id);
|
||||||
|
|
||||||
|
const salixUrl = ref();
|
||||||
|
const invoiceInUrl = ref();
|
||||||
|
const amountsNotMatch = ref(null);
|
||||||
|
const intrastatTotals = ref({});
|
||||||
|
|
||||||
|
const vatColumns = ref([
|
||||||
|
{
|
||||||
|
name: 'expense',
|
||||||
|
label: 'invoiceIn.summary.expense',
|
||||||
|
field: (row) => row.expenseFk,
|
||||||
|
sortable: true,
|
||||||
|
align: 'left',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'landed',
|
||||||
|
label: 'invoiceIn.summary.taxableBase',
|
||||||
|
field: (row) => row.taxableBase,
|
||||||
|
format: (value) => toCurrency(value),
|
||||||
|
sortable: true,
|
||||||
|
align: 'left',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'vat',
|
||||||
|
label: 'invoiceIn.summary.sageVat',
|
||||||
|
field: (row) => row.taxTypeSage?.vat,
|
||||||
|
format: (value) => value,
|
||||||
|
sortable: true,
|
||||||
|
align: 'left',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'transaction',
|
||||||
|
label: 'invoiceIn.summary.sageTransaction',
|
||||||
|
field: (row) => row.transactionTypeSage?.transaction,
|
||||||
|
format: (value) => value,
|
||||||
|
sortable: true,
|
||||||
|
align: 'left',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'rate',
|
||||||
|
label: 'invoiceIn.summary.rate',
|
||||||
|
field: (row) => taxRate(row.taxableBase, row.taxTypeSage?.rate),
|
||||||
|
format: (value) => toCurrency(value),
|
||||||
|
sortable: true,
|
||||||
|
align: 'left',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'currency',
|
||||||
|
label: 'invoiceIn.summary.currency',
|
||||||
|
field: (row) => row.foreignValue,
|
||||||
|
format: (value) => value,
|
||||||
|
sortable: true,
|
||||||
|
align: 'left',
|
||||||
|
},
|
||||||
|
]);
|
||||||
|
|
||||||
|
const dueDayColumns = ref([
|
||||||
|
{
|
||||||
|
name: 'date',
|
||||||
|
label: 'invoiceIn.summary.dueDay',
|
||||||
|
field: (row) => toDate(row.dueDated),
|
||||||
|
sortable: true,
|
||||||
|
align: 'left',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'bank',
|
||||||
|
label: 'invoiceIn.summary.bank',
|
||||||
|
field: (row) => row.bank.bank,
|
||||||
|
sortable: true,
|
||||||
|
align: 'left',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'amount',
|
||||||
|
label: 'invoiceIn.summary.amount',
|
||||||
|
field: (row) => row.amount,
|
||||||
|
format: (value) => toCurrency(value),
|
||||||
|
sortable: true,
|
||||||
|
align: 'left',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'landed',
|
||||||
|
label: 'invoiceIn.summary.foreignValue',
|
||||||
|
field: (row) => row.foreignValue,
|
||||||
|
format: (value) => value,
|
||||||
|
sortable: true,
|
||||||
|
align: 'left',
|
||||||
|
},
|
||||||
|
]);
|
||||||
|
|
||||||
|
const intrastatColumns = ref([
|
||||||
|
{
|
||||||
|
name: 'code',
|
||||||
|
label: 'invoiceIn.summary.code',
|
||||||
|
field: (row) => {
|
||||||
|
return `${row.intrastat.id}: ${row.intrastat?.description}`;
|
||||||
|
},
|
||||||
|
sortable: true,
|
||||||
|
align: 'left',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'amount',
|
||||||
|
label: 'invoiceIn.summary.amount',
|
||||||
|
field: (row) => toCurrency(row.amount),
|
||||||
|
sortable: true,
|
||||||
|
align: 'left',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'net',
|
||||||
|
label: 'invoiceIn.summary.net',
|
||||||
|
field: (row) => row.net,
|
||||||
|
sortable: true,
|
||||||
|
align: 'left',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'stems',
|
||||||
|
label: 'invoiceIn.summary.stems',
|
||||||
|
field: (row) => row.stems,
|
||||||
|
format: (value) => value,
|
||||||
|
sortable: true,
|
||||||
|
align: 'left',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'landed',
|
||||||
|
label: 'invoiceIn.summary.country',
|
||||||
|
field: (row) => row.country?.code,
|
||||||
|
format: (value) => value,
|
||||||
|
sortable: true,
|
||||||
|
align: 'left',
|
||||||
|
},
|
||||||
|
]);
|
||||||
|
|
||||||
|
function getAmountNotMatch(totals) {
|
||||||
|
return (
|
||||||
|
totals.totalDueDay != totals.totalTaxableBase &&
|
||||||
|
totals.totalDueDay != totals.totalVat
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
function getIntrastatTotals(intrastat) {
|
||||||
|
const totals = {
|
||||||
|
amount: intrastat.reduce((acc, cur) => acc + cur.amount, 0),
|
||||||
|
net: intrastat.reduce((acc, cur) => acc + cur.net, 0),
|
||||||
|
stems: intrastat.reduce((acc, cur) => acc + cur.stems, 0),
|
||||||
|
};
|
||||||
|
|
||||||
|
return totals;
|
||||||
|
}
|
||||||
|
|
||||||
|
function getTaxTotal(tax) {
|
||||||
|
return tax.reduce(
|
||||||
|
(acc, cur) => acc + taxRate(cur.taxableBase, cur.taxTypeSage?.rate),
|
||||||
|
0
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
function setData(entity) {
|
||||||
|
if (!entity) return false;
|
||||||
|
|
||||||
|
amountsNotMatch.value = getAmountNotMatch(entity.totals);
|
||||||
|
|
||||||
|
if (entity.invoiceInIntrastat.length)
|
||||||
|
intrastatTotals.value = { ...getIntrastatTotals(entity.invoiceInIntrastat) };
|
||||||
|
}
|
||||||
|
|
||||||
|
function taxRate(taxableBase = 0, rate = 0) {
|
||||||
|
return (rate / 100) * taxableBase;
|
||||||
|
}
|
||||||
|
|
||||||
|
function getLink(param) {
|
||||||
|
return `#/invoice-in/${entityId.value}/${param}`;
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<CardSummary
|
||||||
|
ref="summary"
|
||||||
|
:url="`InvoiceIns/${entityId}/summary`"
|
||||||
|
@on-fetch="(data) => setData(data)"
|
||||||
|
>
|
||||||
|
<template #header="{ entity: invoiceIn }">
|
||||||
|
<div>{{ invoiceIn.id }} - {{ invoiceIn.supplier.name }}</div>
|
||||||
|
</template>
|
||||||
|
<template #body="{ entity: invoiceIn }">
|
||||||
|
<!--Basic Data-->
|
||||||
|
<QCard class="vn-one">
|
||||||
|
<QCardSection class="q-pa-none">
|
||||||
|
<a class="header" :href="getLink('basic-data')">
|
||||||
|
{{ t('invoiceIn.pageTitles.basicData') }}
|
||||||
|
<QIcon name="open_in_new" color="primary" />
|
||||||
|
</a>
|
||||||
|
</QCardSection>
|
||||||
|
<VnLv
|
||||||
|
:label="t('invoiceIn.summary.supplier')"
|
||||||
|
:value="invoiceIn.supplier.name"
|
||||||
|
/>
|
||||||
|
<VnLv
|
||||||
|
:label="t('invoiceIn.summary.supplierRef')"
|
||||||
|
:value="invoiceIn.supplierRef"
|
||||||
|
/>
|
||||||
|
<VnLv
|
||||||
|
:label="t('invoiceIn.summary.currency')"
|
||||||
|
:value="invoiceIn.currency.code"
|
||||||
|
/>
|
||||||
|
<VnLv
|
||||||
|
:label="t('invoiceIn.summary.docNumber')"
|
||||||
|
:value="`${invoiceIn.serial}/${invoiceIn.serialNumber}`"
|
||||||
|
/>
|
||||||
|
</QCard>
|
||||||
|
<QCard class="vn-one">
|
||||||
|
<QCardSection class="q-pa-none">
|
||||||
|
<a class="header" :href="getLink('basic-data')">
|
||||||
|
{{ t('invoiceIn.pageTitles.basicData') }}
|
||||||
|
<QIcon name="open_in_new" color="primary" />
|
||||||
|
</a>
|
||||||
|
</QCardSection>
|
||||||
|
<VnLv
|
||||||
|
:ellipsis-value="false"
|
||||||
|
:label="t('invoiceIn.summary.issued')"
|
||||||
|
:value="toDate(invoiceIn.issued)"
|
||||||
|
/>
|
||||||
|
<VnLv
|
||||||
|
:label="t('invoiceIn.summary.operated')"
|
||||||
|
:value="toDate(invoiceIn.operated)"
|
||||||
|
/>
|
||||||
|
<VnLv
|
||||||
|
:label="t('invoiceIn.summary.bookEntried')"
|
||||||
|
:value="toDate(invoiceIn.bookEntried)"
|
||||||
|
/>
|
||||||
|
<VnLv
|
||||||
|
:label="t('invoiceIn.summary.bookedDate')"
|
||||||
|
:value="toDate(invoiceIn.booked)"
|
||||||
|
/>
|
||||||
|
</QCard>
|
||||||
|
<QCard class="vn-one">
|
||||||
|
<QCardSection class="q-pa-none">
|
||||||
|
<a class="header" :href="getLink('basic-data')">
|
||||||
|
{{ t('invoiceIn.pageTitles.basicData') }}
|
||||||
|
<QIcon name="open_in_new" color="primary" />
|
||||||
|
</a>
|
||||||
|
</QCardSection>
|
||||||
|
<VnLv
|
||||||
|
:label="t('invoiceIn.summary.sage')"
|
||||||
|
:value="invoiceIn.sageWithholding.withholding"
|
||||||
|
/>
|
||||||
|
<VnLv
|
||||||
|
:label="t('invoiceIn.summary.vat')"
|
||||||
|
:value="invoiceIn.expenseDeductible?.name"
|
||||||
|
/>
|
||||||
|
<VnLv
|
||||||
|
:label="t('invoiceIn.summary.company')"
|
||||||
|
:value="invoiceIn.company.code"
|
||||||
|
/>
|
||||||
|
<VnLv
|
||||||
|
:label="t('invoiceIn.summary.booked')"
|
||||||
|
:value="invoiceIn.isBooked"
|
||||||
|
/>
|
||||||
|
</QCard>
|
||||||
|
<QCard class="vn-one">
|
||||||
|
<QCardSection class="q-pa-none">
|
||||||
|
<a class="header" :href="getLink('basic-data')">
|
||||||
|
{{ t('invoiceIn.pageTitles.basicData') }}
|
||||||
|
<QIcon name="open_in_new" color="primary" />
|
||||||
|
</a>
|
||||||
|
</QCardSection>
|
||||||
|
<QCardSection class="q-pa-none">
|
||||||
|
<div class="bordered q-px-sm q-mx-auto">
|
||||||
|
<VnLv
|
||||||
|
:label="t('invoiceIn.summary.taxableBase')"
|
||||||
|
:value="toCurrency(invoiceIn.totals.totalTaxableBase)"
|
||||||
|
/>
|
||||||
|
<VnLv
|
||||||
|
label="Total"
|
||||||
|
:value="toCurrency(invoiceIn.totals.totalVat)"
|
||||||
|
/>
|
||||||
|
<VnLv :label="t('invoiceIn.summary.dueTotal')">
|
||||||
|
<template #value>
|
||||||
|
<QChip
|
||||||
|
dense
|
||||||
|
class="q-pa-xs"
|
||||||
|
:color="amountsNotMatch ? 'negative' : 'transparent'"
|
||||||
|
:title="
|
||||||
|
amountsNotMatch
|
||||||
|
? t('invoiceIn.summary.noMatch')
|
||||||
|
: t('invoiceIn.summary.dueTotal')
|
||||||
|
"
|
||||||
|
>
|
||||||
|
{{ toCurrency(invoiceIn.totals.totalDueDay) }}
|
||||||
|
</QChip>
|
||||||
|
</template>
|
||||||
|
</VnLv>
|
||||||
|
</div>
|
||||||
|
</QCardSection>
|
||||||
|
</QCard>
|
||||||
|
<!--Vat-->
|
||||||
|
<QCard v-if="invoiceIn.invoiceInTax.length">
|
||||||
|
<a class="header" :href="getLink('vat')">
|
||||||
|
{{ t('invoiceIn.card.vat') }}
|
||||||
|
<QIcon name="open_in_new" color="primary" />
|
||||||
|
</a>
|
||||||
|
<QTable
|
||||||
|
:columns="vatColumns"
|
||||||
|
:rows="invoiceIn.invoiceInTax"
|
||||||
|
flat
|
||||||
|
hide-pagination
|
||||||
|
>
|
||||||
|
<template #header="props">
|
||||||
|
<QTr :props="props" class="bg">
|
||||||
|
<QTh v-for="col in props.cols" :key="col.name" :props="props">
|
||||||
|
{{ t(col.label) }}
|
||||||
|
</QTh>
|
||||||
|
</QTr>
|
||||||
|
</template>
|
||||||
|
<template #bottom-row>
|
||||||
|
<QTr class="bg">
|
||||||
|
<QTd></QTd>
|
||||||
|
<QTd>{{ toCurrency(invoiceIn.totals.totalTaxableBase) }}</QTd>
|
||||||
|
<QTd></QTd>
|
||||||
|
<QTd></QTd>
|
||||||
|
<QTd>{{
|
||||||
|
toCurrency(getTaxTotal(invoiceIn.invoiceInTax))
|
||||||
|
}}</QTd>
|
||||||
|
<QTd></QTd>
|
||||||
|
</QTr>
|
||||||
|
</template>
|
||||||
|
</QTable>
|
||||||
|
</QCard>
|
||||||
|
<!--Due Day-->
|
||||||
|
<QCard v-if="invoiceIn.invoiceInDueDay.length">
|
||||||
|
<a class="header" :href="getLink('due-day')">
|
||||||
|
{{ t('invoiceIn.card.dueDay') }}
|
||||||
|
<QIcon name="open_in_new" color="primary" />
|
||||||
|
</a>
|
||||||
|
<QTable
|
||||||
|
class="full-width"
|
||||||
|
:columns="dueDayColumns"
|
||||||
|
:rows="invoiceIn.invoiceInDueDay"
|
||||||
|
flat
|
||||||
|
hide-pagination
|
||||||
|
>
|
||||||
|
<template #header="props">
|
||||||
|
<QTr :props="props" class="bg">
|
||||||
|
<QTh v-for="col in props.cols" :key="col.name" :props="props">
|
||||||
|
{{ t(col.label) }}
|
||||||
|
</QTh>
|
||||||
|
</QTr>
|
||||||
|
</template>
|
||||||
|
<template #bottom-row>
|
||||||
|
<QTr class="bg">
|
||||||
|
<QTd></QTd>
|
||||||
|
<QTd></QTd>
|
||||||
|
<QTd>{{ toCurrency(invoiceIn.totals.totalDueDay) }}</QTd>
|
||||||
|
<QTd></QTd>
|
||||||
|
</QTr>
|
||||||
|
</template>
|
||||||
|
</QTable>
|
||||||
|
</QCard>
|
||||||
|
<!--Intrastat-->
|
||||||
|
<QCard v-if="invoiceIn.invoiceInIntrastat.length">
|
||||||
|
<a class="header" :href="getUrl('intrastat')">
|
||||||
|
{{ t('invoiceIn.card.intrastat') }}
|
||||||
|
<QIcon name="open_in_new" color="primary" />
|
||||||
|
</a>
|
||||||
|
<QTable
|
||||||
|
:columns="intrastatColumns"
|
||||||
|
:rows="invoiceIn.invoiceInIntrastat"
|
||||||
|
flat
|
||||||
|
hide-pagination
|
||||||
|
>
|
||||||
|
<template #header="props">
|
||||||
|
<QTr :props="props" class="bg">
|
||||||
|
<QTh v-for="col in props.cols" :key="col.name" :props="props">
|
||||||
|
{{ t(col.label) }}
|
||||||
|
</QTh>
|
||||||
|
</QTr>
|
||||||
|
</template>
|
||||||
|
<template #bottom-row>
|
||||||
|
<QTr class="bg">
|
||||||
|
<QTd></QTd>
|
||||||
|
<QTd>{{ toCurrency(intrastatTotals.amount) }}</QTd>
|
||||||
|
<QTd>{{ intrastatTotals.net }}</QTd>
|
||||||
|
<QTd>{{ intrastatTotals.stems }}</QTd>
|
||||||
|
<QTd></QTd>
|
||||||
|
</QTr>
|
||||||
|
</template>
|
||||||
|
</QTable>
|
||||||
|
</QCard>
|
||||||
|
</template>
|
||||||
|
</CardSummary>
|
||||||
|
</template>
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
.bg {
|
||||||
|
background-color: var(--vn-light-gray);
|
||||||
|
}
|
||||||
|
.bordered {
|
||||||
|
border: 1px solid var(--vn-text);
|
||||||
|
max-width: 18em;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
<i18n>
|
||||||
|
es:
|
||||||
|
Search invoice: Buscar factura emitida
|
||||||
|
You can search by invoice reference: Puedes buscar por referencia de la factura
|
||||||
|
</i18n>
|
|
@ -0,0 +1,29 @@
|
||||||
|
<script setup>
|
||||||
|
import { useDialogPluginComponent } from 'quasar';
|
||||||
|
import InvoiceInSummary from './InvoiceInSummary.vue';
|
||||||
|
|
||||||
|
const $props = defineProps({
|
||||||
|
id: {
|
||||||
|
type: Number,
|
||||||
|
required: true,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
defineEmits([...useDialogPluginComponent.emits]);
|
||||||
|
|
||||||
|
const { dialogRef, onDialogHide } = useDialogPluginComponent();
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<QDialog ref="dialogRef" @hide="onDialogHide">
|
||||||
|
<InvoiceInSummary v-if="$props.id" :id="$props.id" />
|
||||||
|
</QDialog>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style lang="scss">
|
||||||
|
.q-dialog .summary .header {
|
||||||
|
position: sticky;
|
||||||
|
z-index: $z-max;
|
||||||
|
top: 0;
|
||||||
|
}
|
||||||
|
</style>
|
|
@ -0,0 +1,500 @@
|
||||||
|
<script setup>
|
||||||
|
import { ref, computed } from 'vue';
|
||||||
|
import { useRoute } from 'vue-router';
|
||||||
|
import { useI18n } from 'vue-i18n';
|
||||||
|
import { useQuasar } from 'quasar';
|
||||||
|
import axios from 'axios';
|
||||||
|
import { useArrayData } from 'src/composables/useArrayData';
|
||||||
|
import { toCurrency } from 'src/filters';
|
||||||
|
import FetchData from 'src/components/FetchData.vue';
|
||||||
|
import VnSelectFilter from 'src/components/common/VnSelectFilter.vue';
|
||||||
|
import CrudModel from 'src/components/CrudModel.vue';
|
||||||
|
|
||||||
|
const route = useRoute();
|
||||||
|
const { t } = useI18n();
|
||||||
|
const quasar = useQuasar();
|
||||||
|
|
||||||
|
const arrayData = useArrayData('InvoiceIn');
|
||||||
|
const invoiceIn = computed(() => arrayData.store.data);
|
||||||
|
|
||||||
|
const expenses = ref([]);
|
||||||
|
const sageTaxTypes = ref([]);
|
||||||
|
const sageTransactionTypes = ref([]);
|
||||||
|
const rowsSelected = ref([]);
|
||||||
|
const newExpense = ref({
|
||||||
|
code: undefined,
|
||||||
|
isWithheld: false,
|
||||||
|
description: undefined,
|
||||||
|
});
|
||||||
|
|
||||||
|
const invoiceInFormRef = ref();
|
||||||
|
const expensesRef = ref();
|
||||||
|
const newExpenseRef = ref();
|
||||||
|
|
||||||
|
const columns = computed(() => [
|
||||||
|
{
|
||||||
|
name: 'expense',
|
||||||
|
label: t('Expense'),
|
||||||
|
field: (row) => row.expenseFk,
|
||||||
|
options: expenses.value,
|
||||||
|
model: 'expenseFk',
|
||||||
|
optionValue: 'id',
|
||||||
|
optionLabel: 'id',
|
||||||
|
sortable: true,
|
||||||
|
tabIndex: 1,
|
||||||
|
align: 'left',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'taxablebase',
|
||||||
|
label: t('Taxable base'),
|
||||||
|
field: (row) => toCurrency(row.taxableBase),
|
||||||
|
model: 'taxableBase',
|
||||||
|
sortable: true,
|
||||||
|
tabIndex: 2,
|
||||||
|
align: 'left',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'sageiva',
|
||||||
|
label: t('Sage iva'),
|
||||||
|
field: (row) => row.taxTypeSageFk,
|
||||||
|
options: sageTaxTypes.value,
|
||||||
|
model: 'taxTypeSageFk',
|
||||||
|
optionValue: 'id',
|
||||||
|
optionLabel: 'vat',
|
||||||
|
sortable: true,
|
||||||
|
tabindex: 3,
|
||||||
|
align: 'left',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'sagetransaction',
|
||||||
|
label: t('Sage transaction'),
|
||||||
|
field: (row) => row.transactionTypeSageFk,
|
||||||
|
options: sageTransactionTypes.value,
|
||||||
|
model: 'transactionTypeSageFk',
|
||||||
|
optionValue: 'id',
|
||||||
|
optionLabel: 'transaction',
|
||||||
|
sortable: true,
|
||||||
|
tabIndex: 4,
|
||||||
|
align: 'left',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'rate',
|
||||||
|
label: t('Rate'),
|
||||||
|
sortable: true,
|
||||||
|
tabIndex: 5,
|
||||||
|
field: (row) => toCurrency(taxRate(row, row.taxTypeSageFk)),
|
||||||
|
align: 'left',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'foreignvalue',
|
||||||
|
label: t('Foreign value'),
|
||||||
|
sortable: true,
|
||||||
|
tabIndex: 6,
|
||||||
|
field: (row) => row.foreignValue,
|
||||||
|
align: 'left',
|
||||||
|
},
|
||||||
|
]);
|
||||||
|
|
||||||
|
const filter = {
|
||||||
|
fields: [
|
||||||
|
'id',
|
||||||
|
'invoiceInFk',
|
||||||
|
'taxableBase',
|
||||||
|
'expenseFk',
|
||||||
|
'foreignValue',
|
||||||
|
'taxTypeSageFk',
|
||||||
|
'transactionTypeSageFk',
|
||||||
|
],
|
||||||
|
where: {
|
||||||
|
invoiceInFk: route.params.id,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
const isNotEuro = (code) => code != 'EUR';
|
||||||
|
|
||||||
|
function taxRate(invoiceInTax) {
|
||||||
|
const sageTaxTypeId = invoiceInTax.taxTypeSageFk;
|
||||||
|
const taxRateSelection = sageTaxTypes.value.find(
|
||||||
|
(transaction) => transaction.id == sageTaxTypeId
|
||||||
|
);
|
||||||
|
const taxTypeSage = taxRateSelection?.rate ?? 0;
|
||||||
|
const taxableBase = invoiceInTax?.taxableBase ?? 0;
|
||||||
|
|
||||||
|
return (taxTypeSage / 100) * taxableBase;
|
||||||
|
}
|
||||||
|
|
||||||
|
async function addExpense() {
|
||||||
|
try {
|
||||||
|
if (!newExpense.value.code) throw new Error(t(`The code can't be empty`));
|
||||||
|
if (isNaN(newExpense.value.code))
|
||||||
|
throw new Error(t(`The code have to be a number`));
|
||||||
|
if (!newExpense.value.description)
|
||||||
|
throw new Error(t(`The description can't be empty`));
|
||||||
|
|
||||||
|
const data = [
|
||||||
|
{
|
||||||
|
id: newExpense.value.code,
|
||||||
|
isWithheld: newExpense.value.isWithheld,
|
||||||
|
name: newExpense.value.description,
|
||||||
|
},
|
||||||
|
];
|
||||||
|
|
||||||
|
await axios.post(`Expenses`, data);
|
||||||
|
await expensesRef.value.fetch();
|
||||||
|
quasar.notify({
|
||||||
|
type: 'positive',
|
||||||
|
message: t('globals.dataSaved'),
|
||||||
|
});
|
||||||
|
newExpenseRef.value.hide();
|
||||||
|
} catch (error) {
|
||||||
|
quasar.notify({
|
||||||
|
type: 'negative',
|
||||||
|
message: t(`${error.message}`),
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
<template>
|
||||||
|
<FetchData
|
||||||
|
ref="expensesRef"
|
||||||
|
url="Expenses"
|
||||||
|
auto-load
|
||||||
|
@on-fetch="(data) => (expenses = data)"
|
||||||
|
/>
|
||||||
|
<FetchData url="SageTaxTypes" auto-load @on-fetch="(data) => (sageTaxTypes = data)" />
|
||||||
|
<FetchData
|
||||||
|
url="sageTransactionTypes"
|
||||||
|
auto-load
|
||||||
|
@on-fetch="(data) => (sageTransactionTypes = data)"
|
||||||
|
/>
|
||||||
|
<CrudModel
|
||||||
|
ref="invoiceInFormRef"
|
||||||
|
v-if="invoiceIn"
|
||||||
|
data-key="InvoiceInTaxes"
|
||||||
|
url="InvoiceInTaxes"
|
||||||
|
:filter="filter"
|
||||||
|
:data-required="{ invoiceInFk: route.params.id }"
|
||||||
|
auto-load
|
||||||
|
v-model:selected="rowsSelected"
|
||||||
|
>
|
||||||
|
<template #body="{ rows }">
|
||||||
|
<QTable
|
||||||
|
v-model:selected="rowsSelected"
|
||||||
|
selection="multiple"
|
||||||
|
:columns="columns"
|
||||||
|
:rows="rows"
|
||||||
|
row-key="$index"
|
||||||
|
hide-pagination
|
||||||
|
:grid="$q.screen.lt.sm"
|
||||||
|
:pagination="{ rowsPerPage: 0 }"
|
||||||
|
>
|
||||||
|
<template #body-cell-expense="{ row, col }">
|
||||||
|
<QTd auto-width>
|
||||||
|
<VnSelectFilter
|
||||||
|
v-model="row[col.model]"
|
||||||
|
:options="col.options"
|
||||||
|
:option-value="col.optionValue"
|
||||||
|
:option-label="col.optionLabel"
|
||||||
|
:filter-options="['id', 'name']"
|
||||||
|
>
|
||||||
|
<template #option="scope">
|
||||||
|
<QItem v-bind="scope.itemProps">
|
||||||
|
{{ `${scope.opt.id}: ${scope.opt.name}` }}
|
||||||
|
</QItem>
|
||||||
|
</template>
|
||||||
|
<template #append>
|
||||||
|
<QIcon
|
||||||
|
name="close"
|
||||||
|
@click.stop="value = null"
|
||||||
|
class="cursor-pointer"
|
||||||
|
/>
|
||||||
|
<QBtn
|
||||||
|
padding="xs"
|
||||||
|
round
|
||||||
|
flat
|
||||||
|
icon="add_circle"
|
||||||
|
@click.stop="newExpenseRef.show()"
|
||||||
|
>
|
||||||
|
<QTooltip>
|
||||||
|
{{ t('Create expense') }}
|
||||||
|
</QTooltip>
|
||||||
|
</QBtn>
|
||||||
|
</template>
|
||||||
|
</VnSelectFilter>
|
||||||
|
</QTd>
|
||||||
|
</template>
|
||||||
|
<template #body-cell-taxablebase="{ row }">
|
||||||
|
<QTd>
|
||||||
|
<QInput
|
||||||
|
:class="{
|
||||||
|
'no-pointer-events': isNotEuro(invoiceIn.currency.code),
|
||||||
|
}"
|
||||||
|
:disable="isNotEuro(invoiceIn.currency.code)"
|
||||||
|
label=""
|
||||||
|
clear-icon="close"
|
||||||
|
v-model="row.taxableBase"
|
||||||
|
clearable
|
||||||
|
>
|
||||||
|
<template #prepend>
|
||||||
|
<QIcon name="euro" size="xs" flat />
|
||||||
|
</template>
|
||||||
|
</QInput>
|
||||||
|
</QTd>
|
||||||
|
</template>
|
||||||
|
<template #body-cell-sageiva="{ row, col }">
|
||||||
|
<QTd>
|
||||||
|
<VnSelectFilter
|
||||||
|
v-model="row[col.model]"
|
||||||
|
:options="col.options"
|
||||||
|
:option-value="col.optionValue"
|
||||||
|
:option-label="col.optionLabel"
|
||||||
|
:filter-options="['id', 'vat']"
|
||||||
|
:autofocus="col.tabIndex == 1"
|
||||||
|
input-debounce="0"
|
||||||
|
>
|
||||||
|
<template #option="scope">
|
||||||
|
<QItem v-bind="scope.itemProps">
|
||||||
|
<QItemSection>
|
||||||
|
<QItemLabel>{{ scope.opt.vat }}</QItemLabel>
|
||||||
|
<QItemLabel>
|
||||||
|
{{ `#${scope.opt.id}` }}
|
||||||
|
</QItemLabel>
|
||||||
|
</QItemSection>
|
||||||
|
</QItem>
|
||||||
|
</template>
|
||||||
|
</VnSelectFilter>
|
||||||
|
</QTd>
|
||||||
|
</template>
|
||||||
|
<template #body-cell-sagetransaction="{ row, col }">
|
||||||
|
<QTd>
|
||||||
|
<VnSelectFilter
|
||||||
|
v-model="row[col.model]"
|
||||||
|
:options="col.options"
|
||||||
|
:option-value="col.optionValue"
|
||||||
|
:option-label="col.optionLabel"
|
||||||
|
:filter-options="['id', 'transaction']"
|
||||||
|
:autofocus="col.tabIndex == 1"
|
||||||
|
input-debounce="0"
|
||||||
|
>
|
||||||
|
<template #option="scope">
|
||||||
|
<QItem v-bind="scope.itemProps">
|
||||||
|
<QItemSection>
|
||||||
|
<QItemLabel>{{
|
||||||
|
scope.opt.transaction
|
||||||
|
}}</QItemLabel>
|
||||||
|
<QItemLabel>
|
||||||
|
{{ `#${scope.opt.id}` }}
|
||||||
|
</QItemLabel>
|
||||||
|
</QItemSection>
|
||||||
|
</QItem>
|
||||||
|
</template>
|
||||||
|
</VnSelectFilter>
|
||||||
|
</QTd>
|
||||||
|
</template>
|
||||||
|
<template #body-cell-foreignvalue="{ row }">
|
||||||
|
<QTd>
|
||||||
|
<QInput
|
||||||
|
:class="{
|
||||||
|
'no-pointer-events': !isNotEuro(invoiceIn.currency.code),
|
||||||
|
}"
|
||||||
|
:disable="!isNotEuro(invoiceIn.currency.code)"
|
||||||
|
v-model="row.foreignValue"
|
||||||
|
/>
|
||||||
|
</QTd>
|
||||||
|
</template>
|
||||||
|
<template #item="props">
|
||||||
|
<div class="q-pa-xs col-xs-12 col-sm-6 grid-style-transition">
|
||||||
|
<QCard bordered flat class="q-my-xs">
|
||||||
|
<QCardSection>
|
||||||
|
<QCheckbox v-model="props.selected" dense />
|
||||||
|
</QCardSection>
|
||||||
|
<QSeparator />
|
||||||
|
<QList>
|
||||||
|
<QItem>
|
||||||
|
<VnSelectFilter
|
||||||
|
:label="t('Expense')"
|
||||||
|
class="full-width"
|
||||||
|
v-model="props.row['expenseFk']"
|
||||||
|
:options="expenses"
|
||||||
|
option-value="id"
|
||||||
|
option-label="name"
|
||||||
|
:filter-options="['id', 'name']"
|
||||||
|
>
|
||||||
|
<template #option="scope">
|
||||||
|
<QItem v-bind="scope.itemProps">
|
||||||
|
{{ `${scope.opt.id}: ${scope.opt.name}` }}
|
||||||
|
</QItem>
|
||||||
|
</template>
|
||||||
|
</VnSelectFilter>
|
||||||
|
</QItem>
|
||||||
|
<QItem>
|
||||||
|
<QInput
|
||||||
|
:label="t('Taxable base')"
|
||||||
|
:class="{
|
||||||
|
'no-pointer-events': isNotEuro(
|
||||||
|
invoiceIn.currency.code
|
||||||
|
),
|
||||||
|
}"
|
||||||
|
class="full-width"
|
||||||
|
:disable="isNotEuro(invoiceIn.currency.code)"
|
||||||
|
clear-icon="close"
|
||||||
|
v-model="props.row.taxableBase"
|
||||||
|
clearable
|
||||||
|
>
|
||||||
|
<template #append>
|
||||||
|
<QIcon name="euro" size="xs" flat />
|
||||||
|
</template>
|
||||||
|
</QInput>
|
||||||
|
</QItem>
|
||||||
|
<QItem>
|
||||||
|
<VnSelectFilter
|
||||||
|
:label="t('Sage iva')"
|
||||||
|
class="full-width"
|
||||||
|
v-model="props.row['taxTypeSageFk']"
|
||||||
|
:options="sageTaxTypes"
|
||||||
|
option-value="id"
|
||||||
|
option-label="vat"
|
||||||
|
:filter-options="['id', 'vat']"
|
||||||
|
>
|
||||||
|
<template #option="scope">
|
||||||
|
<QItem v-bind="scope.itemProps">
|
||||||
|
<QItemSection>
|
||||||
|
<QItemLabel>{{
|
||||||
|
scope.opt.vat
|
||||||
|
}}</QItemLabel>
|
||||||
|
<QItemLabel>
|
||||||
|
{{ `#${scope.opt.id}` }}
|
||||||
|
</QItemLabel>
|
||||||
|
</QItemSection>
|
||||||
|
</QItem>
|
||||||
|
</template>
|
||||||
|
</VnSelectFilter>
|
||||||
|
</QItem>
|
||||||
|
<QItem>
|
||||||
|
<VnSelectFilter
|
||||||
|
class="full-width"
|
||||||
|
v-model="props.row['transactionTypeSageFk']"
|
||||||
|
:options="sageTransactionTypes"
|
||||||
|
option-value="id"
|
||||||
|
option-label="transaction"
|
||||||
|
:filter-options="['id', 'transaction']"
|
||||||
|
>
|
||||||
|
<template #option="scope">
|
||||||
|
<QItem v-bind="scope.itemProps">
|
||||||
|
<QItemSection>
|
||||||
|
<QItemLabel>{{
|
||||||
|
scope.opt.transaction
|
||||||
|
}}</QItemLabel>
|
||||||
|
<QItemLabel>
|
||||||
|
{{ `#${scope.opt.id}` }}
|
||||||
|
</QItemLabel>
|
||||||
|
</QItemSection>
|
||||||
|
</QItem>
|
||||||
|
</template>
|
||||||
|
</VnSelectFilter>
|
||||||
|
</QItem>
|
||||||
|
<QItem>
|
||||||
|
{{ toCurrency(taxRate(props.row)) }}
|
||||||
|
</QItem>
|
||||||
|
<QItem>
|
||||||
|
<QInput
|
||||||
|
:label="t('Foreign value')"
|
||||||
|
class="full-width"
|
||||||
|
:class="{
|
||||||
|
'no-pointer-events': !isNotEuro(
|
||||||
|
invoiceIn.currency.code
|
||||||
|
),
|
||||||
|
}"
|
||||||
|
:disable="!isNotEuro(invoiceIn.currency.code)"
|
||||||
|
v-model="props.row.foreignValue"
|
||||||
|
/>
|
||||||
|
</QItem>
|
||||||
|
</QList>
|
||||||
|
</QCard>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
</QTable>
|
||||||
|
</template>
|
||||||
|
</CrudModel>
|
||||||
|
<QDialog ref="newExpenseRef">
|
||||||
|
<QCard>
|
||||||
|
<QCardSection class="q-pb-none">
|
||||||
|
<QItem class="q-pa-none">
|
||||||
|
<span class="text-primary text-h6 full-width">
|
||||||
|
<QIcon name="edit" class="q-mr-xs" />
|
||||||
|
{{ t('New expense') }}
|
||||||
|
</span>
|
||||||
|
<QBtn icon="close" flat round dense v-close-popup />
|
||||||
|
</QItem>
|
||||||
|
</QCardSection>
|
||||||
|
<QCardSection class="q-pt-none">
|
||||||
|
<QItem>
|
||||||
|
<QInput :label="`${t('Code')}*`" v-model="newExpense.code" />
|
||||||
|
<QCheckbox
|
||||||
|
dense
|
||||||
|
size="sm"
|
||||||
|
:label="`${t('It\'s a withholding')}`"
|
||||||
|
v-model="newExpense.isWithheld"
|
||||||
|
/>
|
||||||
|
</QItem>
|
||||||
|
<QItem>
|
||||||
|
<QInput
|
||||||
|
:label="`${t('Descripction')}*`"
|
||||||
|
v-model="newExpense.description"
|
||||||
|
/>
|
||||||
|
</QItem>
|
||||||
|
</QCardSection>
|
||||||
|
<QCardActions class="justify-end">
|
||||||
|
<QBtn flat :label="t('globals.close')" color="primary" v-close-popup />
|
||||||
|
<QBtn :label="t('globals.save')" color="primary" @click="addExpense" />
|
||||||
|
</QCardActions>
|
||||||
|
</QCard>
|
||||||
|
</QDialog>
|
||||||
|
<QPageSticky position="bottom-right" :offset="[25, 25]">
|
||||||
|
<QBtn
|
||||||
|
color="primary"
|
||||||
|
icon="add"
|
||||||
|
size="lg"
|
||||||
|
round
|
||||||
|
@click="invoiceInFormRef.insert()"
|
||||||
|
/>
|
||||||
|
</QPageSticky>
|
||||||
|
</template>
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
@media (max-width: $breakpoint-xs) {
|
||||||
|
.q-dialog {
|
||||||
|
.q-card {
|
||||||
|
&__section:not(:first-child) {
|
||||||
|
.q-item {
|
||||||
|
flex-direction: column;
|
||||||
|
|
||||||
|
.q-checkbox {
|
||||||
|
margin-top: 2rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.q-item {
|
||||||
|
min-height: 0;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
<i18n>
|
||||||
|
es:
|
||||||
|
Expense: Gasto
|
||||||
|
Create expense: Crear gasto
|
||||||
|
Add tax: Crear gasto
|
||||||
|
Taxable base: Base imp.
|
||||||
|
Sage tax: Sage iva
|
||||||
|
Sage transaction: Sage transacción
|
||||||
|
Rate: Tasa
|
||||||
|
Foreign value: Divisa
|
||||||
|
New expense: Nuevo gasto
|
||||||
|
Code: Código
|
||||||
|
It's a withholding: Es una retención
|
||||||
|
Descripction: Descripción
|
||||||
|
The code can't be empty: El código no puede estar vacío
|
||||||
|
The description can't be empty: La descripción no puede estar vacía
|
||||||
|
The code have to be a number: El código debe ser un número.
|
||||||
|
</i18n>
|
|
@ -0,0 +1,307 @@
|
||||||
|
<script setup>
|
||||||
|
import { ref } from 'vue';
|
||||||
|
import { useI18n } from 'vue-i18n';
|
||||||
|
import VnSelectFilter from 'components/common/VnSelectFilter.vue';
|
||||||
|
import VnFilterPanel from 'src/components/ui/VnFilterPanel.vue';
|
||||||
|
import FetchData from 'components/FetchData.vue';
|
||||||
|
|
||||||
|
const { t } = useI18n();
|
||||||
|
const props = defineProps({
|
||||||
|
dataKey: {
|
||||||
|
type: String,
|
||||||
|
required: true,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
const suppliers = ref([]);
|
||||||
|
const suppliersRef = ref();
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<FetchData
|
||||||
|
ref="suppliersRef"
|
||||||
|
url="Suppliers"
|
||||||
|
:filter="{ fields: ['id', 'nickname'] }"
|
||||||
|
order="nickname"
|
||||||
|
limit="30"
|
||||||
|
@on-fetch="(data) => (suppliers = data)"
|
||||||
|
/>
|
||||||
|
<VnFilterPanel :data-key="props.dataKey" :search-button="true">
|
||||||
|
<template #tags="{ tag, formatFn }">
|
||||||
|
<div class="q-gutter-x-xs">
|
||||||
|
<strong>{{ t(`params.${tag.label}`) }}: </strong>
|
||||||
|
<span>{{ formatFn(tag.value) }}</span>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
<template #body="{ params, searchFn }">
|
||||||
|
<QList dense>
|
||||||
|
<QItem>
|
||||||
|
<QItemSection>
|
||||||
|
<QInput :label="t('Id or Supplier')" v-model="params.search">
|
||||||
|
<template #prepend>
|
||||||
|
<QIcon name="badge" size="sm"></QIcon>
|
||||||
|
</template>
|
||||||
|
</QInput>
|
||||||
|
</QItemSection>
|
||||||
|
</QItem>
|
||||||
|
<QItem>
|
||||||
|
<QItemSection>
|
||||||
|
<QInput
|
||||||
|
:label="t('params.supplierRef')"
|
||||||
|
v-model="params.supplierRef"
|
||||||
|
@input.
|
||||||
|
lazy-rules
|
||||||
|
>
|
||||||
|
<template #prepend>
|
||||||
|
<QIcon name="vn:client" size="sm"></QIcon>
|
||||||
|
</template>
|
||||||
|
</QInput>
|
||||||
|
</QItemSection>
|
||||||
|
</QItem>
|
||||||
|
<QItem>
|
||||||
|
<QItemSection>
|
||||||
|
<VnSelectFilter
|
||||||
|
:label="t('params.supplierFk')"
|
||||||
|
v-model="params.supplierFk"
|
||||||
|
:options="suppliers"
|
||||||
|
option-value="id"
|
||||||
|
option-label="nickname"
|
||||||
|
@input-value="suppliersRef.fetch()"
|
||||||
|
>
|
||||||
|
</VnSelectFilter>
|
||||||
|
</QItemSection>
|
||||||
|
</QItem>
|
||||||
|
<QItem>
|
||||||
|
<QItemSection>
|
||||||
|
<QInput :label="t('params.fi')" v-model="params.fi" lazy-rules>
|
||||||
|
<template #prepend>
|
||||||
|
<QIcon name="badge" size="sm"></QIcon>
|
||||||
|
</template>
|
||||||
|
</QInput>
|
||||||
|
</QItemSection>
|
||||||
|
</QItem>
|
||||||
|
<QItem>
|
||||||
|
<QItemSection>
|
||||||
|
<QInput
|
||||||
|
:label="t('params.serialNumber')"
|
||||||
|
v-model="params.serialNumber"
|
||||||
|
lazy-rules
|
||||||
|
>
|
||||||
|
<template #prepend>
|
||||||
|
<QIcon name="badge" size="sm"></QIcon>
|
||||||
|
</template>
|
||||||
|
</QInput>
|
||||||
|
</QItemSection>
|
||||||
|
</QItem>
|
||||||
|
<QItem>
|
||||||
|
<QItemSection>
|
||||||
|
<QInput
|
||||||
|
:label="t('params.serial')"
|
||||||
|
v-model="params.serial"
|
||||||
|
lazy-rules
|
||||||
|
>
|
||||||
|
<template #prepend>
|
||||||
|
<QIcon name="badge" size="sm"></QIcon>
|
||||||
|
</template>
|
||||||
|
</QInput>
|
||||||
|
</QItemSection>
|
||||||
|
</QItem>
|
||||||
|
<QItem>
|
||||||
|
<QItemSection>
|
||||||
|
<QInput :label="t('Amount')" v-model="params.amount" lazy-rules>
|
||||||
|
<template #prepend>
|
||||||
|
<QIcon name="euro" size="sm"></QIcon>
|
||||||
|
</template>
|
||||||
|
</QInput>
|
||||||
|
</QItemSection>
|
||||||
|
</QItem>
|
||||||
|
<QItem class="q-mb-md">
|
||||||
|
<QItemSection>
|
||||||
|
<QCheckbox
|
||||||
|
:label="t('params.isBooked')"
|
||||||
|
v-model="params.isBooked"
|
||||||
|
@update:model-value="searchFn()"
|
||||||
|
toggle-indeterminate
|
||||||
|
/>
|
||||||
|
</QItemSection>
|
||||||
|
</QItem>
|
||||||
|
<QExpansionItem :label="t('More options')" expand-separator>
|
||||||
|
<QItem>
|
||||||
|
<QItemSection>
|
||||||
|
<QInput
|
||||||
|
:label="t('params.awb')"
|
||||||
|
v-model="params.awbCode"
|
||||||
|
lazy-rules
|
||||||
|
>
|
||||||
|
<template #prepend>
|
||||||
|
<QIcon name="badge" size="sm"></QIcon>
|
||||||
|
</template>
|
||||||
|
</QInput>
|
||||||
|
</QItemSection>
|
||||||
|
</QItem>
|
||||||
|
<QItem>
|
||||||
|
<QItemSection>
|
||||||
|
<QInput
|
||||||
|
:label="t('params.account')"
|
||||||
|
v-model="params.account"
|
||||||
|
lazy-rules
|
||||||
|
>
|
||||||
|
<template #prepend>
|
||||||
|
<QIcon name="person" size="sm" />
|
||||||
|
</template>
|
||||||
|
</QInput>
|
||||||
|
</QItemSection>
|
||||||
|
</QItem>
|
||||||
|
<QItem>
|
||||||
|
<QItemSection>
|
||||||
|
<QInput :label="t('From')" v-model="params.from" mask="date">
|
||||||
|
<template #append>
|
||||||
|
<QIcon name="event" class="cursor-pointer">
|
||||||
|
<QPopupProxy
|
||||||
|
cover
|
||||||
|
transition-show="scale"
|
||||||
|
transition-hide="scale"
|
||||||
|
>
|
||||||
|
<QDate v-model="params.from" landscape>
|
||||||
|
<div
|
||||||
|
class="row items-center justify-end q-gutter-sm"
|
||||||
|
>
|
||||||
|
<QBtn
|
||||||
|
:label="t('globals.cancel')"
|
||||||
|
color="primary"
|
||||||
|
flat
|
||||||
|
v-close-popup
|
||||||
|
/>
|
||||||
|
<QBtn
|
||||||
|
:label="t('globals.confirm')"
|
||||||
|
color="primary"
|
||||||
|
flat
|
||||||
|
@click="save"
|
||||||
|
v-close-popup
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</QDate>
|
||||||
|
</QPopupProxy>
|
||||||
|
</QIcon>
|
||||||
|
</template>
|
||||||
|
</QInput>
|
||||||
|
</QItemSection>
|
||||||
|
</QItem>
|
||||||
|
<QItem>
|
||||||
|
<QItemSection>
|
||||||
|
<QInput :label="t('To')" v-model="params.to" mask="date">
|
||||||
|
<template #append>
|
||||||
|
<QIcon name="event" class="cursor-pointer">
|
||||||
|
<QPopupProxy
|
||||||
|
cover
|
||||||
|
transition-show="scale"
|
||||||
|
transition-hide="scale"
|
||||||
|
>
|
||||||
|
<QDate v-model="params.to" landscape>
|
||||||
|
<div
|
||||||
|
class="row items-center justify-end q-gutter-sm"
|
||||||
|
>
|
||||||
|
<QBtn
|
||||||
|
:label="t('globals.cancel')"
|
||||||
|
color="primary"
|
||||||
|
flat
|
||||||
|
v-close-popup
|
||||||
|
/>
|
||||||
|
<QBtn
|
||||||
|
:label="t('globals.confirm')"
|
||||||
|
color="primary"
|
||||||
|
flat
|
||||||
|
@click="save"
|
||||||
|
v-close-popup
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</QDate>
|
||||||
|
</QPopupProxy>
|
||||||
|
</QIcon>
|
||||||
|
</template>
|
||||||
|
</QInput>
|
||||||
|
</QItemSection>
|
||||||
|
</QItem>
|
||||||
|
<QItem>
|
||||||
|
<QItemSection>
|
||||||
|
<QInput
|
||||||
|
:label="t('Issued')"
|
||||||
|
v-model="params.issued"
|
||||||
|
mask="date"
|
||||||
|
>
|
||||||
|
<template #append>
|
||||||
|
<QIcon name="event" class="cursor-pointer">
|
||||||
|
<QPopupProxy
|
||||||
|
cover
|
||||||
|
transition-show="scale"
|
||||||
|
transition-hide="scale"
|
||||||
|
>
|
||||||
|
<QDate v-model="params.issued" landscape>
|
||||||
|
<div
|
||||||
|
class="row items-center justify-end q-gutter-sm"
|
||||||
|
>
|
||||||
|
<QBtn
|
||||||
|
:label="t('globals.cancel')"
|
||||||
|
color="primary"
|
||||||
|
flat
|
||||||
|
v-close-popup
|
||||||
|
/>
|
||||||
|
<QBtn
|
||||||
|
:label="t('globals.confirm')"
|
||||||
|
color="primary"
|
||||||
|
flat
|
||||||
|
@click="save"
|
||||||
|
v-close-popup
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</QDate>
|
||||||
|
</QPopupProxy>
|
||||||
|
</QIcon>
|
||||||
|
</template>
|
||||||
|
</QInput>
|
||||||
|
</QItemSection>
|
||||||
|
</QItem>
|
||||||
|
</QExpansionItem>
|
||||||
|
</QList>
|
||||||
|
</template>
|
||||||
|
</VnFilterPanel>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<i18n>
|
||||||
|
en:
|
||||||
|
params:
|
||||||
|
search: ID
|
||||||
|
supplierRef: Supplier ref.
|
||||||
|
supplierFk: Supplier
|
||||||
|
fi: Supplier fiscal id
|
||||||
|
clientFk: Customer
|
||||||
|
amount: Amount
|
||||||
|
created: Created
|
||||||
|
awb: AWB
|
||||||
|
dued: Dued
|
||||||
|
serialNumber: Serial Number
|
||||||
|
serial: Serial
|
||||||
|
account: Account
|
||||||
|
isBooked: is booked
|
||||||
|
es:
|
||||||
|
params:
|
||||||
|
search: Contiene
|
||||||
|
supplierRef: Ref. proveedor
|
||||||
|
supplierFk: Proveedor
|
||||||
|
clientFk: Cliente
|
||||||
|
fi: CIF proveedor
|
||||||
|
serialNumber: Num. serie
|
||||||
|
serial: Serie
|
||||||
|
awb: AWB
|
||||||
|
amount: Importe
|
||||||
|
issued: Emitida
|
||||||
|
isBooked: Conciliada
|
||||||
|
account: Cuenta
|
||||||
|
created: Creada
|
||||||
|
dued: Vencida
|
||||||
|
From: Desde
|
||||||
|
To: Hasta
|
||||||
|
Amount: Importe
|
||||||
|
Issued: Fecha factura
|
||||||
|
Id or supplier: Id o proveedor
|
||||||
|
More options: Más opciones
|
||||||
|
</i18n>
|
|
@ -0,0 +1,179 @@
|
||||||
|
<script setup>
|
||||||
|
import { ref, onMounted, onUnmounted } from 'vue';
|
||||||
|
import { useI18n } from 'vue-i18n';
|
||||||
|
import { useRouter } from 'vue-router';
|
||||||
|
import { useQuasar } from 'quasar';
|
||||||
|
import { useStateStore } from 'stores/useStateStore';
|
||||||
|
import { downloadFile } from 'src/composables/downloadFile';
|
||||||
|
import { toDate, toCurrency } from 'src/filters/index';
|
||||||
|
import VnPaginate from 'src/components/ui/VnPaginate.vue';
|
||||||
|
import VnSearchbar from 'src/components/ui/VnSearchbar.vue';
|
||||||
|
import VnLv from 'src/components/ui/VnLv.vue';
|
||||||
|
import CardList from 'src/components/ui/CardList.vue';
|
||||||
|
import InvoiceInFilter from './InvoiceInFilter.vue';
|
||||||
|
import InvoiceInSummaryDialog from './Card/InvoiceInSummaryDialog.vue';
|
||||||
|
import { getUrl } from 'src/composables/getUrl';
|
||||||
|
|
||||||
|
const stateStore = useStateStore();
|
||||||
|
const router = useRouter();
|
||||||
|
const quasar = useQuasar();
|
||||||
|
let url = ref();
|
||||||
|
const { t } = useI18n();
|
||||||
|
|
||||||
|
onMounted(async () => {
|
||||||
|
stateStore.rightDrawer = true;
|
||||||
|
url.value = await getUrl('');
|
||||||
|
});
|
||||||
|
onUnmounted(() => (stateStore.rightDrawer = false));
|
||||||
|
|
||||||
|
function navigate(id) {
|
||||||
|
router.push({ path: `/invoice-in/${id}` });
|
||||||
|
}
|
||||||
|
|
||||||
|
function viewSummary(id) {
|
||||||
|
quasar.dialog({
|
||||||
|
component: InvoiceInSummaryDialog,
|
||||||
|
componentProps: {
|
||||||
|
id,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<template v-if="stateStore.isHeaderMounted()">
|
||||||
|
<Teleport to="#searchbar">
|
||||||
|
<VnSearchbar
|
||||||
|
data-key="InvoiceInList"
|
||||||
|
:label="t('Search invoice')"
|
||||||
|
:info="t('You can search by invoice reference')"
|
||||||
|
/>
|
||||||
|
</Teleport>
|
||||||
|
<Teleport to="#actions-append">
|
||||||
|
<div class="row q-gutter-x-sm">
|
||||||
|
<QBtn
|
||||||
|
flat
|
||||||
|
@click="stateStore.toggleRightDrawer()"
|
||||||
|
round
|
||||||
|
dense
|
||||||
|
icon="menu"
|
||||||
|
>
|
||||||
|
<QTooltip bottom anchor="bottom right">
|
||||||
|
{{ t('globals.collapseMenu') }}
|
||||||
|
</QTooltip>
|
||||||
|
</QBtn>
|
||||||
|
</div>
|
||||||
|
</Teleport>
|
||||||
|
</template>
|
||||||
|
<QDrawer v-model="stateStore.rightDrawer" side="right" :width="256" show-if-above>
|
||||||
|
<QScrollArea class="fit text-grey-8">
|
||||||
|
<InvoiceInFilter data-key="InvoiceInList" />
|
||||||
|
</QScrollArea>
|
||||||
|
</QDrawer>
|
||||||
|
<QPage class="column items-center q-pa-md">
|
||||||
|
<div class="card-list">
|
||||||
|
<VnPaginate
|
||||||
|
data-key="InvoiceInList"
|
||||||
|
url="InvoiceIns/filter"
|
||||||
|
order="issued DESC, id DESC"
|
||||||
|
auto-load
|
||||||
|
>
|
||||||
|
<template #body="{ rows }">
|
||||||
|
<CardList
|
||||||
|
v-for="row of rows"
|
||||||
|
:key="row.id"
|
||||||
|
:title="row.supplierRef"
|
||||||
|
@click="navigate(row.id)"
|
||||||
|
>
|
||||||
|
<template #list-items>
|
||||||
|
<VnLv label="ID" :value="row.id" />
|
||||||
|
<VnLv
|
||||||
|
:label="t('invoiceIn.list.supplierRef')"
|
||||||
|
:value="row.supplierRef"
|
||||||
|
/>
|
||||||
|
<VnLv
|
||||||
|
:label="t('invoiceIn.list.supplier')"
|
||||||
|
:value="row.supplierName"
|
||||||
|
/>
|
||||||
|
<VnLv
|
||||||
|
:label="t('invoiceIn.list.serialNumber')"
|
||||||
|
:value="row.serialNumber"
|
||||||
|
/>
|
||||||
|
<VnLv
|
||||||
|
:label="t('invoiceIn.list.serial')"
|
||||||
|
:value="row.serial"
|
||||||
|
/>
|
||||||
|
<VnLv
|
||||||
|
:label="t('invoiceIn.list.issued')"
|
||||||
|
:value="toDate(row.issued)"
|
||||||
|
/>
|
||||||
|
<VnLv :label="t('invoiceIn.list.awb')" :value="row.awbCode" />
|
||||||
|
<VnLv
|
||||||
|
:label="t('invoiceIn.list.amount')"
|
||||||
|
:value="toCurrency(row.amount)"
|
||||||
|
/>
|
||||||
|
<VnLv :label="t('invoiceIn.list.isBooked')">
|
||||||
|
<template #value>
|
||||||
|
<QCheckbox
|
||||||
|
class="no-pointer-events"
|
||||||
|
v-model="row.isBooked"
|
||||||
|
size="xs"
|
||||||
|
:true-value="1"
|
||||||
|
:false-value="0"
|
||||||
|
/>
|
||||||
|
</template>
|
||||||
|
</VnLv>
|
||||||
|
</template>
|
||||||
|
<template #actions>
|
||||||
|
<QBtn
|
||||||
|
flat
|
||||||
|
icon="arrow_circle_right"
|
||||||
|
@click.stop="navigate(row.id)"
|
||||||
|
>
|
||||||
|
<QTooltip>
|
||||||
|
{{ t('components.smartCard.openCard') }}
|
||||||
|
</QTooltip>
|
||||||
|
</QBtn>
|
||||||
|
<QBtn flat icon="preview" @click.stop="viewSummary(row.id)">
|
||||||
|
<QTooltip>
|
||||||
|
{{ t('components.smartCard.openSummary') }}
|
||||||
|
</QTooltip>
|
||||||
|
</QBtn>
|
||||||
|
<QBtn
|
||||||
|
flat
|
||||||
|
icon="cloud_download"
|
||||||
|
@click.stop="downloadFile(row.dmsFk)"
|
||||||
|
>
|
||||||
|
<QTooltip>
|
||||||
|
{{ t('components.smartCard.downloadFile') }}
|
||||||
|
</QTooltip>
|
||||||
|
</QBtn>
|
||||||
|
</template>
|
||||||
|
</CardList>
|
||||||
|
</template>
|
||||||
|
</VnPaginate>
|
||||||
|
</div>
|
||||||
|
</QPage>
|
||||||
|
<QPageSticky position="bottom-right" :offset="[25, 25]">
|
||||||
|
<QBtn
|
||||||
|
color="primary"
|
||||||
|
icon="add"
|
||||||
|
size="lg"
|
||||||
|
round
|
||||||
|
:href="`${url}invoice-in/create`"
|
||||||
|
/>
|
||||||
|
</QPageSticky>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
.card-list {
|
||||||
|
width: 100%;
|
||||||
|
max-width: 60em;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<i18n>
|
||||||
|
es:
|
||||||
|
Search invoice: Buscar factura emitida
|
||||||
|
You can search by invoice reference: Puedes buscar por referencia de la factura
|
||||||
|
</i18n>
|
|
@ -0,0 +1,17 @@
|
||||||
|
<script setup>
|
||||||
|
import { useStateStore } from 'stores/useStateStore';
|
||||||
|
import LeftMenu from 'src/components/LeftMenu.vue';
|
||||||
|
|
||||||
|
const stateStore = useStateStore();
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<QDrawer v-model="stateStore.leftDrawer" show-if-above :width="256">
|
||||||
|
<QScrollArea class="fit text-grey-8">
|
||||||
|
<LeftMenu />
|
||||||
|
</QScrollArea>
|
||||||
|
</QDrawer>
|
||||||
|
<QPageContainer>
|
||||||
|
<RouterView></RouterView>
|
||||||
|
</QPageContainer>
|
||||||
|
</template>
|
|
@ -1,53 +1,6 @@
|
||||||
<script setup>
|
<script setup>
|
||||||
import VnLog from 'src/components/common/VnLog.vue';
|
import VnLog from 'src/components/common/VnLog.vue';
|
||||||
import { useRoute } from 'vue-router';
|
|
||||||
|
|
||||||
const route = useRoute();
|
|
||||||
|
|
||||||
const getChanges = (oldInstance, newInstance) => {
|
|
||||||
const changes = [];
|
|
||||||
Object.entries(newInstance).forEach(([key, newValue]) => {
|
|
||||||
const oldValue = oldInstance?.[key];
|
|
||||||
if (oldValue !== newValue) {
|
|
||||||
changes.push({
|
|
||||||
property: key,
|
|
||||||
before: oldValue,
|
|
||||||
after: newValue,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
});
|
|
||||||
return changes;
|
|
||||||
};
|
|
||||||
|
|
||||||
const shelvingMapper = (shelving) => ({
|
|
||||||
...shelving,
|
|
||||||
action: shelving.action,
|
|
||||||
created: shelving.creationDate,
|
|
||||||
model: shelving.changedModel,
|
|
||||||
userFk: shelving.userFk,
|
|
||||||
userName: shelving.user?.name,
|
|
||||||
changes: getChanges(shelving.oldInstance, shelving.newInstance),
|
|
||||||
});
|
|
||||||
|
|
||||||
const shelvingFilter = {
|
|
||||||
include: [
|
|
||||||
{
|
|
||||||
relation: 'user',
|
|
||||||
scope: {
|
|
||||||
fields: ['nickname', 'name'],
|
|
||||||
},
|
|
||||||
},
|
|
||||||
],
|
|
||||||
where: {
|
|
||||||
originFk: route.params.id,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
</script>
|
</script>
|
||||||
<template>
|
<template>
|
||||||
<VnLog
|
<VnLog model="Shelving" url="/ShelvingLogs"></VnLog>
|
||||||
model="Shelving"
|
|
||||||
url="/ShelvingLogs"
|
|
||||||
:mapper="shelvingMapper"
|
|
||||||
:filter="shelvingFilter"
|
|
||||||
></VnLog>
|
|
||||||
</template>
|
</template>
|
||||||
|
|
|
@ -10,6 +10,7 @@ import FetchedTags from 'components/ui/FetchedTags.vue';
|
||||||
import InvoiceOutDescriptorProxy from 'pages/InvoiceOut/Card/InvoiceOutDescriptorProxy.vue';
|
import InvoiceOutDescriptorProxy from 'pages/InvoiceOut/Card/InvoiceOutDescriptorProxy.vue';
|
||||||
import WorkerDescriptorProxy from 'pages/Worker/Card/WorkerDescriptorProxy.vue';
|
import WorkerDescriptorProxy from 'pages/Worker/Card/WorkerDescriptorProxy.vue';
|
||||||
import VnLv from 'src/components/ui/VnLv.vue';
|
import VnLv from 'src/components/ui/VnLv.vue';
|
||||||
|
import VnLinkPhone from 'src/components/ui/VnLinkPhone.vue';
|
||||||
import { getUrl } from 'src/composables/getUrl';
|
import { getUrl } from 'src/composables/getUrl';
|
||||||
|
|
||||||
onUpdated(() => summaryRef.value.fetch());
|
onUpdated(() => summaryRef.value.fetch());
|
||||||
|
@ -172,7 +173,7 @@ async function changeState(value) {
|
||||||
:label="t('ticket.summary.agency')"
|
:label="t('ticket.summary.agency')"
|
||||||
:value="ticket.agencyMode.name"
|
:value="ticket.agencyMode.name"
|
||||||
/>
|
/>
|
||||||
<VnLv :label="t('ticket.summary.zone')" :value="ticket.zone.name" />
|
<VnLv :label="t('ticket.summary.zone')" :value="ticket?.zone?.name" />
|
||||||
<VnLv
|
<VnLv
|
||||||
:label="t('ticket.summary.warehouse')"
|
:label="t('ticket.summary.warehouse')"
|
||||||
:value="ticket.warehouse?.name"
|
:value="ticket.warehouse?.name"
|
||||||
|
@ -180,7 +181,7 @@ async function changeState(value) {
|
||||||
<VnLv :label="t('ticket.summary.route')" :value="ticket.routeFk" />
|
<VnLv :label="t('ticket.summary.route')" :value="ticket.routeFk" />
|
||||||
<VnLv :label="t('ticket.summary.invoice')">
|
<VnLv :label="t('ticket.summary.invoice')">
|
||||||
<template #value>
|
<template #value>
|
||||||
<span class="link">
|
<span :class="{ link: ticket.refFk }">
|
||||||
{{ dashIfEmpty(ticket.refFk) }}
|
{{ dashIfEmpty(ticket.refFk) }}
|
||||||
<InvoiceOutDescriptorProxy
|
<InvoiceOutDescriptorProxy
|
||||||
:id="ticket.id"
|
:id="ticket.id"
|
||||||
|
@ -207,23 +208,31 @@ async function changeState(value) {
|
||||||
:label="t('ticket.summary.landed')"
|
:label="t('ticket.summary.landed')"
|
||||||
:value="toDate(ticket.landed)"
|
:value="toDate(ticket.landed)"
|
||||||
/>
|
/>
|
||||||
<VnLv :label="t('globals.packages')" :value="ticket.packages" />
|
<VnLv :label="t('global.packages')" :value="ticket.packages" />
|
||||||
<VnLv
|
<VnLv :value="ticket.address.phone">
|
||||||
:label="t('ticket.summary.consigneePhone')"
|
<template #label>
|
||||||
:value="ticket.address.phone"
|
{{ t('ticket.summary.consigneePhone') }}
|
||||||
/>
|
<VnLinkPhone :phone-number="ticket.address.phone" />
|
||||||
<VnLv
|
</template>
|
||||||
:label="t('ticket.summary.consigneeMobile')"
|
</VnLv>
|
||||||
:value="ticket.address.mobile"
|
<VnLv :value="ticket.address.mobile">
|
||||||
/>
|
<template #label>
|
||||||
<VnLv
|
{{ t('ticket.summary.consigneeMobile') }}
|
||||||
:label="t('ticket.summary.clientPhone')"
|
<VnLinkPhone :phone-number="ticket.address.mobile" />
|
||||||
:value="ticket.client.phone"
|
</template>
|
||||||
/>
|
</VnLv>
|
||||||
<VnLv
|
<VnLv :value="ticket.client.phone">
|
||||||
:label="t('ticket.summary.clientMobile')"
|
<template #label>
|
||||||
:value="ticket.client.mobile"
|
{{ t('ticket.summary.clientPhone') }}
|
||||||
/>
|
<VnLinkPhone :phone-number="ticket.client.phone" />
|
||||||
|
</template>
|
||||||
|
</VnLv>
|
||||||
|
<VnLv :value="ticket.client.mobile">
|
||||||
|
<template #label>
|
||||||
|
{{ t('ticket.summary.clientMobile') }}
|
||||||
|
<VnLinkPhone :phone-number="ticket.client.mobile" />
|
||||||
|
</template>
|
||||||
|
</VnLv>
|
||||||
<VnLv
|
<VnLv
|
||||||
:label="t('ticket.summary.consignee')"
|
:label="t('ticket.summary.consignee')"
|
||||||
:value="formattedAddress()"
|
:value="formattedAddress()"
|
||||||
|
|
|
@ -0,0 +1,154 @@
|
||||||
|
<script setup>
|
||||||
|
import { ref, onMounted } from 'vue';
|
||||||
|
import { useSession } from 'src/composables/useSession';
|
||||||
|
import { useI18n } from 'vue-i18n';
|
||||||
|
import { useQuasar } from 'quasar';
|
||||||
|
import VnConfirm from 'components/ui/VnConfirm.vue';
|
||||||
|
|
||||||
|
const quasar = useQuasar();
|
||||||
|
const { t } = useI18n();
|
||||||
|
const session = useSession();
|
||||||
|
const token = session.getToken();
|
||||||
|
|
||||||
|
const counters = ref({
|
||||||
|
alquilerBandeja: { count: 0, id: 96001, title: 'CC Bandeja', isTray: true },
|
||||||
|
bandejaRota: { count: 0, id: 88381, title: 'CC Bandeja Rota', isTray: true },
|
||||||
|
carryOficial: { count: 0, id: 96000, title: 'CC Carry OFICIAL TAG5' },
|
||||||
|
candadoRojo: { count: 0, id: 96002, title: 'CC Carry NO OFICIAL' },
|
||||||
|
sacadores: { count: 0, id: 142260, title: 'CC Sacadores' },
|
||||||
|
sinChapa: { count: 0, id: 2214, title: 'DC Carry Sin Placa CC' },
|
||||||
|
carroRoto: { count: 0, id: 142251, title: 'Carro Roto' },
|
||||||
|
});
|
||||||
|
|
||||||
|
const actions = {
|
||||||
|
add: (counter) => counter + 1,
|
||||||
|
subtract: (counter) => (counter ? counter - 1 : 0),
|
||||||
|
flush: () => 0,
|
||||||
|
addSpecific: (counter, amount) => counter + amount,
|
||||||
|
};
|
||||||
|
|
||||||
|
onMounted(() => {
|
||||||
|
const types = Object.keys(counters.value);
|
||||||
|
for (let type of types) {
|
||||||
|
const counter = localStorage.getItem(type);
|
||||||
|
counters.value[type].count = counter ? parseInt(counter) : 0;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
function getUrl(id) {
|
||||||
|
return `/api/Images/catalog/200x200/${id}/download?access_token=${token}`;
|
||||||
|
}
|
||||||
|
|
||||||
|
async function handleEvent(type, action, amount) {
|
||||||
|
const counter = counters.value[type].count;
|
||||||
|
let isOk = true;
|
||||||
|
|
||||||
|
if (action == 'flush') isOk = await confirm();
|
||||||
|
|
||||||
|
if (isOk) {
|
||||||
|
counters.value[type].count = actions[action](counter, amount);
|
||||||
|
localStorage.setItem(type, counters.value[type].count);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function confirm() {
|
||||||
|
return new Promise((resolve) => {
|
||||||
|
quasar
|
||||||
|
.dialog({
|
||||||
|
component: VnConfirm,
|
||||||
|
componentProps: {
|
||||||
|
title: t('Are you sure?'),
|
||||||
|
message: t('The counter will be reset to zero'),
|
||||||
|
},
|
||||||
|
})
|
||||||
|
.onOk(() => resolve(true))
|
||||||
|
.onCancel(() => resolve(false));
|
||||||
|
});
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
<template>
|
||||||
|
<QList class="row q-mx-auto q-mt-xl">
|
||||||
|
<QItem v-for="(props, name) in counters" :key="name" class="col-6">
|
||||||
|
<QItemSection>
|
||||||
|
<QImg
|
||||||
|
:src="getUrl(props.id)"
|
||||||
|
width="130px"
|
||||||
|
@click="handleEvent(name, 'add')"
|
||||||
|
/>
|
||||||
|
<p class="title">{{ props.title }}</p>
|
||||||
|
</QItemSection>
|
||||||
|
<QItemSection class="q-ma-none">
|
||||||
|
<QItemLabel class="text-h4">
|
||||||
|
{{ props.count }}
|
||||||
|
</QItemLabel>
|
||||||
|
<QItemLabel>
|
||||||
|
<QBtn
|
||||||
|
class="text-center q-mr-xs"
|
||||||
|
color="warning"
|
||||||
|
dense
|
||||||
|
size="sm"
|
||||||
|
v-if="props.isTray"
|
||||||
|
@click="handleEvent(name, 'addSpecific', 30)"
|
||||||
|
>
|
||||||
|
{{ t('Add 30') }}
|
||||||
|
</QBtn>
|
||||||
|
<QBtn
|
||||||
|
class="text-center q-mr-xs"
|
||||||
|
color="warning"
|
||||||
|
dense
|
||||||
|
size="sm"
|
||||||
|
v-else
|
||||||
|
@click="handleEvent(name, 'addSpecific', 10)"
|
||||||
|
>
|
||||||
|
{{ t('Add 10') }}
|
||||||
|
</QBtn>
|
||||||
|
</QItemLabel>
|
||||||
|
<QItemLabel>
|
||||||
|
<QBtn
|
||||||
|
class="text-center q-mr-xs"
|
||||||
|
color="warning"
|
||||||
|
dense
|
||||||
|
size="sm"
|
||||||
|
@click="handleEvent(name, 'subtract')"
|
||||||
|
>
|
||||||
|
{{ t('Subtract 1') }}
|
||||||
|
</QBtn>
|
||||||
|
<QBtn
|
||||||
|
class="text-center q-ml-xs"
|
||||||
|
color="red"
|
||||||
|
dense
|
||||||
|
size="sm"
|
||||||
|
@click="handleEvent(name, 'flush')"
|
||||||
|
>
|
||||||
|
{{ t('Flush') }}
|
||||||
|
</QBtn>
|
||||||
|
</QItemLabel>
|
||||||
|
</QItemSection>
|
||||||
|
<QSeparator class="q-mt-sm q-mx-none" color="primary" />
|
||||||
|
</QItem>
|
||||||
|
</QList>
|
||||||
|
</template>
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
.q-list {
|
||||||
|
max-width: 50em;
|
||||||
|
}
|
||||||
|
@media (max-width: $breakpoint-sm) {
|
||||||
|
.q-item {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
.title {
|
||||||
|
min-height: 3em;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
<i18n>
|
||||||
|
es:
|
||||||
|
Subtract 1: Quitar 1
|
||||||
|
Add 30: Añadir 30
|
||||||
|
Add 10: Añadir 10
|
||||||
|
Flush: Vaciar
|
||||||
|
Are you sure?: ¿Estás seguro?
|
||||||
|
It will set to 0: Se pondrá a 0
|
||||||
|
The counter will be reset to zero: Se pondrá el contador a cero
|
||||||
|
</i18n>
|
|
@ -5,13 +5,19 @@ import { useI18n } from 'vue-i18n';
|
||||||
import { useSession } from 'src/composables/useSession';
|
import { useSession } from 'src/composables/useSession';
|
||||||
import CardDescriptor from 'src/components/ui/CardDescriptor.vue';
|
import CardDescriptor from 'src/components/ui/CardDescriptor.vue';
|
||||||
import VnLv from 'src/components/ui/VnLv.vue';
|
import VnLv from 'src/components/ui/VnLv.vue';
|
||||||
|
import VnLinkPhone from 'src/components/ui/VnLinkPhone.vue';
|
||||||
import useCardDescription from 'src/composables/useCardDescription';
|
import useCardDescription from 'src/composables/useCardDescription';
|
||||||
|
|
||||||
const $props = defineProps({
|
const $props = defineProps({
|
||||||
id: {
|
id: {
|
||||||
type: Number,
|
type: Number,
|
||||||
required: false,
|
required: false,
|
||||||
default: null,
|
default: null,
|
||||||
},
|
},
|
||||||
|
summary: {
|
||||||
|
type: Object,
|
||||||
|
default: null,
|
||||||
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
const route = useRoute();
|
const route = useRoute();
|
||||||
|
@ -67,6 +73,7 @@ const setData = (entity) => {
|
||||||
:filter="filter"
|
:filter="filter"
|
||||||
:title="data.title"
|
:title="data.title"
|
||||||
:subtitle="data.subtitle"
|
:subtitle="data.subtitle"
|
||||||
|
:summary="$props.summary"
|
||||||
@on-fetch="
|
@on-fetch="
|
||||||
(data) => {
|
(data) => {
|
||||||
worker = data;
|
worker = data;
|
||||||
|
@ -99,8 +106,18 @@ const setData = (entity) => {
|
||||||
:label="t('worker.list.department')"
|
:label="t('worker.list.department')"
|
||||||
:value="entity.department ? entity.department.department.name : null"
|
:value="entity.department ? entity.department.department.name : null"
|
||||||
/>
|
/>
|
||||||
<VnLv :label="t('worker.card.phone')" :value="entity.phone" />
|
<VnLv :value="entity.phone">
|
||||||
<VnLv :label="t('worker.summary.sipExtension')" :value="sip" />
|
<template #label>
|
||||||
|
{{ t('worker.card.phone') }}
|
||||||
|
<VnLinkPhone :phone-number="entity.phone" />
|
||||||
|
</template>
|
||||||
|
</VnLv>
|
||||||
|
<VnLv :value="sip">
|
||||||
|
<template #label>
|
||||||
|
{{ t('worker.summary.sipExtension') }}
|
||||||
|
<VnLinkPhone v-if="sip" :phone-number="sip" />
|
||||||
|
</template>
|
||||||
|
</VnLv>
|
||||||
</template>
|
</template>
|
||||||
</CardDescriptor>
|
</CardDescriptor>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
<script setup>
|
<script setup>
|
||||||
import WorkerDescriptor from './WorkerDescriptor.vue';
|
import WorkerDescriptor from './WorkerDescriptor.vue';
|
||||||
|
import WorkerSummaryDialog from './WorkerSummaryDialog.vue';
|
||||||
|
|
||||||
const $props = defineProps({
|
const $props = defineProps({
|
||||||
id: {
|
id: {
|
||||||
|
@ -11,6 +12,10 @@ const $props = defineProps({
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<QPopupProxy>
|
<QPopupProxy>
|
||||||
<WorkerDescriptor v-if="$props.id" :id="$props.id" />
|
<WorkerDescriptor
|
||||||
|
v-if="$props.id"
|
||||||
|
:id="$props.id"
|
||||||
|
:summary="WorkerSummaryDialog"
|
||||||
|
/>
|
||||||
</QPopupProxy>
|
</QPopupProxy>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
@ -7,6 +7,7 @@ import { getUrl } from 'src/composables/getUrl';
|
||||||
import VnLv from 'src/components/ui/VnLv.vue';
|
import VnLv from 'src/components/ui/VnLv.vue';
|
||||||
import WorkerDescriptorProxy from './WorkerDescriptorProxy.vue';
|
import WorkerDescriptorProxy from './WorkerDescriptorProxy.vue';
|
||||||
import { dashIfEmpty } from 'src/filters';
|
import { dashIfEmpty } from 'src/filters';
|
||||||
|
import VnLinkPhone from 'src/components/ui/VnLinkPhone.vue';
|
||||||
|
|
||||||
const route = useRoute();
|
const route = useRoute();
|
||||||
const { t } = useI18n();
|
const { t } = useI18n();
|
||||||
|
@ -91,15 +92,24 @@ const filter = {
|
||||||
</span>
|
</span>
|
||||||
</template>
|
</template>
|
||||||
</VnLv>
|
</VnLv>
|
||||||
<VnLv
|
<VnLv :value="worker.mobileExtension">
|
||||||
:label="t('worker.summary.phoneExtension')"
|
<template #label>
|
||||||
:value="worker.mobileExtension"
|
{{ t('worker.summary.phoneExtension') }}
|
||||||
/>
|
<VnLinkPhone :phone-number="worker.mobileExtension" />
|
||||||
<VnLv :label="t('worker.summary.entPhone')" :value="worker.phone" />
|
</template>
|
||||||
<VnLv
|
</VnLv>
|
||||||
:label="t('worker.summary.personalPhone')"
|
<VnLv :value="worker.phone">
|
||||||
:value="worker.client.phone"
|
<template #label>
|
||||||
/>
|
{{ t('worker.summary.entPhone') }}
|
||||||
|
<VnLinkPhone :phone-number="worker.phone" />
|
||||||
|
</template>
|
||||||
|
</VnLv>
|
||||||
|
<VnLv :value="worker.client.phone">
|
||||||
|
<template #label>
|
||||||
|
{{ t('worker.summary.personalPhone') }}
|
||||||
|
<VnLinkPhone :phone-number="worker.client.phone" />
|
||||||
|
</template>
|
||||||
|
</VnLv>
|
||||||
<VnLv :label="t('worker.summary.locker')" :value="worker.locker" />
|
<VnLv :label="t('worker.summary.locker')" :value="worker.locker" />
|
||||||
</QCard>
|
</QCard>
|
||||||
<QCard class="vn-one">
|
<QCard class="vn-one">
|
||||||
|
@ -109,10 +119,12 @@ const filter = {
|
||||||
<VnLv :label="t('worker.summary.userId')" :value="worker.user.id" />
|
<VnLv :label="t('worker.summary.userId')" :value="worker.user.id" />
|
||||||
<VnLv :label="t('worker.card.name')" :value="worker.user.nickname" />
|
<VnLv :label="t('worker.card.name')" :value="worker.user.nickname" />
|
||||||
<VnLv :label="t('worker.summary.role')" :value="worker.user.role.name" />
|
<VnLv :label="t('worker.summary.role')" :value="worker.user.role.name" />
|
||||||
<VnLv
|
<VnLv :value="worker?.sip?.extension">
|
||||||
:label="t('worker.summary.sipExtension')"
|
<template #label>
|
||||||
:value="worker?.sip?.extension"
|
{{ t('worker.summary.sipExtension') }}
|
||||||
/>
|
<VnLinkPhone :phone-number="worker?.sip?.extension" />
|
||||||
|
</template>
|
||||||
|
</VnLv>
|
||||||
</QCard>
|
</QCard>
|
||||||
</template>
|
</template>
|
||||||
</CardSummary>
|
</CardSummary>
|
||||||
|
|
|
@ -2,6 +2,7 @@ import Customer from './customer';
|
||||||
import Ticket from './ticket';
|
import Ticket from './ticket';
|
||||||
import Claim from './claim';
|
import Claim from './claim';
|
||||||
import InvoiceOut from './invoiceOut';
|
import InvoiceOut from './invoiceOut';
|
||||||
|
import invoiceIn from './invoiceIn';
|
||||||
import Worker from './worker';
|
import Worker from './worker';
|
||||||
import Shelving from './shelving';
|
import Shelving from './shelving';
|
||||||
import Wagon from './wagon';
|
import Wagon from './wagon';
|
||||||
|
@ -20,4 +21,5 @@ export default [
|
||||||
Route,
|
Route,
|
||||||
Supplier,
|
Supplier,
|
||||||
Travel,
|
Travel,
|
||||||
|
invoiceIn,
|
||||||
];
|
];
|
||||||
|
|
|
@ -0,0 +1,98 @@
|
||||||
|
import { RouterView } from 'vue-router';
|
||||||
|
|
||||||
|
export default {
|
||||||
|
path: '/invoice-in',
|
||||||
|
name: 'InvoiceIn',
|
||||||
|
meta: {
|
||||||
|
title: 'invoiceIns',
|
||||||
|
icon: 'vn:invoice-in',
|
||||||
|
},
|
||||||
|
component: RouterView,
|
||||||
|
redirect: { name: 'InvoiceInMain' },
|
||||||
|
menus: {
|
||||||
|
main: ['InvoiceInList'],
|
||||||
|
card: [
|
||||||
|
'InvoiceInBasicData',
|
||||||
|
'InvoiceInVat',
|
||||||
|
'InvoiceInDueDay',
|
||||||
|
'InvoiceInIntrastat',
|
||||||
|
],
|
||||||
|
},
|
||||||
|
children: [
|
||||||
|
{
|
||||||
|
path: '',
|
||||||
|
name: 'InvoiceInMain',
|
||||||
|
component: () => import('src/pages/InvoiceIn/InvoiceInMain.vue'),
|
||||||
|
redirect: { name: 'InvoiceInList' },
|
||||||
|
children: [
|
||||||
|
{
|
||||||
|
path: 'list',
|
||||||
|
name: 'InvoiceInList',
|
||||||
|
meta: {
|
||||||
|
title: 'list',
|
||||||
|
icon: 'view_list',
|
||||||
|
},
|
||||||
|
component: () => import('src/pages/InvoiceIn/InvoiceInList.vue'),
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'InvoiceInCard',
|
||||||
|
path: ':id',
|
||||||
|
component: () => import('src/pages/InvoiceIn/Card/InvoiceInCard.vue'),
|
||||||
|
redirect: { name: 'InvoiceInSummary' },
|
||||||
|
children: [
|
||||||
|
{
|
||||||
|
name: 'InvoiceInSummary',
|
||||||
|
path: 'summary',
|
||||||
|
meta: {
|
||||||
|
title: 'summary',
|
||||||
|
icon: 'view_list',
|
||||||
|
},
|
||||||
|
component: () =>
|
||||||
|
import('src/pages/InvoiceIn/Card/InvoiceInSummary.vue'),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'InvoiceInBasicData',
|
||||||
|
path: 'basic-data',
|
||||||
|
meta: {
|
||||||
|
title: 'basicData',
|
||||||
|
icon: 'vn:settings',
|
||||||
|
roles: ['salesPerson'],
|
||||||
|
},
|
||||||
|
component: () =>
|
||||||
|
import('src/pages/InvoiceIn/Card/InvoiceInBasicData.vue'),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'InvoiceInVat',
|
||||||
|
path: 'vat',
|
||||||
|
meta: {
|
||||||
|
title: 'vat',
|
||||||
|
icon: 'vn:tax',
|
||||||
|
},
|
||||||
|
component: () => import('src/pages/InvoiceIn/Card/InvoiceInVat.vue'),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'InvoiceInDueDay',
|
||||||
|
path: 'due-day',
|
||||||
|
meta: {
|
||||||
|
title: 'dueDay',
|
||||||
|
icon: 'vn:calendar',
|
||||||
|
},
|
||||||
|
component: () =>
|
||||||
|
import('src/pages/InvoiceIn/Card/InvoiceInDueDay.vue'),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'InvoiceInIntrastat',
|
||||||
|
path: 'intrastat',
|
||||||
|
meta: {
|
||||||
|
title: 'intrastat',
|
||||||
|
icon: 'vn:lines',
|
||||||
|
},
|
||||||
|
component: () =>
|
||||||
|
import('src/pages/InvoiceIn/Card/InvoiceInIntrastat.vue'),
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
],
|
||||||
|
};
|
|
@ -10,7 +10,7 @@ export default {
|
||||||
component: RouterView,
|
component: RouterView,
|
||||||
redirect: { name: 'WagonMain' },
|
redirect: { name: 'WagonMain' },
|
||||||
menus: {
|
menus: {
|
||||||
main: ['WagonList', 'WagonTypeList'],
|
main: ['WagonList', 'WagonTypeList', 'WagonCounter'],
|
||||||
card: [],
|
card: [],
|
||||||
},
|
},
|
||||||
children: [
|
children: [
|
||||||
|
@ -47,6 +47,15 @@ export default {
|
||||||
},
|
},
|
||||||
component: () => import('src/pages/Wagon/WagonCreate.vue'),
|
component: () => import('src/pages/Wagon/WagonCreate.vue'),
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
path: 'counter',
|
||||||
|
name: 'WagonCounter',
|
||||||
|
meta: {
|
||||||
|
title: 'wagonCounter',
|
||||||
|
icon: 'add_circle',
|
||||||
|
},
|
||||||
|
component: () => import('src/pages/Wagon/WagonCounter.vue'),
|
||||||
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
|
@ -3,6 +3,7 @@ import ticket from './modules/ticket';
|
||||||
import claim from './modules/claim';
|
import claim from './modules/claim';
|
||||||
import worker from './modules/worker';
|
import worker from './modules/worker';
|
||||||
import invoiceOut from './modules/invoiceOut';
|
import invoiceOut from './modules/invoiceOut';
|
||||||
|
import invoiceIn from './modules/invoiceIn';
|
||||||
import wagon from './modules/wagon';
|
import wagon from './modules/wagon';
|
||||||
import supplier from './modules/Supplier';
|
import supplier from './modules/Supplier';
|
||||||
import route from './modules/route';
|
import route from './modules/route';
|
||||||
|
@ -53,6 +54,7 @@ const routes = [
|
||||||
worker,
|
worker,
|
||||||
shelving,
|
shelving,
|
||||||
invoiceOut,
|
invoiceOut,
|
||||||
|
invoiceIn,
|
||||||
wagon,
|
wagon,
|
||||||
route,
|
route,
|
||||||
supplier,
|
supplier,
|
||||||
|
|
|
@ -17,6 +17,7 @@ export const useNavigationStore = defineStore('navigationStore', () => {
|
||||||
'route',
|
'route',
|
||||||
'supplier',
|
'supplier',
|
||||||
'travel',
|
'travel',
|
||||||
|
'invoiceIn',
|
||||||
];
|
];
|
||||||
const pinnedModules = ref([]);
|
const pinnedModules = ref([]);
|
||||||
const role = useRole();
|
const role = useRole();
|
||||||
|
|
|
@ -0,0 +1,18 @@
|
||||||
|
import axios from 'axios';
|
||||||
|
import { defineStore } from 'pinia';
|
||||||
|
|
||||||
|
export const useValidationsStore = defineStore('validationsStore', {
|
||||||
|
state: () => ({
|
||||||
|
validations: null,
|
||||||
|
}),
|
||||||
|
actions: {
|
||||||
|
async fetchModels() {
|
||||||
|
try {
|
||||||
|
const { data } = await axios.get('Schemas/modelinfo');
|
||||||
|
this.validations = data;
|
||||||
|
} catch (error) {
|
||||||
|
console.error('Error al obtener las validaciones:', error);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
},
|
||||||
|
});
|
|
@ -7,7 +7,7 @@ describe('ClaimNotes', () => {
|
||||||
|
|
||||||
it('should add a new note', () => {
|
it('should add a new note', () => {
|
||||||
const message = 'This is a new message.';
|
const message = 'This is a new message.';
|
||||||
cy.get('.q-page-sticky button').click();
|
cy.get('.q-page-sticky > div > button').click();
|
||||||
cy.get('.q-dialog .q-card__section:nth-child(2)').type(message);
|
cy.get('.q-dialog .q-card__section:nth-child(2)').type(message);
|
||||||
cy.get('.q-card__actions button:nth-child(2)').click();
|
cy.get('.q-card__actions button:nth-child(2)').click();
|
||||||
cy.get('.q-card .q-card__section:nth-child(2)')
|
cy.get('.q-card .q-card__section:nth-child(2)')
|
|
@ -0,0 +1,53 @@
|
||||||
|
/// <reference types="cypress" />
|
||||||
|
describe('InvoiceInBasicData', () => {
|
||||||
|
const selects = '.q-form .q-select';
|
||||||
|
const appendBtns = 'label button';
|
||||||
|
const dialogAppendBtns = '.q-dialog label button';
|
||||||
|
const dialogInputs = '.q-dialog input';
|
||||||
|
const dialogActionBtns = '.q-card__actions button';
|
||||||
|
|
||||||
|
beforeEach(() => {
|
||||||
|
cy.login('developer');
|
||||||
|
cy.visit(`/#/invoice-in/1/basic-data`);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should edit the provideer and supplier ref', () => {
|
||||||
|
cy.get(selects).eq(0).click();
|
||||||
|
cy.get(selects).eq(0).type('Bros');
|
||||||
|
cy.get(selects).eq(0).type('{enter}');
|
||||||
|
|
||||||
|
cy.get(appendBtns).eq(0).click();
|
||||||
|
cy.get('input').eq(2).type(4739);
|
||||||
|
cy.saveCard();
|
||||||
|
|
||||||
|
cy.get(`${selects} input`).eq(0).invoke('val').should('eq', 'Bros nick');
|
||||||
|
cy.get('input').eq(2).invoke('val').should('eq', '4739');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should edit the dms data', () => {
|
||||||
|
const firtsInput = 'Ticket:65';
|
||||||
|
const secondInput = "I don't know what posting here!";
|
||||||
|
|
||||||
|
cy.get(appendBtns).eq(3).click();
|
||||||
|
cy.get(dialogAppendBtns).eq(0).click();
|
||||||
|
cy.get(dialogInputs).eq(0).type(firtsInput);
|
||||||
|
cy.get(dialogAppendBtns).eq(1).click();
|
||||||
|
cy.get('textarea').type(secondInput);
|
||||||
|
cy.get(dialogActionBtns).eq(1).click();
|
||||||
|
|
||||||
|
cy.get(appendBtns).eq(3).click();
|
||||||
|
|
||||||
|
cy.get(dialogInputs).eq(0).invoke('val').should('eq', firtsInput);
|
||||||
|
cy.get('textarea').invoke('val').should('eq', secondInput);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should throw an error creating a new dms if a file is not attached', () => {
|
||||||
|
cy.get(appendBtns).eq(2).click();
|
||||||
|
cy.get(appendBtns).eq(1).click();
|
||||||
|
cy.get(dialogActionBtns).eq(1).click();
|
||||||
|
cy.get('.q-notification__message').should(
|
||||||
|
'have.text',
|
||||||
|
"The files can't be empty"
|
||||||
|
);
|
||||||
|
});
|
||||||
|
});
|
|
@ -0,0 +1,30 @@
|
||||||
|
/// <reference types="cypress" />
|
||||||
|
describe('InvoiceInDueDay', () => {
|
||||||
|
const inputs = 'label input';
|
||||||
|
const inputBtns = 'label button';
|
||||||
|
const addBtn = '.q-page-sticky > div > .q-btn > .q-btn__content';
|
||||||
|
|
||||||
|
beforeEach(() => {
|
||||||
|
cy.login('developer');
|
||||||
|
cy.visit(`/#/invoice-in/6/due-day`);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should update the amount', () => {
|
||||||
|
cy.get(inputBtns).eq(1).click();
|
||||||
|
cy.get(inputs).eq(3).type(23);
|
||||||
|
cy.saveCard();
|
||||||
|
cy.get('.q-notification__message').should('have.text', 'Data saved');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should remove the first line', () => {
|
||||||
|
cy.removeRow(1);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should add a new row ', () => {
|
||||||
|
cy.waitForElement('thead');
|
||||||
|
cy.get(addBtn).click();
|
||||||
|
|
||||||
|
cy.saveCard();
|
||||||
|
cy.get('.q-notification__message').should('have.text', 'Data saved');
|
||||||
|
});
|
||||||
|
});
|
|
@ -0,0 +1,38 @@
|
||||||
|
/// <reference types="cypress" />
|
||||||
|
describe('InvoiceInIntrastat', () => {
|
||||||
|
const inputBtns = 'label button';
|
||||||
|
const thirdRow = 'tbody > :nth-child(3)';
|
||||||
|
const firstLineCode = 'tbody > :nth-child(1) > :nth-child(2)';
|
||||||
|
|
||||||
|
beforeEach(() => {
|
||||||
|
cy.login('developer');
|
||||||
|
cy.visit(`/#/invoice-in/1/intrastat`);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should edit the first line', () => {
|
||||||
|
cy.selectOption(firstLineCode, 'Plantas vivas: Esqueje/injerto, Vid');
|
||||||
|
|
||||||
|
cy.get(inputBtns).eq(1).click();
|
||||||
|
|
||||||
|
cy.saveCard();
|
||||||
|
cy.visit(`/#/invoice-in/1/intrastat`);
|
||||||
|
|
||||||
|
cy.getValue(firstLineCode).should(
|
||||||
|
'have.value',
|
||||||
|
'Plantas vivas: Esqueje/injerto, Vid'
|
||||||
|
);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should add a new row', () => {
|
||||||
|
const rowData = [false, 'Plantas vivas: Esqueje/injerto, Vid', 30, 10, 5, 'FR'];
|
||||||
|
|
||||||
|
cy.addRow();
|
||||||
|
cy.fillRow(thirdRow, rowData);
|
||||||
|
cy.saveCard();
|
||||||
|
cy.get('.q-notification__message').should('have.text', 'Data saved');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should remove the first line', () => {
|
||||||
|
cy.removeRow(1);
|
||||||
|
});
|
||||||
|
});
|
|
@ -0,0 +1,28 @@
|
||||||
|
/// <reference types="cypress" />
|
||||||
|
describe('InvoiceInList', () => {
|
||||||
|
const firstCard = '.q-card:nth-child(1)';
|
||||||
|
const firstId =
|
||||||
|
'.q-card:nth-child(1) .list-items > .vn-label-value:first-child > .value > span';
|
||||||
|
const firstDetailBtn = '.q-card:nth-child(1) .q-btn:nth-child(2)';
|
||||||
|
const summaryHeaders = '.summaryBody .header';
|
||||||
|
|
||||||
|
beforeEach(() => {
|
||||||
|
cy.login('developer');
|
||||||
|
cy.visit(`/#/invoice-in`);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should redirect on clicking a invoice', () => {
|
||||||
|
cy.get(firstId)
|
||||||
|
.invoke('text')
|
||||||
|
.then((id) => {
|
||||||
|
cy.get(firstCard).click();
|
||||||
|
cy.url().should('include', `/invoice-in/${id}/summary`);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should open the details', () => {
|
||||||
|
cy.get(firstDetailBtn).click();
|
||||||
|
cy.get(summaryHeaders).eq(1).contains('Basic data');
|
||||||
|
cy.get(summaryHeaders).eq(4).contains('Vat');
|
||||||
|
});
|
||||||
|
});
|
|
@ -0,0 +1,55 @@
|
||||||
|
/// <reference types="cypress" />
|
||||||
|
describe('InvoiceInVat', () => {
|
||||||
|
const inputs = 'label input';
|
||||||
|
const inputBtns = 'label button';
|
||||||
|
const thirdRow = 'tbody > :nth-child(3)';
|
||||||
|
const firstLineVat = 'tbody > :nth-child(1) > :nth-child(4)';
|
||||||
|
const dialogInputs = '.q-dialog label input';
|
||||||
|
const dialogBtns = '.q-dialog button';
|
||||||
|
const randomInt = Math.floor(Math.random() * 100);
|
||||||
|
|
||||||
|
beforeEach(() => {
|
||||||
|
cy.login('developer');
|
||||||
|
cy.visit(`/#/invoice-in/1/vat`);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should edit the first line', () => {
|
||||||
|
cy.get(inputBtns).eq(1).click();
|
||||||
|
cy.get(inputs).eq(2).type(23);
|
||||||
|
cy.selectOption(firstLineVat, 'H.P. IVA 21% CEE');
|
||||||
|
|
||||||
|
cy.saveCard();
|
||||||
|
cy.visit(`/#/invoice-in/1/vat`);
|
||||||
|
|
||||||
|
cy.getValue(firstLineVat).should('have.value', 'H.P. IVA 21% CEE');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should add a new row', () => {
|
||||||
|
cy.addRow();
|
||||||
|
cy.fillRow(thirdRow, [true, 2000000001, 30, 'H.P. IVA 10']);
|
||||||
|
cy.saveCard();
|
||||||
|
cy.get('.q-notification__message').should('have.text', 'Data saved');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should remove the first line', () => {
|
||||||
|
cy.removeRow(1);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should throw an error if there are fields undefined', () => {
|
||||||
|
cy.get(inputBtns).eq(0).click();
|
||||||
|
cy.get(dialogBtns).eq(2).click();
|
||||||
|
cy.get('.q-notification__message').should('have.text', "The code can't be empty");
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should correctly handle expense addition', () => {
|
||||||
|
cy.get(inputBtns).eq(0).click();
|
||||||
|
|
||||||
|
cy.get(dialogInputs).eq(0).click();
|
||||||
|
cy.get(dialogInputs).eq(0).type(randomInt);
|
||||||
|
cy.get(dialogInputs).eq(1).click();
|
||||||
|
cy.get(dialogInputs).eq(1).type('This is a dummy expense');
|
||||||
|
|
||||||
|
cy.get(dialogBtns).eq(2).click();
|
||||||
|
cy.get('.q-notification__message').should('have.text', 'Data saved');
|
||||||
|
});
|
||||||
|
});
|
|
@ -17,18 +17,4 @@ describe('TicketBoxing', () => {
|
||||||
cy.get('div[class="q-item__label text-h6"]').eq(0).click();
|
cy.get('div[class="q-item__label text-h6"]').eq(0).click();
|
||||||
cy.get('.q-notification__message').should('have.text', 'No videos available');
|
cy.get('.q-notification__message').should('have.text', 'No videos available');
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should show select time and video if have video list', () => {
|
|
||||||
cy.intercept(
|
|
||||||
{
|
|
||||||
method: 'GET',
|
|
||||||
url: '/api/Boxings/*',
|
|
||||||
},
|
|
||||||
['2022-01-01T01-01-00.mp4', '2022-02-02T02-02-00.mp4', '2022-03-03T03-03-00.mp4']
|
|
||||||
).as('getVideoList');
|
|
||||||
cy.get('.q-list').eq(3).find('.q-item').eq(2).click();
|
|
||||||
|
|
||||||
cy.get('.q-list').eq(3).find('.q-item').eq(0).find('.q-range');
|
|
||||||
cy.get('.q-list').eq(3).find('.q-item').eq(1).find('.q-select');
|
|
||||||
});
|
|
||||||
});
|
});
|
|
@ -0,0 +1,25 @@
|
||||||
|
/// <reference types="cypress" />
|
||||||
|
describe('VnLog', () => {
|
||||||
|
const chips = [
|
||||||
|
':nth-child(1) > :nth-child(1) > .q-item__label > .q-chip > .q-chip__content',
|
||||||
|
':nth-child(2) > :nth-child(1) > .q-item__label > .q-chip > .q-chip__content',
|
||||||
|
];
|
||||||
|
beforeEach(() => {
|
||||||
|
cy.login('developer');
|
||||||
|
cy.visit(`/#/claim/${1}/log`);
|
||||||
|
cy.openRightMenu('.timeline');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should filter by insert actions', () => {
|
||||||
|
cy.checkOption(':nth-child(7) > .q-checkbox');
|
||||||
|
cy.get('.q-page').click();
|
||||||
|
cy.validateContent(chips[0], 'Document');
|
||||||
|
cy.validateContent(chips[1], 'Beginning');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should filter by entity', () => {
|
||||||
|
cy.selectOption('.q-drawer--right .q-item > .q-select', 'Claim');
|
||||||
|
cy.get('.q-page').click();
|
||||||
|
cy.validateContent(chips[0], 'Claim');
|
||||||
|
});
|
||||||
|
});
|
|
@ -0,0 +1,22 @@
|
||||||
|
describe('WorkerList', () => {
|
||||||
|
const workerFieldNames =
|
||||||
|
'.card-list-body > .list-items > :nth-child(2) > .value > span';
|
||||||
|
beforeEach(() => {
|
||||||
|
cy.viewport(1280, 720);
|
||||||
|
cy.login('developer');
|
||||||
|
cy.visit('/#/worker/list');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should load workers', () => {
|
||||||
|
cy.get(workerFieldNames).eq(0).should('have.text', 'JessicaJones');
|
||||||
|
cy.get(workerFieldNames).eq(1).should('have.text', 'BruceBanner');
|
||||||
|
cy.get(workerFieldNames).eq(2).should('have.text', 'CharlesXavier');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should open the worker summary', () => {
|
||||||
|
cy.openListSummary(0);
|
||||||
|
cy.get('.summaryHeader div').should('have.text', '1110 - Jessica Jones');
|
||||||
|
cy.get('.summary .header').eq(0).invoke('text').should('include', 'Basic data');
|
||||||
|
cy.get('.summary .header').eq(1).should('have.text', 'User data');
|
||||||
|
});
|
||||||
|
});
|
|
@ -1,26 +0,0 @@
|
||||||
describe('WorkerList', () => {
|
|
||||||
beforeEach(() => {
|
|
||||||
cy.viewport(1280, 720);
|
|
||||||
cy.login('developer');
|
|
||||||
cy.visit('/#/worker/list');
|
|
||||||
});
|
|
||||||
|
|
||||||
it('should load workers', () => {
|
|
||||||
cy.get('.card-list-body > .list-items > :nth-child(2) > .value > span')
|
|
||||||
.eq(0)
|
|
||||||
.should('have.text', 'JessicaJones');
|
|
||||||
cy.get('.card-list-body > .list-items > :nth-child(2) > .value > span')
|
|
||||||
.eq(1)
|
|
||||||
.should('have.text', 'BruceBanner');
|
|
||||||
cy.get('.card-list-body > .list-items > :nth-child(2) > .value > span')
|
|
||||||
.eq(2)
|
|
||||||
.should('have.text', 'CharlesXavier');
|
|
||||||
});
|
|
||||||
|
|
||||||
it('should open the worker summary', () => {
|
|
||||||
cy.get('.card-list-body .actions .q-btn:nth-child(2)').eq(1).click();
|
|
||||||
cy.get('.summaryHeader div').should('have.text', '1109 - Bruce Banner');
|
|
||||||
cy.get('.summary .header').eq(0).invoke('text').should('include', 'Basic data');
|
|
||||||
cy.get('.summary .header').eq(1).should('have.text', 'User data');
|
|
||||||
});
|
|
||||||
});
|
|
|
@ -51,15 +51,14 @@ Cypress.Commands.add('getValue', (selector) => {
|
||||||
return cy.get(selector + '.q-checkbox__inner');
|
return cy.get(selector + '.q-checkbox__inner');
|
||||||
}
|
}
|
||||||
// Si es un QSelect
|
// Si es un QSelect
|
||||||
else if ($el.find('.q-select__dropdown-icon').length) {
|
if ($el.find('.q-select__dropdown-icon').length) {
|
||||||
return cy.get(
|
return cy.get(
|
||||||
selector +
|
selector +
|
||||||
'> .q-field > .q-field__inner > .q-field__control > .q-field__control-container > .q-field__native > input'
|
'> .q-field > .q-field__inner > .q-field__control > .q-field__control-container > .q-field__native > input'
|
||||||
);
|
);
|
||||||
} else {
|
|
||||||
// Puedes añadir un log o lanzar un error si el elemento no es reconocido
|
|
||||||
cy.log('Elemento no soportado');
|
|
||||||
}
|
}
|
||||||
|
// Puedes añadir un log o lanzar un error si el elemento no es reconocido
|
||||||
|
cy.log('Elemento no soportado');
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -70,7 +69,7 @@ Cypress.Commands.add('selectOption', (selector, option) => {
|
||||||
});
|
});
|
||||||
|
|
||||||
Cypress.Commands.add('checkOption', (selector) => {
|
Cypress.Commands.add('checkOption', (selector) => {
|
||||||
cy.wrap(selector).find('.q-checkbox__inner').click();
|
cy.get(selector).find('.q-checkbox__inner').click();
|
||||||
});
|
});
|
||||||
|
|
||||||
// Global buttons
|
// Global buttons
|
||||||
|
@ -109,14 +108,19 @@ Cypress.Commands.add('fillRow', (rowSelector, data) => {
|
||||||
.then((td) => {
|
.then((td) => {
|
||||||
if (td.find('.q-select__dropdown-icon').length) {
|
if (td.find('.q-select__dropdown-icon').length) {
|
||||||
cy.selectOption(td, value);
|
cy.selectOption(td, value);
|
||||||
}
|
} else if (td.find('.q-checkbox__inner').length && value) {
|
||||||
if (td.find('.q-checkbox__inner').length && value) {
|
|
||||||
cy.checkOption(td);
|
cy.checkOption(td);
|
||||||
}
|
} else if (td.find('input[type="text"]') && value)
|
||||||
|
cy.get(td).find('input').type(value);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Cypress.Commands.add('addRow', () => {
|
||||||
|
cy.waitForElement('tbody');
|
||||||
|
cy.get('.q-page-sticky > div > .q-btn > .q-btn__content').click();
|
||||||
|
});
|
||||||
|
|
||||||
Cypress.Commands.add('validateRow', (rowSelector, expectedValues) => {
|
Cypress.Commands.add('validateRow', (rowSelector, expectedValues) => {
|
||||||
cy.waitForElement('tbody');
|
cy.waitForElement('tbody');
|
||||||
cy.get(rowSelector).within(() => {
|
cy.get(rowSelector).within(() => {
|
||||||
|
@ -131,4 +135,38 @@ Cypress.Commands.add('validateRow', (rowSelector, expectedValues) => {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Cypress.Commands.add('removeRow', (rowIndex) => {
|
||||||
|
let rowsBefore;
|
||||||
|
let rowsAfter;
|
||||||
|
|
||||||
|
cy.get('tr')
|
||||||
|
.its('length')
|
||||||
|
.then((length) => {
|
||||||
|
rowsBefore = length;
|
||||||
|
cy.get('.q-checkbox').eq(rowIndex).click();
|
||||||
|
cy.removeCard();
|
||||||
|
cy.get('.q-dialog button').eq(2).click();
|
||||||
|
})
|
||||||
|
.then(() => {
|
||||||
|
cy.get('tr')
|
||||||
|
.its('length')
|
||||||
|
.then((length) => {
|
||||||
|
rowsAfter = length;
|
||||||
|
expect(rowsBefore).to.eq(rowsAfter + 1);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
Cypress.Commands.add('openListSummary', (row) => {
|
||||||
|
cy.get('.card-list-body .actions .q-btn:nth-child(2)').eq(row).click();
|
||||||
|
});
|
||||||
|
|
||||||
|
Cypress.Commands.add('openRightMenu', (element) => {
|
||||||
|
if (element) cy.waitForElement(element);
|
||||||
|
cy.get('#actions-append').click();
|
||||||
|
});
|
||||||
|
|
||||||
|
Cypress.Commands.add('validateContent', (selector, expectedValue) => {
|
||||||
|
cy.get(selector).should('have.text', expectedValue);
|
||||||
|
});
|
||||||
// registerCommands();
|
// registerCommands();
|
||||||
|
|
|
@ -1,75 +1,134 @@
|
||||||
import { vi, describe, expect, it, beforeAll, afterEach } from 'vitest';
|
import { vi, describe, expect, it, beforeAll, afterEach } from 'vitest';
|
||||||
import { createWrapper } from 'app/test/vitest/helper';
|
import { createWrapper, axios } from 'app/test/vitest/helper';
|
||||||
import VnLog from 'src/components/common/VnLog.vue';
|
import VnLog from 'src/components/common/VnLog.vue';
|
||||||
|
|
||||||
describe('VnLog', () => {
|
describe('VnLog', () => {
|
||||||
let vm;
|
let vm;
|
||||||
beforeAll(() => {
|
const fakeLogTreeData = [
|
||||||
vm = createWrapper(VnLog, {
|
{
|
||||||
global: {
|
id: 2,
|
||||||
stubs: ['FetchData', 'VnPaginate'],
|
originFk: 1,
|
||||||
mocks: {
|
userFk: 18,
|
||||||
fetch: vi.fn(),
|
action: 'update',
|
||||||
|
changedModel: 'ClaimObservation',
|
||||||
|
oldInstance: {},
|
||||||
|
newInstance: {
|
||||||
|
claimFk: 1,
|
||||||
|
text: 'Waiting for customer',
|
||||||
|
},
|
||||||
|
creationDate: '2023-09-18T12:25:34.000Z',
|
||||||
|
changedModelId: '1',
|
||||||
|
changedModelValue: null,
|
||||||
|
description: null,
|
||||||
|
user: {
|
||||||
|
id: 18,
|
||||||
|
name: 'salesPerson',
|
||||||
|
nickname: 'salesPersonNick',
|
||||||
|
image: '4fa3ada0-3ac4-11eb-9ab8-27f6fc3b85fd',
|
||||||
|
worker: {
|
||||||
|
id: 18,
|
||||||
|
userFk: 18,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 1,
|
||||||
|
originFk: 1,
|
||||||
|
userFk: 18,
|
||||||
|
action: 'update',
|
||||||
|
changedModel: 'Claim',
|
||||||
|
oldInstance: {
|
||||||
|
hasToPickUp: false,
|
||||||
|
},
|
||||||
|
newInstance: {
|
||||||
|
hasToPickUp: true,
|
||||||
|
},
|
||||||
|
creationDate: '2023-09-18T12:25:34.000Z',
|
||||||
|
changedModelId: '1',
|
||||||
|
changedModelValue: null,
|
||||||
|
description: null,
|
||||||
|
user: {
|
||||||
|
id: 18,
|
||||||
|
name: 'salesPerson',
|
||||||
|
nickname: 'salesPersonNick',
|
||||||
|
image: '4fa3ada0-3ac4-11eb-9ab8-27f6fc3b85fd',
|
||||||
|
worker: {
|
||||||
|
id: 18,
|
||||||
|
userFk: 18,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
];
|
||||||
|
const mockValidations = {
|
||||||
|
Claim: {
|
||||||
|
locale: {
|
||||||
|
name: 'reclamación',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
ClaimObservation: {
|
||||||
|
locale: {
|
||||||
|
name: 'observación',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
ClaimDms: {
|
||||||
|
locale: {
|
||||||
|
name: 'documento',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
ClaimBeginning: {
|
||||||
|
locale: {
|
||||||
|
name: 'comienzo',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
beforeAll(async () => {
|
||||||
|
axios.get.mockImplementation(() => {
|
||||||
|
return { data: fakeLogTreeData };
|
||||||
|
});
|
||||||
|
|
||||||
|
vm = createWrapper(VnLog, {
|
||||||
|
global: {
|
||||||
|
stubs: [],
|
||||||
|
mocks: {},
|
||||||
|
},
|
||||||
propsData: {
|
propsData: {
|
||||||
model: "Claim",
|
model: 'Claim',
|
||||||
},
|
},
|
||||||
}).vm;
|
}).vm;
|
||||||
|
vm.validations = mockValidations;
|
||||||
});
|
});
|
||||||
|
|
||||||
afterEach(() => {
|
afterEach(() => {
|
||||||
vi.clearAllMocks();
|
vi.clearAllMocks();
|
||||||
});
|
});
|
||||||
|
|
||||||
describe('formatValue()', () => {
|
it('should correctly set logTree', async () => {
|
||||||
it('should return Yes if has a true boolean', async () => {
|
vm.logTree = vm.getLogTree(fakeLogTreeData);
|
||||||
const result = vm.formatValue(true);
|
expect(vm.logTree[0].originFk).toEqual(1);
|
||||||
|
expect(vm.logTree[0].logs[0].user.name).toEqual('salesPerson');
|
||||||
expect(result).toEqual('Yes');
|
|
||||||
});
|
|
||||||
it('should return No if has a true boolean', async () => {
|
|
||||||
const result = vm.formatValue(false);
|
|
||||||
|
|
||||||
expect(result).toEqual('No');
|
|
||||||
});
|
|
||||||
it('should return Nothing if has no params', async () => {
|
|
||||||
const result = vm.formatValue();
|
|
||||||
|
|
||||||
expect(result).toEqual('Nothing');
|
|
||||||
});
|
|
||||||
it('should return a string from a string value', async () => {
|
|
||||||
const result = vm.formatValue('Something');
|
|
||||||
|
|
||||||
expect(result).toEqual(`"Something"`);
|
|
||||||
});
|
|
||||||
it('should call to format a date', async () => {
|
|
||||||
vi.mock('src/filters', () => ({
|
|
||||||
toDate: ()=>{
|
|
||||||
return "Date formatted"
|
|
||||||
},
|
|
||||||
}));
|
|
||||||
|
|
||||||
const result = vm.formatValue('01-01-1970');
|
|
||||||
expect(result).toEqual("Date formatted");
|
|
||||||
});
|
|
||||||
});
|
});
|
||||||
|
|
||||||
describe('actionColor()', () => {
|
it('should correctly set the selectedFilters when filtering', () => {
|
||||||
it('should return positive if insert', async () => {
|
vm.searchInput = '1';
|
||||||
const result = vm.actionColor('insert');
|
vm.userSelect = '21';
|
||||||
|
vm.checkboxOptions.insert.selected = true;
|
||||||
|
vm.checkboxOptions.update.selected = true;
|
||||||
|
|
||||||
expect(result).toEqual('positive');
|
vm.selectFilter('search');
|
||||||
});
|
vm.selectFilter('userSelect');
|
||||||
it('should return positive if update', async () => {
|
|
||||||
const result = vm.actionColor('update');
|
|
||||||
|
|
||||||
expect(result).toEqual('positive');
|
expect(vm.selectedFilters.changedModelId).toEqual('1');
|
||||||
});
|
expect(vm.selectedFilters.userFk).toEqual('21');
|
||||||
it('should return negative if delete', async () => {
|
expect(vm.selectedFilters.action).toEqual({ inq: ['insert', 'update'] });
|
||||||
const result = vm.actionColor('delete');
|
});
|
||||||
|
|
||||||
expect(result).toEqual('negative');
|
it('should correctly set the date from', () => {
|
||||||
});
|
vm.dateFrom = '18-09-2023';
|
||||||
|
vm.selectFilter('date', 'from');
|
||||||
|
expect(vm.selectedFilters.creationDate.between).toEqual([
|
||||||
|
new Date('2023-09-18T00:00:00.000Z'),
|
||||||
|
new Date('2023-09-18T21:59:59.999Z'),
|
||||||
|
]);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
|
@ -0,0 +1,25 @@
|
||||||
|
import { vi, describe, expect, it } from 'vitest';
|
||||||
|
import { axios } from 'app/test/vitest/helper';
|
||||||
|
import { downloadFile } from 'src/composables/downloadFile';
|
||||||
|
import { useSession } from 'src/composables/useSession';
|
||||||
|
|
||||||
|
const session = useSession();
|
||||||
|
const token = session.getToken();
|
||||||
|
|
||||||
|
describe('downloadFile', () => {
|
||||||
|
it('should open a new window to download the file', async () => {
|
||||||
|
const url = 'http://localhost:9000';
|
||||||
|
|
||||||
|
vi.spyOn(axios, 'get').mockResolvedValueOnce({ data: url });
|
||||||
|
|
||||||
|
const mockWindowOpen = vi.spyOn(window, 'open');
|
||||||
|
|
||||||
|
await downloadFile(1);
|
||||||
|
|
||||||
|
expect(mockWindowOpen).toHaveBeenCalledWith(
|
||||||
|
`${url}/api/dms/1/downloadFile?access_token=${token}`
|
||||||
|
);
|
||||||
|
|
||||||
|
mockWindowOpen.mockRestore();
|
||||||
|
});
|
||||||
|
});
|
|
@ -0,0 +1,34 @@
|
||||||
|
import { vi, describe, expect, it, beforeAll } from 'vitest';
|
||||||
|
import { createWrapper, axios } from 'app/test/vitest/helper';
|
||||||
|
import InvoiceInBasicData from 'src/pages/InvoiceIn/Card/InvoiceInBasicData.vue';
|
||||||
|
|
||||||
|
describe('InvoiceInBasicData', () => {
|
||||||
|
let vm;
|
||||||
|
|
||||||
|
beforeAll(() => {
|
||||||
|
vm = createWrapper(InvoiceInBasicData, {
|
||||||
|
global: {
|
||||||
|
stubs: [],
|
||||||
|
mocks: {
|
||||||
|
fetch: vi.fn(),
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}).vm;
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('upsert()', () => {
|
||||||
|
it('should throw an error when data is empty', async () => {
|
||||||
|
vi.spyOn(axios, 'post').mockResolvedValue({ data: [] });
|
||||||
|
vi.spyOn(vm.quasar, 'notify');
|
||||||
|
|
||||||
|
await vm.upsert();
|
||||||
|
|
||||||
|
expect(vm.quasar.notify).toHaveBeenCalledWith(
|
||||||
|
expect.objectContaining({
|
||||||
|
message: `The company can't be empty`,
|
||||||
|
type: 'negative',
|
||||||
|
})
|
||||||
|
);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
|
@ -0,0 +1,34 @@
|
||||||
|
import { vi, describe, expect, it, beforeAll } from 'vitest';
|
||||||
|
import { createWrapper, axios } from 'app/test/vitest/helper';
|
||||||
|
import InvoiceInIntrastat from 'src/pages/InvoiceIn/Card/InvoiceInIntrastat.vue';
|
||||||
|
|
||||||
|
describe('InvoiceInIntrastat', () => {
|
||||||
|
let vm;
|
||||||
|
|
||||||
|
beforeAll(() => {
|
||||||
|
vm = createWrapper(InvoiceInIntrastat, {
|
||||||
|
global: {
|
||||||
|
stubs: ['vnPaginate'],
|
||||||
|
mocks: {
|
||||||
|
fetch: vi.fn(),
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}).vm;
|
||||||
|
vi.spyOn(axios, 'get').mockResolvedValue({ data: [{}] });
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('getTotal()', () => {
|
||||||
|
it('should correctly handle the sum', () => {
|
||||||
|
vm.invoceInIntrastat = [
|
||||||
|
{ amount: 10, stems: 162 },
|
||||||
|
{ amount: 20, stems: 21 },
|
||||||
|
];
|
||||||
|
|
||||||
|
const totalAmount = vm.getTotal('amount');
|
||||||
|
const totalStems = vm.getTotal('stems');
|
||||||
|
|
||||||
|
expect(totalAmount).toBe(10 + 20);
|
||||||
|
expect(totalStems).toBe(162 + 21);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
|
@ -0,0 +1,73 @@
|
||||||
|
import { vi, describe, expect, it, beforeAll } from 'vitest';
|
||||||
|
import { createWrapper, axios } from 'app/test/vitest/helper';
|
||||||
|
import InvoiceInVat from 'src/pages/InvoiceIn/Card/InvoiceInVat.vue';
|
||||||
|
|
||||||
|
describe('InvoiceInVat', () => {
|
||||||
|
let vm;
|
||||||
|
|
||||||
|
beforeAll(() => {
|
||||||
|
vm = createWrapper(InvoiceInVat, {
|
||||||
|
global: {
|
||||||
|
stubs: [],
|
||||||
|
mocks: {
|
||||||
|
fetch: vi.fn(),
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}).vm;
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('addExpense()', () => {
|
||||||
|
beforeAll(() => {
|
||||||
|
vi.spyOn(axios, 'post').mockResolvedValue({ data: [] });
|
||||||
|
vi.spyOn(axios, 'get').mockResolvedValue({ data: [] });
|
||||||
|
vi.spyOn(vm.quasar, 'notify');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should throw an error when the code property is undefined', async () => {
|
||||||
|
await vm.addExpense();
|
||||||
|
|
||||||
|
expect(vm.quasar.notify).toHaveBeenCalledWith(
|
||||||
|
expect.objectContaining({
|
||||||
|
message: `The code can't be empty`,
|
||||||
|
type: 'negative',
|
||||||
|
})
|
||||||
|
);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should correctly handle expense addition', async () => {
|
||||||
|
vm.newExpense = {
|
||||||
|
code: 123,
|
||||||
|
isWithheld: false,
|
||||||
|
description: 'Descripción del gasto',
|
||||||
|
};
|
||||||
|
|
||||||
|
await vm.addExpense();
|
||||||
|
expect(vm.quasar.notify).toHaveBeenCalledWith(
|
||||||
|
expect.objectContaining({
|
||||||
|
message: 'Data saved',
|
||||||
|
type: 'positive',
|
||||||
|
})
|
||||||
|
);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('taxRate()', () => {
|
||||||
|
it('should correctly compute the tax rate', () => {
|
||||||
|
const invoiceInTax = { taxableBase: 100, taxTypeSageFk: 1 };
|
||||||
|
vm.sageTaxTypes = [
|
||||||
|
{ id: 1, rate: 10 },
|
||||||
|
{ id: 2, rate: 20 },
|
||||||
|
];
|
||||||
|
const result = vm.taxRate(invoiceInTax);
|
||||||
|
expect(result).toBe((10 / 100) * 100);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should return 0 if there is not tax rate', () => {
|
||||||
|
const invoiceInTax = { taxableBase: 100, taxTypeSageFk: 1 };
|
||||||
|
vm.sageTaxTypes = [];
|
||||||
|
|
||||||
|
const result = vm.taxRate(invoiceInTax);
|
||||||
|
expect(result).toBe(0);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
|
@ -13,7 +13,6 @@ installQuasarPlugin({
|
||||||
Dialog,
|
Dialog,
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
const pinia = createTestingPinia({ createSpy: vi.fn, stubActions: false });
|
const pinia = createTestingPinia({ createSpy: vi.fn, stubActions: false });
|
||||||
const mockPush = vi.fn();
|
const mockPush = vi.fn();
|
||||||
|
|
||||||
|
@ -35,8 +34,10 @@ vi.mock('vue-router', () => ({
|
||||||
}),
|
}),
|
||||||
}));
|
}));
|
||||||
|
|
||||||
|
vi.mock('axios');
|
||||||
|
|
||||||
vi.spyOn(useValidator, 'useValidator').mockImplementation(() => {
|
vi.spyOn(useValidator, 'useValidator').mockImplementation(() => {
|
||||||
return { validate: vi.fn(), fetch: vi.fn() };
|
return { validate: vi.fn() };
|
||||||
});
|
});
|
||||||
|
|
||||||
class FormDataMock {
|
class FormDataMock {
|
||||||
|
|
Loading…
Reference in New Issue