- Timestamp:
- 12 Jan 2021, 08:42:06 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.dspg/trunk/src/kofacustom/dspg/interfaces.py
r16323 r16367 502 502 ) 503 503 504 sas_1_fee = schema.Float( 505 title = _(u'SAS Pack I'), 506 default = 0.0, 507 required = True, 508 ) 509 510 sas_2_fee = schema.Float( 511 title = _(u'SAS Pack II'), 512 default = 0.0, 513 required = True, 514 ) 515 516 com_fee = schema.Float( 517 title = _(u'COM Pack'), 518 default = 0.0, 519 required = True, 520 ) 521 522 sta_fee = schema.Float( 523 title = _(u'STA Pack'), 524 default = 0.0, 525 required = True, 526 ) 527 528 slt_1_fee = schema.Float( 529 title = _(u'SLT Pack 1'), 530 default = 0.0, 531 required = True, 532 ) 533 534 slt_2_fee = schema.Float( 535 title = _(u'SLT Pack 2'), 536 default = 0.0, 537 required = True, 538 ) 539 540 lis_fee = schema.Float( 541 title = _(u'LIS Pack'), 542 default = 0.0, 543 required = True, 544 ) 545 546 htm_fee = schema.Float( 547 title = _(u'HTM Pack'), 548 default = 0.0, 549 required = True, 550 ) 551 552 504 553 def getSessionString(): 505 554 """Returns the session string from the vocabulary.
Note: See TracChangeset for help on using the changeset viewer.