def _get_pain_def(self, country_code): ''' Get the right message definition based on country code of selected company bank (via payment mode) if no country is defined, take the company country - Here we could add a second level for bank definitions''' if country_code: class_name = 'pain.001' + '.' + country_code.lower() if MsgSEPAFactory.has_instance(class_name): return MsgSEPAFactory.get_instance(class_name) return MsgSEPAFactory.get_instance('pain.001')
# # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as # published by the Free Software Foundation, either version 3 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 Affero General Public License for more details. # # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. # ############################################################################## import os from l10n_ch_sepa.base_sepa.msg_sepa import MsgSEPAFactory from l10n_ch_sepa.base_sepa.pain_001 import Pain001 _xsd_path = os.path.join('l10n_ch', 'xsd', 'pain.001.001.03.ch.02.xsd') _tmpl_dirs = [os.path.join('l10n_ch', 'template')] _tmpl_name = 'pain.001.001.03.ch.02.xml.mako' MsgSEPAFactory.register_class('pain.001.ch', Pain001, xsd_path=_xsd_path, tmpl_dirs=_tmpl_dirs, tmpl_name=_tmpl_name)
# it under the terms of the GNU Affero General Public License as # published by the Free Software Foundation, either version 3 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 Affero General Public License for more details. # # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. # ############################################################################## import os from l10n_ch_sepa.base_sepa.msg_sepa import MsgSEPAFactory from l10n_ch_sepa.base_sepa.pain_001 import Pain001 _xsd_path = os.path.join('l10n_ch', 'xsd', 'pain.001.001.03.ch.02.xsd') _tmpl_dirs = [os.path.join('l10n_ch', 'template')] _tmpl_name = 'pain.001.001.03.ch.02.xml.mako' MsgSEPAFactory.register_class('pain.001.ch', Pain001, xsd_path=_xsd_path, tmpl_dirs=_tmpl_dirs, tmpl_name=_tmpl_name) # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: