projects
/
spip_souscriptions.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
91c1bc0
)
bugfix calcul de l'avancement
author
Cerdic
<cedric@yterium.com>
Mon, 9 Dec 2013 09:04:07 +0000
(10:04 +0100)
committer
Cerdic
<cedric@yterium.com>
Mon, 9 Dec 2013 09:46:35 +0000
(10:46 +0100)
souscription_fonctions.php
patch
|
blob
|
history
diff --git
a/souscription_fonctions.php
b/souscription_fonctions.php
index
1ed1e80
..
d269f07
100644
(file)
--- a/
souscription_fonctions.php
+++ b/
souscription_fonctions.php
@@
-9,10
+9,7
@@
function calcul_avancement_campagne($id_campagne, $type_objectif, $objectif_init
array("S.id_souscription_campagne=".sql_quote($id_campagne),
"T.reglee = 'oui'"));
- $nombre = $res['nombre'];
- $somme = $objectif_initial;
-
- return ($type_souscription == "don" ? $somme : $nombre) + $objectif_initial;
+ return ($type_objectif == "don" ? $res['somme'] : $res['nombre']) + $objectif_initial;
}
/*