- Timestamp:
- 14 Feb 2015, 17:22:51 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/ikobacustom.pcn/trunk/src/ikobacustom/pcn/customers/browser.py
r12612 r12617 23 23 PDFContractSlipPage, CustomerBaseEditFormPage) 24 24 from ikobacustom.pcn.interfaces import MessageFactory as _ 25 from ikobacustom.pcn.customers.interfaces import IRPCContract, IAPPITContract 25 from ikobacustom.pcn.customers.interfaces import ( 26 IRPCContract, IAPPITContract, IAPPTContract) 26 27 27 28 class PDFContractSlipPage(PDFContractSlipPage): … … 62 63 ) 63 64 65 class PDFAPPTContractSlipPage(PDFContractSlipPage): 66 """Deliver pdf file including metadata. 67 """ 68 69 grok.context(IAPPTContract) 70 71 def _sigsInFooter(self): 72 return (_('Date, Signature of Applicant'), 73 _('Date, Signature of Supervisor'), 74 ) 75 64 76 class CustomerBaseEditFormPage(CustomerBaseEditFormPage): 65 77 """ View to edit customer base data
Note: See TracChangeset for help on using the changeset viewer.