refactor: refs #6971 fixed request changes
gitea/salix-front/pipeline/pr-dev This commit looks good Details

This commit is contained in:
Jon Elias 2024-03-25 09:52:04 +01:00
parent a530e44179
commit bf0e2d3bf6
2 changed files with 15 additions and 29 deletions

View File

@ -204,18 +204,7 @@ function navigateToRouteSummary(event, row) {
<QPage class="column items-center"> <QPage class="column items-center">
<div class="route-list"> <div class="route-list">
<div class="q-pa-md"> <div class="q-pa-md">
<QCard class="vn-one q-py-sm q-px-lg"> <QCard class="vn-one q-py-sm q-px-lg flex justify-between">
<QBtn
icon="vn:invoice-in-create"
color="primary"
:disable="!selectedRows?.length"
@click="openDmsUploadDialog"
class="createInvoiceIn"
>
<QTooltip>
{{ t('Create invoiceIn') }}
</QTooltip>
</QBtn>
<VnLv class="flex"> <VnLv class="flex">
<template #label> <template #label>
<span class="text-h6">{{ t('Total') }}</span> <span class="text-h6">{{ t('Total') }}</span>
@ -224,6 +213,16 @@ function navigateToRouteSummary(event, row) {
<span class="text-h6 q-ml-md">{{ toCurrency(total) }}</span> <span class="text-h6 q-ml-md">{{ toCurrency(total) }}</span>
</template> </template>
</VnLv> </VnLv>
<QBtn
icon="vn:invoice-in-create"
color="primary"
:disable="!selectedRows?.length"
@click="openDmsUploadDialog"
>
<QTooltip>
{{ t('Create invoiceIn') }}
</QTooltip>
</QBtn>
</QCard> </QCard>
</div> </div>
<VnPaginate <VnPaginate
@ -325,11 +324,6 @@ function navigateToRouteSummary(event, row) {
cursor: pointer; cursor: pointer;
} }
} }
.createInvoiceIn {
float: right;
margin-top: -0.2%;
}
</style> </style>
<i18n> <i18n>
es: es:

View File

@ -444,18 +444,10 @@ const openTicketsDialog = (id) => {
</div> </div>
<QPageSticky :offset="[20, 20]"> <QPageSticky :offset="[20, 20]">
<RouterLink :to="{ name: 'RouteCreate' }"> <RouterLink :to="{ name: 'RouteCreate' }">
<QBtn <QBtn fab icon="add" color="primary" />
fab <QTooltip>
icon="add" {{ t('newRoute') }}
color="primary" </QTooltip>
:disable="!selectedRows?.length"
@click="
{
navigate;
}
"
/>
<QTooltip>{{ t('newRoute') }}</QTooltip>
</RouterLink> </RouterLink>
</QPageSticky> </QPageSticky>
</QPage> </QPage>