-
Notifications
You must be signed in to change notification settings - Fork 70
Pouvoir archiver un compte bancaire #1896
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Quelques remarques mais l'ensemble est bien !
J'ai le nez dans la partie tréso presque tous les jours alors j'ai testée la branche en local pour être bien sûr.
'6' => 'Livret A CM', | ||
'4' => 'Paypal', | ||
]; | ||
$listeComptes = $compta->obtenirListeComptesActifs(''); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
C'est déjà la valeur par défaut donc tu peux enlever la valeur :
$listeComptes = $compta->obtenirListeComptesActifs(''); | |
$listeComptes = $compta->obtenirListeComptesActifs(); |
$champsRecup = $compta->obtenirListComptes('',$_GET['id']); | ||
$champs['nom_compte'] = $champsRecup['nom_compte']; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Au lieu de modifier ce code, il vaudrait mieux supprimer ce qui a été remplacé par du Symfony (tout sauf la liste des compte).
Là actuellement les anciennes urls de modification et création fonctionnent encore.
Après si tu compte refaire la liste des comptes en Symfony ça peut attendre.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
J'ai une branche locale avec la refonte de la page de listing sous SF. Si besoin, je peux l'intégrer à la PR.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Mopolo au final j'ai ajouté la suppression de la page legacy de listing des comptes
fixes #1783 #1831