Skip to content

Commit

Permalink
chore: update opt-in text Table 1 -> Table 2
Browse files Browse the repository at this point in the history
  • Loading branch information
BCerki committed Feb 3, 2025
1 parent d850a88 commit 14cafa0
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# Generated by Django 5.0.11 on 2025-02-03 16:15

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('registration', '0071_remove_historicaloperation_documents_document_and_more'),
]

operations = [
migrations.AlterField(
model_name='historicaloptedinoperationdetail',
name='meets_producing_gger_schedule_a1_regulated_product',
field=models.BooleanField(
blank=True,
db_comment='Does this operation produce a regulated product listed in Table 2 of Schedule A.1 of the GGERR??',
null=True,
),
),
migrations.AlterField(
model_name='optedinoperationdetail',
name='meets_producing_gger_schedule_a1_regulated_product',
field=models.BooleanField(
blank=True,
db_comment='Does this operation produce a regulated product listed in Table 2 of Schedule A.1 of the GGERR??',
null=True,
),
),
]
2 changes: 1 addition & 1 deletion bc_obps/registration/models/opted_in_operation_detail.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class OptedInOperationDetail(TimeStampedModel):
meets_producing_gger_schedule_a1_regulated_product = models.BooleanField(
blank=True,
null=True,
db_comment="Does this operation produce a regulated product listed in Table 1 of Schedule A.1 of the GGERR?",
db_comment="Does this operation produce a regulated product listed in Table 2 of Schedule A.1 of the GGERR??",
)
meets_reporting_and_regulated_obligations = models.BooleanField(
blank=True,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ const meetsNaicsCode1122562ClassificationRequirementsText = (

const meetsProducingGgerScheduleA1RegulatedProductText = (
<span>
Does this operation produce a regulated product listed in Table 1 of
Does this operation produce a regulated product listed in Table 2 of
Schedule A.1 of{" "}
<a href={ggerrLink} target="_blank">
the GGERR
Expand Down

0 comments on commit 14cafa0

Please sign in to comment.