mirror of
https://github.com/marcogll/TaxHacker_s23.git
synced 2026-01-13 21:35:19 +00:00
feat: pagination + hide fields in settings
This commit is contained in:
@@ -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,
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user