forked from coral-erm/coral
-
Notifications
You must be signed in to change notification settings - Fork 0
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
t4k
wants to merge
12
commits into
caltechlibrary:development
from
biblibre:RF47321_Add_fields_to_import
Closed
Rf47321 add fields to import #1
t4k
wants to merge
12
commits into
caltechlibrary:development
from
biblibre:RF47321_Add_fields_to_import
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- 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]
…321_Add_fields_to_import
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 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
No description provided.