############################################################################# # # Copyright (c) 2008-2009 Nexedi SA and Contributors. All Rights Reserved. # Thibaut Deheunynck <thibaut@nexedi.com> # # WARNING: This program as such is intended to be used by professional # programmers who take the whole responsability of assessing all potential # consequences resulting from its eventual inadequacies and bugs # End users who are looking for a ready-to-use solution with commercial # garantees and support are strongly adviced to contract a Free Software # Service Company # # This program is Free Software; you can redistribute it and/or # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # ############################################################################## class P2Constraint: """ P2 Constraints """ _constraints = ( { 'id' : 'owner_last_name_existence', 'description' : 'Property owner last name must be definied', 'type' : 'PropertyExistence', 'owner_last_name' : None, 'message_no_such_property': 'The owner last name must be defined', 'message_property_not_set': 'The owner last name must be defined', }, { 'id' : 'owner_first_name_existence', 'description' : 'Property owner first name code must be definied', 'type' : 'PropertyExistence', 'owner_first_name' : None, 'message_no_such_property': 'The owner first name address must be defined', 'message_property_not_set': 'The owner first name address must be defined', }, { 'id' : 'date_existence', 'description' : 'Property date must be definied', 'type' : 'PropertyExistence', 'date' : None, }, { 'id' : 'company_modifications_existence', 'description' : 'Property company modifcation must be definied', 'type' : 'PropertyExistence', 'company_modifications' : None, 'condition' : 'python: object.getEstablishmentModification() == None', }, { 'id' : 'establishment_modification_existence', 'description' : 'Property my establishment modification must be definied', 'type' : 'PropertyExistence', 'establishment_modification' : None, 'condition' : 'python: object.getCompanyModifications() == None', }, { 'id' : 'rccm_check_existence', 'description' : 'Property rccm check must be definied', 'type' : 'PropertyExistence', 'rccm_check' : None, 'condition' : 'python: object.getRadiationRccmCheck() == None', }, { 'id' : 'radiation_rccm_check_existence', 'description' : 'Property radiation rccm check must be definied', 'type' : 'PropertyExistence', 'rccm_check' : None, 'condition' : 'python: object.getRccmCheck() == None', }, { 'id' : 'company_corporate_registration_code_existence', 'description' : 'Property must be definied', 'type' : 'PropertyExistence', 'company_corporate_registration_code' : None, 'condition' : 'python: object.getCompanyModifications() != None', 'message_no_such_property': 'for an orgnisation modification you must define the company registration code', 'message_property_not_set': 'for an orgnisation modification you must define the company registration code', }, { 'id' : 'establishment_corporate_registration_code_existence', 'description' : 'Property must be definied', 'type' : 'PropertyExistence', 'establishment_corporate_registration_code' : None, 'condition' : 'python: object.getEstablishmentModification() != None', 'message_no_such_property': 'for an establishment modification you must define the establishment registration code', 'message_property_not_set': 'for an establishment modification you must define the establishment registration code', }, )