[12286] | 1 | ## $Id: utils.py 14199 2016-09-28 07:44:37Z 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, |
---|
[12530] | 26 | EXPIRED, PROVISIONALLY) |
---|
[14178] | 27 | from ikobacustom.uniben.interfaces import MessageFactory as _ |
---|
[12274] | 28 | |
---|
[14181] | 29 | class UnibenCustomersUtils(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'. |
---|
[14184] | 35 | CUSTOMER_ID_PREFIX = u'B' |
---|
[12274] | 36 | |
---|
[12530] | 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 = { |
---|
[14197] | 46 | 'UnibenCustomerPDFDocument': _('PDF Document'), |
---|
| 47 | 'UnibenCustomerJPGDocument': _('JPG Document'), |
---|
[12274] | 48 | } |
---|
| 49 | |
---|
| 50 | CONTYPES_DICT = { |
---|
[14184] | 51 | 'RIAAContract': _('RIAA Contract'), |
---|
[12274] | 52 | } |
---|
| 53 | |
---|
[12355] | 54 | SELECTABLE_DOCTYPES_DICT = deepcopy(DOCTYPES_DICT) |
---|
[12274] | 55 | |
---|
[12355] | 56 | SELECTABLE_CONTYPES_DICT = deepcopy(CONTYPES_DICT) |
---|
[12357] | 57 | |
---|
| 58 | EXPORTER_NAMES = ( |
---|
| 59 | 'customers', |
---|
[14184] | 60 | 'unibencustomerpdfdocuments', |
---|
| 61 | 'riaacontracts') |
---|
[14197] | 62 | |
---|
| 63 | SEPARATORS_DICT = { |
---|
| 64 | 'form.nominator_title_rank': _(u'Additional Registrant Data'), |
---|
| 65 | 'form.nominee_fullname': _(u'Basic Nominee Data'), |
---|
| 66 | 'form.bib_cit': _(u'Supporting Information'), |
---|
| 67 | } |
---|