Changeset 18089
- Timestamp:
- 17 Jun 2025, 16:46:05 (5 hours ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.edopoly/trunk/src/kofacustom/edopoly/interswitch/browser.py
r18086 r18089 275 275 PAY_ITEM_ID = 'Default_Payable_MX104253' 276 276 277 SPLIT_ACCOUNT S= {277 SPLIT_ACCOUNT = { 278 278 'schoolfee': [{"alias":"ESP, USEN SCHOOL ACCOUNT","percentage":"100","description":"Tuition Exams Fee","isPrimary":"true"},], 279 279 'clearance': [{"alias":"ESP, USEN SCHOOL ACCOUNT","percentage":"85","description":"Acceptance Fee","isPrimary":"true"}, … … 323 323 324 324 @property 325 def split_account s(self):326 sa = SPLIT_ACCOUNT S.get(self.context.p_category, None)325 def split_account(self): 326 sa = SPLIT_ACCOUNT.get(self.context.p_category, None) 327 327 return str(sa) 328 328 … … 338 338 339 339 @property 340 def split_account s(self):340 def split_account(self): 341 341 sa = [{"alias": "espu school fees account","percentage":"100","description":"Application Fee","isPrimary":"true"},] 342 342 return str(sa)
Note: See TracChangeset for help on using the changeset viewer.