Changeset 13066 for main/waeup.ikoba/trunk/src/waeup/ikoba/customers
- Timestamp:
- 16 Jun 2015, 14:48:55 (10 years ago)
- Location:
- main/waeup.ikoba/trunk/src/waeup/ikoba/customers
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.ikoba/trunk/src/waeup/ikoba/customers/browser.py
r12809 r13066 454 454 455 455 456 class CustomerActivate Page(UtilityView, grok.View):456 class CustomerActivateView(UtilityView, grok.View): 457 457 """ Activate customer account 458 458 """ … … 474 474 475 475 476 class CustomerDeactivate Page(UtilityView, grok.View):476 class CustomerDeactivateView(UtilityView, grok.View): 477 477 """ Deactivate customer account 478 478 """ … … 1054 1054 return 1055 1055 1056 class PDFDocumentsOverview Page(UtilityView, grok.View):1056 class PDFDocumentsOverviewSlip(UtilityView, grok.View): 1057 1057 """Deliver an overview slip. 1058 1058 """ … … 1111 1111 1112 1112 1113 class PDFDocumentSlip Page(UtilityView, grok.View):1113 class PDFDocumentSlip(UtilityView, grok.View): 1114 1114 """Deliver pdf file including metadata. 1115 1115 """ … … 1141 1141 1142 1142 1143 class PDFMergeDocumentSlip Page(PDFDocumentSlipPage):1143 class PDFMergeDocumentSlip(PDFDocumentSlip): 1144 1144 """Deliver pdf file including metadata. 1145 1145 """ … … 1583 1583 return 1584 1584 1585 class PDFContractsOverview Page(UtilityView, grok.View):1585 class PDFContractsOverviewSlip(UtilityView, grok.View): 1586 1586 """Deliver an overview slip. 1587 1587 """ … … 1641 1641 1642 1642 1643 class PDFContractSlip Page(UtilityView, grok.View):1643 class PDFContractSlip(UtilityView, grok.View): 1644 1644 """Deliver pdf file including metadata. 1645 1645 """ … … 1726 1726 1727 1727 1728 class PDFContractReceipt Page(UtilityView, grok.View):1728 class PDFContractReceiptSlip(UtilityView, grok.View): 1729 1729 """Deliver pdf file including metadata. 1730 1730 """ -
main/waeup.ikoba/trunk/src/waeup/ikoba/customers/fileviewlets.py
r12446 r13066 32 32 CustomerFilesUploadPage, 33 33 DocumentDisplayFormPage, DocumentManageFormPage, DocumentEditFormPage, 34 PDFDocumentSlip Page,)34 PDFDocumentSlip,) 35 35 36 36 grok.templatedir('browser_templates') … … 131 131 132 132 class SampleScanPDFSlip(SampleScanDisplay): 133 grok.view(PDFDocumentSlip Page)133 grok.view(PDFDocumentSlip) 134 134 135 135 … … 188 188 189 189 class PDFScanSlip(PDFScanDisplay): 190 grok.view(PDFDocumentSlip Page)190 grok.view(PDFDocumentSlip) -
main/waeup.ikoba/trunk/src/waeup/ikoba/customers/tests/test_browser.py
r12825 r13066 550 550 logcontent = open(logfile).read() 551 551 self.assertTrue( 552 'zope.mgr - customers.browser.CustomerDeactivate Page- '552 'zope.mgr - customers.browser.CustomerDeactivateView - ' 553 553 'K1000000 - account deactivated' in logcontent) 554 554 self.assertTrue( 555 'zope.mgr - customers.browser.CustomerActivate Page- '555 'zope.mgr - customers.browser.CustomerActivateView - ' 556 556 'K1000000 - account activated' in logcontent) 557 557
Note: See TracChangeset for help on using the changeset viewer.