fix: remove limit
gitea/salix-front/pipeline/pr-test There was a failure building this commit
Details
gitea/salix-front/pipeline/pr-test There was a failure building this commit
Details
This commit is contained in:
parent
4bbdd3f162
commit
0b1b0b40a2
|
@ -55,7 +55,6 @@ const filterBanks = {
|
||||||
fields: ['id', 'bank', 'accountingTypeFk'],
|
fields: ['id', 'bank', 'accountingTypeFk'],
|
||||||
include: { relation: 'accountingType' },
|
include: { relation: 'accountingType' },
|
||||||
order: 'id',
|
order: 'id',
|
||||||
limit: 30,
|
|
||||||
};
|
};
|
||||||
|
|
||||||
const filterClientFindOne = {
|
const filterClientFindOne = {
|
||||||
|
@ -190,6 +189,7 @@ async function getAmountPaid() {
|
||||||
:prevent-submit="true"
|
:prevent-submit="true"
|
||||||
>
|
>
|
||||||
<template #form-inputs="{ data, validate }">
|
<template #form-inputs="{ data, validate }">
|
||||||
|
{{ initialData }}
|
||||||
<h5 class="q-mt-none">{{ t('New payment') }}</h5>
|
<h5 class="q-mt-none">{{ t('New payment') }}</h5>
|
||||||
<VnRow>
|
<VnRow>
|
||||||
<VnSelect
|
<VnSelect
|
||||||
|
|
|
@ -48,7 +48,6 @@ const filterBanks = {
|
||||||
fields: ['id', 'bank', 'accountingTypeFk'],
|
fields: ['id', 'bank', 'accountingTypeFk'],
|
||||||
include: { relation: 'accountingType' },
|
include: { relation: 'accountingType' },
|
||||||
order: 'id',
|
order: 'id',
|
||||||
limit: 30,
|
|
||||||
};
|
};
|
||||||
|
|
||||||
const state = useState();
|
const state = useState();
|
||||||
|
@ -104,7 +103,6 @@ function onBeforeSave(data) {
|
||||||
|
|
||||||
async function onDataSaved({ email, id }) {
|
async function onDataSaved({ email, id }) {
|
||||||
try {
|
try {
|
||||||
debugger;
|
|
||||||
if (shouldSendEmail.value && isCash.value)
|
if (shouldSendEmail.value && isCash.value)
|
||||||
await sendEmail(`Receipts/${id}/receipt-email`, {
|
await sendEmail(`Receipts/${id}/receipt-email`, {
|
||||||
recipient: email,
|
recipient: email,
|
||||||
|
|
Loading…
Reference in New Issue