Skip to content
Snippets Groups Projects
Commit a62f7161 authored by Matthieu Guffroy's avatar Matthieu Guffroy
Browse files

Merge branch 'master' of gitlab.utc.fr:nf17-camp-p14/clivi

parents e63510e7 e25d9f91
No related branches found
No related tags found
No related merge requests found
......@@ -109,7 +109,7 @@ class Facture extends Objet
public function str() {
$animal = new Animal();
$animal->select($this->animal);
$tostr = $animal->str().' : '.$this->prix_total;
$tostr = $animal->str().' '.$this->prix_total;
return $tostr;
}
}
\ No newline at end of file
......@@ -80,7 +80,7 @@ class Ordonnance extends Objet
public function str() {
$animal = new Animal();
$animal->select($this->animal);
$tostr = $animal->str().' : '.$this->date;
$tostr = $animal->str().' '.$this->date;
return $tostr;
}
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment