==Title== OXPS SEPA implementation ==Author== OXID Professional Services ==Prefix== oxps ==Shop Version== 5.0.x/4.7.x ==Version== 1.1.0 ==Link== http://www.oxid-sales.com ==Mail== info@oxid-esales.com ==Description== PSDP-35 CR: As DPAG I want the CR \"SEPA Shopanpassungen\" implemented. #1235886 ==Installation== Apply included install.sql file on Your database. In a configuration file add a parameter "aSepaAgreementEnabledInShops", that defines what sub-shops should display SEPA agreement link. And "aSepaAgreementFiles" - SEPA Agreement files path for each sub-shop. You can define SEPA method description per shop by creating CMS snipped with ident `oxps_sepa_description`. If snippet does not exists, default description will be used. Example: /* OXPS SEPA module configuration */ // In what shops SEPA agreement PDF file link is enabled. $this->aSepaAgreementEnabledInShops = array(2, 3, 4, 6); // SEPA agreement PDF files array with ket as sub-shop ID and path to a file as value. $this->aSepaAgreementFiles = array( 0 => '/out/downloads/sepa/P00425.pdf', // Default one 2 => '/out/downloads/sepa/P00425-2.pdf', 3 => '/out/downloads/sepa/P00425-3.pdf', 4 => '/out/downloads/sepa/P00425-4.pdf', 6 => '/out/downloads/sepa/P00425-6.pdf', ); ==Extend== * oxpayment -- assign * payment -- getPaymentList -- validatepayment * order -- init * mo_iman_interface_soap_wrapper -- translatePaymentId -- mo_collectOderData -- getPaymentData ==Modules== * iman_interface ==Modified original templates== ==Uninstall== Remove "aSepaAgreementEnabledInShops" and "aSepaAgreementFiles" params from a configuration file.