forked from verdnatura/salix-front
Se termina desarrollo de las tarjetas gestion documental e impagado
This commit is contained in:
parent
94ca3318a3
commit
01ffe3adb7
|
@ -109,14 +109,18 @@ function tMobile(...args) {
|
||||||
}
|
}
|
||||||
|
|
||||||
async function fetch() {
|
async function fetch() {
|
||||||
|
try {
|
||||||
const { data } = await axios.get($props.url, {
|
const { data } = await axios.get($props.url, {
|
||||||
params: { filter: JSON.stringify($props.filter) },
|
params: { filter: JSON.stringify($props.filter) },
|
||||||
});
|
});
|
||||||
|
|
||||||
state.set($props.model, data);
|
state.set($props.model, data);
|
||||||
originalData.value = data && JSON.parse(JSON.stringify(data));
|
originalData.value = data && JSON.parse(JSON.stringify(data));
|
||||||
|
|
||||||
emit('onFetch', state.get($props.model));
|
emit('onFetch', state.get($props.model));
|
||||||
|
} catch (error) {
|
||||||
|
state.set($props.model, {});
|
||||||
|
originalData.value = {};
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
async function save() {
|
async function save() {
|
||||||
|
|
|
@ -37,7 +37,7 @@ const params = {
|
||||||
};
|
};
|
||||||
const filter = {
|
const filter = {
|
||||||
include: { relation: 'company', scope: { fields: ['code'] } },
|
include: { relation: 'company', scope: { fields: ['code'] } },
|
||||||
where: { clientFk: `${route.params.id}`, companyFk: user.value.companyFk },
|
where: { clientFk: route.params.id, companyFk: user.value.companyFk },
|
||||||
};
|
};
|
||||||
|
|
||||||
const tableColumnComponents = {
|
const tableColumnComponents = {
|
||||||
|
|
|
@ -23,7 +23,7 @@ const filter = {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
where: { clientFk: `${route.params.id}` },
|
where: { clientFk: route.params.id },
|
||||||
order: ['created DESC'],
|
order: ['created DESC'],
|
||||||
limit: 20,
|
limit: 20,
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<script setup>
|
<script setup>
|
||||||
import { ref, computed } from 'vue';
|
import { computed, ref } from 'vue';
|
||||||
import { useI18n } from 'vue-i18n';
|
import { useI18n } from 'vue-i18n';
|
||||||
import { useRoute, useRouter } from 'vue-router';
|
import { useRoute, useRouter } from 'vue-router';
|
||||||
|
|
||||||
|
@ -27,7 +27,7 @@ const filter = {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
where: { clientFk: `${route.params.id}` },
|
where: { clientFk: route.params.id },
|
||||||
order: ['created DESC'],
|
order: ['created DESC'],
|
||||||
limit: 20,
|
limit: 20,
|
||||||
};
|
};
|
||||||
|
@ -93,6 +93,7 @@ const toCustomerCreditCreate = () => {
|
||||||
:rows="rows"
|
:rows="rows"
|
||||||
class="full-width q-mt-md"
|
class="full-width q-mt-md"
|
||||||
row-key="id"
|
row-key="id"
|
||||||
|
v-if="rows?.length"
|
||||||
>
|
>
|
||||||
<template #body-cell="props">
|
<template #body-cell="props">
|
||||||
<QTd :props="props">
|
<QTd :props="props">
|
||||||
|
@ -110,6 +111,10 @@ const toCustomerCreditCreate = () => {
|
||||||
</QTd>
|
</QTd>
|
||||||
</template>
|
</template>
|
||||||
</QTable>
|
</QTable>
|
||||||
|
|
||||||
|
<h5 class="flex justify-center label-color" v-else>
|
||||||
|
{{ t('globals.noResults') }}
|
||||||
|
</h5>
|
||||||
</QPage>
|
</QPage>
|
||||||
|
|
||||||
<QPageSticky :offset="[18, 18]">
|
<QPageSticky :offset="[18, 18]">
|
||||||
|
@ -120,6 +125,12 @@ const toCustomerCreditCreate = () => {
|
||||||
</QPageSticky>
|
</QPageSticky>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
<style lang="scss">
|
||||||
|
.label-color {
|
||||||
|
color: var(--vn-label);
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
||||||
<i18n>
|
<i18n>
|
||||||
es:
|
es:
|
||||||
Since: Desde
|
Since: Desde
|
||||||
|
|
|
@ -1,3 +1,268 @@
|
||||||
|
<script setup>
|
||||||
|
import { computed, ref } from 'vue';
|
||||||
|
import { useI18n } from 'vue-i18n';
|
||||||
|
import { useRoute, useRouter } from 'vue-router';
|
||||||
|
|
||||||
|
import { date, QBadge, QBtn, QCheckbox } from 'quasar';
|
||||||
|
import { downloadFile } from 'src/composables/downloadFile';
|
||||||
|
|
||||||
|
import FetchData from 'components/FetchData.vue';
|
||||||
|
import WorkerDescriptorProxy from 'src/pages/Worker/Card/WorkerDescriptorProxy.vue';
|
||||||
|
import CustomerFileManagementActions from 'src/pages/Customer/components/CustomerFileManagementActions.vue';
|
||||||
|
|
||||||
|
const { t } = useI18n();
|
||||||
|
const route = useRoute();
|
||||||
|
const router = useRouter();
|
||||||
|
|
||||||
|
const ClientDmsRef = ref(null);
|
||||||
|
const rows = ref([]);
|
||||||
|
const workerId = ref(null);
|
||||||
|
|
||||||
|
const filter = {
|
||||||
|
include: {
|
||||||
|
relation: 'dms',
|
||||||
|
scope: {
|
||||||
|
fields: [
|
||||||
|
'dmsTypeFk',
|
||||||
|
'reference',
|
||||||
|
'hardCopyNumber',
|
||||||
|
'workerFk',
|
||||||
|
'description',
|
||||||
|
'hasFile',
|
||||||
|
'file',
|
||||||
|
'created',
|
||||||
|
],
|
||||||
|
include: [
|
||||||
|
{ relation: 'dmsType', scope: { fields: ['name'] } },
|
||||||
|
{
|
||||||
|
relation: 'worker',
|
||||||
|
scope: {
|
||||||
|
fields: ['id'],
|
||||||
|
include: { relation: 'user', scope: { fields: ['name'] } },
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
where: { clientFk: route.params.id },
|
||||||
|
order: ['dmsFk DESC'],
|
||||||
|
limit: 20,
|
||||||
|
};
|
||||||
|
|
||||||
|
const tableColumnComponents = {
|
||||||
|
id: {
|
||||||
|
component: 'span',
|
||||||
|
props: () => {},
|
||||||
|
event: () => (workerId.value = null),
|
||||||
|
},
|
||||||
|
type: {
|
||||||
|
component: 'span',
|
||||||
|
props: () => {},
|
||||||
|
event: () => (workerId.value = null),
|
||||||
|
},
|
||||||
|
order: {
|
||||||
|
component: QBadge,
|
||||||
|
props: () => {},
|
||||||
|
event: () => (workerId.value = null),
|
||||||
|
},
|
||||||
|
reference: {
|
||||||
|
component: 'span',
|
||||||
|
props: () => {},
|
||||||
|
event: () => (workerId.value = null),
|
||||||
|
},
|
||||||
|
description: {
|
||||||
|
component: 'span',
|
||||||
|
props: () => {},
|
||||||
|
event: () => (workerId.value = null),
|
||||||
|
},
|
||||||
|
original: {
|
||||||
|
component: QCheckbox,
|
||||||
|
props: (prop) => ({
|
||||||
|
disable: true,
|
||||||
|
'model-value': Boolean(prop.value),
|
||||||
|
}),
|
||||||
|
event: () => (workerId.value = null),
|
||||||
|
},
|
||||||
|
file: {
|
||||||
|
component: QBtn,
|
||||||
|
props: () => ({ flat: true, color: 'blue' }),
|
||||||
|
event: ({ row }) => {
|
||||||
|
setDownloadFile(row);
|
||||||
|
},
|
||||||
|
},
|
||||||
|
employee: {
|
||||||
|
component: QBtn,
|
||||||
|
props: () => ({ flat: true, color: 'blue' }),
|
||||||
|
event: ({ row }) => (workerId.value = row.clientFk),
|
||||||
|
},
|
||||||
|
created: {
|
||||||
|
component: 'span',
|
||||||
|
props: () => {},
|
||||||
|
event: () => (workerId.value = null),
|
||||||
|
},
|
||||||
|
actions: {
|
||||||
|
component: CustomerFileManagementActions,
|
||||||
|
props: (prop) => ({
|
||||||
|
id: prop.row.dmsFk,
|
||||||
|
promise: setData,
|
||||||
|
}),
|
||||||
|
event: () => (workerId.value = null),
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
const columns = computed(() => [
|
||||||
|
{
|
||||||
|
align: 'left',
|
||||||
|
field: ({ dms }) => dms.id,
|
||||||
|
label: t('Id'),
|
||||||
|
name: 'id',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
align: 'left',
|
||||||
|
field: ({ dms }) => dms.dmsType.name,
|
||||||
|
label: t('Type'),
|
||||||
|
name: 'type',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
align: 'left',
|
||||||
|
field: ({ dms }) => dms.hardCopyNumber,
|
||||||
|
label: t('Order'),
|
||||||
|
name: 'order',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
align: 'left',
|
||||||
|
field: ({ dms }) => dms.reference,
|
||||||
|
label: t('Reference'),
|
||||||
|
name: 'reference',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
align: 'left',
|
||||||
|
field: ({ dms }) => dms.description,
|
||||||
|
label: t('Description'),
|
||||||
|
name: 'description',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
align: 'left',
|
||||||
|
field: ({ dms }) => dms.hasFile,
|
||||||
|
label: t('Original'),
|
||||||
|
name: 'original',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
align: 'left',
|
||||||
|
field: ({ dms }) => dms.file,
|
||||||
|
label: t('File'),
|
||||||
|
name: 'file',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
align: 'left',
|
||||||
|
field: ({ dms }) => dms.worker.user.name,
|
||||||
|
label: t('Employee'),
|
||||||
|
name: 'employee',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
align: 'left',
|
||||||
|
field: (value) => value.dms.created,
|
||||||
|
label: t('Created'),
|
||||||
|
name: 'created',
|
||||||
|
format: (value) => date.formatDate(value, 'DD/MM/YYYY hh:mm'),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
align: 'right',
|
||||||
|
field: 'actions',
|
||||||
|
label: '',
|
||||||
|
name: 'actions',
|
||||||
|
},
|
||||||
|
]);
|
||||||
|
|
||||||
|
const setDownloadFile = (row) => {
|
||||||
|
downloadFile(row.dmsFk);
|
||||||
|
workerId.value = null;
|
||||||
|
};
|
||||||
|
|
||||||
|
const setData = () => {
|
||||||
|
ClientDmsRef.value.fetch();
|
||||||
|
};
|
||||||
|
|
||||||
|
const toCustomerFileManagementCreate = () => {
|
||||||
|
router.push({ name: 'CustomerFileManagementCreate' });
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div class="flex justify-center">Customer file management</div>
|
<FetchData
|
||||||
|
ref="ClientDmsRef"
|
||||||
|
:filter="filter"
|
||||||
|
@on-fetch="(data) => (rows = data)"
|
||||||
|
auto-load
|
||||||
|
url="ClientDms"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<QPage class="column items-center q-pa-md">
|
||||||
|
<QTable
|
||||||
|
:columns="columns"
|
||||||
|
:pagination="{ rowsPerPage: 12 }"
|
||||||
|
:rows="rows"
|
||||||
|
class="full-width q-mt-md"
|
||||||
|
row-key="id"
|
||||||
|
v-if="rows?.length"
|
||||||
|
>
|
||||||
|
<template #body-cell="props">
|
||||||
|
<QTd :props="props">
|
||||||
|
<QTr :props="props" class="cursor-pointer">
|
||||||
|
<component
|
||||||
|
:is="
|
||||||
|
props.col.name === 'order' && !props.value
|
||||||
|
? 'span'
|
||||||
|
: tableColumnComponents[props.col.name].component
|
||||||
|
"
|
||||||
|
@click="tableColumnComponents[props.col.name].event(props)"
|
||||||
|
class="col-content"
|
||||||
|
v-bind="tableColumnComponents[props.col.name].props(props)"
|
||||||
|
>
|
||||||
|
<template v-if="props.col.name !== 'original'">
|
||||||
|
{{ props.value }}
|
||||||
</template>
|
</template>
|
||||||
|
<WorkerDescriptorProxy :id="workerId" />
|
||||||
|
</component>
|
||||||
|
</QTr>
|
||||||
|
</QTd>
|
||||||
|
</template>
|
||||||
|
</QTable>
|
||||||
|
|
||||||
|
<h5 class="flex justify-center label-color" v-else>
|
||||||
|
{{ t('globals.noResults') }}
|
||||||
|
</h5>
|
||||||
|
</QPage>
|
||||||
|
|
||||||
|
<QPageSticky :offset="[18, 18]">
|
||||||
|
<QBtn
|
||||||
|
@click.stop="toCustomerFileManagementCreate()"
|
||||||
|
color="primary"
|
||||||
|
fab
|
||||||
|
icon="add"
|
||||||
|
/>
|
||||||
|
<QTooltip>
|
||||||
|
{{ t('Upload file') }}
|
||||||
|
</QTooltip>
|
||||||
|
</QPageSticky>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style lang="scss">
|
||||||
|
.label-color {
|
||||||
|
color: var(--vn-label);
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<i18n>
|
||||||
|
es:
|
||||||
|
Id: Id
|
||||||
|
Type: Tipo
|
||||||
|
Order: Orden
|
||||||
|
Reference: Referencia
|
||||||
|
Description: Descripción
|
||||||
|
Original: Original
|
||||||
|
File: Fichero
|
||||||
|
Employee: Empleado
|
||||||
|
Created: Fecha creación
|
||||||
|
Upload file: Subir fichero
|
||||||
|
</i18n>
|
||||||
|
|
|
@ -15,7 +15,7 @@ const router = useRouter();
|
||||||
const rows = ref([]);
|
const rows = ref([]);
|
||||||
|
|
||||||
const filter = {
|
const filter = {
|
||||||
where: { clientFk: `${route.params.id}` },
|
where: { clientFk: route.params.id },
|
||||||
order: ['started DESC'],
|
order: ['started DESC'],
|
||||||
limit: 20,
|
limit: 20,
|
||||||
};
|
};
|
||||||
|
|
|
@ -71,7 +71,7 @@ const columns = computed(() => [
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
align: 'left',
|
align: 'left',
|
||||||
field: (value) => value.company.code,
|
field: (value) => value.company?.code,
|
||||||
label: t('Company'),
|
label: t('Company'),
|
||||||
name: 'company',
|
name: 'company',
|
||||||
},
|
},
|
||||||
|
|
|
@ -1,3 +1,57 @@
|
||||||
|
<script setup>
|
||||||
|
import { reactive, ref } from 'vue';
|
||||||
|
import { useI18n } from 'vue-i18n';
|
||||||
|
import { useRoute } from 'vue-router';
|
||||||
|
|
||||||
|
import FormModel from 'components/FormModel.vue';
|
||||||
|
import VnInputDate from 'components/common/VnInputDate.vue';
|
||||||
|
import VnInput from 'src/components/common/VnInput.vue';
|
||||||
|
|
||||||
|
const { t } = useI18n();
|
||||||
|
const route = useRoute();
|
||||||
|
|
||||||
|
const unpaidClient = ref(false);
|
||||||
|
const initialData = reactive({
|
||||||
|
dated: '2001-01-01T11:00:00.000Z',
|
||||||
|
clientFk: 1,
|
||||||
|
});
|
||||||
|
|
||||||
|
const onFetch = () => {
|
||||||
|
unpaidClient.value = true;
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div class="flex justify-center">Customer unpaid</div>
|
<FormModel
|
||||||
|
:form-initial-data="initialData"
|
||||||
|
:observe-form-changes="true"
|
||||||
|
:url="`ClientUnpaids/${route.params.id}`"
|
||||||
|
@on-fetch="onFetch"
|
||||||
|
url-create="ClientUnpaids"
|
||||||
|
auto-load
|
||||||
|
>
|
||||||
|
<template #form="{ data }">
|
||||||
|
<VnRow class="row q-gutter-md q-mb-md">
|
||||||
|
<div class="col">
|
||||||
|
<QCheckbox :label="t('Unpaid client')" v-model="unpaidClient" />
|
||||||
|
</div>
|
||||||
|
</VnRow>
|
||||||
|
|
||||||
|
<VnRow class="row q-gutter-md q-mb-md" v-if="unpaidClient">
|
||||||
|
<div class="col">
|
||||||
|
<VnInputDate :label="t('Date')" v-model="data.dated" />
|
||||||
|
</div>
|
||||||
|
<div class="col">
|
||||||
|
<VnInput :label="t('Amount')" type="number" v-model="data.amount" />
|
||||||
|
</div>
|
||||||
|
</VnRow>
|
||||||
</template>
|
</template>
|
||||||
|
</FormModel>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<i18n>
|
||||||
|
es:
|
||||||
|
Unpaid client: Cliente impagado
|
||||||
|
Date: Fecha
|
||||||
|
Amount: Importe
|
||||||
|
</i18n>
|
||||||
|
|
|
@ -3,7 +3,7 @@ import { ref } from 'vue';
|
||||||
import { useI18n } from 'vue-i18n';
|
import { useI18n } from 'vue-i18n';
|
||||||
|
|
||||||
import axios from 'axios';
|
import axios from 'axios';
|
||||||
import { useQuasar } from 'quasar';
|
import { useDialogPluginComponent, useQuasar } from 'quasar';
|
||||||
|
|
||||||
import VnRow from 'components/ui/VnRow.vue';
|
import VnRow from 'components/ui/VnRow.vue';
|
||||||
|
|
||||||
|
@ -18,6 +18,7 @@ const $props = defineProps({
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
const { dialogRef } = useDialogPluginComponent();
|
||||||
const { t } = useI18n();
|
const { t } = useI18n();
|
||||||
const quasar = useQuasar();
|
const quasar = useQuasar();
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,96 @@
|
||||||
|
<script setup>
|
||||||
|
import { useI18n } from 'vue-i18n';
|
||||||
|
import { useRoute, useRouter } from 'vue-router';
|
||||||
|
|
||||||
|
import { useQuasar } from 'quasar';
|
||||||
|
|
||||||
|
import { downloadFile } from 'src/composables/downloadFile';
|
||||||
|
|
||||||
|
import CustomerFileManagementDelete from 'src/pages/Customer/components/CustomerFileManagementDelete.vue';
|
||||||
|
|
||||||
|
const { t } = useI18n();
|
||||||
|
const quasar = useQuasar();
|
||||||
|
const route = useRoute();
|
||||||
|
const router = useRouter();
|
||||||
|
|
||||||
|
const $props = defineProps({
|
||||||
|
id: {
|
||||||
|
type: Number,
|
||||||
|
required: true,
|
||||||
|
},
|
||||||
|
promise: {
|
||||||
|
type: Function,
|
||||||
|
required: true,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
const setDownloadFile = () => downloadFile($props.id);
|
||||||
|
|
||||||
|
const toCustomerFileManagementEdit = () => {
|
||||||
|
router.push({
|
||||||
|
name: 'CustomerFileManagementEdit',
|
||||||
|
params: {
|
||||||
|
id: route.params.id,
|
||||||
|
dmsId: $props.id,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
const showCustomerFileManagementDeleteDialog = () => {
|
||||||
|
quasar.dialog({
|
||||||
|
component: CustomerFileManagementDelete,
|
||||||
|
componentProps: {
|
||||||
|
id: $props.id,
|
||||||
|
promise: setData,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
const setData = () => {
|
||||||
|
$props.promise();
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<div>
|
||||||
|
<QIcon
|
||||||
|
@click.stop="setDownloadFile"
|
||||||
|
color="primary"
|
||||||
|
name="cloud_download"
|
||||||
|
size="sm"
|
||||||
|
>
|
||||||
|
<QTooltip>
|
||||||
|
{{ t('Download file') }}
|
||||||
|
</QTooltip>
|
||||||
|
</QIcon>
|
||||||
|
<QIcon
|
||||||
|
@click.stop="toCustomerFileManagementEdit"
|
||||||
|
class="q-ml-md"
|
||||||
|
color="primary"
|
||||||
|
name="edit"
|
||||||
|
size="sm"
|
||||||
|
>
|
||||||
|
<QTooltip>
|
||||||
|
{{ t('Edit file') }}
|
||||||
|
</QTooltip>
|
||||||
|
</QIcon>
|
||||||
|
<QIcon
|
||||||
|
@click.stop="showCustomerFileManagementDeleteDialog"
|
||||||
|
class="q-ml-md"
|
||||||
|
color="primary"
|
||||||
|
name="delete"
|
||||||
|
size="sm"
|
||||||
|
>
|
||||||
|
<QTooltip>
|
||||||
|
{{ t('Remove file') }}
|
||||||
|
</QTooltip>
|
||||||
|
</QIcon>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<i18n>
|
||||||
|
es:
|
||||||
|
Download file: Descargar fichero
|
||||||
|
Edit file: Editar fichero
|
||||||
|
Remove file: Eliminar fichero
|
||||||
|
</i18n>
|
|
@ -0,0 +1,247 @@
|
||||||
|
<script setup>
|
||||||
|
import { onBeforeMount, ref, watch } from 'vue';
|
||||||
|
import { useI18n } from 'vue-i18n';
|
||||||
|
import { useRoute, useRouter } from 'vue-router';
|
||||||
|
|
||||||
|
import axios from 'axios';
|
||||||
|
import { useQuasar } from 'quasar';
|
||||||
|
|
||||||
|
import { useState } from 'src/composables/useState';
|
||||||
|
|
||||||
|
import FetchData from 'components/FetchData.vue';
|
||||||
|
import VnRow from 'components/ui/VnRow.vue';
|
||||||
|
import VnSelectFilter from 'src/components/common/VnSelectFilter.vue';
|
||||||
|
import VnInput from 'src/components/common/VnInput.vue';
|
||||||
|
|
||||||
|
const { t } = useI18n();
|
||||||
|
const quasar = useQuasar();
|
||||||
|
const route = useRoute();
|
||||||
|
const router = useRouter();
|
||||||
|
const state = useState();
|
||||||
|
const user = state.getUser();
|
||||||
|
|
||||||
|
const filterFindOne = { where: { code: 'paymentsLaw' } };
|
||||||
|
const filterCompanies = { order: ['code'] };
|
||||||
|
const filterWarehouses = { order: ['name'] };
|
||||||
|
|
||||||
|
const client = ref({});
|
||||||
|
const findOne = ref([]);
|
||||||
|
const allowedContentTypes = ref([]);
|
||||||
|
const optionsCompanies = ref([]);
|
||||||
|
const optionsWarehouses = ref([]);
|
||||||
|
const optionsDmsTypes = ref([]);
|
||||||
|
const isLoading = ref(false);
|
||||||
|
const dms = ref({
|
||||||
|
hasFile: false,
|
||||||
|
});
|
||||||
|
|
||||||
|
onBeforeMount(() => {
|
||||||
|
const { companyFk, warehouseFk } = user.value;
|
||||||
|
dms.value.reference = route.params.id;
|
||||||
|
dms.value.companyId = companyFk;
|
||||||
|
dms.value.warehouseId = warehouseFk;
|
||||||
|
});
|
||||||
|
|
||||||
|
watch([client, findOne], ([newClient, newFindOne]) => {
|
||||||
|
dms.value.description = t('clientFileDescription', {
|
||||||
|
dmsTypeName: newFindOne.name?.toUpperCase(),
|
||||||
|
clientName: newClient.name?.toUpperCase(),
|
||||||
|
clientId: newClient.id,
|
||||||
|
});
|
||||||
|
dms.value.dmsTypeId = newFindOne.id;
|
||||||
|
});
|
||||||
|
|
||||||
|
const saveData = async () => {
|
||||||
|
try {
|
||||||
|
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 = `clients/${route.params.id}/uploadFile`;
|
||||||
|
await axios.post(url, formData, {
|
||||||
|
params: dms.value,
|
||||||
|
});
|
||||||
|
quasar.notify({
|
||||||
|
message: t('globals.dataSaved'),
|
||||||
|
type: 'positive',
|
||||||
|
});
|
||||||
|
router.push({ name: 'CustomerFileManagement' });
|
||||||
|
} catch (error) {
|
||||||
|
quasar.notify({
|
||||||
|
message: t(`${error.message}`),
|
||||||
|
type: 'negative',
|
||||||
|
});
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const inputFileRef = ref();
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<fetch-data
|
||||||
|
@on-fetch="(data) => (client = data)"
|
||||||
|
auto-load
|
||||||
|
:url="`Clients/${route.params.id}/getCard`"
|
||||||
|
/>
|
||||||
|
<fetch-data
|
||||||
|
:filter="filterFindOne"
|
||||||
|
@on-fetch="(data) => (findOne = data)"
|
||||||
|
auto-load
|
||||||
|
url="DmsTypes/findOne"
|
||||||
|
/>
|
||||||
|
<fetch-data
|
||||||
|
@on-fetch="(data) => (allowedContentTypes = data)"
|
||||||
|
auto-load
|
||||||
|
url="DmsContainers/allowedContentTypes"
|
||||||
|
/>
|
||||||
|
<fetch-data
|
||||||
|
:filter="filterCompanies"
|
||||||
|
@on-fetch="(data) => (optionsCompanies = data)"
|
||||||
|
auto-load
|
||||||
|
url="Companies"
|
||||||
|
/>
|
||||||
|
<fetch-data
|
||||||
|
:filter="filterWarehouses"
|
||||||
|
@on-fetch="(data) => (optionsWarehouses = data)"
|
||||||
|
auto-load
|
||||||
|
url="Warehouses"
|
||||||
|
/>
|
||||||
|
<fetch-data
|
||||||
|
:filter="filterWarehouses"
|
||||||
|
@on-fetch="(data) => (optionsDmsTypes = data)"
|
||||||
|
auto-load
|
||||||
|
url="DmsTypes"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<QForm>
|
||||||
|
<QCard class="q-pa-lg">
|
||||||
|
<QCardSection>
|
||||||
|
<VnRow class="row q-gutter-md q-mb-md">
|
||||||
|
<div class="col">
|
||||||
|
<VnInput :label="t('Reference')" v-model="dms.reference" />
|
||||||
|
</div>
|
||||||
|
<div class="col">
|
||||||
|
<VnSelectFilter
|
||||||
|
:label="t('Company')"
|
||||||
|
:options="optionsCompanies"
|
||||||
|
option-label="code"
|
||||||
|
option-value="id"
|
||||||
|
v-model="dms.companyId"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</VnRow>
|
||||||
|
|
||||||
|
<VnRow class="row q-gutter-md q-mb-md">
|
||||||
|
<div class="col">
|
||||||
|
<VnSelectFilter
|
||||||
|
:label="t('Warehouse')"
|
||||||
|
:options="optionsWarehouses"
|
||||||
|
option-label="name"
|
||||||
|
option-value="id"
|
||||||
|
v-model="dms.warehouseId"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div class="col">
|
||||||
|
<VnSelectFilter
|
||||||
|
:label="t('Type')"
|
||||||
|
:options="optionsDmsTypes"
|
||||||
|
option-label="name"
|
||||||
|
option-value="id"
|
||||||
|
v-model="dms.dmsTypeId"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</VnRow>
|
||||||
|
|
||||||
|
<VnRow class="row q-gutter-md q-mb-md">
|
||||||
|
<div class="col">
|
||||||
|
<VnInput
|
||||||
|
:label="t('Description')"
|
||||||
|
type="textarea"
|
||||||
|
v-model="dms.description"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</VnRow>
|
||||||
|
|
||||||
|
<VnRow class="row q-gutter-md q-mb-md">
|
||||||
|
<div class="col">
|
||||||
|
<QFile
|
||||||
|
ref="inputFileRef"
|
||||||
|
class="required"
|
||||||
|
: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>
|
||||||
|
</div>
|
||||||
|
</VnRow>
|
||||||
|
|
||||||
|
<QCheckbox
|
||||||
|
:label="t('Generate identifier for original file')"
|
||||||
|
v-model="dms.hasFile"
|
||||||
|
/>
|
||||||
|
</QCardSection>
|
||||||
|
|
||||||
|
<QCardActions class="flex justify-end">
|
||||||
|
<QBtn
|
||||||
|
:disabled="isLoading"
|
||||||
|
:label="t('globals.cancel')"
|
||||||
|
:loading="isLoading"
|
||||||
|
class="q-mr-xl"
|
||||||
|
color="primary"
|
||||||
|
flat
|
||||||
|
/>
|
||||||
|
<QBtn
|
||||||
|
:disabled="isLoading"
|
||||||
|
:label="t('globals.save')"
|
||||||
|
:loading="isLoading"
|
||||||
|
color="primary"
|
||||||
|
@click.stop="saveData"
|
||||||
|
/>
|
||||||
|
</QCardActions>
|
||||||
|
</QCard>
|
||||||
|
</QForm>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<i18n>
|
||||||
|
en:
|
||||||
|
clientFileDescription: '{dmsTypeName} FROM CLIENT {clientName} ID {clientId}'
|
||||||
|
es:
|
||||||
|
Reference: Referencia
|
||||||
|
Company: Empresa
|
||||||
|
Warehouse: Almacén
|
||||||
|
Type: Tipo
|
||||||
|
Description: Descripción
|
||||||
|
clientFileDescription: '{dmsTypeName} DEL CLIENTE {clientName} ID {clientId}'
|
||||||
|
File: Fichero
|
||||||
|
Select a file: Selecciona un fichero
|
||||||
|
Allowed content types: Tipos de archivo permitidos
|
||||||
|
Generate identifier for original file: Generar identificador para archivo original
|
||||||
|
</i18n>
|
|
@ -0,0 +1,81 @@
|
||||||
|
<script setup>
|
||||||
|
import { ref } from 'vue';
|
||||||
|
import { useI18n } from 'vue-i18n';
|
||||||
|
|
||||||
|
import { useDialogPluginComponent, useQuasar } from 'quasar';
|
||||||
|
import axios from 'axios';
|
||||||
|
|
||||||
|
const $props = defineProps({
|
||||||
|
id: {
|
||||||
|
type: Number,
|
||||||
|
required: true,
|
||||||
|
},
|
||||||
|
promise: {
|
||||||
|
type: Function,
|
||||||
|
required: true,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
const { dialogRef } = useDialogPluginComponent();
|
||||||
|
const { t } = useI18n();
|
||||||
|
const quasar = useQuasar();
|
||||||
|
|
||||||
|
const closeButton = ref(null);
|
||||||
|
const isLoading = ref(false);
|
||||||
|
|
||||||
|
const deleteDms = async () => {
|
||||||
|
isLoading.value = true;
|
||||||
|
try {
|
||||||
|
await axios.post(`ClientDms/${$props.id}/removeFile`);
|
||||||
|
if ($props.promise) await $props.promise();
|
||||||
|
} catch (error) {
|
||||||
|
quasar.notify({
|
||||||
|
message: t(`${error.message}`),
|
||||||
|
type: 'negative',
|
||||||
|
});
|
||||||
|
} finally {
|
||||||
|
closeButton.value.click();
|
||||||
|
isLoading.value = false;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<QDialog ref="dialogRef">
|
||||||
|
<QCard class="q-pa-md q-mb-md">
|
||||||
|
<span ref="closeButton" class="row justify-end close-icon" v-close-popup>
|
||||||
|
<QIcon name="close" size="sm" />
|
||||||
|
</span>
|
||||||
|
|
||||||
|
<QCardSection>
|
||||||
|
<div class="mt-1 text-h6">{{ t('This file will be deleted') }}</div>
|
||||||
|
<div>{{ t('Are you sure you want to continue?') }}</div>
|
||||||
|
</QCardSection>
|
||||||
|
|
||||||
|
<QCardActions class="flex justify-end">
|
||||||
|
<QBtn
|
||||||
|
:disabled="isLoading"
|
||||||
|
:label="t('globals.cancel')"
|
||||||
|
:loading="isLoading"
|
||||||
|
class="q-mr-xl"
|
||||||
|
color="primary"
|
||||||
|
flat
|
||||||
|
v-close-popup
|
||||||
|
/>
|
||||||
|
<QBtn
|
||||||
|
:disabled="isLoading"
|
||||||
|
:label="t('globals.save')"
|
||||||
|
:loading="isLoading"
|
||||||
|
@click.stop="deleteDms"
|
||||||
|
color="primary"
|
||||||
|
/>
|
||||||
|
</QCardActions>
|
||||||
|
</QCard>
|
||||||
|
</QDialog>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<i18n>
|
||||||
|
es:
|
||||||
|
This file will be deleted: Este fichero va a ser borrado
|
||||||
|
Are you sure you want to continue?: ¿Seguro que quieres continuar?
|
||||||
|
</i18n>
|
|
@ -0,0 +1,225 @@
|
||||||
|
<script setup>
|
||||||
|
import { ref } from 'vue';
|
||||||
|
import { useI18n } from 'vue-i18n';
|
||||||
|
import { useRoute, useRouter } from 'vue-router';
|
||||||
|
|
||||||
|
import axios from 'axios';
|
||||||
|
import { useQuasar } from 'quasar';
|
||||||
|
|
||||||
|
import FetchData from 'components/FetchData.vue';
|
||||||
|
import VnRow from 'components/ui/VnRow.vue';
|
||||||
|
import VnSelectFilter from 'src/components/common/VnSelectFilter.vue';
|
||||||
|
import VnInput from 'src/components/common/VnInput.vue';
|
||||||
|
|
||||||
|
const { t } = useI18n();
|
||||||
|
const quasar = useQuasar();
|
||||||
|
const route = useRoute();
|
||||||
|
const router = useRouter();
|
||||||
|
|
||||||
|
const filterCompanies = { order: ['code'] };
|
||||||
|
const filterWarehouses = { order: ['name'] };
|
||||||
|
|
||||||
|
const allowedContentTypes = ref([]);
|
||||||
|
const optionsCompanies = ref([]);
|
||||||
|
const optionsWarehouses = ref([]);
|
||||||
|
const optionsDmsTypes = ref([]);
|
||||||
|
const isLoading = ref(false);
|
||||||
|
const dms = ref({
|
||||||
|
hasFile: true,
|
||||||
|
});
|
||||||
|
|
||||||
|
const setCurrentDms = (data) => {
|
||||||
|
dms.value.reference = data.reference;
|
||||||
|
dms.value.companyId = data.companyFk;
|
||||||
|
dms.value.warehouseId = data.warehouseFk;
|
||||||
|
dms.value.dmsTypeId = data.dmsTypeFk;
|
||||||
|
dms.value.description = data.description;
|
||||||
|
};
|
||||||
|
|
||||||
|
const saveData = async () => {
|
||||||
|
try {
|
||||||
|
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 = `dms/${route.params.dmsId}/updateFile`;
|
||||||
|
await axios.post(url, formData, {
|
||||||
|
params: dms.value,
|
||||||
|
});
|
||||||
|
|
||||||
|
quasar.notify({
|
||||||
|
message: t('globals.dataSaved'),
|
||||||
|
type: 'positive',
|
||||||
|
});
|
||||||
|
router.push({ name: 'CustomerFileManagement' });
|
||||||
|
} catch (error) {
|
||||||
|
quasar.notify({
|
||||||
|
message: t(`${error.message}`),
|
||||||
|
type: 'negative',
|
||||||
|
});
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const inputFileRef = ref();
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<fetch-data :url="`Dms/${route.params.dmsId}`" @on-fetch="setCurrentDms" auto-load />
|
||||||
|
<fetch-data
|
||||||
|
@on-fetch="(data) => (allowedContentTypes = data)"
|
||||||
|
auto-load
|
||||||
|
url="DmsContainers/allowedContentTypes"
|
||||||
|
/>
|
||||||
|
<fetch-data
|
||||||
|
:filter="filterCompanies"
|
||||||
|
@on-fetch="(data) => (optionsCompanies = data)"
|
||||||
|
auto-load
|
||||||
|
url="Companies"
|
||||||
|
/>
|
||||||
|
<fetch-data
|
||||||
|
:filter="filterWarehouses"
|
||||||
|
@on-fetch="(data) => (optionsWarehouses = data)"
|
||||||
|
auto-load
|
||||||
|
url="Warehouses"
|
||||||
|
/>
|
||||||
|
<fetch-data
|
||||||
|
:filter="filterWarehouses"
|
||||||
|
@on-fetch="(data) => (optionsDmsTypes = data)"
|
||||||
|
auto-load
|
||||||
|
url="DmsTypes"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<QForm>
|
||||||
|
<QCard class="q-pa-lg">
|
||||||
|
<QCardSection>
|
||||||
|
<VnRow class="row q-gutter-md q-mb-md">
|
||||||
|
<div class="col">
|
||||||
|
<VnInput :label="t('Reference')" v-model="dms.reference" />
|
||||||
|
</div>
|
||||||
|
<div class="col">
|
||||||
|
<VnSelectFilter
|
||||||
|
:label="t('Company')"
|
||||||
|
:options="optionsCompanies"
|
||||||
|
option-label="code"
|
||||||
|
option-value="id"
|
||||||
|
v-model="dms.companyId"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</VnRow>
|
||||||
|
|
||||||
|
<VnRow class="row q-gutter-md q-mb-md">
|
||||||
|
<div class="col">
|
||||||
|
<VnSelectFilter
|
||||||
|
:label="t('Warehouse')"
|
||||||
|
:options="optionsWarehouses"
|
||||||
|
option-label="name"
|
||||||
|
option-value="id"
|
||||||
|
v-model="dms.warehouseId"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div class="col">
|
||||||
|
<VnSelectFilter
|
||||||
|
:label="t('Type')"
|
||||||
|
:options="optionsDmsTypes"
|
||||||
|
option-label="name"
|
||||||
|
option-value="id"
|
||||||
|
v-model="dms.dmsTypeId"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</VnRow>
|
||||||
|
|
||||||
|
<VnRow class="row q-gutter-md q-mb-md">
|
||||||
|
<div class="col">
|
||||||
|
<VnInput
|
||||||
|
:label="t('Description')"
|
||||||
|
type="textarea"
|
||||||
|
v-model="dms.description"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</VnRow>
|
||||||
|
|
||||||
|
<VnRow class="row q-gutter-md q-mb-md">
|
||||||
|
<div class="col">
|
||||||
|
<QFile
|
||||||
|
ref="inputFileRef"
|
||||||
|
class="required"
|
||||||
|
: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>
|
||||||
|
</div>
|
||||||
|
</VnRow>
|
||||||
|
|
||||||
|
<QCheckbox
|
||||||
|
:label="t('Generate identifier for original file')"
|
||||||
|
v-model="dms.hasFile"
|
||||||
|
disable
|
||||||
|
/>
|
||||||
|
</QCardSection>
|
||||||
|
|
||||||
|
<QCardActions class="flex justify-end">
|
||||||
|
<QBtn
|
||||||
|
:disabled="isLoading"
|
||||||
|
:label="t('globals.cancel')"
|
||||||
|
:loading="isLoading"
|
||||||
|
class="q-mr-xl"
|
||||||
|
color="primary"
|
||||||
|
flat
|
||||||
|
/>
|
||||||
|
<QBtn
|
||||||
|
:disabled="isLoading"
|
||||||
|
:label="t('globals.save')"
|
||||||
|
:loading="isLoading"
|
||||||
|
color="primary"
|
||||||
|
@click.stop="saveData"
|
||||||
|
/>
|
||||||
|
</QCardActions>
|
||||||
|
</QCard>
|
||||||
|
</QForm>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<i18n>
|
||||||
|
en:
|
||||||
|
clientFileDescription: '{dmsTypeName} FROM CLIENT {clientName} ID {clientId}'
|
||||||
|
es:
|
||||||
|
Reference: Referencia
|
||||||
|
Company: Empresa
|
||||||
|
Warehouse: Almacén
|
||||||
|
Type: Tipo
|
||||||
|
Description: Descripción
|
||||||
|
clientFileDescription: '{dmsTypeName} DEL CLIENTE {clientName} ID {clientId}'
|
||||||
|
File: Fichero
|
||||||
|
Select a file: Selecciona un fichero
|
||||||
|
Allowed content types: Tipos de archivo permitidos
|
||||||
|
Generate identifier for original file: Generar identificador para archivo original
|
||||||
|
</i18n>
|
|
@ -356,12 +356,12 @@ export default {
|
||||||
{
|
{
|
||||||
name: 'CustomerCreditContracts',
|
name: 'CustomerCreditContracts',
|
||||||
title: 'creditContracts',
|
title: 'creditContracts',
|
||||||
icon: 'paid',
|
icon: 'vn:solunion',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'CustomerCreditOpinion',
|
name: 'CustomerCreditOpinion',
|
||||||
title: 'creditOpinion',
|
title: 'creditOpinion',
|
||||||
icon: 'paid',
|
icon: 'vn:linesprepaired',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
@ -371,7 +371,6 @@ export default {
|
||||||
name: 'CustomerCreditContracts',
|
name: 'CustomerCreditContracts',
|
||||||
meta: {
|
meta: {
|
||||||
title: 'creditContracts',
|
title: 'creditContracts',
|
||||||
icon: 'paid',
|
|
||||||
},
|
},
|
||||||
component: () =>
|
component: () =>
|
||||||
import(
|
import(
|
||||||
|
@ -388,7 +387,6 @@ export default {
|
||||||
name: 'CustomerCreditContracts',
|
name: 'CustomerCreditContracts',
|
||||||
meta: {
|
meta: {
|
||||||
title: 'creditContracts',
|
title: 'creditContracts',
|
||||||
icon: 'paid',
|
|
||||||
},
|
},
|
||||||
component: () =>
|
component: () =>
|
||||||
import(
|
import(
|
||||||
|
@ -418,7 +416,6 @@ export default {
|
||||||
name: 'CustomerCreditOpinion',
|
name: 'CustomerCreditOpinion',
|
||||||
meta: {
|
meta: {
|
||||||
title: 'creditOpinion',
|
title: 'creditOpinion',
|
||||||
icon: 'paid',
|
|
||||||
},
|
},
|
||||||
component: () =>
|
component: () =>
|
||||||
import(
|
import(
|
||||||
|
@ -437,37 +434,37 @@ export default {
|
||||||
{
|
{
|
||||||
name: 'CustomerSamples',
|
name: 'CustomerSamples',
|
||||||
title: 'samples',
|
title: 'samples',
|
||||||
icon: 'pending',
|
icon: 'vn:notes',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'CustomerConsumption',
|
name: 'CustomerConsumption',
|
||||||
title: 'consumption',
|
title: 'consumption',
|
||||||
icon: 'pending',
|
icon: 'vn:lines',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'CustomerMandates',
|
name: 'CustomerMandates',
|
||||||
title: 'mandates',
|
title: 'mandates',
|
||||||
icon: 'pending',
|
icon: 'vn:mandatory',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'CustomerContacts',
|
name: 'CustomerContacts',
|
||||||
title: 'contacts',
|
title: 'contacts',
|
||||||
icon: 'pending',
|
icon: 'contact_phone',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'CustomerWebPayment',
|
name: 'CustomerWebPayment',
|
||||||
title: 'webPayment',
|
title: 'webPayment',
|
||||||
icon: 'pending',
|
icon: 'vn:onlinepayment',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'CustomerFileManagement',
|
name: 'CustomerFileManagement',
|
||||||
title: 'fileManagement',
|
title: 'fileManagement',
|
||||||
icon: 'pending',
|
icon: 'Upload',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'CustomerUnpaid',
|
name: 'CustomerUnpaid',
|
||||||
title: 'unpaid',
|
title: 'unpaid',
|
||||||
icon: 'pending',
|
icon: 'vn:supplierfalse',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
@ -477,7 +474,6 @@ export default {
|
||||||
name: 'CustomerSamples',
|
name: 'CustomerSamples',
|
||||||
meta: {
|
meta: {
|
||||||
title: 'samples',
|
title: 'samples',
|
||||||
icon: 'paid',
|
|
||||||
},
|
},
|
||||||
component: () =>
|
component: () =>
|
||||||
import('src/pages/Customer/Card/CustomerSamples.vue'),
|
import('src/pages/Customer/Card/CustomerSamples.vue'),
|
||||||
|
@ -492,7 +488,6 @@ export default {
|
||||||
name: 'CustomerSamples',
|
name: 'CustomerSamples',
|
||||||
meta: {
|
meta: {
|
||||||
title: 'samples',
|
title: 'samples',
|
||||||
icon: 'paid',
|
|
||||||
},
|
},
|
||||||
component: () =>
|
component: () =>
|
||||||
import(
|
import(
|
||||||
|
@ -514,7 +509,6 @@ export default {
|
||||||
name: 'CustomerConsumption',
|
name: 'CustomerConsumption',
|
||||||
meta: {
|
meta: {
|
||||||
title: 'consumption',
|
title: 'consumption',
|
||||||
icon: 'paid',
|
|
||||||
},
|
},
|
||||||
component: () =>
|
component: () =>
|
||||||
import('src/pages/Customer/Card/CustomerConsumption.vue'),
|
import('src/pages/Customer/Card/CustomerConsumption.vue'),
|
||||||
|
@ -524,7 +518,6 @@ export default {
|
||||||
name: 'CustomerMandates',
|
name: 'CustomerMandates',
|
||||||
meta: {
|
meta: {
|
||||||
title: 'mandates',
|
title: 'mandates',
|
||||||
icon: 'paid',
|
|
||||||
},
|
},
|
||||||
component: () =>
|
component: () =>
|
||||||
import('src/pages/Customer/Card/CustomerMandates.vue'),
|
import('src/pages/Customer/Card/CustomerMandates.vue'),
|
||||||
|
@ -534,7 +527,6 @@ export default {
|
||||||
name: 'CustomerContacts',
|
name: 'CustomerContacts',
|
||||||
meta: {
|
meta: {
|
||||||
title: 'contacts',
|
title: 'contacts',
|
||||||
icon: 'paid',
|
|
||||||
},
|
},
|
||||||
component: () =>
|
component: () =>
|
||||||
import('src/pages/Customer/Card/CustomerContacts.vue'),
|
import('src/pages/Customer/Card/CustomerContacts.vue'),
|
||||||
|
@ -544,7 +536,6 @@ export default {
|
||||||
name: 'CustomerWebPayment',
|
name: 'CustomerWebPayment',
|
||||||
meta: {
|
meta: {
|
||||||
title: 'webPayment',
|
title: 'webPayment',
|
||||||
icon: 'paid',
|
|
||||||
},
|
},
|
||||||
component: () =>
|
component: () =>
|
||||||
import('src/pages/Customer/Card/CustomerWebPayment.vue'),
|
import('src/pages/Customer/Card/CustomerWebPayment.vue'),
|
||||||
|
@ -554,7 +545,6 @@ export default {
|
||||||
name: 'CustomerFileManagement',
|
name: 'CustomerFileManagement',
|
||||||
meta: {
|
meta: {
|
||||||
title: 'fileManagement',
|
title: 'fileManagement',
|
||||||
icon: 'paid',
|
|
||||||
},
|
},
|
||||||
component: () =>
|
component: () =>
|
||||||
import(
|
import(
|
||||||
|
@ -571,7 +561,6 @@ export default {
|
||||||
name: 'CustomerFileManagement',
|
name: 'CustomerFileManagement',
|
||||||
meta: {
|
meta: {
|
||||||
title: 'fileManagement',
|
title: 'fileManagement',
|
||||||
icon: 'paid',
|
|
||||||
},
|
},
|
||||||
component: () =>
|
component: () =>
|
||||||
import(
|
import(
|
||||||
|
@ -586,6 +575,14 @@ export default {
|
||||||
'src/pages/Customer/components/CustomerFileManagementCreate.vue'
|
'src/pages/Customer/components/CustomerFileManagementCreate.vue'
|
||||||
),
|
),
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
path: ':dmsId/edit',
|
||||||
|
name: 'CustomerFileManagementEdit',
|
||||||
|
component: () =>
|
||||||
|
import(
|
||||||
|
'src/pages/Customer/components/CustomerFileManagementEdit.vue'
|
||||||
|
),
|
||||||
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -593,7 +590,6 @@ export default {
|
||||||
name: 'CustomerUnpaid',
|
name: 'CustomerUnpaid',
|
||||||
meta: {
|
meta: {
|
||||||
title: 'unpaid',
|
title: 'unpaid',
|
||||||
icon: 'paid',
|
|
||||||
},
|
},
|
||||||
component: () =>
|
component: () =>
|
||||||
import('src/pages/Customer/Card/CustomerUnpaid.vue'),
|
import('src/pages/Customer/Card/CustomerUnpaid.vue'),
|
||||||
|
|
Loading…
Reference in New Issue