- Timestamp:
- 22 Sep 2016, 20:11:06 (8 years ago)
- Location:
- main/ikobacustom.uniben/trunk/src/ikobacustom/uniben
- Files:
-
- 1 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
main/ikobacustom.uniben/trunk/src/ikobacustom/uniben/customers/export.py
r12502 r14178 16 16 ## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 17 17 ## 18 """Exporters for skeleton customer objects and subobjects.18 """Exporters for uniben customer objects and subobjects. 19 19 """ 20 20 import grok 21 21 from waeup.ikoba.customers.export import ( 22 22 CustomerExporter, CustomerDocumentExporterBase, ContractExporterBase) 23 from ikobacustom. skeleton.customers.interfaces import (23 from ikobacustom.uniben.customers.interfaces import ( 24 24 ISkeletonCustomer, ISkeletonCustomerDocument, ISkeletonContractProcess) 25 from ikobacustom. skeleton.interfaces import MessageFactory as _25 from ikobacustom.uniben.interfaces import MessageFactory as _ 26 26 27 27 class SkeletonCustomerExporter(CustomerExporter): … … 35 35 """Exporter for documents. 36 36 """ 37 grok.name(' skeletoncustomerdocuments')37 grok.name('unibencustomerdocuments') 38 38 iface = ISkeletonCustomerDocument 39 39 title = _(u'Skeleton Customer Documents') … … 44 44 """Exporter for Contract instances. 45 45 """ 46 grok.name(' skeletoncontracts')46 grok.name('unibencontracts') 47 47 iface = ISkeletonContractProcess 48 48 title = _(u'Skeleton Customer Contracts')
Note: See TracChangeset for help on using the changeset viewer.