[12502] | 1 | ## $Id: browser.py 14201 2016-09-29 05:11:09Z henrik $ |
---|
| 2 | ## |
---|
| 3 | ## Copyright (C) 2015 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 | |
---|
| 19 | from zope.component import getUtility |
---|
[12539] | 20 | from waeup.ikoba.interfaces import IIkobaUtils, IExtFileStore |
---|
[12530] | 21 | from waeup.ikoba.customers.browser import ( |
---|
[13067] | 22 | PDFContractSlip, CustomerBaseEditFormPage) |
---|
[14178] | 23 | from ikobacustom.uniben.interfaces import MessageFactory as _ |
---|
[12502] | 24 | |
---|
[13067] | 25 | class PDFContractSlip(PDFContractSlip): |
---|
[12502] | 26 | """Deliver pdf file including metadata. |
---|
| 27 | """ |
---|
| 28 | |
---|
[14201] | 29 | def _signatures(self): |
---|
| 30 | if self.context.contract_category == 'riaa': |
---|
| 31 | return '' |
---|
| 32 | return ([_('Customer Signature')], |
---|
| 33 | [_('Company Officer Signature')] |
---|
| 34 | ) |
---|
| 35 | |
---|
| 36 | def _sigsInFooter(self): |
---|
| 37 | if self.context.contract_category == 'riaa': |
---|
| 38 | return '' |
---|
| 39 | return (_('Date, Customer Signature'), |
---|
| 40 | _('Date, Company Officer Signature'), |
---|
| 41 | ) |
---|
| 42 | |
---|
[12502] | 43 | @property |
---|
| 44 | def label(self): |
---|
| 45 | portal_language = getUtility(IIkobaUtils).PORTAL_LANGUAGE |
---|
[12530] | 46 | return self.context.title |
---|
| 47 | |
---|
| 48 | |
---|
| 49 | class CustomerBaseEditFormPage(CustomerBaseEditFormPage): |
---|
| 50 | """ View to edit customer base data |
---|
| 51 | """ |
---|
| 52 | |
---|
| 53 | def dataNotComplete(self): |
---|
[14201] | 54 | return |
---|