[12286] | 1 | ## $Id: utils.py 12617 2015-02-14 17:22:51Z henrik $ |
---|
[12274] | 2 | ## |
---|
| 3 | ## Copyright (C) 2014 Uli Fouquet & Henrik Bettermann |
---|
| 4 | ## This program is free software; you can redistribute it and/or modify |
---|
| 5 | ## it under the terms of the GNU General Public License as published by |
---|
| 6 | ## the Free Software Foundation; either version 2 of the License, or |
---|
| 7 | ## (at your option) any later version. |
---|
| 8 | ## |
---|
| 9 | ## This program is distributed in the hope that it will be useful, |
---|
| 10 | ## but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 11 | ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 12 | ## GNU General Public License for more details. |
---|
| 13 | ## |
---|
| 14 | ## You should have received a copy of the GNU General Public License |
---|
| 15 | ## along with this program; if not, write to the Free Software |
---|
| 16 | ## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
---|
| 17 | ## |
---|
| 18 | """General helper functions and utilities for the customer section. |
---|
| 19 | """ |
---|
| 20 | |
---|
[12355] | 21 | from copy import deepcopy |
---|
[12357] | 22 | from waeup.ikoba.customers.utils import ( |
---|
| 23 | CustomersUtils, |
---|
| 24 | STARTED, CREATED, REQUESTED, APPROVED, |
---|
| 25 | SUBMITTED, VERIFIED, REJECTED, |
---|
[12529] | 26 | EXPIRED, PROVISIONALLY) |
---|
[12371] | 27 | from ikobacustom.pcn.interfaces import MessageFactory as _ |
---|
[12274] | 28 | |
---|
[12371] | 29 | class PCNCustomersUtils(CustomersUtils): |
---|
[12274] | 30 | """A collection of methods subject to customization. |
---|
| 31 | """ |
---|
| 32 | |
---|
[12357] | 33 | #: A prefix used when generating new customer ids. Each customer id will |
---|
| 34 | #: start with this string. The default is 'K'. |
---|
| 35 | CUSTOMER_ID_PREFIX = u'K' |
---|
[12274] | 36 | |
---|
[12529] | 37 | DOCMANAGE_CUSTOMER_STATES = (REQUESTED, APPROVED, PROVISIONALLY) |
---|
[12357] | 38 | |
---|
| 39 | DOCMANAGE_DOCUMENT_STATES = (CREATED,) |
---|
| 40 | |
---|
| 41 | CONMANAGE_CUSTOMER_STATES = deepcopy(DOCMANAGE_CUSTOMER_STATES) |
---|
| 42 | |
---|
| 43 | CONMANAGE_CONTRACT_STATES = (CREATED,) |
---|
| 44 | |
---|
[12274] | 45 | DOCTYPES_DICT = { |
---|
[12357] | 46 | #'CustomerSampleDocument': _('Sample Document'), |
---|
| 47 | #'CustomerPDFDocument': _('PDF Document'), |
---|
[12274] | 48 | |
---|
[12384] | 49 | 'PCNCustomerJPGDocument': _('JPG Document'), |
---|
| 50 | 'PCNCustomerPDFDocument': _('PDF Document'), |
---|
[12274] | 51 | } |
---|
| 52 | |
---|
| 53 | CONTYPES_DICT = { |
---|
[12357] | 54 | #'SampleContract': _('Sample Contract'), |
---|
[12274] | 55 | |
---|
[12493] | 56 | 'RONContract': _('Retention of Name on the Registrar'), |
---|
[12499] | 57 | 'ROPContract': _('Registration of Premises'), |
---|
[12571] | 58 | 'RPRContract': _('Registration in the Provisional Register'), |
---|
[12591] | 59 | 'RPCContract': _('Registration as Pharmaceutical Chemist'), |
---|
[12601] | 60 | 'IPPMVLContract': _( |
---|
| 61 | 'Issuance of Patent and Proprietary Medicines Vendors License'), |
---|
[12604] | 62 | 'RPPMVLContract': _( |
---|
| 63 | 'Renewal of Patent and Proprietary Medicines Vendors License'), |
---|
[12611] | 64 | 'APPITContract': _( |
---|
| 65 | 'Accepting Pupil Pharmacist for Internship Training'), |
---|
[12617] | 66 | 'RPTContract': _('Registration as a Pharmacy Technician'), |
---|
| 67 | 'APPTContract': _('Annual Permit for Pharmacy Technician'), |
---|
[12274] | 68 | } |
---|
| 69 | |
---|
[12611] | 70 | |
---|
| 71 | |
---|
| 72 | |
---|
[12355] | 73 | SELECTABLE_DOCTYPES_DICT = deepcopy(DOCTYPES_DICT) |
---|
[12274] | 74 | |
---|
[12355] | 75 | SELECTABLE_CONTYPES_DICT = deepcopy(CONTYPES_DICT) |
---|
[12357] | 76 | |
---|
| 77 | EXPORTER_NAMES = ( |
---|
| 78 | 'customers', |
---|
[12384] | 79 | 'pcncustomerjpgdocuments', |
---|
| 80 | 'pcncustomerpdfdocuments', |
---|
[12499] | 81 | 'roncontracts', |
---|
[12571] | 82 | 'ropcontracts', |
---|
[12591] | 83 | 'rprcontracts', |
---|
[12601] | 84 | 'rpccontracts', |
---|
[12604] | 85 | 'ippmvlcontracts', |
---|
[12611] | 86 | 'rppmvlcontracts', |
---|
[12615] | 87 | 'appitcontracts', |
---|
[12617] | 88 | 'rptcontracts', |
---|
| 89 | 'apptcontracts') |
---|