Ejemplo n.º 1
0
 def handle(self, *args, **options):
     all_committees = Committee_Overlay.objects.filter(is_paper_filer=True,
                                                       cycle=CURRENT_CYCLE)
     for committee in all_committees:
         update_committee_times(committee, CURRENT_CYCLE)
         committee.is_dirty = False
         committee.save()
Ejemplo n.º 2
0
 def handle(self, *args, **options):
     all_committees = Committee_Overlay.objects.filter(cycle=CURRENT_CYCLE)
     #all_committees = Committee_Overlay.objects.filter(ctype='I')
     for committee in all_committees:
         update_committee_times(committee, CURRENT_CYCLE)
         committee.is_dirty = False
         committee.save()
Ejemplo n.º 3
0
    def handle(self, *args, **options):
        all_committees = Committee_Overlay.objects.filter(cycle=CURRENT_CYCLE)
        #all_committees = Committee_Overlay.objects.filter(ctype='I')
        for committee in all_committees:
            update_committee_times(committee, CURRENT_CYCLE)
            committee.is_dirty=False
            committee.save()

            
Ejemplo n.º 4
0
 def handle(self, *args, **options):
     electronic_filers = Committee_Overlay.objects.filter(is_paper_filer=False)
     for thiscommittee in electronic_filers:
      summarize_committee_periodic_webk(thiscommittee.fec_id)
      update_committee_times(thiscommittee)
 def handle(self, *args, **options):
     all_committees = Committee_Overlay.objects.filter(is_dirty=True)
     for committee in all_committees:
         update_committee_times(committee)
         committee.is_dirty=False
         committee.save()
Ejemplo n.º 6
0
 def handle(self, *args, **options):
     electronic_filers = Committee_Overlay.objects.filter(is_paper_filer=False)
     for thiscommittee in electronic_filers:
         summarize_committee_periodic_webk(thiscommittee.fec_id)
         update_committee_times(thiscommittee)
 def handle(self, *args, **options):
     all_committees = Committee_Overlay.objects.filter(is_paper_filer=True, cycle=CURRENT_CYCLE)
     for committee in all_committees:
         update_committee_times(committee, CURRENT_CYCLE)
         committee.is_dirty=False
         committee.save()