Compare commits

...

17 Commits

Author SHA1 Message Date
Pablo Natek 1ff7d55644 Merge branch 'dev' of https: refs #8004//gitea.verdnatura.es/verdnatura/salix-front into 8004-liliumStyleRemake
gitea/salix-front/pipeline/pr-dev This commit looks good Details
2024-10-11 11:44:54 +02:00
Javier Segarra f72761f36c Merge pull request '#7404 - Rollback Style to compress spaces' (!820) from revert_css_styles into dev
gitea/salix-front/pipeline/pr-4774-traducciones This commit looks good Details
gitea/salix-front/pipeline/head This commit looks good Details
Reviewed-on: #820
Reviewed-by: Javi Gallego <jgallego@verdnatura.es>
2024-10-10 12:29:40 +00:00
Javier Segarra 2ff99d3faa feat: define as global dense value
gitea/salix-front/pipeline/pr-dev This commit looks good Details
2024-10-10 13:56:14 +02:00
Javier Segarra 3dfb836f8e revert: rollback compress spacestyle 2024-10-10 13:56:11 +02:00
Jorge Penadés 480f243205 Merge pull request 'feat: refs #7207 show queue' (!748) from 7207-showPbx into dev
gitea/salix-front/pipeline/pr-4774-traducciones This commit looks good Details
gitea/salix-front/pipeline/head This commit looks good Details
Reviewed-on: #748
Reviewed-by: Javier Segarra <jsegarra@verdnatura.es>
2024-10-10 07:20:25 +00:00
Jorge Penadés 00dc2c6edc Merge branch 'dev' into 7207-showPbx
gitea/salix-front/pipeline/pr-dev This commit looks good Details
2024-10-10 07:18:00 +00:00
Jorge Penadés 1723331615 Merge branch 'dev' of https: refs #7207//gitea.verdnatura.es/verdnatura/salix-front into 7207-showPbx
gitea/salix-front/pipeline/pr-dev This commit looks good Details
2024-10-07 16:35:00 +02:00
Jorge Penadés 9383a71adb Merge branch 'dev' of https://gitea.verdnatura.es/verdnatura/salix-front into 7207-showPbx
gitea/salix-front/pipeline/pr-dev This commit looks good Details
2024-10-04 16:38:27 +02:00
Jorge Penadés 905841e0d6 Merge branch 'dev' into 7207-showPbx
gitea/salix-front/pipeline/pr-dev This commit looks good Details
2024-10-04 11:45:28 +00:00
Jorge Penadés c64fe8c044 chore: refs #7207 refactor locale
gitea/salix-front/pipeline/pr-dev This commit looks good Details
2024-10-03 17:04:56 +02:00
Jorge Penadés b0ba6a5e0f Merge branch 'dev' of https://gitea.verdnatura.es/verdnatura/salix-front into 7207-showPbx
gitea/salix-front/pipeline/pr-dev This commit looks good Details
2024-10-03 15:40:05 +02:00
Jorge Penadés 45b3ed6e17 fix: refs #7207 te2e
gitea/salix-front/pipeline/pr-dev This commit looks good Details
2024-09-25 09:53:06 +02:00
Jorge Penadés b54d358617 fix: refs #7207 use right locale
gitea/salix-front/pipeline/pr-dev This commit looks good Details
2024-09-25 09:14:35 +02:00
Jorge Penadés dc6acfadb7 Merge branch 'dev' of https://gitea.verdnatura.es/verdnatura/salix-front into 7207-showPbx
gitea/salix-front/pipeline/pr-dev This commit looks good Details
2024-09-25 08:51:21 +02:00
Jorge Penadés 86a82c5aad Merge branch 'dev' of https://gitea.verdnatura.es/verdnatura/salix-front into 7207-showPbx
gitea/salix-front/pipeline/pr-dev This commit looks good Details
2024-09-24 14:39:18 +02:00
Jorge Penadés 42e4493fb6 Merge branch 'dev' of https://gitea.verdnatura.es/verdnatura/salix-front into 7207-showPbx
gitea/salix-front/pipeline/pr-dev This commit looks good Details
2024-09-24 09:27:38 +02:00
Jorge Penadés 2cb9899de1 feat: refs #7207 show queue
gitea/salix-front/pipeline/pr-dev This commit looks good Details
2024-09-23 15:38:54 +02:00
15 changed files with 21 additions and 45 deletions

View File

@ -0,0 +1,4 @@
import { QInput } from 'quasar';
import setDefault from './setDefault';
setDefault(QInput, 'dense', true);

View File

@ -0,0 +1,4 @@
import { QSelect } from 'quasar';
import setDefault from './setDefault';
setDefault(QSelect, 'dense', true);

View File

@ -1 +1,3 @@
export * from './defaults/qTable'; export * from './defaults/qTable';
export * from './defaults/qInput';
export * from './defaults/qSelect';

View File

@ -130,24 +130,4 @@ const mixinRules = [
.q-field__append { .q-field__append {
padding-inline: 0; padding-inline: 0;
} }
.q-field__append.q-field__marginal.row.no-wrap.items-center.row {
height: 20px;
}
.q-field--outlined .q-field__append.q-field__marginal.row.no-wrap.items-center.row {
height: auto;
}
.q-field__control {
height: unset;
}
.q-field--labeled {
.q-field__native,
.q-field__prefix,
.q-field__suffix,
.q-field__input {
padding-bottom: 0;
min-height: 15px;
}
}
</style> </style>

View File

@ -283,15 +283,4 @@ const getVal = (val) => ($props.useLike ? { like: `%${val}%` } : val);
.q-field--outlined { .q-field--outlined {
max-width: 100%; max-width: 100%;
} }
.q-field__inner {
.q-field__control {
min-height: auto !important;
display: flex;
align-items: flex-end;
.q-field__native.row {
min-height: auto !important;
}
}
}
</style> </style>

View File

@ -9,7 +9,6 @@ defineProps({ wrap: { type: Boolean, default: false } });
<style lang="scss" scoped> <style lang="scss" scoped>
.vn-row { .vn-row {
display: flex; display: flex;
align-items: flex-end;
> :deep(*) { > :deep(*) {
flex: 1; flex: 1;
} }

View File

@ -274,10 +274,7 @@ const getLink = (param) => `#/invoice-in/${entityId.value}/${param}`;
:label="t('invoiceIn.summary.company')" :label="t('invoiceIn.summary.company')"
:value="entity.company?.code" :value="entity.company?.code"
/> />
<VnLv <VnLv :label="t('invoiceIn.isBooked')" :value="invoiceIn?.isBooked" />
:label="t('invoiceIn.summary.booked')"
:value="invoiceIn?.isBooked"
/>
</QCard> </QCard>
<QCard class="vn-one"> <QCard class="vn-one">
<QCardSection class="q-pa-none"> <QCardSection class="q-pa-none">

View File

@ -116,7 +116,7 @@ const activities = ref([]);
<QItem> <QItem>
<QItemSection> <QItemSection>
<QCheckbox <QCheckbox
:label="t('params.isBooked')" :label="t('invoiceIn.isBooked')"
v-model="params.isBooked" v-model="params.isBooked"
@update:model-value="searchFn()" @update:model-value="searchFn()"
toggle-indeterminate toggle-indeterminate
@ -170,7 +170,7 @@ es:
awb: AWB awb: AWB
amount: Importe amount: Importe
issued: Emitida issued: Emitida
isBooked: Conciliada isBooked: Contabilizada
account: Cuenta contable account: Cuenta contable
created: Creada created: Creada
dued: Vencida dued: Vencida

View File

@ -65,7 +65,7 @@ const cols = computed(() => [
{ {
align: 'left', align: 'left',
name: 'isBooked', name: 'isBooked',
label: t('invoiceIn.list.isBooked'), label: t('invoiceIn.isBooked'),
columnFilter: false, columnFilter: false,
cardVisible: true, cardVisible: true,
}, },

View File

@ -1,5 +1,6 @@
invoiceIn: invoiceIn:
serial: Serial serial: Serial
isBooked: Is booked
list: list:
ref: Reference ref: Reference
supplier: Supplier supplier: Supplier
@ -7,7 +8,6 @@ invoiceIn:
serial: Serial serial: Serial
file: File file: File
issued: Issued issued: Issued
isBooked: Is booked
awb: AWB awb: AWB
amount: Amount amount: Amount
card: card:
@ -31,7 +31,6 @@ invoiceIn:
sage: Sage withholding sage: Sage withholding
vat: Undeductible VAT vat: Undeductible VAT
company: Company company: Company
booked: Booked
expense: Expense expense: Expense
taxableBase: Taxable base taxableBase: Taxable base
rate: Rate rate: Rate

View File

@ -1,5 +1,6 @@
invoiceIn: invoiceIn:
serial: Serie serial: Serie
isBooked: Contabilizada
list: list:
ref: Referencia ref: Referencia
supplier: Proveedor supplier: Proveedor
@ -7,7 +8,6 @@ invoiceIn:
shortIssued: F. emisión shortIssued: F. emisión
file: Fichero file: Fichero
issued: Fecha emisión issued: Fecha emisión
isBooked: Conciliada
awb: AWB awb: AWB
amount: Importe amount: Importe
card: card:
@ -31,7 +31,6 @@ invoiceIn:
sage: Retención sage sage: Retención sage
vat: Iva no deducible vat: Iva no deducible
company: Empresa company: Empresa
booked: Contabilizada
expense: Gasto expense: Gasto
taxableBase: Base imp. taxableBase: Base imp.
rate: Tasa rate: Tasa

View File

@ -139,6 +139,7 @@ onBeforeMount(async () => {
<VnLinkPhone :phone-number="worker?.sip?.extension" /> <VnLinkPhone :phone-number="worker?.sip?.extension" />
</template> </template>
</VnLv> </VnLv>
<VnLv :label="t('queue')" :value="worker.sip?.queueMember?.queue" />
</QCard> </QCard>
</template> </template>
</CardSummary> </CardSummary>

View File

@ -9,3 +9,4 @@ tableColumns:
fi: FI fi: FI
SSN: SSN SSN: SSN
extension: Extension extension: Extension
queue: Queue

View File

@ -14,3 +14,4 @@ tableColumns:
fi: NIF fi: NIF
SSN: NSS SSN: NSS
extension: Extensión extension: Extensión
queue: Cola

View File

@ -1,7 +1,7 @@
/// <reference types="cypress" /> /// <reference types="cypress" />
describe('Ticket descriptor', () => { describe('Ticket descriptor', () => {
const toCloneOpt = '[role="menu"] .q-list > :nth-child(5)'; const toCloneOpt = '[role="menu"] .q-list > :nth-child(8)';
const setWeightOpt = '[role="menu"] .q-list > :nth-child(6)'; const setWeightOpt = '[role="menu"] .q-list > :nth-child(13)';
const warehouseValue = ':nth-child(1) > :nth-child(6) > .value > span'; const warehouseValue = ':nth-child(1) > :nth-child(6) > .value > span';
const summaryHeader = '.summaryHeader > div'; const summaryHeader = '.summaryHeader > div';
const weight = 25; const weight = 25;