palewire / django-calaccess-raw-data

A Django app to download, extract and load campaign finance and lobbying activity data from the California Secretary of State's CAL-ACCESS database
http://django-calaccess.californiacivicdata.org/
MIT License
64 stars 143 forks source link

Add definitions for the other entity code choices on the RcptCd table #55

Closed palewire closed 9 years ago

palewire commented 9 years ago

Right now we only have

    ENTITY_CODE_CHOICES = (
        ("", "None"),
        ("0", "0"),
        ("BNM", "BNM"),
        ("COM", "Recipient committee"),
        ("IND", "Individual"),
        ("OFF", "OFF"),
        ("OTH", "Other"),
        ("PTY", "Political party"),
        ("RCP", "RCP"),
        ("SCC", "Small contributor committee"),
    )
rkiddy commented 9 years ago

This seems to be a dupe of another issue: https://github.com/california-civic-data-coalition/django-calaccess-raw-data/issues/236

Or vice versa.

palewire commented 9 years ago

Yes, though the entity codes do seen to recur on different models. This ticket was intended for the RcptCd contribution schedules from the quarterly filings. The other for the companion expenditure schedules in ExpnCd.

palewire commented 9 years ago

Just fixed this thanks to the docs @rkiddy pointed out.