Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rf47321 add fields to import #1

Closed

Conversation

t4k
Copy link
Member

@t4k t4k commented May 3, 2017

No description provided.

 - Add acquisition type
 - Add FundCode and cost (WIP)
 - Add Order Type and Currency
 - Save currency code and order type id in configuration
 - Start a workflow if possible
 - Sending emails when starting workflows can be toggled on/off in import profile.
     - Sending emails when starting workflows can be toggled on/off in import profile. [Follow-up]
 - Sending emails when starting workflows can be toggled on/off in import profile. [Follow-up]
     - Sending emails when starting workflows can be toggled on/off in import profile. [Follow-up]
@t4k t4k closed this May 3, 2017
t4k pushed a commit that referenced this pull request Jun 9, 2017
t4k pushed a commit that referenced this pull request Jun 9, 2017
Fix issue of admin user being inserted into auth db when ldap enabled (solves related todo)
t4k added a commit that referenced this pull request Jun 13, 2017
PHP message: PHP Fatal error:  Uncaught Exception: There was a problem with the database: Expression #5 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'coral_organizations.OHP.parentOrganizationID' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by in /var/www/coral/organizations/admin/classes/common/DBService.php:39
Stack trace:
#0 /var/www/coral/organizations/admin/classes/common/DBService.php(71): DBService->checkForError()
#1 /var/www/coral/organizations/admin/classes/domain/Organization.php(550): DBService->processQuery('SELECT O.organi...', 'assoc')
#2 /var/www/coral/organizations/ajax_htmldata.php(895): Organization->search(Array, 'TRIM(LEADING 'T...', '')
#3 {main}
  thrown in /var/www/coral/organizations/admin/classes/common/DBService.php on line 39
t4k added a commit that referenced this pull request Jun 13, 2017
PHP message: PHP Fatal error:  Uncaught Exception: There was a problem with the database: Expression #5 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'coral_organizations.OHP.parentOrganizationID' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by in /var/www/coral/organizations/admin/classes/common/DBService.php:39
Stack trace:
#0 /var/www/coral/organizations/admin/classes/common/DBService.php(71): DBService->checkForError()
#1 /var/www/coral/organizations/admin/classes/domain/Organization.php(550): DBService->processQuery('SELECT O.organi...', 'assoc')
#2 /var/www/coral/organizations/ajax_htmldata.php(895): Organization->search(Array, 'TRIM(LEADING 'T...', '')
#3 {main}
  thrown in /var/www/coral/organizations/admin/classes/common/DBService.php on line 39
t4k added a commit that referenced this pull request Jun 13, 2017
The “Starts with” letter list was not working…
Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'coral_organizations.O.name' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
t4k added a commit that referenced this pull request Jun 14, 2017
PHP message: PHP Notice:  A session had already been started - ignoring session_start() in /var/www/coral/organizations/user.php on line 40
PHP message: PHP Notice:  Undefined variable: letter in /var/www/coral/organizations/index.php on line 81
PHP message: PHP Notice:  Undefined variable: letter in /var/www/coral/organizations/index.php on line 81
PHP message: PHP Notice:  Undefined variable: letter in /var/www/coral/organizations/index.php on line 81
PHP message: PHP Notice:  Undefined variable: letter in /var/www/coral/organizations/index.php on line 81
PHP message: PHP Notice:  Undefined variable: letter in /var/www/coral/organizations/index.php on line 81
PHP message: PHP Notice:  Undefined variable: letter in /var/www/coral/organizations/index.php on line 81

The “Starts with” letter list was not working and `$this->db->getDatabase()` had the following error:
Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'coral_organizations.O.name' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
t4k added a commit that referenced this pull request Jun 14, 2017
The “Starts with” letter list was not working and `$this->db->getDatabase()` had the following error:
Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'coral_organizations.O.name' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
t4k added a commit that referenced this pull request Feb 13, 2019
The underlying error from `PHP Warning:  mysqli_fetch_assoc() expects parameter
1 to be mysqli_result, boolean given in
…/organizations/admin/classes/domain/Organization.php on line 690`

is

`Expression #1 of SELECT list is not in GROUP BY clause and contains
nonaggregated column 'coral_organizations.O.name' which is not functionally
dependent on columns in GROUP BY clause; this is incompatible with
sql_mode=only_full_group_by`

Running the query directly in MySQL 5.7 will produce the error. Using the
ANY_VALUE() function suppresses the test for nondeterminism.

https://dev.mysql.com/doc/refman/5.7/en/miscellaneous-functions.html#function_any-value
t4k added a commit that referenced this pull request Feb 13, 2019
The underlying error from `PHP Warning:  mysqli_fetch_assoc() expects parameter
1 to be mysqli_result, boolean given in
…/licensing/admin/classes/domain/License.php on line 731, referer:
http://localhost:8080/coral/organizations/index.php`

is

`Expression #1 of SELECT list is not in GROUP BY clause and contains
nonaggregated column 'coral_licensing.L.shortName' which is not functionally
dependent on columns in GROUP BY clause; this is incompatible with
sql_mode=only_full_group_by`

Running the query directly in MySQL 5.7 will produce the error. Using the
ANY_VALUE() function suppresses the test for nondeterminism.

https://dev.mysql.com/doc/refman/5.7/en/miscellaneous-functions.html#function_any-value
t4k added a commit that referenced this pull request Feb 13, 2019
Using the ANY_VALUE() function suppresses the test for nondeterminism.

https://dev.mysql.com/doc/refman/5.7/en/miscellaneous-functions.html#function_any-value

```
PHP Fatal error:  Uncaught exception 'Exception' with message 'There was a
problem with the database: Expression #1 of SELECT list is not in GROUP BY
clause and contains nonaggregated column 'coral_management.L.shortName' which is
not functionally dependent on columns in GROUP BY clause; this is incompatible
with sql_mode=only_full_group_by' in …/management/admin/classes/common/DBService.php:55
Stack trace:
#0 …/management/admin/classes/common/DBService.php(82): DBService->checkForError()
#1 …/management/admin/classes/domain/License.php(804): DBService->query('\\n\\t\\t\\tSELECT\\n\\t\\t\\t\\t...')
#2 …/management/admin/classes/common/Object.php(55): License->getAlphabeticalList()
#3 …/management/index.php(229): Object->__get('getAlphabetical...')
#4 {main}
  thrown in …/management/admin/classes/common/DBService.php on line 55,
  referer: http://localhost:8080/coral/licensing/
```
t4k added a commit that referenced this pull request Jul 9, 2019
PHP Fatal error:  Uncaught Error: Call to a member function set_charset() on boolean in …/classes/DBService.php:49
Stack trace:
#0 …/classes/DBService.php(28): DBService->connect()
#1 …/classes/BaseObject.php(12): DBService->init(Object(NamedArguments))
#2 …/classes/DBService.php(19): BaseObject->__construct()
#3 …/classes/DatabaseObject.php(40): DBService::getInstance()
#4 …/classes/BaseObject.php(12): DatabaseObject->init(Object(NamedArguments))
#5 …/auth/ajax_htmldata.php(11): BaseObject->__construct()
coral-erm#6 {main}
  thrown in …/classes/DBService.php on line 49, referer: http://…/auth/admin.php
t4k added a commit that referenced this pull request Jul 9, 2019
PHP Fatal error:  Uncaught Error: Call to undefined method Utility::getLoginCookie() in …/resources/user.php:30
Stack trace:
#0 …/resources/templates/header.php(21): include_once()
#1 …/resources/index.php(22): include('...')
#2 {main}
  thrown in …/resources/user.php on line 30, referer: http://…/
t4k added a commit that referenced this pull request Jul 9, 2019
PHP Warning:  min(): Array must contain at least one element in …/classes/DateRangeParameter.php on line 37, referer: http://…/reports/
PHP Warning:  max(): Array must contain at least one element in …/classes/DateRangeParameter.php on line 38, referer: http://…/reports/
PHP Fatal error:  Uncaught InvalidArgumentException: invalid date range: 1/NULL -> 12/NULL in …/classes/DateRangeParameter.php:82
Stack trace:
#0 …/classes/DateRangeParameter.php(87): DateRangeParameter->validateRange(Array)
#1 …/classes/DateRangeParameter.php(49): DateRangeParameter->encode(Array)
#2 …/reports/report.php(41): DateRangeParameter->process()
#3 {main}
  thrown in …/classes/DateRangeParameter.php on line 82, referer: http://…/reports/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants