Changeset 2938 for WAeUP_SRP


Ignore:
Timestamp:
13 Dec 2007, 08:46:09 (17 years ago)
Author:
Henrik Bettermann
Message:

do not update payments online if status == 'started' (too many conflict errors)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • WAeUP_SRP/base/Payment.py

    r2937 r2938  
    7777        status = getattr(doc,'status',None)
    7878        type_description = getattr(doc,'type_description',None)
    79         if status and status != 'started' and not type_description.startswith('Transfer') and not force:
     79        #if status and status != 'started' and not type_description.startswith('Transfer') and not force:
     80        if status and not force: # should not be done online for all started objects (too many conflict errors)
    8081            return
    8182        wftool = self.portal_workflow
Note: See TracChangeset for help on using the changeset viewer.