Many thanks to Emmanuel Alliel and Nguyen Hoang Linh for their work on the Paybox module.
This is a module based on the the Paybox v3.0 module for using and manage monthly payments with Paybox payment solution.
You will be able to manage up to 3 proposals for a monthly payment and to choose for each one the number of expiries.
The customer will find a bill book in the various documents (screen of confirmation of order, email and invoice).
You will be able to visualize the bill books by order, by months and for the whole shop in the admin.
Basée sur le module Paybox v3.0, cette version permet d'utiliser et de gérer des paiements échelonnés avec la solution Paybox.
Vous pourrez gérer jusqu'à 3 propositions de paiement différé et choisir pour chacune le nombre d'échéances.
Le client trouvera dans les différents documents (écran de confirmation de commande, email et facture) un échéancier.
Vous pourrez visualiser les échéanciers par commande, par mois et au total boutique dans l'admin.
=========
Important
=========
If you are using already the Paybox module : this script is independant, install it as a new module.
But the Paybox System cgi script is the same.
You don't need anothers parameters from Paybox, you will use the same (PBX_SITE, PBX_RANG, PBX_IDENTIFIANT) as you already have.
Si vous utilisez déjà le module Paybox v3.0 : ce script est indépendant et s'installe comme un nouveau module.
Par contre, le script cgi Paybox System est le même.
Vous n'aurez pas besoin de nouveaux paramètres Paybox, ce seront les mêmes (PBX_SITE, PBX_RANG, PBX_IDENTIFIANT) que ceux que vous utilisez déjjà.
FRENCH VERSION - MULTILINGUAL POSSIBILITIES BUT YOU HAVE TO MAKE YOUR TRANSLATION
Legend: 
Download

Report
I saw that ther was a bug with the year date calculation when $month is 13 or more.... I fixed it.
I included my english and french traductions with indications of the date format when displaying the occurency amount.
-------------------
Ce fichier contient la traduction française et anglaise du module avec notamment l'indication du format de date pour le client (juste avant le montant de l'échéance).
Il corrige le bug de calcul de l'année quand $month dépasse 12...
Juste dl les fichiers et remplacer ceux existant. Le reste ne change pas.
--------------------------
ATTENTION PATCHES FILES ONLY not a full version.
English :
Here is an add which will include more security with Ids in the Paybox Module Payment.
It simply replace in echeances.php your Site, Rank and Id values by vars from your data base / table configuration.
Then it's absolutely invisible for anybody except your database admin.
---------------------------------------
French :
L'objet de cet add-on est simplement de sécuriser davantage le module de paiement Paybox, notamment en remplaçant dans echeances.php les valeurs identifiant votre terminal de paiement (pbx_rang, pbx_site, pbx_identifiant) qui peuvent êtr volées et remplacées par d'autr pour détourner les paiements de vos clients ...... !!!!
Elles sont remplacées par les valeurs de votre BDD dans la table Configuration et restent ainsi invisibles sauf de votre DB Administrator.
---------------------------
The attached file contains the modif to be done.
Le fichier joint contient un fichier texte avec la modification à apporter dans echeances.php.
Paybox changed some parameters, the PBX_TOTAL value is passed now in a wrong format.
Just replace in includes/module/payment/echeances.php :
tep_draw_hidden_field('PBX_TOTAL', $this->eche_first_value * 100) .
With:
tep_draw_hidden_field('PBX_TOTAL', (round($this->eche_first_value,2)) * 100) .
The file contains just the change.
Many thanks to Emmanuel Alliel and Nguyen Hoang Linh for their work on the Paybox module.
This is a module based on the the Paybox v3.0 module for using and manage monthly payments with Paybox payment solution.
You will be able to manage up to 3 proposals for a monthly payment and to choose for each one the number of expiries.
The customer will find a bill book in the various documents (screen of confirmation of order, email and invoice).
You will be able to visualize the bill books by order, by months and for the whole shop in the admin.
Basée sur le module Paybox v3.0, cette version permet d'utiliser et de gérer des paiements échelonnés avec la solution Paybox.
Vous pourrez gérer jusqu'à 3 propositions de paiement différé et choisir pour chacune le nombre d'échéances.
Le client trouvera dans les différents documents (écran de confirmation de commande, email et facture) un échéancier.
Vous pourrez visualiser les échéanciers par commande, par mois et au total boutique dans l'admin.
=========
Important
=========
If you are using already the Paybox module : this script is independant, install it as a new module.
But the Paybox System cgi script is the same.
You don't need anothers parameters from Paybox, you will use the same (PBX_SITE, PBX_RANG, PBX_IDENTIFIANT) as you already have.
Si vous utilisez déjà le module Paybox v3.0 : ce script est indépendant et s'installe comme un nouveau module.
Par contre, le script cgi Paybox System est le même.
Vous n'aurez pas besoin de nouveaux paramètres Paybox, ce seront les mêmes (PBX_SITE, PBX_RANG, PBX_IDENTIFIANT) que ceux que vous utilisez déjjà.
FRENCH VERSION - MULTILINGUAL POSSIBILITIES BUT YOU HAVE TO MAKE YOUR TRANSLATION