From f04aa78a8fa625a88a253c9899cd2844dc98fe1b Mon Sep 17 00:00:00 2001 From: pranjal_backbase Date: Tue, 22 Oct 2024 14:19:26 +0200 Subject: [PATCH 1/2] add product type - investment portfolio --- pom.xml | 2 +- src/main/resources/data/products.json | 7 +++++++ src/main/resources/data/retail/product-group-seed.json | 5 +++-- 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/pom.xml b/pom.xml index 4295c2c5..5d974edf 100644 --- a/pom.xml +++ b/pom.xml @@ -51,7 +51,7 @@ 1.0.5 - 2.11.1 + 2.12.5 2.1.1 1.0.3 2.7.2 diff --git a/src/main/resources/data/products.json b/src/main/resources/data/products.json index 702298c4..08a4fe35 100644 --- a/src/main/resources/data/products.json +++ b/src/main/resources/data/products.json @@ -47,5 +47,12 @@ "productKindName": "Investment Account", "productTypeId": "7777777", "productTypeName": "Investment Account" + }, + { + "id": "102", + "productKindId": "kind102", + "productKindName": "Investment Portfolio", + "productTypeId": "102102102", + "productTypeName": "Investment Portfolio" } ] diff --git a/src/main/resources/data/retail/product-group-seed.json b/src/main/resources/data/retail/product-group-seed.json index f81fa44f..264b3bbb 100644 --- a/src/main/resources/data/retail/product-group-seed.json +++ b/src/main/resources/data/retail/product-group-seed.json @@ -9,10 +9,11 @@ "Current Account", "Joint Account", "Savings Account", - "Credit Card" + "Credit Card", + "Investment Portfolio" ], "productIds": [ - "1","2", "4", "7" + "1","2", "4", "7", "102" ], "numberOfArrangements": { "min": 8, From ba328e0837f654212de2a7f014ada0c72dcde456 Mon Sep 17 00:00:00 2001 From: pranjal_backbase Date: Wed, 30 Oct 2024 11:52:02 +0100 Subject: [PATCH 2/2] update kind id --- src/main/resources/data/products.json | 6 +++--- src/main/resources/data/retail/product-group-seed.json | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/resources/data/products.json b/src/main/resources/data/products.json index 08a4fe35..1d7cfd42 100644 --- a/src/main/resources/data/products.json +++ b/src/main/resources/data/products.json @@ -49,10 +49,10 @@ "productTypeName": "Investment Account" }, { - "id": "102", - "productKindId": "kind102", + "id": "10", + "productKindId": "kind10", "productKindName": "Investment Portfolio", - "productTypeId": "102102102", + "productTypeId": "10101010", "productTypeName": "Investment Portfolio" } ] diff --git a/src/main/resources/data/retail/product-group-seed.json b/src/main/resources/data/retail/product-group-seed.json index 264b3bbb..2160197d 100644 --- a/src/main/resources/data/retail/product-group-seed.json +++ b/src/main/resources/data/retail/product-group-seed.json @@ -13,7 +13,7 @@ "Investment Portfolio" ], "productIds": [ - "1","2", "4", "7", "102" + "1","2", "4", "7", "10" ], "numberOfArrangements": { "min": 8,