-
Notifications
You must be signed in to change notification settings - Fork 103
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
[CONFIG] Taxon sheet and config #3312
base: develop
Are you sure you want to change the base?
[CONFIG] Taxon sheet and config #3312
Conversation
….TAXON_SHEET.ENABLE_TAB_PROFILES'
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## develop #3312 +/- ##
========================================
Coverage 83.93% 83.93%
========================================
Files 122 122
Lines 9715 9723 +8
========================================
+ Hits 8154 8161 +7
- Misses 1561 1562 +1
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A part quelques modifications de codes, tout fonctionne !
|
||
# Subquery to fetch areas based on area_type | ||
areas_subquery = ( | ||
select([LAreas.id_area]) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
select([LAreas.id_area]) | |
select(LAreas.id_area) |
.where(LAreas.id_type == BibAreasTypes.id_type) | ||
.where(BibAreasTypes.type_code == area_type) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
.where(LAreas.id_type == BibAreasTypes.id_type) | |
.where(BibAreasTypes.type_code == area_type) | |
.where(LAreas.id_type == BibAreasTypes.id_type, BibAreasTypes.type_code == area_type) |
Co-authored-by: Jacques Fize <4259846+jacquesfize@users.noreply.github.com>
Closes #3311