Skip to content

Commit

Permalink
Merge pull request #14220 from transcom/MAIN-B-21412-B-21413-Prime-si…
Browse files Browse the repository at this point in the history
…m-create-international-crate

MAIN - B-21412 & B-21413 Prime sim - create international crate
  • Loading branch information
WeatherfordAaron authored Nov 25, 2024
2 parents a55f472 + 088336c commit e609ef0
Show file tree
Hide file tree
Showing 65 changed files with 4,311 additions and 77 deletions.
1 change: 1 addition & 0 deletions migrations/app/migrations_manifest.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1030,4 +1030,5 @@
20241029144404_hdt-614-adjust-accomack-county.up.sql
20241107180705_add_alternative_AK_HI_duty_location_names.up.sql
20241109002854_add_gsr_table_to_move_history.up.sql
20241111203514_add_external_crate_and_remove_icrtsa.up.sql
20241111223224_change_international_sit_services_to_accessorials.up.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
-- Add external_crate to mto_service_items
ALTER TABLE mto_service_items ADD COLUMN IF NOT EXISTS external_crate bool NULL;
COMMENT ON COLUMN mto_service_items.external_crate IS 'Boolean value indicating whether the international crate is externally crated.';

-- removing 'International crating - standalone' (ICRTSA) from the tables
delete from service_params sp
where service_id in (select id from re_services where code in ('ICRTSA'));

delete from re_intl_accessorial_prices reiap
where service_id in (select id from re_services where code in ('ICRTSA'));

delete from re_services rs
where code in ('ICRTSA');
8 changes: 8 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.

3 changes: 3 additions & 0 deletions pkg/gen/ghcmessages/m_t_o_service_item.go

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

156 changes: 150 additions & 6 deletions pkg/gen/primeapi/embedded_spec.go

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

6 changes: 6 additions & 0 deletions pkg/gen/primemessages/m_t_o_service_item.go

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

Loading

0 comments on commit e609ef0

Please sign in to comment.