Skip to content

Commit

Permalink
SinergiaCRM 1.6.4 Release merge (#359)
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulaaSTIC authored Aug 21, 2024
2 parents b3eeec3 + 2f6a86e commit 90706b6
Show file tree
Hide file tree
Showing 19 changed files with 786 additions and 70 deletions.
234 changes: 215 additions & 19 deletions SticInclude/SinergiaDA.php

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion config.php
Original file line number Diff line number Diff line change
Expand Up @@ -576,7 +576,7 @@

// STIC Custom 20231124 JBL - SemVer in SinergiaCRM
// STIC#1319
'sinergiacrm_version' => '1.6.3',
'sinergiacrm_version' => '1.6.4',
'js_custom_version' => 9,
'stic_show_update_alert' => 0,
// END STIC
Expand Down
28 changes: 28 additions & 0 deletions custom/Extension/application/Ext/Extensions/SDAVardefs.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<?php
/**
* This file is part of SinergiaCRM.
* SinergiaCRM is a work developed by SinergiaTIC Association, based on SuiteCRM.
* Copyright (C) 2013 - 2023 SinergiaTIC Association
*
* This program is free software; you can redistribute it and/or modify it under
* the terms of the GNU Affero General Public License version 3 as published by the
* Free Software Foundation.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
* details.
*
* You should have received a copy of the GNU Affero General Public License along with
* this program; if not, see http://www.gnu.org/licenses or write to the Free
* Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301 USA.
*
* You can contact SinergiaTIC Association at email address [email protected].
*/

$extensions["SDAVardefs"] = array(
"section" => "SDAVardefs",
"extdir" => "SDAVardefs",
"file" => 'SDAVardefs.ext.php',
"module" => "");
111 changes: 111 additions & 0 deletions modules/stic_Accounts_Relationships/SDAVardefs.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,111 @@
<?php
/**
* This file is part of SinergiaCRM.
* SinergiaCRM is a work developed by SinergiaTIC Association, based on SuiteCRM.
* Copyright (C) 2013 - 2023 SinergiaTIC Association
*
* This program is free software; you can redistribute it and/or modify it under
* the terms of the GNU Affero General Public License version 3 as published by the
* Free Software Foundation.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
* details.
*
* You should have received a copy of the GNU Affero General Public License along with
* this program; if not, see http://www.gnu.org/licenses or write to the Free
* Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301 USA.
*
* You can contact SinergiaTIC Association at email address [email protected].
*/

/**
* Array of virtual fields for SinergiaDA (Sinergia Data Analytics).
*
* This array defines various virtual fields that can be used in SinergiaDA for different purposes.
*
* Each element of the array represents a virtual field.
*
* General structure of each element:
*
* @key string The key is the virtual field name without the 'LBL_' prefix
*
* @param string label Label of the virtual field (includes the 'LBL_' prefix)
* @param string description Description of the virtual field (includes the 'LBL_' prefix)
* @param string type Data type of the virtual field (e.g., 'numeric', 'text', 'date')
* @param int precision Precision for numeric fields (number of decimal places)
* @param int hidden Visibility flag (0 = visible to all, 1 = visible only to administrators in SDA)
* @param string expression SQL expression to calculate the virtual field value
*
*/

$SDAVirtualFields = array(
'SDA_ACTIVE_CURRENT_YEAR_MINUS_0' => array(
'label' => 'LBL_SDA_ACTIVE_CURRENT_YEAR_MINUS_0',
'description' => 'LBL_SDA_ACTIVE_CURRENT_YEAR_MINUS_0_DESCRIPTION',
'type' => 'text',
'precision' => 0,
'hidden' => 0,
'expression' => "CASE
WHEN (start_date IS NULL OR start_date <= LAST_DAY(CONCAT(YEAR(CURDATE()),'-12-31')))
AND (end_date IS NULL OR end_date >= CONCAT(YEAR(CURDATE()),'-01-01'))
THEN 1
ELSE 0
END",
),
'SDA_ACTIVE_CURRENT_YEAR_MINUS_1' => array(
'label' => 'LBL_SDA_ACTIVE_CURRENT_YEAR_MINUS_1',
'description' => 'LBL_SDA_ACTIVE_CURRENT_YEAR_MINUS_1_DESCRIPTION',
'type' => 'text',
'precision' => 0,
'hidden' => 0,
'expression' => "CASE
WHEN (start_date IS NULL OR start_date <= LAST_DAY(CONCAT(YEAR(CURDATE())-1,'-12-31')))
AND (end_date IS NULL OR end_date >= CONCAT(YEAR(CURDATE())-1,'-01-01'))
THEN 1
ELSE 0
END",
),
'SDA_ACTIVE_CURRENT_YEAR_MINUS_2' => array(
'label' => 'LBL_SDA_ACTIVE_CURRENT_YEAR_MINUS_2',
'description' => 'LBL_SDA_ACTIVE_CURRENT_YEAR_MINUS_2_DESCRIPTION',
'type' => 'text',
'precision' => 0,
'hidden' => 0,
'expression' => "CASE
WHEN (start_date IS NULL OR start_date <= LAST_DAY(CONCAT(YEAR(CURDATE())-2,'-12-31')))
AND (end_date IS NULL OR end_date >= CONCAT(YEAR(CURDATE())-2,'-01-01'))
THEN 1
ELSE 0
END",
),
'SDA_ACTIVE_CURRENT_YEAR_MINUS_3' => array(
'label' => 'LBL_SDA_ACTIVE_CURRENT_YEAR_MINUS_3',
'description' => 'LBL_SDA_ACTIVE_CURRENT_YEAR_MINUS_3_DESCRIPTION',
'type' => 'text',
'precision' => 0,
'hidden' => 0,
'expression' => "CASE
WHEN (start_date IS NULL OR start_date <= LAST_DAY(CONCAT(YEAR(CURDATE())-3,'-12-31')))
AND (end_date IS NULL OR end_date >= CONCAT(YEAR(CURDATE())-3,'-01-01'))
THEN 1
ELSE 0
END",
),
'SDA_ACTIVE_CURRENT_YEAR_MINUS_4' => array(
'label' => 'LBL_SDA_ACTIVE_CURRENT_YEAR_MINUS_4',
'description' => 'LBL_SDA_ACTIVE_CURRENT_YEAR_MINUS_4_DESCRIPTION',
'type' => 'text',
'precision' => 0,
'hidden' => 0,
'expression' => "CASE
WHEN (start_date IS NULL OR start_date <= LAST_DAY(CONCAT(YEAR(CURDATE())-4,'-12-31')))
AND (end_date IS NULL OR end_date >= CONCAT(YEAR(CURDATE())-4,'-01-01'))
THEN 1
ELSE 0
END",
),
);
10 changes: 10 additions & 0 deletions modules/stic_Accounts_Relationships/language/ca_ES.lang.php
Original file line number Diff line number Diff line change
Expand Up @@ -76,4 +76,14 @@
'LBL_STIC_ACCOUNTS_RELATIONSHIPS_ACCOUNTS_FROM_ACCOUNTS_TITLE' => 'Organització',
'LBL_START_DATE_ERROR' => "La data d'alta ha de ser igual o anterior a la data de baixa.",
'LBL_END_DATE_ERROR' => "La data de baixa ha de ser igual o posterior a la data d'alta.",
'LBL_SDA_ACTIVE_CURRENT_YEAR_MINUS_0' => 'Relació activa aquest any',
'LBL_SDA_ACTIVE_CURRENT_YEAR_MINUS_0_DESCRIPTION' => "Indica si la relació ha estat activa en qualsevol moment d'aquest any.",
'LBL_SDA_ACTIVE_CURRENT_YEAR_MINUS_1' => "Relació activa l'any passat",
'LBL_SDA_ACTIVE_CURRENT_YEAR_MINUS_1_DESCRIPTION' => "Indica si la relació va estar activa en qualsevol moment de l'any passat.",
'LBL_SDA_ACTIVE_CURRENT_YEAR_MINUS_2' => 'Relació activa fa dos anys',
'LBL_SDA_ACTIVE_CURRENT_YEAR_MINUS_2_DESCRIPTION' => 'Indica si la relació va estar activa en qualsevol moment de fa dos anys.',
'LBL_SDA_ACTIVE_CURRENT_YEAR_MINUS_3' => 'Relació activa fa tres anys',
'LBL_SDA_ACTIVE_CURRENT_YEAR_MINUS_3_DESCRIPTION' => 'Indica si la relació va estar activa en qualsevol moment de fa tres anys.',
'LBL_SDA_ACTIVE_CURRENT_YEAR_MINUS_4' => 'Relació activa fa quatre anys',
'LBL_SDA_ACTIVE_CURRENT_YEAR_MINUS_4_DESCRIPTION' => 'Indica si la relació va estar activa en qualsevol moment de fa quatre anys.',
);
10 changes: 10 additions & 0 deletions modules/stic_Accounts_Relationships/language/en_us.lang.php
Original file line number Diff line number Diff line change
Expand Up @@ -76,4 +76,14 @@
'LBL_STIC_ACCOUNTS_RELATIONSHIPS_ACCOUNTS_FROM_ACCOUNTS_TITLE' => 'Account',
'LBL_START_DATE_ERROR' => 'Start date must be equal or before End date (if exists).',
'LBL_END_DATE_ERROR' => 'End date must be equal or after Start date (if exists).',
'LBL_SDA_ACTIVE_CURRENT_YEAR_MINUS_0' => 'Active relationship current year',
'LBL_SDA_ACTIVE_CURRENT_YEAR_MINUS_0_DESCRIPTION' => 'Indicates if the relationship has been active at any point in the current year.',
'LBL_SDA_ACTIVE_CURRENT_YEAR_MINUS_1' => 'Active relationship last year',
'LBL_SDA_ACTIVE_CURRENT_YEAR_MINUS_1_DESCRIPTION' => 'Indicates if the relationship was active at any point last year.',
'LBL_SDA_ACTIVE_CURRENT_YEAR_MINUS_2' => 'Active relationship two years ago',
'LBL_SDA_ACTIVE_CURRENT_YEAR_MINUS_2_DESCRIPTION' => 'Indicates if the relationship was active at any point two years ago.',
'LBL_SDA_ACTIVE_CURRENT_YEAR_MINUS_3' => 'Active relationship three years ago',
'LBL_SDA_ACTIVE_CURRENT_YEAR_MINUS_3_DESCRIPTION' => 'Indicates if the relationship was active at any point three years ago.',
'LBL_SDA_ACTIVE_CURRENT_YEAR_MINUS_4' => 'Active relationship four years ago',
'LBL_SDA_ACTIVE_CURRENT_YEAR_MINUS_4_DESCRIPTION' => 'Indicates if the relationship was active at any point four years ago.',
);
10 changes: 10 additions & 0 deletions modules/stic_Accounts_Relationships/language/es_ES.lang.php
Original file line number Diff line number Diff line change
Expand Up @@ -76,4 +76,14 @@
'LBL_STIC_ACCOUNTS_RELATIONSHIPS_ACCOUNTS_FROM_ACCOUNTS_TITLE' => 'Organización',
'LBL_START_DATE_ERROR' => 'La fecha de alta debe ser igual o anterior a la fecha de baja.',
'LBL_END_DATE_ERROR' => 'La fecha de baja debe ser igual o posterior a la fecha de alta.',
'LBL_SDA_ACTIVE_CURRENT_YEAR_MINUS_0' => 'Relación activa este año',
'LBL_SDA_ACTIVE_CURRENT_YEAR_MINUS_0_DESCRIPTION' => 'Indica si la relación ha estado activa en cualquier momento de este año.',
'LBL_SDA_ACTIVE_CURRENT_YEAR_MINUS_1' => 'Relación activa el año anterior',
'LBL_SDA_ACTIVE_CURRENT_YEAR_MINUS_1_DESCRIPTION' => 'Indica si la relación estuvo activa en cualquier momento del año anterior.',
'LBL_SDA_ACTIVE_CURRENT_YEAR_MINUS_2' => 'Relación activa hace dos años',
'LBL_SDA_ACTIVE_CURRENT_YEAR_MINUS_2_DESCRIPTION' => 'Indica si la relación estuvo activa en cualquier momento de hace dos años.',
'LBL_SDA_ACTIVE_CURRENT_YEAR_MINUS_3' => 'Relación activa hace tres años',
'LBL_SDA_ACTIVE_CURRENT_YEAR_MINUS_3_DESCRIPTION' => 'Indica si la relación estuvo activa en cualquier momento de hace tres años.',
'LBL_SDA_ACTIVE_CURRENT_YEAR_MINUS_4' => 'Relación activa hace cuatro años',
'LBL_SDA_ACTIVE_CURRENT_YEAR_MINUS_4_DESCRIPTION' => 'Indica si la relación estuvo activa en cualquier momento de hace cuatro años.',
);
12 changes: 11 additions & 1 deletion modules/stic_Accounts_Relationships/language/gl_ES.lang.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* You can contact SinergiaTIC Association at email address [email protected].
*/

$mod_strings = array (
$mod_strings = array(
'LBL_ASSIGNED_TO_ID' => 'Asignado a',
'LBL_ASSIGNED_TO_NAME' => 'Asignado a',
'LBL_ASSIGNED_TO' => 'Asignado a',
Expand Down Expand Up @@ -77,4 +77,14 @@
'LBL_STIC_ACCOUNTS_RELATIONSHIPS_ACCOUNTS_FROM_ACCOUNTS_TITLE' => 'Organización',
'LBL_START_DATE_ERROR' => 'A data de alta debe ser anterior á data de baixa.',
'LBL_END_DATE_ERROR' => 'A data de baixa debe ser posterior á data de alta.',
'LBL_SDA_ACTIVE_CURRENT_YEAR_MINUS_0' => 'Relación activa este ano',
'LBL_SDA_ACTIVE_CURRENT_YEAR_MINUS_0_DESCRIPTION' => 'Indica se a relación estivo activa en calquera momento este ano.',
'LBL_SDA_ACTIVE_CURRENT_YEAR_MINUS_1' => 'Relación activa o ano anterior',
'LBL_SDA_ACTIVE_CURRENT_YEAR_MINUS_1_DESCRIPTION' => 'Indica se a relación estivo activa en calquera momento o ano anterior.',
'LBL_SDA_ACTIVE_CURRENT_YEAR_MINUS_2' => 'Relación activa hai dous anos',
'LBL_SDA_ACTIVE_CURRENT_YEAR_MINUS_2_DESCRIPTION' => 'Indica se a relación estivo activa en calquera momento hai dous anos.',
'LBL_SDA_ACTIVE_CURRENT_YEAR_MINUS_3' => 'Relación activa hai tres anos',
'LBL_SDA_ACTIVE_CURRENT_YEAR_MINUS_3_DESCRIPTION' => 'Indica se a relación estivo activa en calquera momento hai tres anos.',
'LBL_SDA_ACTIVE_CURRENT_YEAR_MINUS_4' => 'Relación activa hai catro anos',
'LBL_SDA_ACTIVE_CURRENT_YEAR_MINUS_4_DESCRIPTION' => 'Indica se a relación estivo activa en calquera momento hai catro anos.',
);
111 changes: 111 additions & 0 deletions modules/stic_Contacts_Relationships/SDAVardefs.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,111 @@
<?php
/**
* This file is part of SinergiaCRM.
* SinergiaCRM is a work developed by SinergiaTIC Association, based on SuiteCRM.
* Copyright (C) 2013 - 2023 SinergiaTIC Association
*
* This program is free software; you can redistribute it and/or modify it under
* the terms of the GNU Affero General Public License version 3 as published by the
* Free Software Foundation.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
* details.
*
* You should have received a copy of the GNU Affero General Public License along with
* this program; if not, see http://www.gnu.org/licenses or write to the Free
* Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301 USA.
*
* You can contact SinergiaTIC Association at email address [email protected].
*/

/**
* Array of virtual fields for SinergiaDA (Sinergia Data Analytics).
*
* This array defines various virtual fields that can be used in SinergiaDA for different purposes.
*
* Each element of the array represents a virtual field.
*
* General structure of each element:
*
* @key string The key is the virtual field name without the 'LBL_' prefix
*
* @param string label Label of the virtual field (includes the 'LBL_' prefix)
* @param string description Description of the virtual field (includes the 'LBL_' prefix)
* @param string type Data type of the virtual field (e.g., 'numeric', 'text', 'date')
* @param int precision Precision for numeric fields (number of decimal places)
* @param int hidden Visibility flag (0 = visible to all, 1 = visible only to administrators in SDA)
* @param string expression SQL expression to calculate the virtual field value
*
*/

$SDAVirtualFields = array(
'SDA_ACTIVE_CURRENT_YEAR_MINUS_0' => array(
'label' => 'LBL_SDA_ACTIVE_CURRENT_YEAR_MINUS_0',
'description' => 'LBL_SDA_ACTIVE_CURRENT_YEAR_MINUS_0_DESCRIPTION',
'type' => 'text',
'precision' => 0,
'hidden' => 0,
'expression' => "CASE
WHEN (start_date IS NULL OR start_date <= LAST_DAY(CONCAT(YEAR(CURDATE()),'-12-31')))
AND (end_date IS NULL OR end_date >= CONCAT(YEAR(CURDATE()),'-01-01'))
THEN 1
ELSE 0
END",
),
'SDA_ACTIVE_CURRENT_YEAR_MINUS_1' => array(
'label' => 'LBL_SDA_ACTIVE_CURRENT_YEAR_MINUS_1',
'description' => 'LBL_SDA_ACTIVE_CURRENT_YEAR_MINUS_1_DESCRIPTION',
'type' => 'text',
'precision' => 0,
'hidden' => 0,
'expression' => "CASE
WHEN (start_date IS NULL OR start_date <= LAST_DAY(CONCAT(YEAR(CURDATE())-1,'-12-31')))
AND (end_date IS NULL OR end_date >= CONCAT(YEAR(CURDATE())-1,'-01-01'))
THEN 1
ELSE 0
END",
),
'SDA_ACTIVE_CURRENT_YEAR_MINUS_2' => array(
'label' => 'LBL_SDA_ACTIVE_CURRENT_YEAR_MINUS_2',
'description' => 'LBL_SDA_ACTIVE_CURRENT_YEAR_MINUS_2_DESCRIPTION',
'type' => 'text',
'precision' => 0,
'hidden' => 0,
'expression' => "CASE
WHEN (start_date IS NULL OR start_date <= LAST_DAY(CONCAT(YEAR(CURDATE())-2,'-12-31')))
AND (end_date IS NULL OR end_date >= CONCAT(YEAR(CURDATE())-2,'-01-01'))
THEN 1
ELSE 0
END",
),
'SDA_ACTIVE_CURRENT_YEAR_MINUS_3' => array(
'label' => 'LBL_SDA_ACTIVE_CURRENT_YEAR_MINUS_3',
'description' => 'LBL_SDA_ACTIVE_CURRENT_YEAR_MINUS_3_DESCRIPTION',
'type' => 'text',
'precision' => 0,
'hidden' => 0,
'expression' => "CASE
WHEN (start_date IS NULL OR start_date <= LAST_DAY(CONCAT(YEAR(CURDATE())-3,'-12-31')))
AND (end_date IS NULL OR end_date >= CONCAT(YEAR(CURDATE())-3,'-01-01'))
THEN 1
ELSE 0
END",
),
'SDA_ACTIVE_CURRENT_YEAR_MINUS_4' => array(
'label' => 'LBL_SDA_ACTIVE_CURRENT_YEAR_MINUS_4',
'description' => 'LBL_SDA_ACTIVE_CURRENT_YEAR_MINUS_4_DESCRIPTION',
'type' => 'text',
'precision' => 0,
'hidden' => 0,
'expression' => "CASE
WHEN (start_date IS NULL OR start_date <= LAST_DAY(CONCAT(YEAR(CURDATE())-4,'-12-31')))
AND (end_date IS NULL OR end_date >= CONCAT(YEAR(CURDATE())-4,'-01-01'))
THEN 1
ELSE 0
END",
),
);
10 changes: 10 additions & 0 deletions modules/stic_Contacts_Relationships/language/ca_ES.lang.php
Original file line number Diff line number Diff line change
Expand Up @@ -77,4 +77,14 @@
'LBL_DEFAULT_PANEL' => 'Dades generals',
'LBL_PANEL_RECORD_DETAILS' => 'Detalls del registre',
'LBL_STIC_CENTERS_STIC_CONTACTS_RELATIONSHIPS_FROM_STIC_CENTERS_TITLE' => 'Centre',
'LBL_SDA_ACTIVE_CURRENT_YEAR_MINUS_0' => 'Relació activa aquest any',
'LBL_SDA_ACTIVE_CURRENT_YEAR_MINUS_0_DESCRIPTION' => "Indica si la relació ha estat activa en qualsevol moment d'aquest any.",
'LBL_SDA_ACTIVE_CURRENT_YEAR_MINUS_1' => "Relació activa l'any passat",
'LBL_SDA_ACTIVE_CURRENT_YEAR_MINUS_1_DESCRIPTION' => "Indica si la relació va estar activa en qualsevol moment de l'any passat.",
'LBL_SDA_ACTIVE_CURRENT_YEAR_MINUS_2' => 'Relació activa fa dos anys',
'LBL_SDA_ACTIVE_CURRENT_YEAR_MINUS_2_DESCRIPTION' => 'Indica si la relació va estar activa en qualsevol moment de fa dos anys.',
'LBL_SDA_ACTIVE_CURRENT_YEAR_MINUS_3' => 'Relació activa fa tres anys',
'LBL_SDA_ACTIVE_CURRENT_YEAR_MINUS_3_DESCRIPTION' => 'Indica si la relació va estar activa en qualsevol moment de fa tres anys.',
'LBL_SDA_ACTIVE_CURRENT_YEAR_MINUS_4' => 'Relació activa fa quatre anys',
'LBL_SDA_ACTIVE_CURRENT_YEAR_MINUS_4_DESCRIPTION' => 'Indica si la relació va estar activa en qualsevol moment de fa quatre anys.',
);
10 changes: 10 additions & 0 deletions modules/stic_Contacts_Relationships/language/en_us.lang.php
Original file line number Diff line number Diff line change
Expand Up @@ -77,4 +77,14 @@
'LBL_DEFAULT_PANEL' => 'Overview',
'LBL_PANEL_RECORD_DETAILS' => 'Record details',
'LBL_STIC_CENTERS_STIC_CONTACTS_RELATIONSHIPS_FROM_STIC_CENTERS_TITLE' => 'Center',
'LBL_SDA_ACTIVE_CURRENT_YEAR_MINUS_0' => 'Active relationship current year',
'LBL_SDA_ACTIVE_CURRENT_YEAR_MINUS_0_DESCRIPTION' => 'Indicates if the relationship has been active at any point in the current year.',
'LBL_SDA_ACTIVE_CURRENT_YEAR_MINUS_1' => 'Active relationship last year',
'LBL_SDA_ACTIVE_CURRENT_YEAR_MINUS_1_DESCRIPTION' => 'Indicates if the relationship was active at any point last year.',
'LBL_SDA_ACTIVE_CURRENT_YEAR_MINUS_2' => 'Active relationship two years ago',
'LBL_SDA_ACTIVE_CURRENT_YEAR_MINUS_2_DESCRIPTION' => 'Indicates if the relationship was active at any point two years ago.',
'LBL_SDA_ACTIVE_CURRENT_YEAR_MINUS_3' => 'Active relationship three years ago',
'LBL_SDA_ACTIVE_CURRENT_YEAR_MINUS_3_DESCRIPTION' => 'Indicates if the relationship was active at any point three years ago.',
'LBL_SDA_ACTIVE_CURRENT_YEAR_MINUS_4' => 'Active relationship four years ago',
'LBL_SDA_ACTIVE_CURRENT_YEAR_MINUS_4_DESCRIPTION' => 'Indicates if the relationship was active at any point four years ago.',
);
Loading

0 comments on commit 90706b6

Please sign in to comment.