Commit 34dc8178 authored by Jean-Baptiste Oellers's avatar Jean-Baptiste Oellers
Browse files

Fix: permettre de désactiver un taux de TVA

parent 6c1958eb
Loading
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -706,8 +706,8 @@ class AdministrationController extends AbstractOscarController implements

                    try {
                        $id = intval($this->params()->fromPost('id', null));
                        $active = boolval($this->params()->fromPost('active', false));
                        if ($active == 'true') {
                        $active = false;
                        if ($this->params()->fromPost('active', false) == 'true') {
                            $active = true;
                        }
                        $label = $this->params()->fromPost('label', "PAS d'INTITULÉ");