Skip to content

Commit

Permalink
UXA round 2 SE reg type report updates. (#1935)
Browse files Browse the repository at this point in the history
* UXA round 2 SE reg type report updates.

Signed-off-by: Doug Lovett <[email protected]>

* UXA round 2 SE reg type report updates.

Signed-off-by: Doug Lovett <[email protected]>

---------

Signed-off-by: Doug Lovett <[email protected]>
  • Loading branch information
doug-lovett authored Jun 14, 2024
1 parent 80d8df8 commit bd0ae31
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<div class="separator mt-5"></div>
{% endif %}
<div class="no-page-break">
<div class="section-title mt-3">Securities Order or Proceedings Notice</div>
<div class="section-title mt-3">Securities Order or Proceeding</div>
{% if securitiesActNotices is defined and change is not defined %}
{% for notice in securitiesActNotices %}
<div class="section-sub-title-blue mt-3">{{ notice.registrationDescription }}</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<div class="separator mt-5"></div>
{% endif %}
<div class="no-page-break">
<div class="section-title mt-3">Securities Order or Proceedings Notice</div>
<div class="section-title mt-3">Securities Order or Proceeding</div>
{% if detail.financingStatement.securitiesActNotices is defined and change is not defined %}
{% for notice in detail.financingStatement.securitiesActNotices %}
<div class="section-sub-title-blue mt-3">{{ notice.registrationDescription }}</div>
Expand Down
6 changes: 3 additions & 3 deletions ppr-api/src/database/patch/15187-ppr-securities-act.sql
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
-- 15178 begin release 1.2.5
INSERT INTO registration_types(registration_type, registration_type_cl, registration_desc, registration_act) VALUES
('SE', 'MISCLIEN', 'SECURITIES ORDER OR PROCEEDINGS NOTICE', 'MISCELLANEOUS REGISTRATIONS ACT');
('SE', 'MISCLIEN', 'SECURITIES ORDER OR PROCEEDING', 'MISCELLANEOUS REGISTRATIONS ACT');

ALTER TABLE account_bcol_ids
ADD COLUMN securities_act_ind VARCHAR(1) NULL CHECK (securities_act_ind IN ('Y', 'N'));
Expand All @@ -11,9 +11,9 @@ CREATE TABLE public.securities_act_types (
securities_act_type_desc VARCHAR (100) NOT NULL
);
INSERT INTO securities_act_types(securities_act_type, securities_act_type_desc) VALUES
('LIEN', 'NOTICE OF LIEN AND CHARGES'),
('LIEN', 'NOTICE OF LIEN AND CHARGE'),
('PRESERVATION', 'PRESERVATION ORDER'),
('PROCEEDINGS', 'NOTICE OF PROCEEDINGS')
('PROCEEDINGS', 'NOTICE OF ORDER OR PROCEEDINGS')
;

CREATE SEQUENCE securities_act_notice_id_seq INCREMENT 1 START 1;
Expand Down

0 comments on commit bd0ae31

Please sign in to comment.