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 20654 m25.1 #13945

Merged
merged 28 commits into from
Oct 22, 2024
Merged
Show file tree
Hide file tree
Changes from 15 commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
3afd120
commit part 1
deandreJones Oct 7, 2024
488614c
B-20654
deandreJones Oct 8, 2024
c255415
B-20654 UI
deandreJones Oct 8, 2024
ceb8c78
Merge remote-tracking branch 'origin/main' into B-20654-M25.1
deandreJones Oct 8, 2024
02af036
hey look it works
deandreJones Oct 10, 2024
df444eb
format the EDI with line breaks
deandreJones Oct 10, 2024
42f199b
add some test
deandreJones Oct 11, 2024
1690478
add search
deandreJones Oct 11, 2024
653218b
i blame my dislexia
deandreJones Oct 14, 2024
cd98d1b
Merge branch 'main' into B-20654-M25.1
deandreJones Oct 17, 2024
ffc72d8
add a test
deandreJones Oct 17, 2024
fdb87f7
fix test
deandreJones Oct 17, 2024
6be2011
and another
deandreJones Oct 17, 2024
31ee20f
test test test
deandreJones Oct 18, 2024
8d9bc93
and moretests
deandreJones Oct 18, 2024
3918d8e
Merge branch 'main' into B-20654-M25.1
deandreJones Oct 21, 2024
52439ba
here a test, there a test, everwhere a test test
deandreJones Oct 21, 2024
b291e21
Merge branch 'B-20654-M25.1' of https://github.com/transcom/mymove in…
deandreJones Oct 21, 2024
848b682
Merge branch 'main' into B-20654-M25.1
deandreJones Oct 21, 2024
d86f451
and another one
deandreJones Oct 21, 2024
b267978
trying not to reset the coverage..
deandreJones Oct 21, 2024
e755f6e
this probably isnt enough either
deandreJones Oct 21, 2024
79bb309
writing my resignation letter
deandreJones Oct 21, 2024
ff03aed
Merge branch 'main' into B-20654-M25.1
danieljordan-caci Oct 21, 2024
6c7c964
just slit my wrists for me
deandreJones Oct 21, 2024
32ca6cf
evil laugh
deandreJones Oct 21, 2024
c296945
reset test_coverage
deandreJones Oct 22, 2024
8933c8a
Merge branch 'B-20654-M25.1' of https://github.com/transcom/mymove in…
deandreJones Oct 22, 2024
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
4 changes: 4 additions & 0 deletions cmd/generate-payment-request-edi/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -137,4 +137,8 @@ func main() {
}

fmt.Print(edi858String)
err = models.CreatePaymentRequestEdiFile(appCtx.DB(), "858."+paymentRequest.PaymentRequestNumber, edi858String, paymentRequestNumber)
if err != nil {
logger.Fatal(err.Error())
}
}
1 change: 1 addition & 0 deletions migrations/app/migrations_manifest.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1004,3 +1004,4 @@
20241001174400_add_is_oconus_column.up.sql
20241001193619_market-code-enum.up.sql
20241002151527_add_transportation_offices_AK_HI.up.sql
20241007162933_addPaymentRequestEdiFiles.up.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
CREATE TABLE payment_request_edi_files (
id UUID PRIMARY KEY,
payment_request_number TEXT NOT NULL,
edi_string TEXT NOT NULL,
file_name TEXT NOT NULL,
created_at TIMESTAMP WITH TIME ZONE DEFAULT CURRENT_TIMESTAMP,
updated_at TIMESTAMP WITH TIME ZONE DEFAULT CURRENT_TIMESTAMP
);
26 changes: 26 additions & 0 deletions pkg/gen/adminapi/adminoperations/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