- Timestamp:
- 26 Jul 2022, 14:06:26 (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.uniben/trunk/src/waeup/uniben/remita/browser.py
r16878 r17034 278 278 return '698984179' 279 279 if applicant.__parent__.prefix == 'flc': 280 return '757257557' 280 return '757257557' 281 if applicant.__parent__.prefix in ('pt', 'ptext'): 282 return '2072815846' 283 if applicant.__parent__.prefix.startswith('pg'): 284 return '2067086388' 285 if applicant.__parent__.prefix in ('sandwich'): 286 return '2072760654' 281 287 return '' 282 288 … … 295 301 @property 296 302 def lineitems(self): 303 if self.context.__parent__.applicant_id.startswith('dp'): 304 inst_acct = "0040217361038" 305 else: 306 inst_acct = "0040217361011" 307 297 308 provider_amt = 1000.0 298 309 if self.context.__parent__.applicant_id.startswith('pre'): … … 306 317 if self.context.__parent__.applicant_id.startswith('pude'): 307 318 provider_amt = 500.0 308 if self.context.__parent__.applicant_id.startswith('dp'):309 inst_acct = "0040217361038"310 else:311 inst_acct = "0040217361011"312 319 if self.context.__parent__.applicant_id.startswith('cbt'): 313 320 provider_amt = 300.0 … … 324 331 "beneficiaryAccount":"1014261520","bankCode":"057", 325 332 "beneficiaryAmount":provider_amt,"deductFeeFrom":"0"},) 326 327 333 self.context.provider_amt = provider_amt 328 334 self.context.net_amt = inst_amt
Note: See TracChangeset for help on using the changeset viewer.