Changeset 8282


Ignore:
Timestamp:
26 Apr 2012, 08:05:13 (12 years ago)
Author:
Henrik Bettermann
Message:

Rename state to app_state according to reg_state in students.

Location:
main/waeup.kofa/trunk/src/waeup/kofa/applicants
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.kofa/trunk/src/waeup/kofa/applicants/applicant.py

    r8039 r8282  
    5454
    5555    @property
    56     def state(self):
     56    def app_state(self):
    5757        return IWorkflowState(self).getState()
    5858
    5959    @property
    6060    def translated_state(self):
    61         return application_states_dict[self.state]
     61        return application_states_dict[self.app_state]
    6262
    6363    @property
     
    8484        """
    8585        # Is applicant in the correct state?
    86         if self.state != 'admitted':
     86        if self.app_state != 'admitted':
    8787            return False, "Applicant has not yet been admitted."
    8888        # Does registration number exist?
  • main/waeup.kofa/trunk/src/waeup/kofa/applicants/browser.py

    r8280 r8282  
    759759    @property
    760760    def display_actions(self):
    761         state = IWorkflowState(self.context).getState()
    762         if state == INITIALIZED:
     761        app_state = IWorkflowState(self.context).getState()
     762        if app_state == INITIALIZED:
    763763            actions = [[],[]]
    764         elif state == STARTED:
     764        elif app_state == STARTED:
    765765            actions = [[_('Save')],
    766766                [_('Add online payment ticket'),_('Remove selected tickets')]]
    767         elif state == PAID:
     767        elif app_state == PAID:
    768768            actions = [[_('Save'), _('Final Submit')],
    769769                [_('Remove selected tickets')]]
     
    773773
    774774    def unremovable(self, ticket):
    775         state = IWorkflowState(self.context).getState()
    776         return ticket.r_code or state in (INITIALIZED, SUBMITTED)
     775        app_state = IWorkflowState(self.context).getState()
     776        return ticket.r_code or app_state in (INITIALIZED, SUBMITTED)
    777777
    778778    def emit_lock_message(self):
     
    826826            return
    827827        self.applyData(self.context, **data)
    828         state = IWorkflowState(self.context).getState()
     828        app_state = IWorkflowState(self.context).getState()
    829829        # This shouldn't happen, but the application officer
    830830        # might have forgotten to lock the form after changing the state
    831         if state != PAID:
     831        if app_state != PAID:
    832832            self.flash(_('This form cannot be submitted. Wrong state!'))
    833833            return
  • main/waeup.kofa/trunk/src/waeup/kofa/applicants/interfaces.py

    r8245 r8282  
    306306
    307307    history = Attribute('Object history, a list of messages')
    308     state = Attribute('The application state of an applicant')
     308    app_state = Attribute('The application state of an applicant')
    309309    display_fullname = Attribute('The fullname of an applicant')
    310310    application_date = Attribute('Date of submission, used for export only')
  • main/waeup.kofa/trunk/src/waeup/kofa/applicants/pdf.py

    r8257 r8282  
    8181
    8282    def _addComments(self, data):
    83         if self.context.state == 'created':
     83        if self.context.app_state == 'created':
    8484            comment1 = _(
    8585                'Proceed to the login page of the portal' +
  • main/waeup.kofa/trunk/src/waeup/kofa/applicants/tests/test_browser.py

    r8280 r8282  
    662662        self.assertMatches('...paid...',
    663663                           self.browser.contents)
    664         state = IWorkflowState(self.applicant).getState()
    665         self.assertTrue(state == 'paid')
     664        app_state = IWorkflowState(self.applicant).getState()
     665        self.assertTrue(app_state == 'paid')
    666666
    667667    def test_final_submit(self):
  • main/waeup.kofa/trunk/src/waeup/kofa/applicants/tests/test_export.py

    r8200 r8282  
    141141        # into two parts.
    142142        self.assertTrue(
    143             'applicant_id,application_date,application_number,course1,course2,'
     143            'app_state,applicant_id,application_date,application_number,course1,course2,'
    144144            'course_admitted,date_of_birth,display_fullname,email,firstname,'
    145145            'history,lastname,locked,middlename,notice,password,phone,'
    146             'reg_number,screening_score,screening_venue,sex,state,'
     146            'reg_number,screening_score,screening_venue,sex,'
    147147            'student_id\r\n'
    148             'dp2011_654321,,654321,,,,,Anna Tester,,Anna,'
     148            'initialized,dp2011_654321,,654321,,,,,Anna Tester,,Anna,'
    149149            in result)
    150150        self.assertTrue(
    151151            'Application initialized by system\'],Tester,'
    152             '0,,,,,,,,,initialized,\r\n'
     152            '0,,,,,,,,,\r\n'
    153153            in result)
    154154        return
     
    164164        # history dict. We skip the date and split the comparison
    165165        # into two parts.
    166         self.assertTrue(
    167             'applicant_id,application_date,application_number,course1,course2,'
     166        print result
     167        self.assertTrue(
     168            'app_state,applicant_id,application_date,application_number,course1,course2,'
    168169            'course_admitted,date_of_birth,display_fullname,email,firstname,'
    169170            'history,lastname,locked,middlename,notice,password,phone,'
    170             'reg_number,screening_score,screening_venue,sex,state,'
     171            'reg_number,screening_score,screening_venue,sex,'
    171172            'student_id\r\n'
    172             'dp2011_654321,,654321,CERT1,CERT1,CERT1,1981-02-04,'
     173            'initialized,dp2011_654321,,654321,CERT1,CERT1,CERT1,1981-02-04,'
    173174            'Anna M. Tester,anna@sample.com,Anna,'
    174175            in result)
     
    176177            'Application initialized by system\'],'
    177178            'Tester,0,M.,"Some notice\nin lines.",any password,'
    178             '+234-123-12345,123456,98,Exam Room,f,initialized,\r\n'
     179            '+234-123-12345,123456,98,Exam Room,f,\r\n'
    179180            in result)
    180181
     
    189190        result = open(self.outfile, 'rb').read()
    190191        self.assertTrue(
    191             'applicant_id,application_date,application_number,course1,course2,'
     192            'app_state,applicant_id,application_date,application_number,course1,course2,'
    192193            'course_admitted,date_of_birth,display_fullname,email,firstname,'
    193194            'history,lastname,locked,middlename,notice,password,phone,'
    194             'reg_number,screening_score,screening_venue,sex,state,'
     195            'reg_number,screening_score,screening_venue,sex,'
    195196            'student_id\r\n'
    196             'dp2011_654321,,654321,CERT1,CERT1,CERT1,1981-02-04,'
     197            'initialized,dp2011_654321,,654321,CERT1,CERT1,CERT1,1981-02-04,'
    197198            'Anna M. Tester,anna@sample.com,Anna,'
    198199            in result)
     
    200201            'Application initialized by system\'],'
    201202            'Tester,0,M.,"Some notice\nin lines.",any password,'
    202             '+234-123-12345,123456,98,Exam Room,f,initialized,\r\n'
    203             in result)
    204         return
     203            '+234-123-12345,123456,98,Exam Room,f,\r\n'
     204            in result)
     205        return
Note: See TracChangeset for help on using the changeset viewer.