fedspendingtransparency/usaspending-api

View on GitHub
usaspending_api/accounts/models/federal_account.py

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
from django.db import models


class FederalAccount(models.Model):
    """
    Represents a single federal account. A federal account encompasses multiple Treasury Account Symbols (TAS),
    represented by: model:`accounts.TreasuryAppropriationAccount`.
    """

    agency_identifier = models.TextField(db_index=True)
    main_account_code = models.TextField(db_index=True)
    account_title = models.TextField()
    federal_account_code = models.TextField(null=True)  # agency_identifier + '-' + main_account_code
    parent_toptier_agency = models.ForeignKey(
        "references.ToptierAgency",
        models.DO_NOTHING,
        null=True,
        help_text=(
            "The toptier agency under which this federal account should appear in lists and dropdowns.  Not "
            "as simple as just mapping the AID to an agency, although AID does factor into the decision."
        ),
    )

    class Meta:
        managed = True
        db_table = "federal_account"
        unique_together = ("agency_identifier", "main_account_code")

    @staticmethod
    def fa_rendering_label_to_component_dictionary(fa_rendering_label) -> dict:
        return {"faaid": fa_rendering_label.split("-")[0], "famain": fa_rendering_label.split("-")[1]}