diff --git a/models/lefilament_tdb.py b/models/lefilament_tdb.py
index 5d4e3af5faa86a34add08d00d19d679849cfd61c..23891ed3776cee75456d055eeb7b3d404e910555 100644
--- a/models/lefilament_tdb.py
+++ b/models/lefilament_tdb.py
@@ -132,7 +132,7 @@ class LeFilamentTdb(models.Model):
             	(select sum(amount) from account_bank_statement_line where amount > 0 and date >= date_trunc('year', current_date) ) as entree,
             	(select sum(amount) from account_bank_statement_line where amount < 0 and date >= date_trunc('year', current_date) ) as sortie,
             	(select sum(amount) from account_bank_statement_line where date >= date_trunc('year', current_date) ) as variation,
-            	(select sum(total_amount) from hr_expense where payment_mode='own_account' and state!='done' ) as cca,
+            	(select sum(es.total_amount) from hr_expense_sheet es, hr_expense e where es.id = e.sheet_id and e.payment_mode='own_account' and es.state!='done' ) as cca,
             	(select sum(price_subtotal-qty_invoiced*price_unit) from sale_order_line where invoice_status='to invoice') as commandes; """)
 		datas = self._cr.dictfetchall()