Ignore:
Timestamp:
10 Jan 2021, 10:55:18 (4 years ago)
Author:
Henrik Bettermann
Message:

Allow creation of 'duplicate' Balance Plus payments.

File:
1 edited

Legend:

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

    r16202 r16358  
    431431        applicant = self.getParent(row, site)
    432432        p_id = row['p_id'].strip('#')
    433         if obj.p_item != 'Balance' and self.samePaymentMade(
    434             applicant, obj.p_category):
     433        if not (obj.p_item and obj.p_item.startswith(
     434            'Balance')) and self.samePaymentMade(applicant, obj.p_category):
    435435            applicant.__parent__.__parent__.logger.info(
    436436                '%s - %s - previous update cancelled'
Note: See TracChangeset for help on using the changeset viewer.