- Timestamp:
- 14 Feb 2015, 16:58:33 (10 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/batching.py
r12615 r12616 70 70 util_name = 'roncontractprocessor' 71 71 grok.name(util_name) 72 name = _(' Retention of Name Contract Processor')72 name = _('License Processor: Retention of Name') 73 73 iface = IRONContract 74 74 factory_name = 'waeup.RONContract' … … 79 79 util_name = 'ropcontractprocessor' 80 80 grok.name(util_name) 81 name = _(' Registration of Premises Contract Processor')81 name = _('License Processor: Registration of Premises') 82 82 iface = IROPContract 83 83 factory_name = 'waeup.ROPContract' … … 88 88 util_name = 'rprcontractprocessor' 89 89 grok.name(util_name) 90 name = _(' Registration in the Provisional Register Contract Processor')90 name = _('License Processor: Registration in the Provisional Register') 91 91 iface = IRPRContract 92 92 factory_name = 'waeup.RPRContract' … … 97 97 util_name = 'rpccontractprocessor' 98 98 grok.name(util_name) 99 name = _(' Registration as Pharmaceutical Chemist Contract Processor')99 name = _('License Processor: Registration as Pharmaceutical Chemist') 100 100 iface = IRPCContract 101 101 factory_name = 'waeup.RPCContract' … … 106 106 util_name = 'ippmvlcontractprocessor' 107 107 grok.name(util_name) 108 name = _(' Issuance of Patent and Proprietary Medicines Vendors License (Contract) Processor')108 name = _('License Processor: Issuance of Patent and Proprietary Medicines Vendors License') 109 109 iface = IIPPMVLContract 110 110 factory_name = 'waeup.IPPMVLContract' … … 115 115 util_name = 'rppmvlcontractprocessor' 116 116 grok.name(util_name) 117 name = _(' Renewal of Patent and Proprietary Medicines Vendors License (Contract) Processor')117 name = _('License Processor: Renewal of Patent and Proprietary Medicines Vendors License') 118 118 iface = IRPPMVLContract 119 119 factory_name = 'waeup.RPPMVLContract' … … 124 124 util_name = 'appitcontractprocessor' 125 125 grok.name(util_name) 126 name = _(' Accepting Pupil Pharmacist for Internship Training (Contract) Processor')126 name = _('License Processor: Accepting Pupil Pharmacist for Internship Training') 127 127 iface = IAPPITContract 128 128 factory_name = 'waeup.APPITContract' … … 133 133 util_name = 'rptcontractprocessor' 134 134 grok.name(util_name) 135 name = _(' Registration as a Pharmacy Technician (Contract) Processor')135 name = _('License Processor: Registration as a Pharmacy Technician') 136 136 iface = IRPTContract 137 137 factory_name = 'waeup.RPTContract' -
main/ikobacustom.pcn/trunk/src/ikobacustom/pcn/customers/export.py
r12615 r12616 63 63 grok.name('roncontracts') 64 64 iface = IRONContractProcess 65 title = _(u' Retention of Name Contracts')65 title = _(u'Licenses: Retention of Name') 66 66 class_name = 'RONContract' 67 67 … … 72 72 grok.name('ropcontracts') 73 73 iface = IROPContractProcess 74 title = _(u' Registration of Premises Contracts')74 title = _(u'Licenses: Registration of Premises') 75 75 class_name = 'ROPContract' 76 76 … … 80 80 grok.name('rprcontracts') 81 81 iface = IRPRContractProcess 82 title = _(u' Registration in the Provisional Register Contracts')82 title = _(u'Licenses: Registration in the Provisional Register') 83 83 class_name = 'RPRContract' 84 84 … … 88 88 grok.name('rpccontracts') 89 89 iface = IRPCContractProcess 90 title = _(u' Registration as Pharmaceutical Chemist Contracts')90 title = _(u'Licenses: Registration as Pharmaceutical Chemist') 91 91 class_name = 'RPCContract' 92 92 … … 96 96 grok.name('ippmvlcontracts') 97 97 iface = IIPPMVLContractProcess 98 title = _(u' Issuance of Patent and Proprietary Medicines Vendors Licenses')98 title = _(u'Licenses: Issuance of Patent and Proprietary Medicines Vendors') 99 99 class_name = 'IPPMVLContract' 100 100 … … 104 104 grok.name('rppmvlcontracts') 105 105 iface = IRPPMVLContractProcess 106 title = _(u' Renewal of Patent and Proprietary Medicines Vendors Licenses')106 title = _(u'Licenses: Renewal of Patent and Proprietary Medicines Vendors') 107 107 class_name = 'RPPMVLContract' 108 108 … … 112 112 grok.name('appitcontracts') 113 113 iface = IAPPITContractProcess 114 title = _(u' Accepting Pupil Pharmacist for Internship Training Contracts')114 title = _(u'Licenses: Accepting Pupil Pharmacist for Internship Training') 115 115 class_name = 'APPITContract' 116 116 … … 120 120 grok.name('rptcontracts') 121 121 iface = IRPTContractProcess 122 title = _(u' Registration as a Pharmacy Technician Contracts')122 title = _(u'Licenses: Registration as a Pharmacy Technician') 123 123 class_name = 'RPTContract'
Note: See TracChangeset for help on using the changeset viewer.