-
Notifications
You must be signed in to change notification settings - Fork 70
Closed
Labels
Description
J'ai remarqué une différence entre l'Enum MembershipFeePayment:
https://github.com/afup/web/blob/master/sources/AppBundle/Controller/Admin/Membership/MembershipFeePayment.php#L9-L13
case Cash = 0;
case Check = 1;
case BankTransfert = 2;
case OnlinePayment = 3;
case Other = 4;
Et les constantes définies dans Cotisations :
https://github.com/afup/web/blob/master/sources/Afup/Association/Cotisations.php#L26-L30
define('AFUP_COTISATIONS_REGLEMENT_ESPECES', 0);
define('AFUP_COTISATIONS_REGLEMENT_CHEQUE', 1);
define('AFUP_COTISATIONS_REGLEMENT_VIREMENT', 2);
define('AFUP_COTISATIONS_REGLEMENT_AUTRE', 3);
define('AFUP_COTISATIONS_REGLEMENT_ENLIGNE', 4);
Le Autre (3) et inversé avec le En Ligne (4).
Je ne connais pas les incidences et s'il faut faire un rattrapage.
Reactions are currently unavailable