[2859] | 1 | ## Script (Python) "upgradePayments.py" |
---|
| 2 | ##bind container=container |
---|
| 3 | ##bind context=context |
---|
| 4 | ##bind namespace= |
---|
| 5 | ##bind script=script |
---|
| 6 | ##bind subpath=traverse_subpath |
---|
| 7 | ##parameters= |
---|
| 8 | ##title= |
---|
| 9 | ## |
---|
| 10 | # $Id: upgradePayments.py 2886 2007-12-08 16:19:06Z joachim $ |
---|
| 11 | """ |
---|
| 12 | """ |
---|
| 13 | try: |
---|
| 14 | from Products.zdb import set_trace |
---|
| 15 | except: |
---|
| 16 | def set_trace(): |
---|
| 17 | pass |
---|
| 18 | |
---|
| 19 | mtool = context.portal_membership |
---|
| 20 | member = mtool.getAuthenticatedMember() |
---|
| 21 | if str(member) not in ('admin','joachim'): |
---|
| 22 | return |
---|
| 23 | |
---|
| 24 | |
---|
| 25 | import logging |
---|
| 26 | import DateTime |
---|
| 27 | logger = logging.getLogger('Skins.upgradePayments') |
---|
| 28 | from Products.AdvancedQuery import Eq, Between, Le,In |
---|
| 29 | aq_portal = context.portal_catalog_real.evalAdvancedQuery |
---|
| 30 | aq_student = context.students_catalog.evalAdvancedQuery |
---|
| 31 | students_folder = context.portal_url.getPortalObject().campus.students |
---|
| 32 | |
---|
| 33 | request = context.REQUEST |
---|
| 34 | session = request.SESSION |
---|
| 35 | response = request.RESPONSE |
---|
| 36 | setheader = request.RESPONSE.setHeader |
---|
| 37 | def rwrite(s): |
---|
| 38 | response.setHeader('Content-type','text/html; charset=ISO-8859-15') |
---|
| 39 | response.write("%s<br>\n\r" % s) |
---|
| 40 | |
---|
| 41 | count = 1 |
---|
| 42 | d = {} |
---|
| 43 | l = [] |
---|
| 44 | sum_total = 0.0 |
---|
| 45 | log_after = 100 |
---|
| 46 | logger.info("start") |
---|
| 47 | query = Eq('portal_type','Payment') |
---|
| 48 | payments = aq_portal(query,sortSpecs=('container_path',)) |
---|
| 49 | total = len(payments) |
---|
| 50 | logger.info("found %d payments" % total) |
---|
| 51 | sid = "xxx" |
---|
| 52 | #set_trace() |
---|
| 53 | count = 1 |
---|
| 54 | commit_after = 5 |
---|
| 55 | commit_count = 0 |
---|
| 56 | |
---|
| 57 | set_trace() |
---|
[2886] | 58 | for payment_brain in payments: |
---|
| 59 | payment = payment_brain.getObject() |
---|
| 60 | payment['updatePayment']() |
---|
| 61 | # student_id = payment.getPath().split('/')[-3] |
---|
| 62 | # student_brain = context.students_catalog.getRecordByKey(student_id) |
---|
| 63 | # if student_brain is None: |
---|
| 64 | # logger.info("student %s not in students_catalog" % student_id) |
---|
| 65 | # continue |
---|
| 66 | # d = {} |
---|
| 67 | # doc = payment.getObject().getContent() |
---|
| 68 | # d['key'] = payment.getId |
---|
| 69 | # d['amount'] = doc.amount |
---|
| 70 | # d['description'] = d['type_description'] = doc.type_description |
---|
| 71 | # subject = '' |
---|
| 72 | # if doc.type_description.startswith('School'): |
---|
| 73 | # subject = 'schoolfee' |
---|
| 74 | # sp = doc.type_description.rfind('/') |
---|
| 75 | # d['session_id'] = doc.type_description[sp-2:sp] |
---|
| 76 | # d['subject'] = subject # zb. schoolfee |
---|
| 77 | # d['target'] = "%s" % (student_brain.course) # faculty departmen course |
---|
| 78 | # while True: |
---|
| 79 | # if doc.resp_code == "SC": |
---|
| 80 | # p_type = "sc" |
---|
| 81 | # p_status = "paid" |
---|
| 82 | # break |
---|
| 83 | # if doc.resp_code == "00": |
---|
| 84 | # p_type = "onl" |
---|
| 85 | # p_status = "paid" |
---|
| 86 | # break |
---|
| 87 | # p_type = "ONL" |
---|
| 88 | # p_status = "open" |
---|
| 89 | # break |
---|
| 90 | # d['key'] = payment.getId |
---|
| 91 | # d['type'] = p_type # scratch card |
---|
| 92 | # d['status'] = p_status |
---|
| 93 | # d['resp_approved_amount'] = getattr(doc,'resp_approved_amount',None) |
---|
| 94 | # d['resp_pay_reference'] = doc.resp_pay_reference |
---|
| 95 | # d['resp_desc'] = doc.resp_desc |
---|
| 96 | # d['order_id'] = doc.order_id |
---|
| 97 | # d['resp_code'] = doc.resp_code |
---|
| 98 | # d['resp_card_num'] = doc.resp_card_num |
---|
| 99 | # d['date'] = getattr(doc,'date',None) |
---|
| 100 | # d['resp_date'] = getattr(doc,'resp_date',None) |
---|
| 101 | # doc.edit(mapping = d) |
---|
| 102 | # msg = " ".join(["%s: %s" % (key,value) for key,value in d.items()]) |
---|
| 103 | # rwrite(msg) |
---|
[2859] | 104 | logger.info('upgraded student %s payment %s' % (student_id,d['key'])) |
---|
| 105 | if not count % commit_after: |
---|
| 106 | logger.info("committing %d total %d" % (commit_after,count)) |
---|
| 107 | commit_count += 1 |
---|
| 108 | # if not commit_count % 2: |
---|
| 109 | # break |
---|
| 110 | count += 1 |
---|
| 111 | logger.info("%d of %d upgraded" % (count,total)) |
---|