-
Notifications
You must be signed in to change notification settings - Fork 28
Feature/version/upgrade #71
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
Open
srishtigrp78
wants to merge
7
commits into
PSMRI:develop
Choose a base branch
from
srishtigrp78:feature/version/upgrade
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
1205165
Merge pull request #2 from PSMRI/develop
srishtigrp78 227eb4d
Merge pull request #3 from srishtigrp78/feature/autopatch/anthropometry
srishtigrp78 05d7fb2
removing save file functionality and moving it to common API
98ce406
Merge pull request #4 from PSMRI/develop
srishtigrp78 fb509f2
Merge pull request #5 from PSMRI/develop
srishtigrp78 270fef3
Merge pull request #6 from PSMRI/develop
srishtigrp78 4c0f3c3
changing doctorFlag to doctor_Flag in query
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
70 changes: 0 additions & 70 deletions
70
src/main/java/com/iemr/mmu/controller/common/main/InsertCommonController.java
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
Oops, something went wrong.
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.
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.
π‘ Verification agent
π§© Analysis chain
Potential inconsistency in column naming.
The identifier has been changed from
doctorFlag
todoctor_Flag
in this query condition, but all other occurrences of this field in the repository usedoctorFlag
(lines 56, 84-85, 93-94, 152, 163, 225, 229, 242). This inconsistency could lead to subtle bugs or confusion for developers.π Script executed:
Length of output: 3225
Fix Inconsistent Naming for doctorFlag in JPA Queries
It appears that in the SQL condition at line 207 of
src/main/java/com/iemr/mmu/repo/benFlowStatus/BeneficiaryFlowStatusRepo.java
, the field is referenced asdoctor_Flag
while every other occurrence throughout the repository (e.g., lines 56, 84-85, 93-94, 152, 163, 225, 242) usesdoctorFlag
. This inconsistency in naming may lead to subtle bugs or developer confusion when mapping entity fields to database columns.doctorFlag
instead ofdoctor_Flag
.src/main/java/com/iemr/mmu/repo/nurse/ncdscreening/IDRSDataRepo.java
at line 50) to ensure consistent usage across the codebase.