diff --git a/public/js/service.js b/public/js/service.js
index 4e3843fb4432b06c96b2c7bfd7e5fa10bc441bc4..aa0b6b7763116f258bb6481b1e40801c453f4ce1 100755
--- a/public/js/service.js
+++ b/public/js/service.js
@@ -207,7 +207,7 @@ $.widget("ose.serviceListe", {
                 totalHeures += $(this).data('value');
             });
             //On affiche toutes les lignes de services meme celle avec 0H
-            if (totalHeures === 0) {
+            if (totalHeures = 0) {
                 $(this).hide();
                 that.element.find("table.service tr#service-" + id + "-volume-horaire-tr").hide();
             } else {
@@ -227,7 +227,7 @@ $.widget("ose.serviceListe", {
 
 
         this.calculTotaux();
-        this.showHideTypesIntervention();
+        //this.showHideTypesIntervention();
 
     },