Merge branch 'dev' of https://gitea.verdnatura.es/verdnatura/salix-front into 6911-saveOnEnter
This commit is contained in:
parent
5e43af9efd
commit
c2c100458e
|
@ -20,6 +20,12 @@ export default {
|
||||||
if (firstInputElement) {
|
if (firstInputElement) {
|
||||||
firstInputElement.focus();
|
firstInputElement.focus();
|
||||||
}
|
}
|
||||||
|
const that = this;
|
||||||
|
document.addEventListener('keyup', function (evt) {
|
||||||
|
if (evt.keyCode === 13) {
|
||||||
|
that.onSubmit();
|
||||||
|
}
|
||||||
|
});
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
|
@ -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');
|
|
|
@ -164,11 +164,7 @@ function formatValue(value) {
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<<<<<<< HEAD
|
|
||||||
<QForm @submit="search" @keyup.enter="search">
|
|
||||||
=======
|
|
||||||
<QForm @submit="search" id="filterPanelForm">
|
<QForm @submit="search" id="filterPanelForm">
|
||||||
>>>>>>> a9f7cfb8d4acc624cee336bed47618e6d53c3476
|
|
||||||
<QList dense>
|
<QList dense>
|
||||||
<QItem class="q-mt-xs">
|
<QItem class="q-mt-xs">
|
||||||
<QItemSection top>
|
<QItemSection top>
|
||||||
|
|
|
@ -250,22 +250,11 @@ const creditWarning = computed(() => {
|
||||||
/>
|
/>
|
||||||
</QCard>
|
</QCard>
|
||||||
<QCard class="vn-one" v-if="entity.account">
|
<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
|
<VnTitle
|
||||||
:url="`https://grafana.verdnatura.es/d/40buzE4Vk/comportamiento-pagos-clientes?orgId=1&var-clientFk=${entityId}`"
|
:url="`https://grafana.verdnatura.es/d/40buzE4Vk/comportamiento-pagos-clientes?orgId=1&var-clientFk=${entityId}`"
|
||||||
:text="t('customer.summary.financialData')"
|
:text="t('customer.summary.financialData')"
|
||||||
icon="vn:grafana"
|
icon="vn:grafana"
|
||||||
/>
|
/>
|
||||||
>>>>>>> a9f7cfb8d4acc624cee336bed47618e6d53c3476
|
|
||||||
<VnLv
|
<VnLv
|
||||||
:label="t('customer.summary.risk')"
|
:label="t('customer.summary.risk')"
|
||||||
:value="toCurrency(entity?.debt?.debt)"
|
:value="toCurrency(entity?.debt?.debt)"
|
||||||
|
|
Loading…
Reference in New Issue