feat: pagination + hide fields in settings

This commit is contained in:
Vasily Zubarev
2025-03-27 08:48:47 +01:00
parent a80684c3fb
commit 61da617f68
25 changed files with 813 additions and 220 deletions

View File

@@ -317,7 +317,7 @@ const fields = [
type: "string",
llm_prompt: "description of the transaction",
isVisibleInList: false,
isVisibleInAnalysis: true,
isVisibleInAnalysis: false,
isRequired: false,
isExtra: false,
},
@@ -431,11 +431,21 @@ const fields = [
isRequired: false,
isExtra: false,
},
{
code: "vat_rate",
name: "VAT Rate",
type: "number",
llm_prompt: "VAT rate in percentage 0-100",
isVisibleInList: false,
isVisibleInAnalysis: false,
isRequired: false,
isExtra: true,
},
{
code: "vat",
name: "VAT Amount",
type: "number",
llm_prompt: "total VAT total in currency of the invoice",
llm_prompt: "total VAT in currency of the invoice",
isVisibleInList: false,
isVisibleInAnalysis: false,
isRequired: false,
@@ -446,6 +456,8 @@ const fields = [
name: "Extracted Text",
type: "string",
llm_prompt: "extract all recognised text from the invoice",
isVisibleInList: false,
isVisibleInAnalysis: false,
isRequired: false,
isExtra: false,
},