Skip to content

Commit

Permalink
Merge branch 'main' into b20884-MAIN2-fix_prime_weight_tool_tip
Browse files Browse the repository at this point in the history
  • Loading branch information
taeJungCaci authored Oct 22, 2024
2 parents dffc793 + d702365 commit 1fbf38b
Show file tree
Hide file tree
Showing 58 changed files with 4,803 additions and 420 deletions.
175 changes: 88 additions & 87 deletions .circleci/config.yml

Large diffs are not rendered by default.

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

0 comments on commit 1fbf38b

Please sign in to comment.