You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@fineract.apache.org by al...@apache.org on 2022/01/08 23:51:44 UTC

[fineract] branch develop updated (2ce9013 -> 3d18972)

This is an automated email from the ASF dual-hosted git repository.

aleks pushed a change to branch develop
in repository https://gitbox.apache.org/repos/asf/fineract.git.


    from 2ce9013  Fix version info
     new 349c5b9  FINERACT-1460 update SZL and add SSP
     new 3d18972  ran the spotless plug in

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 ...l_issues.sql => V381__update_currencies_new_currencies.sql} | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)
 copy fineract-provider/src/main/resources/sql/migrations/core_db/{V65__fix_rupee_symbol_issues.sql => V381__update_currencies_new_currencies.sql} (71%)

[fineract] 01/02: FINERACT-1460 update SZL and add SSP

Posted by al...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

aleks pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/fineract.git

commit 349c5b910bbddaff6a7f5bbb3f6cc893a83f2eb2
Author: francisguchie <fr...@gmail.com>
AuthorDate: Tue Jan 4 15:31:40 2022 +0200

    FINERACT-1460 update SZL and add SSP
---
 .../V381__update_currencies_new_currencies.sql     | 28 ++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/fineract-provider/src/main/resources/sql/migrations/core_db/V381__update_currencies_new_currencies.sql b/fineract-provider/src/main/resources/sql/migrations/core_db/V381__update_currencies_new_currencies.sql
new file mode 100644
index 0000000..96a7cf5
--- /dev/null
+++ b/fineract-provider/src/main/resources/sql/migrations/core_db/V381__update_currencies_new_currencies.sql
@@ -0,0 +1,28 @@
+--
+-- Licensed to the Apache Software Foundation (ASF) under one
+-- or more contributor license agreements. See the NOTICE file
+-- distributed with this work for additional information
+-- regarding copyright ownership. The ASF licenses this file
+-- to you under the Apache License, Version 2.0 (the
+-- "License"); you may not use this file except in compliance
+-- with the License. You may obtain a copy of the License at
+--
+-- http://www.apache.org/licenses/LICENSE-2.0
+--
+-- Unless required by applicable law or agreed to in writing,
+-- software distributed under the License is distributed on an
+-- "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+-- KIND, either express or implied. See the License for the
+-- specific language governing permissions and limitations
+-- under the License.
+--
+
+INSERT INTO `m_currency`
+(`code`,`decimal_places`,`display_symbol`,`name`, `internationalized_name_code`)
+VALUES
+('SSP',2,'SSĀ£','South Sudanese Pound','currency.SSP');
+
+UPDATE `m_currency` SET `name` = 'Eswatini Lilangeni' WHERE  `code` = 'SZL' ;
+
+/***Update organization currencies if applicable***/
+UPDATE m_organisation_currency SET`name` = 'Eswatini Lilangeni' WHERE  `code` = 'SZL' ;
\ No newline at end of file

[fineract] 02/02: ran the spotless plug in

Posted by al...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

aleks pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/fineract.git

commit 3d1897203ac528e626dc2a52104d5cdd1014ef11
Author: francisguchie <fr...@gmail.com>
AuthorDate: Wed Jan 5 09:04:17 2022 +0200

    ran the spotless plug in
---
 .../sql/migrations/core_db/V381__update_currencies_new_currencies.sql   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fineract-provider/src/main/resources/sql/migrations/core_db/V381__update_currencies_new_currencies.sql b/fineract-provider/src/main/resources/sql/migrations/core_db/V381__update_currencies_new_currencies.sql
index 96a7cf5..9778053 100644
--- a/fineract-provider/src/main/resources/sql/migrations/core_db/V381__update_currencies_new_currencies.sql
+++ b/fineract-provider/src/main/resources/sql/migrations/core_db/V381__update_currencies_new_currencies.sql
@@ -25,4 +25,4 @@ VALUES
 UPDATE `m_currency` SET `name` = 'Eswatini Lilangeni' WHERE  `code` = 'SZL' ;
 
 /***Update organization currencies if applicable***/
-UPDATE m_organisation_currency SET`name` = 'Eswatini Lilangeni' WHERE  `code` = 'SZL' ;
\ No newline at end of file
+UPDATE m_organisation_currency SET`name` = 'Eswatini Lilangeni' WHERE  `code` = 'SZL' ;