Changeset 12530 for main/ikobacustom.skeleton/trunk/src
- Timestamp:
- 31 Jan 2015, 08:14:44 (10 years ago)
- Location:
- main/ikobacustom.skeleton/trunk/src/ikobacustom/skeleton/customers
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/ikobacustom.skeleton/trunk/src/ikobacustom/skeleton/customers/browser.py
r12502 r12530 19 19 from zope.component import getUtility 20 20 from waeup.ikoba.interfaces import IIkobaUtils 21 from waeup.ikoba.customers.browser import PDFContractSlipPage 21 from waeup.ikoba.customers.browser import ( 22 PDFContractSlipPage, CustomerBaseEditFormPage) 22 23 from ikobacustom.skeleton.interfaces import MessageFactory as _ 23 24 … … 30 31 portal_language = getUtility(IIkobaUtils).PORTAL_LANGUAGE 31 32 return self.context.title 33 34 35 class CustomerBaseEditFormPage(CustomerBaseEditFormPage): 36 """ View to edit customer base data 37 """ 38 39 def dataNotComplete(self): 40 """To be implemented in the customization package. 41 """ 42 return False -
main/ikobacustom.skeleton/trunk/src/ikobacustom/skeleton/customers/utils.py
r12357 r12530 24 24 STARTED, CREATED, REQUESTED, APPROVED, 25 25 SUBMITTED, VERIFIED, REJECTED, 26 EXPIRED )26 EXPIRED, PROVISIONALLY) 27 27 from ikobacustom.skeleton.interfaces import MessageFactory as _ 28 28 … … 35 35 CUSTOMER_ID_PREFIX = u'K' 36 36 37 DOCMANAGE_CUSTOMER_STATES = (REQUESTED, APPROVED, )37 DOCMANAGE_CUSTOMER_STATES = (REQUESTED, APPROVED, PROVISIONALLY) 38 38 39 39 DOCMANAGE_DOCUMENT_STATES = (CREATED,)
Note: See TracChangeset for help on using the changeset viewer.