refactor: refs #8316 used VnSection and VnCardBeta #1146

Merged
alexm merged 8 commits from 8316-invoiceOutCardWithVnCardBeta into dev 2025-01-24 09:35:19 +00:00
1 changed files with 5 additions and 2 deletions
Showing only changes of commit 34cfd57589 - Show all commits

View File

@ -38,7 +38,11 @@ async function fetchClientAddress(id) {
addressOptions.value = data; addressOptions.value = data;
} }
const exprBuilder = (_, value) => {
return {
or: [{ code: value }, { description: { like: `%${value}%` } }],
};
};
const columns = computed(() => [ const columns = computed(() => [
{ {
@ -177,7 +181,6 @@ watchEffect(selectedRows);
:array-data-props="{ :array-data-props="{
url: 'InvoiceOuts/filter', url: 'InvoiceOuts/filter',
order: ['id DESC'], order: ['id DESC'],
exprBuilder,
}" }"
> >
<template #rightMenu> <template #rightMenu>