Changeset 13068 for main/ikobacustom.pcn
- Timestamp:
- 16 Jun 2015, 14:50:12 (9 years ago)
- Location:
- main/ikobacustom.pcn/trunk/src/ikobacustom/pcn/customers
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/ikobacustom.pcn/trunk/src/ikobacustom/pcn/customers/browser.py
r12803 r13068 22 22 from waeup.ikoba.browser.layout import action 23 23 from waeup.ikoba.customers.browser import ( 24 PDFContractSlip Page, CustomerBaseEditFormPage, ContractSelectProductPage, msave)24 PDFContractSlip, CustomerBaseEditFormPage, ContractSelectProductPage, msave) 25 25 from ikobacustom.pcn.interfaces import MessageFactory as _ 26 26 from ikobacustom.pcn.customers.interfaces import ( 27 27 IRPCContract, IAPPITContract, IAPPTContract) 28 28 29 class PDFContractSlip Page(PDFContractSlipPage):29 class PDFContractSlip(PDFContractSlip): 30 30 """Deliver pdf file including metadata. 31 31 """ … … 42 42 return () 43 43 44 class PDFRPCContractSlip Page(PDFContractSlipPage):44 class PDFRPCContractSlip(PDFContractSlip): 45 45 """Deliver pdf file including metadata. 46 46 """ … … 53 53 ) 54 54 55 class PDFAPPITContractSlip Page(PDFContractSlipPage):55 class PDFAPPITContractSlip(PDFContractSlip): 56 56 """Deliver pdf file including metadata. 57 57 """ … … 64 64 ) 65 65 66 class PDFAPPTContractSlip Page(PDFContractSlipPage):66 class PDFAPPTContractSlip(PDFContractSlip): 67 67 """Deliver pdf file including metadata. 68 68 """ -
main/ikobacustom.pcn/trunk/src/ikobacustom/pcn/customers/fileviewlets.py
r12557 r13068 33 33 DocumentManageFormPage, 34 34 DocumentEditFormPage, 35 PDFDocumentSlip Page)35 PDFDocumentSlip) 36 36 37 37 grok.templatedir('browser_templates') … … 179 179 180 180 class JPGScanPDFSlip(JPGScanDisplay): 181 grok.view(PDFDocumentSlip Page)181 grok.view(PDFDocumentSlip) 182 182 183 183 … … 235 235 236 236 class PDFScanSlip(PDFScanDisplay): 237 grok.view(PDFDocumentSlip Page)237 grok.view(PDFDocumentSlip)
Note: See TracChangeset for help on using the changeset viewer.