Changeset 2946
- Timestamp:
- 13 Dec 2007, 22:15:24 (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
WAeUP_SRP/base/Payment.py
r2938 r2946 77 77 status = getattr(doc,'status',None) 78 78 type_description = getattr(doc,'type_description',None) 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) 79 80 ## should not be done online for all started objects (too many conflict errors) 81 if status and status != 'started' and not type_description.startswith('Transfer') and not force: 82 #if status and not force: 81 83 return 82 84 wftool = self.portal_workflow
Note: See TracChangeset for help on using the changeset viewer.