Skip to content

Commit bd0ae31

Browse files
authored
UXA round 2 SE reg type report updates. (#1935)
* UXA round 2 SE reg type report updates. Signed-off-by: Doug Lovett <doug@diamante.ca> * UXA round 2 SE reg type report updates. Signed-off-by: Doug Lovett <doug@diamante.ca> --------- Signed-off-by: Doug Lovett <doug@diamante.ca>
1 parent 80d8df8 commit bd0ae31

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

ppr-api/report-templates/template-parts/registration/securitiesActNotice.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<div class="separator mt-5"></div>
33
{% endif %}
44
<div class="no-page-break">
5-
<div class="section-title mt-3">Securities Order or Proceedings Notice</div>
5+
<div class="section-title mt-3">Securities Order or Proceeding</div>
66
{% if securitiesActNotices is defined and change is not defined %}
77
{% for notice in securitiesActNotices %}
88
<div class="section-sub-title-blue mt-3">{{ notice.registrationDescription }}</div>

ppr-api/report-templates/template-parts/search-result/securitiesActNotice.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<div class="separator mt-5"></div>
33
{% endif %}
44
<div class="no-page-break">
5-
<div class="section-title mt-3">Securities Order or Proceedings Notice</div>
5+
<div class="section-title mt-3">Securities Order or Proceeding</div>
66
{% if detail.financingStatement.securitiesActNotices is defined and change is not defined %}
77
{% for notice in detail.financingStatement.securitiesActNotices %}
88
<div class="section-sub-title-blue mt-3">{{ notice.registrationDescription }}</div>

ppr-api/src/database/patch/15187-ppr-securities-act.sql

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
-- 15178 begin release 1.2.5
22
INSERT INTO registration_types(registration_type, registration_type_cl, registration_desc, registration_act) VALUES
3-
('SE', 'MISCLIEN', 'SECURITIES ORDER OR PROCEEDINGS NOTICE', 'MISCELLANEOUS REGISTRATIONS ACT');
3+
('SE', 'MISCLIEN', 'SECURITIES ORDER OR PROCEEDING', 'MISCELLANEOUS REGISTRATIONS ACT');
44

55
ALTER TABLE account_bcol_ids
66
ADD COLUMN securities_act_ind VARCHAR(1) NULL CHECK (securities_act_ind IN ('Y', 'N'));
@@ -11,9 +11,9 @@ CREATE TABLE public.securities_act_types (
1111
securities_act_type_desc VARCHAR (100) NOT NULL
1212
);
1313
INSERT INTO securities_act_types(securities_act_type, securities_act_type_desc) VALUES
14-
('LIEN', 'NOTICE OF LIEN AND CHARGES'),
14+
('LIEN', 'NOTICE OF LIEN AND CHARGE'),
1515
('PRESERVATION', 'PRESERVATION ORDER'),
16-
('PROCEEDINGS', 'NOTICE OF PROCEEDINGS')
16+
('PROCEEDINGS', 'NOTICE OF ORDER OR PROCEEDINGS')
1717
;
1818

1919
CREATE SEQUENCE securities_act_notice_id_seq INCREMENT 1 START 1;

0 commit comments

Comments
 (0)