Changeset 11996 for main/waeup.ikoba/trunk/src/waeup/ikoba/customers
- Timestamp:
- 19 Nov 2014, 16:06:21 (10 years ago)
- Location:
- main/waeup.ikoba/trunk/src/waeup/ikoba/customers
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.ikoba/trunk/src/waeup/ikoba/customers/browser_templates/containermanagepage.pt
r11979 r11996 35 35 <tr> 36 36 <th> </th> 37 <th i18n:translate=""> StudentId</th>37 <th i18n:translate="">Customer Id</th> 38 38 <th i18n:translate="">Reg. Number</th> 39 39 <th i18n:translate="">State</th> -
main/waeup.ikoba/trunk/src/waeup/ikoba/customers/browser_templates/containerpage.pt
r11979 r11996 32 32 <thead> 33 33 <tr> 34 <th i18n:translate=""> StudentId</th>34 <th i18n:translate="">Customer Id</th> 35 35 <th i18n:translate="">Reg. Number</th> 36 36 <th i18n:translate="">State</th> -
main/waeup.ikoba/trunk/src/waeup/ikoba/customers/browser_templates/requestpw.pt
r11979 r11996 17 17 </table> 18 18 <p i18n:translate=""> 19 Your studentrecord will be looked up and19 Your customer record will be looked up and 20 20 your login credentials will be sent to the email address given above. 21 21 To be able to proceed you must provide a valid email address! -
main/waeup.ikoba/trunk/src/waeup/ikoba/customers/customer.py
r11985 r11996 42 42 ICustomer, ICustomerNavigation, ICSVCustomerExporter) 43 43 from waeup.ikoba.customers.utils import generate_customer_id 44 from waeup.ikoba.customers.documents import CustomerDocumentsContainer 44 45 from waeup.ikoba.utils.helpers import attrs_to_fields, now, copy_filesystem_tree 45 46 … … 179 180 if customer.state is None: 180 181 IWorkflowInfo(customer).fireTransition('create') 182 documents = CustomerDocumentsContainer() 183 customer['documents'] = documents 181 184 return 182 185 -
main/waeup.ikoba/trunk/src/waeup/ikoba/customers/interfaces.py
r11989 r11996 120 120 121 121 customer_id = schema.TextLine( 122 title = _(u' StudentId'),122 title = _(u'Customer Id'), 123 123 required = False, 124 124 )
Note: See TracChangeset for help on using the changeset viewer.