Merge branch 'dev' of https://gitea.verdnatura.es/verdnatura/salix-front into 6911-saveOnEnter

This commit is contained in:
Jorge Penadés 2024-03-27 11:43:21 +01:00
parent 5e43af9efd
commit c2c100458e
4 changed files with 6 additions and 56 deletions

View File

@ -20,6 +20,12 @@ export default {
if (firstInputElement) {
firstInputElement.focus();
}
const that = this;
document.addEventListener('keyup', function (evt) {
if (evt.keyCode === 13) {
that.onSubmit();
}
});
}
},
};

View File

@ -1,41 +0,0 @@
import { QInput, QSelect } from "quasar";
import { QTable} from "quasar";
const setDefault = (component, key, value) => {
const prop = component.props[key];
switch (typeof prop) {
case "object":
prop.default = value;
break;
case "function":
component.props[key] = {
type: prop,
default: value
};
break;
case "undefined":
throw new Error("unknown prop: " + key);
default:
throw new Error("unhandled type: " + typeof prop);
}
};
QInput.props.outlined = {
type: QInput.props.outlined,
default: true
};
QInput.props.dense = {
type: QInput.props.dense,
default: true
};
QInput.props.stackLabel = {
type: QInput.props.stackLabel,
default: true
};
setDefault(QInput, "outlined", false);
setDefault(QTable, "gridHeader", true);
setDefault(QTable, "color", 'red-8');
setDefault(QTable, "pagination", { rowsPerPage: 25 });
setDefault(QTable, "rowKey", 'id');
setDefault(QSelect,'optionValue','id');
setDefault(QSelect,'optionLabel','name');

View File

@ -164,11 +164,7 @@ function formatValue(value) {
</script>
<template>
<<<<<<< HEAD
<QForm @submit="search" @keyup.enter="search">
=======
<QForm @submit="search" id="filterPanelForm">
>>>>>>> a9f7cfb8d4acc624cee336bed47618e6d53c3476
<QList dense>
<QItem class="q-mt-xs">
<QItemSection top>

View File

@ -250,22 +250,11 @@ const creditWarning = computed(() => {
/>
</QCard>
<QCard class="vn-one" v-if="entity.account">
<<<<<<< HEAD
<a
class="header link"
:href="`https://grafana.verdnatura.es/d/40buzE4Vk/comportamiento-pagos-clientes?orgId=1&var-clientFk=${entityId}`"
link
>
{{ t('customer.summary.financialData') }}
<QIcon name="vn:grafana" color="primary" />
</a>
=======
<VnTitle
:url="`https://grafana.verdnatura.es/d/40buzE4Vk/comportamiento-pagos-clientes?orgId=1&var-clientFk=${entityId}`"
:text="t('customer.summary.financialData')"
icon="vn:grafana"
/>
>>>>>>> a9f7cfb8d4acc624cee336bed47618e6d53c3476
<VnLv
:label="t('customer.summary.risk')"
:value="toCurrency(entity?.debt?.debt)"