From 8a10e38281f6d3463a1823433d0cea6d0d53f0a3 Mon Sep 17 00:00:00 2001
From: Nick Clemens <nick@bywatersolutions.com>
Date: Mon, 7 Oct 2019 17:19:27 +0000
Subject: [PATCH] Bug 23767: Include child funds in total spent and ordered on
 acqui-home

To test:
 1 - Have three funds, two parents and one child
 2 - Open a basket and add an order to each fund
 3 - View acqui-home.pl
 4 - Note that ordered values are only added from the two parent funds
 5 - Complete these orders (close basket, receive)
 6 - Note the spent only includes parent funds
 7 - Place three more orders, one from each fund
 8 - Now you can see both spent and ordered are incorrect
 9 - Apply patch
10 - Reload, all should add correctly

Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
---
 .../intranet-tmpl/prog/en/modules/acqui/acqui-home.tt     | 8 --------
 1 file changed, 8 deletions(-)

diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/acqui-home.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/acqui-home.tt
index f20c54c1aa..02bcf6b70a 100644
--- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/acqui-home.tt
+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/acqui-home.tt
@@ -142,20 +142,12 @@
                 </td>
                 <td class="data">
                     <a href="ordered.pl?fund=[% loop_budge.budget_id | uri %]&amp;fund_code=[% loop_budge.budget_code | uri %]">
-                    [% IF loop_budge.budget_parent_id %]
-                        [% loop_budge.budget_ordered | $Price %]
-                    [% ELSE %]
                         <span class="total_amount">[% loop_budge.budget_ordered | $Price %]</span>
-                    [% END %]
                     </a>
                 </td>
                 <td class="data">
                     <a href="spent.pl?fund=[% loop_budge.budget_id | uri %]&amp;fund_code=[% loop_budge.budget_code | uri %]">
-                    [% IF loop_budge.budget_parent_id %]
-                        [% loop_budge.budget_spent | $Price %]
-                    [% ELSE %]
                         <span class="total_amount">[% loop_budge.budget_spent | $Price %]</span>
-                    [% END %]
                     </a>
                 </td>
                 <td class="data">
-- 
2.20.1