Skip to content
Snippets Groups Projects
Commit 43ee99ab authored by joriot221's avatar joriot221
Browse files

Correction de Service réalisé qui cache les heures quand heure a 0 meme si heure en prévisionnel

parent 9fe1ab16
Branches
Tags
No related merge requests found
...@@ -207,7 +207,7 @@ $.widget("ose.serviceListe", { ...@@ -207,7 +207,7 @@ $.widget("ose.serviceListe", {
totalHeures += $(this).data('value'); totalHeures += $(this).data('value');
}); });
//On affiche toutes les lignes de services meme celle avec 0H //On affiche toutes les lignes de services meme celle avec 0H
if (totalHeures === 0) { if (totalHeures = 0) {
$(this).hide(); $(this).hide();
that.element.find("table.service tr#service-" + id + "-volume-horaire-tr").hide(); that.element.find("table.service tr#service-" + id + "-volume-horaire-tr").hide();
} else { } else {
...@@ -227,7 +227,7 @@ $.widget("ose.serviceListe", { ...@@ -227,7 +227,7 @@ $.widget("ose.serviceListe", {
this.calculTotaux(); this.calculTotaux();
this.showHideTypesIntervention(); //this.showHideTypesIntervention();
}, },
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment