Ignore:
Timestamp:
9 Jan 2013, 09:57:36 (12 years ago)
Author:
Henrik Bettermann
Message:

Update (and fix) localization.

Omit fees on payment slips.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.aaue/trunk/src/waeup/aaue/students/browser.py

    r9496 r9853  
    3232    """
    3333    grok.context(ICustomStudentOnlinePayment)
    34     form_fields = grok.AutoFields(ICustomStudentOnlinePayment)
     34    form_fields = grok.AutoFields(ICustomStudentOnlinePayment).omit(
     35        'provider_amt', 'gateway_amt', 'thirdparty_amt')
    3536    form_fields[
    3637        'creation_date'].custom_widget = FriendlyDatetimeDisplayWidget('le')
     
    4849    """
    4950    grok.context(ICustomStudentOnlinePayment)
    50     form_fields = grok.AutoFields(ICustomStudentOnlinePayment)
     51    form_fields = grok.AutoFields(ICustomStudentOnlinePayment).omit(
     52        'provider_amt', 'gateway_amt', 'thirdparty_amt')
    5153    form_fields['creation_date'].custom_widget = FriendlyDatetimeDisplayWidget('le')
    5254    form_fields['payment_date'].custom_widget = FriendlyDatetimeDisplayWidget('le')
Note: See TracChangeset for help on using the changeset viewer.