-
Notifications
You must be signed in to change notification settings - Fork 49
(feat) O3-5121: Add ability to edit cashpoints #442
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
abertnamanya
wants to merge
20
commits into
openmrs:main
Choose a base branch
from
abertnamanya:O3-5121
base: main
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
20 commits
Select commit
Hold shift + click to select a range
466c1d6
O3-5121:Edit/Update Cashpoint
abertnamanya 6fbd5f8
Merge branch 'main' into O3-5121
abertnamanya 16aef2f
Update src/billable-services/billable-service.resource.ts
abertnamanya 9dfb19b
Update src/billable-services/cash-point/add-cash-point.modal.tsx
abertnamanya 360c4cf
Update src/billable-services/cash-point/add-cash-point.modal.tsx
abertnamanya 2113069
O3-5121:Edit/Update Cashpoint fixes
abertnamanya 9a93b0f
Merge branch 'main' into O3-5121
abertnamanya 298cd00
O3-5121:Edit/Update Cashpoint fixes
abertnamanya a8dbb7c
Merge branch 'main' into O3-5121
abertnamanya 0f12ea0
Merge branch 'main' into O3-5121
abertnamanya ff89adf
conflict Merge fix
abertnamanya 5e2e69e
Merge branch 'main' into O3-5121
abertnamanya e7acf06
minor fixes
abertnamanya 513d9b5
Merge branch 'main' into O3-5121
abertnamanya 6f4301a
Merge branch 'main' into O3-5121
abertnamanya a08ef64
Allow cash point create and update with two different functions
abertnamanya cdfaadb
Merge branch 'main' into O3-5121
abertnamanya 0a84825
Removed the uuid input field and refactored cashpoint payload object
abertnamanya 4806d74
Merge branch 'main' into O3-5121
abertnamanya f1ce2ea
Merge branch 'main' into O3-5121
abertnamanya 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
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
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
abertnamanya marked this conversation as resolved.
Show resolved
Hide resolved
abertnamanya marked this conversation as resolved.
Show resolved
Hide resolved
|
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
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
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.
PUTis the canonical HTTP request method for updates.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.
Yeah, it should be a PUT, but the endpoint does not seem to accept the request
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.
Yeah, that sounds like a bug. The controller in the backend might be misparsing main resource URLs. Could you have a look when you get some time, @wikumChamith?
Let's keep it as a POST for now, @abertnamanya.