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

B 21350 main #14792

Draft
wants to merge 42 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
6a2aa93
most backend work done, frontend doesn't work
loganwc Jan 15, 2025
9192b9e
most backend ok, frontend not ok
loganwc Jan 16, 2025
9da8897
fixed queryClient issue
loganwc Jan 16, 2025
e758dac
backend is now correctly assigning moves to multiple users
loganwc Jan 17, 2025
80fa288
endpoint accepts payload now
loganwc Jan 20, 2025
c796ed4
broke the frontend
loganwc Jan 21, 2025
1d4dffa
mocks and backend tests
loganwc Jan 21, 2025
65721b9
fixed issues with save bulk assignment endpoint
paulstonebraker Jan 21, 2025
2b512a5
assign now works and reloads page to fetch fresh data
loganwc Jan 22, 2025
995d010
now fetches data when modal is opened
loganwc Jan 24, 2025
4f206aa
fixes form bleeding out of container
loganwc Jan 24, 2025
3bf22a5
Merge main
loganwc Jan 24, 2025
a3e8cdf
trying to reload table after save bulk
loganwc Jan 28, 2025
5e4721f
fix nil pointer with office user workload
loganwc Jan 28, 2025
bb970df
another attempt at refetch and redisplay on bulk assignment submit
ajlusk Jan 28, 2025
70540fd
cleaned up some old attempts
loganwc Jan 28, 2025
bc78def
table now refetches and displays data
loganwc Jan 29, 2025
098afee
some cleanup
loganwc Jan 30, 2025
8a5c897
merge main
loganwc Jan 30, 2025
6f299b6
add payment requests to bulk assign endpoint and some more code coverage
loganwc Jan 30, 2025
9c7c403
Merge branch 'B-20536-MAIN' into B-21348-Bulk-Assignment-Save
paulstonebraker Jan 30, 2025
dc1b7ee
add move history event for SaveBulkAssignmentData
paulstonebraker Jan 30, 2025
8e3c02e
redux the things
loganwc Feb 7, 2025
936e3e8
this fixes things that I broke when merging 22296 into this branch
loganwc Feb 7, 2025
e3bd6c7
add equal assignment to bulk assign
paulstonebraker Feb 11, 2025
eea7c64
Merge branch 'main' into B-21348-Bulk-Assignment-Save
loganwc Feb 11, 2025
12ff81c
added backup date for closeout/payment request fetch for bulk assignm…
loganwc Feb 11, 2025
d0007df
added backup date for closeout/payment request fetch for bulk assignm…
loganwc Feb 11, 2025
bdaa084
remove comment
loganwc Feb 11, 2025
ae7d85f
moved modal visibility toggle out of promise to fix flashing
loganwc Feb 11, 2025
843ad23
move some logic and fixed some design silliness
loganwc Feb 11, 2025
ad62614
add some checks and fixes
loganwc Feb 12, 2025
59c0452
change from 200 to 204 response and removed coalsce from pr date
loganwc Feb 13, 2025
7261c53
fixed some stuff
loganwc Feb 13, 2025
89a546e
add order by to office user fetcher for workload
paulstonebraker Feb 18, 2025
28da57e
Merge branch 'main' into B-21350-MAIN
paulstonebraker Feb 18, 2025
5427db6
merge 21348 into 21350
paulstonebraker Feb 19, 2025
785b418
Merge branch 'main' into B-21350-MAIN
paulstonebraker Feb 19, 2025
26a1c73
things i mucked up in merges
paulstonebraker Feb 19, 2025
103ca87
add select deselect all checkbox to bulk assign modal
paulstonebraker Feb 19, 2025
eb370ad
update bulk assignment frontend test to include closeout counselor
paulstonebraker Feb 19, 2025
3300b6f
toggle envrc var and update bulkAssignmentModal component
paulstonebraker Feb 19, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions pkg/gen/ghcapi/configure_mymove.go
Original file line number Diff line number Diff line change
Expand Up @@ -452,6 +452,11 @@ func configureAPI(api *ghcoperations.MymoveAPI) http.Handler {
return middleware.NotImplemented("operation shipment.ReviewShipmentAddressUpdate has not yet been implemented")
})
}
if api.QueuesSaveBulkAssignmentDataHandler == nil {
api.QueuesSaveBulkAssignmentDataHandler = queues.SaveBulkAssignmentDataHandlerFunc(func(params queues.SaveBulkAssignmentDataParams) middleware.Responder {
return middleware.NotImplemented("operation queues.SaveBulkAssignmentData has not yet been implemented")
})
}
if api.EvaluationReportsSaveEvaluationReportHandler == nil {
api.EvaluationReportsSaveEvaluationReportHandler = evaluation_reports.SaveEvaluationReportHandlerFunc(func(params evaluation_reports.SaveEvaluationReportParams) middleware.Responder {
return middleware.NotImplemented("operation evaluation_reports.SaveEvaluationReport has not yet been implemented")
Expand Down
177 changes: 177 additions & 0 deletions pkg/gen/ghcapi/embedded_spec.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions pkg/gen/ghcapi/ghcoperations/mymove_api.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading