commit d441802e074c7fe6e86dd0c019c7ef62babddf7e
parent 340d20d817ce63e5085d242d220005b6ed47ee91
Author: Florian Dold <florian@dold.me>
Date: Mon, 10 Mar 2025 13:48:05 +0100
vqf form fixes
Diffstat:
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/packages/web-util/src/forms/gana/VQF_902_1_customer.ts b/packages/web-util/src/forms/gana/VQF_902_1_customer.ts
@@ -79,7 +79,7 @@ member act as director of a domiciliary company, this domiciliary company is the
type: "text",
required: false,
hide(value, root) {
- return !!root && root["CUSTOMER_INFO"] !== "NATURAL_PERSON";
+ return !!root && root["CUSTOMER_INFO_TYPE"] !== "NATURAL_PERSON";
},
},
{
@@ -186,7 +186,7 @@ member act as director of a domiciliary company, this domiciliary company is the
type: "text",
required: true,
hide(value, root) {
- return !!root && root["CUSTOMER_TYPE"] !== "LEGAL_ENTITY";
+ return !!root && root["CUSTOMER_INFO_TYPE"] !== "LEGAL_ENTITY";
},
},
{
@@ -195,7 +195,7 @@ member act as director of a domiciliary company, this domiciliary company is the
type: "textArea",
required: true,
hide(value, root) {
- return !!root && root["CUSTOMER_TYPE"] !== "LEGAL_ENTITY";
+ return !!root && root["CUSTOMER_INFO_TYPE"] !== "LEGAL_ENTITY";
},
},
{
@@ -205,7 +205,7 @@ member act as director of a domiciliary company, this domiciliary company is the
type: "text",
required: false,
hide(value, root) {
- return !!root && root["CUSTOMER_TYPE"] !== "LEGAL_ENTITY";
+ return !!root && root["CUSTOMER_INFO_TYPE"] !== "LEGAL_ENTITY";
},
},
{
@@ -214,7 +214,7 @@ member act as director of a domiciliary company, this domiciliary company is the
type: "text",
required: false,
hide(value, root) {
- return !!root && root["CUSTOMER_TYPE"] !== "LEGAL_ENTITY";
+ return !!root && root["CUSTOMER_INFO_TYPE"] !== "LEGAL_ENTITY";
},
},
{
@@ -223,7 +223,7 @@ member act as director of a domiciliary company, this domiciliary company is the
type: "text",
required: false,
hide(value, root) {
- return !!root && root["CUSTOMER_TYPE"] !== "LEGAL_ENTITY";
+ return !!root && root["CUSTOMER_INFO_TYPE"] !== "LEGAL_ENTITY";
},
},
{
@@ -233,7 +233,7 @@ member act as director of a domiciliary company, this domiciliary company is the
accept: "application/pdf",
required: true,
hide(value, root) {
- return !!root && root["CUSTOMER_TYPE"] !== "LEGAL_ENTITY";
+ return !!root && root["CUSTOMER_INFO_TYPE"] !== "LEGAL_ENTITY";
},
},
],
@@ -242,7 +242,7 @@ member act as director of a domiciliary company, this domiciliary company is the
title: i18n.str`Information on the natural persons who establish the business relationship for legal entities and partnerships`,
description: i18n.str`For legal entities and partnerships the identity of the natural persons who establish the business relationship must be verified.`,
hide(root) {
- return !!root && root["CUSTOMER_TYPE"] !== "OPERATIONAL";
+ return !!root && root["CUSTOMER_INFO_TYPE"] !== "LEGAL_ENTITY";
},
fields: [
{