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'],
|
||||
include: { relation: 'accountingType' },
|
||||
order: 'id',
|
||||
limit: 30,
|
||||
};
|
||||
|
||||
const filterClientFindOne = {
|
||||
|
@ -190,6 +189,7 @@ async function getAmountPaid() {
|
|||
:prevent-submit="true"
|
||||
>
|
||||
<template #form-inputs="{ data, validate }">
|
||||
{{ initialData }}
|
||||
<h5 class="q-mt-none">{{ t('New payment') }}</h5>
|
||||
<VnRow>
|
||||
<VnSelect
|
||||
|
|
|
@ -48,7 +48,6 @@ const filterBanks = {
|
|||
fields: ['id', 'bank', 'accountingTypeFk'],
|
||||
include: { relation: 'accountingType' },
|
||||
order: 'id',
|
||||
limit: 30,
|
||||
};
|
||||
|
||||
const state = useState();
|
||||
|
@ -104,7 +103,6 @@ function onBeforeSave(data) {
|
|||
|
||||
async function onDataSaved({ email, id }) {
|
||||
try {
|
||||
debugger;
|
||||
if (shouldSendEmail.value && isCash.value)
|
||||
await sendEmail(`Receipts/${id}/receipt-email`, {
|
||||
recipient: email,
|
||||
|
|
Loading…
Reference in New Issue