summaryrefslogtreecommitdiff
path: root/src/model
diff options
context:
space:
mode:
authorpolo <ordipolo@gmx.fr>2025-07-09 00:54:15 +0200
committerpolo <ordipolo@gmx.fr>2025-07-09 00:54:15 +0200
commit010702f67d2560d6435c4e7f39fe7a567aac080b (patch)
tree159f2abb3633a1e333d187f0c6862ce4ead047c5 /src/model
parent4accca2c57b5f12169afe6a75c74efadd86d835d (diff)
downloadAppliGestionPHP-010702f67d2560d6435c4e7f39fe7a567aac080b.zip
mieux comme ça
Diffstat (limited to 'src/model')
-rw-r--r--src/model/entities/Facture.php8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/model/entities/Facture.php b/src/model/entities/Facture.php
index 75d1a6e..2eea0e5 100644
--- a/src/model/entities/Facture.php
+++ b/src/model/entities/Facture.php
@@ -65,6 +65,14 @@ class Facture
65 { 65 {
66 return $this->total_main_d_oeuvre; 66 return $this->total_main_d_oeuvre;
67 } 67 }
68 public function getTotalPieces(): float
69 {
70 return $this->total_pieces;
71 }
72 public function getTotalHT(): float
73 {
74 return $this->total_HT;
75 }
68 76
69 public function getAllWithWindowFields(): array 77 public function getAllWithWindowFields(): array
70 { 78 {