Bug 18804: (bugs 16400,11088 follow-up) Update the "save category" elt selector
[koha.git] / t / db_dependent / Budgets.t
1 #!/usr/bin/perl
2 use Modern::Perl;
3 use Test::More tests => 142;
4
5 BEGIN {
6     use_ok('C4::Budgets')
7 }
8 use C4::Context;
9 use C4::Biblio;
10 use C4::Acquisition;
11 use C4::Members qw( AddMember );
12
13 use Koha::Acquisition::Order;
14 use Koha::Acquisition::Booksellers;
15
16 use t::lib::TestBuilder;
17
18 use YAML;
19
20 my $schema  = Koha::Database->new->schema;
21 $schema->storage->txn_begin;
22 my $builder = t::lib::TestBuilder->new;
23 my $dbh = C4::Context->dbh;
24 $dbh->do(q|DELETE FROM aqbudgetperiods|);
25 $dbh->do(q|DELETE FROM aqbudgets|);
26
27 my $library = $builder->build({
28     source => 'Branch',
29 });
30
31 # Mock userenv
32 local $SIG{__WARN__} = sub { warn $_[0] unless $_[0] =~ /redefined/ };
33 my $userenv;
34 *C4::Context::userenv = \&Mock_userenv;
35 $userenv = { flags => 1, id => 'my_userid', branch => $library->{branchcode} };
36
37 #
38 # Budget Periods :
39 #
40
41 is( AddBudgetPeriod(), undef, 'AddBugetPeriod without argument returns undef' );
42 is( AddBudgetPeriod( { }  ), undef, 'AddBugetPeriod with an empty argument returns undef' );
43 my $bpid = AddBudgetPeriod({
44     budget_period_startdate => '2008-01-01',
45 });
46 is( $bpid, undef, 'AddBugetPeriod without end date returns undef' );
47 $bpid = AddBudgetPeriod({
48     budget_period_enddate => '2008-12-31',
49 });
50 is( $bpid, undef, 'AddBugetPeriod without start date returns undef' );
51 is( GetBudgetPeriod(0), undef ,'GetBudgetPeriod(0) returned undef : noactive BudgetPeriod' );
52 my $budgetperiods = GetBudgetPeriods();
53 is( @$budgetperiods, 0, 'GetBudgetPeriods returns the correct number of budget periods' );
54
55 my $my_budgetperiod = {
56     budget_period_startdate   => '2008-01-01',
57     budget_period_enddate     => '2008-12-31',
58     budget_period_description => 'MAPERI',
59     budget_period_active      => 0,
60 };
61 $bpid = AddBudgetPeriod($my_budgetperiod);
62 isnt( $bpid, undef, 'AddBugetPeriod does not returns undef' );
63 my $budgetperiod = GetBudgetPeriod($bpid);
64 is( $budgetperiod->{budget_period_startdate}, $my_budgetperiod->{budget_period_startdate}, 'AddBudgetPeriod stores the start date correctly' );
65 is( $budgetperiod->{budget_period_enddate}, $my_budgetperiod->{budget_period_enddate}, 'AddBudgetPeriod stores the end date correctly' );
66 is( $budgetperiod->{budget_period_description}, $my_budgetperiod->{budget_period_description}, 'AddBudgetPeriod stores the description correctly' );
67 is( $budgetperiod->{budget_period_active}, $my_budgetperiod->{budget_period_active}, 'AddBudgetPeriod stores active correctly' );
68 is( GetBudgetPeriod(0), undef ,'GetBudgetPeriod(0) returned undef : noactive BudgetPeriod' );
69
70
71 $my_budgetperiod = {
72     budget_period_startdate   => '2009-01-01',
73     budget_period_enddate     => '2009-12-31',
74     budget_period_description => 'MODIF_MAPERI',
75     budget_period_active      => 1,
76 };
77 my $mod_status = ModBudgetPeriod($my_budgetperiod);
78 is( $mod_status, undef, 'ModBudgetPeriod without id returns undef' );
79
80 $my_budgetperiod->{budget_period_id} = $bpid;
81 $mod_status = ModBudgetPeriod($my_budgetperiod);
82 is( $mod_status, 1, 'ModBudgetPeriod returnis true' );
83 $budgetperiod = GetBudgetPeriod($bpid);
84 is( $budgetperiod->{budget_period_startdate}, $my_budgetperiod->{budget_period_startdate}, 'ModBudgetPeriod updates the start date correctly' );
85 is( $budgetperiod->{budget_period_enddate}, $my_budgetperiod->{budget_period_enddate}, 'ModBudgetPeriod updates the end date correctly' );
86 is( $budgetperiod->{budget_period_description}, $my_budgetperiod->{budget_period_description}, 'ModBudgetPeriod updates the description correctly' );
87 is( $budgetperiod->{budget_period_active}, $my_budgetperiod->{budget_period_active}, 'ModBudgetPeriod upates active correctly' );
88 isnt( GetBudgetPeriod(0), undef, 'GetBugetPeriods functions correctly' );
89
90
91 $budgetperiods = GetBudgetPeriods();
92 is( @$budgetperiods, 1, 'GetBudgetPeriods returns the correct number of budget periods' );
93 is( $budgetperiods->[0]->{budget_period_id}, $my_budgetperiod->{budget_period_id}, 'GetBudgetPeriods returns the id correctly' );
94 is( $budgetperiods->[0]->{budget_period_startdate}, $my_budgetperiod->{budget_period_startdate}, 'GetBudgetPeriods returns the start date correctly' );
95 is( $budgetperiods->[0]->{budget_period_enddate}, $my_budgetperiod->{budget_period_enddate}, 'GetBudgetPeriods returns the end date correctly' );
96 is( $budgetperiods->[0]->{budget_period_description}, $my_budgetperiod->{budget_period_description}, 'GetBudgetPeriods returns the description correctly' );
97 is( $budgetperiods->[0]->{budget_period_active}, $my_budgetperiod->{budget_period_active}, 'GetBudgetPeriods returns active correctly' );
98
99 is( DelBudgetPeriod($bpid), 1, 'DelBudgetPeriod returns true' );
100 $budgetperiods = GetBudgetPeriods();
101 is( @$budgetperiods, 0, 'GetBudgetPeriods returns the correct number of budget periods' );
102
103
104 #
105 # Budget  :
106 #
107
108 # The budget hierarchy will be:
109 # budget_1
110 #   budget_11
111 #     budget_111
112 #   budget_12
113 # budget_2
114 #   budget_21
115
116 is( AddBudget(), undef, 'AddBuget without argument returns undef' );
117 my $budgets = GetBudgets();
118 is( @$budgets, 0, 'GetBudgets returns the correct number of budgets' );
119
120 $bpid = AddBudgetPeriod($my_budgetperiod);
121 my $my_budget = {
122     budget_code      => 'ABCD',
123     budget_amount    => '123.132000',
124     budget_name      => 'Periodiques',
125     budget_notes     => 'This is a note',
126     budget_period_id => $bpid,
127 };
128 my $budget_id = AddBudget($my_budget);
129 isnt( $budget_id, undef, 'AddBudget does not returns undef' );
130 my $budget = GetBudget($budget_id);
131 is( $budget->{budget_code}, $my_budget->{budget_code}, 'AddBudget stores the budget code correctly' );
132 is( $budget->{budget_amount}, $my_budget->{budget_amount}, 'AddBudget stores the budget amount correctly' );
133 is( $budget->{budget_name}, $my_budget->{budget_name}, 'AddBudget stores the budget name correctly' );
134 is( $budget->{budget_notes}, $my_budget->{budget_notes}, 'AddBudget stores the budget notes correctly' );
135 is( $budget->{budget_period_id}, $my_budget->{budget_period_id}, 'AddBudget stores the budget period id correctly' );
136
137
138 $my_budget = {
139     budget_code      => 'EFG',
140     budget_amount    => '321.231000',
141     budget_name      => 'Modified name',
142     budget_notes     => 'This is a modified note',
143     budget_period_id => $bpid,
144 };
145 $mod_status = ModBudget($my_budget);
146 is( $mod_status, undef, 'ModBudget without id returns undef' );
147
148 $my_budget->{budget_id} = $budget_id;
149 $mod_status = ModBudget($my_budget);
150 is( $mod_status, 1, 'ModBudget returns true' );
151 $budget = GetBudget($budget_id);
152 is( $budget->{budget_code}, $my_budget->{budget_code}, 'ModBudget updates the budget code correctly' );
153 is( $budget->{budget_amount}, $my_budget->{budget_amount}, 'ModBudget updates the budget amount correctly' );
154 is( $budget->{budget_name}, $my_budget->{budget_name}, 'ModBudget updates the budget name correctly' );
155 is( $budget->{budget_notes}, $my_budget->{budget_notes}, 'ModBudget updates the budget notes correctly' );
156 is( $budget->{budget_period_id}, $my_budget->{budget_period_id}, 'ModBudget updates the budget period id correctly' );
157
158
159 $budgets = GetBudgets();
160 is( @$budgets, 1, 'GetBudgets returns the correct number of budgets' );
161 is( $budgets->[0]->{budget_id}, $my_budget->{budget_id}, 'GetBudgets returns the budget id correctly' );
162 is( $budgets->[0]->{budget_code}, $my_budget->{budget_code}, 'GetBudgets returns the budget code correctly' );
163 is( $budgets->[0]->{budget_amount}, $my_budget->{budget_amount}, 'GetBudgets returns the budget amount correctly' );
164 is( $budgets->[0]->{budget_name}, $my_budget->{budget_name}, 'GetBudgets returns the budget name correctly' );
165 is( $budgets->[0]->{budget_notes}, $my_budget->{budget_notes}, 'GetBudgets returns the budget notes correctly' );
166 is( $budgets->[0]->{budget_period_id}, $my_budget->{budget_period_id}, 'GetBudgets returns the budget period id correctly' );
167
168 $budgets = GetBudgets( {budget_period_id => $bpid} );
169 is( @$budgets, 1, 'GetBudgets With Filter OK' );
170 $budgets = GetBudgets( {budget_period_id => $bpid}, {-asc => "budget_name"} );
171 is( @$budgets, 1, 'GetBudgets With Order OK' );
172 $budgets = GetBudgets( {budget_period_id => GetBudgetPeriod($bpid)->{budget_period_id}}, {-asc => "budget_name"} );
173 is( @$budgets, 1, 'GetBudgets With Order Getting Active budgetPeriod OK');
174
175
176 my $budget_name = GetBudgetName( $budget_id );
177 is($budget_name, $my_budget->{budget_name}, "Test the GetBudgetName routine");
178
179 my $budget_code = $my_budget->{budget_code};
180 my $budget_by_code = GetBudgetByCode( $budget_code );
181 is($budget_by_code->{budget_id}, $budget_id, "GetBudgetByCode, check id");
182 is($budget_by_code->{budget_notes}, $my_budget->{budget_notes}, "GetBudgetByCode, check notes");
183
184 my $second_budget_id = AddBudget({
185     budget_code      => "ZZZZ",
186     budget_amount    => "500.00",
187     budget_name      => "Art",
188     budget_notes     => "This is a note",
189     budget_period_id => $bpid,
190 });
191 isnt( $second_budget_id, undef, 'AddBudget does not returns undef' );
192
193 $budgets = GetBudgets( {budget_period_id => $bpid} );
194 ok( $budgets->[0]->{budget_name} lt $budgets->[1]->{budget_name}, 'default sort order for GetBudgets is by name' );
195
196 is( DelBudget($budget_id), 1, 'DelBudget returns true' );
197 $budgets = GetBudgets();
198 is( @$budgets, 1, 'GetBudgets returns the correct number of budget periods' );
199
200
201 # GetBudgetHierarchySpent and GetBudgetHierarchyOrdered
202 my $budget_period_total = 10_000;
203 my $budget_1_total = 1_000;
204 my $budget_11_total = 100;
205 my $budget_111_total = 50;
206 my $budget_12_total = 100;
207 my $budget_2_total = 2_000;
208
209 my $budget_period_id = AddBudgetPeriod(
210     {
211         budget_period_startdate   => '2013-01-01',
212         budget_period_enddate     => '2014-12-31',
213         budget_period_description => 'Budget Period',
214         budget_period_active      => 1,
215         budget_period_total       => $budget_period_total,
216     }
217 );
218 my $budget_id1 = AddBudget(
219     {
220         budget_code      => 'budget_1',
221         budget_name      => 'budget_1',
222         budget_period_id => $budget_period_id,
223         budget_parent_id => undef,
224         budget_amount    => $budget_1_total,
225     }
226 );
227 my $budget_id2 = AddBudget(
228     {
229         budget_code      => 'budget_2',
230         budget_name      => 'budget_2',
231         budget_period_id => $budget_period_id,
232         budget_parent_id => undef,
233         budget_amount    => $budget_2_total,
234     }
235 );
236 my $budget_id12 = AddBudget(
237     {
238         budget_code      => 'budget_12',
239         budget_name      => 'budget_12',
240         budget_period_id => $budget_period_id,
241         budget_parent_id => $budget_id1,
242         budget_amount    => $budget_12_total,
243     }
244 );
245 my $budget_id11 = AddBudget(
246     {
247         budget_code      => 'budget_11',
248         budget_name      => 'budget_11',
249         budget_period_id => $budget_period_id,
250         budget_parent_id => $budget_id1,
251         budget_amount    => $budget_11_total,
252     }
253 );
254 my $budget_id111 = AddBudget(
255     {
256         budget_code      => 'budget_111',
257         budget_name      => 'budget_111',
258         budget_period_id => $budget_period_id,
259         budget_parent_id => $budget_id11,
260         budget_owner_id  => 1,
261         budget_amount    => $budget_111_total,
262     }
263 );
264 my $budget_id21 = AddBudget(
265     {
266         budget_code      => 'budget_21',
267         budget_name      => 'budget_21',
268         budget_period_id => $budget_period_id,
269         budget_parent_id => $budget_id2,
270     }
271 );
272
273 my $bookseller = Koha::Acquisition::Bookseller->new(
274     {
275         name         => "my vendor",
276         address1     => "bookseller's address",
277         phone        => "0123456",
278         active       => 1,
279         deliverytime => 5,
280     }
281 )->store;
282 my $booksellerid = $bookseller->id;
283
284 my $basketno = C4::Acquisition::NewBasket( $booksellerid, 1 );
285 my ( $biblionumber, $biblioitemnumber ) =
286   C4::Biblio::AddBiblio( MARC::Record->new, '' );
287
288 my @order_infos = (
289     {
290         budget_id => $budget_id1,
291         pending_quantity  => 1,
292         spent_quantity  => 0,
293     },
294     {
295         budget_id => $budget_id2,
296         pending_quantity  => 2,
297         spent_quantity  => 1,
298     },
299     {
300         budget_id => $budget_id11,
301         pending_quantity  => 3,
302         spent_quantity  => 4,
303     },
304     {
305         budget_id => $budget_id12,
306         pending_quantity  => 4,
307         spent_quantity  => 3,
308     },
309     {
310         budget_id => $budget_id111,
311         pending_quantity  => 2,
312         spent_quantity  => 1,
313     },
314
315     # No order for budget_21
316
317 );
318
319 my %budgets;
320 my $invoiceid = AddInvoice(invoicenumber => 'invoice_test_clone', booksellerid => $booksellerid, unknown => "unknown");
321 my $invoice = GetInvoice( $invoiceid );
322 my $item_price = 10;
323 my $item_quantity = 2;
324 my $number_of_orders_to_move = 0;
325 for my $infos (@order_infos) {
326     for ( 1 .. $infos->{pending_quantity} ) {
327         my $order = Koha::Acquisition::Order->new(
328             {
329                 basketno           => $basketno,
330                 biblionumber       => $biblionumber,
331                 budget_id          => $infos->{budget_id},
332                 order_internalnote => "internal note",
333                 order_vendornote   => "vendor note",
334                 quantity           => 2,
335                 cost_tax_included  => $item_price,
336                 rrp_tax_included   => $item_price,
337                 listprice          => $item_price,
338                 ecost_tax_include  => $item_price,
339                 discount           => 0,
340                 uncertainprice     => 0,
341             }
342         )->insert;
343         my $ordernumber = $order->{ordernumber};
344         push @{ $budgets{$infos->{budget_id}} }, $ordernumber;
345         $number_of_orders_to_move++;
346     }
347     for ( 1 .. $infos->{spent_quantity} ) {
348         my $order = Koha::Acquisition::Order->new(
349             {
350                 basketno           => $basketno,
351                 biblionumber       => $biblionumber,
352                 budget_id          => $infos->{budget_id},
353                 order_internalnote => "internal note",
354                 order_vendornote   => "vendor note",
355                 quantity           => $item_quantity,
356                 cost               => $item_price,
357                 rrp_tax_included   => $item_price,
358                 listprice          => $item_price,
359                 ecost_tax_included => $item_price,
360                 discount           => 0,
361                 uncertainprice     => 0,
362             }
363         )->insert;
364         my $ordernumber = $order->{ordernumber};
365         ModReceiveOrder({
366               biblionumber     => $biblionumber,
367               order            => $order,
368               budget_id        => $infos->{budget_id},
369               quantityreceived => $item_quantity,
370               invoice          => $invoice,
371               received_items   => [],
372         } );
373     }
374 }
375 is( GetBudgetHierarchySpent( $budget_id1 ), 160, "total spent for budget1 is 160" );
376 is( GetBudgetHierarchySpent( $budget_id11 ), 100, "total spent for budget11 is 100" );
377 is( GetBudgetHierarchySpent( $budget_id111 ), 20, "total spent for budget111 is 20" );
378
379 # CloneBudgetPeriod
380 my $budget_period_id_cloned = C4::Budgets::CloneBudgetPeriod(
381     {
382         budget_period_id        => $budget_period_id,
383         budget_period_startdate => '2014-01-01',
384         budget_period_enddate   => '2014-12-31',
385         budget_period_description => 'Budget Period Cloned',
386     }
387 );
388
389 my $budget_period_cloned = C4::Budgets::GetBudgetPeriod($budget_period_id_cloned);
390 is($budget_period_cloned->{budget_period_description}, 'Budget Period Cloned', 'Cloned budget\'s description is updated.');
391
392 my $budget_hierarchy        = GetBudgetHierarchy($budget_period_id);
393 my $budget_hierarchy_cloned = GetBudgetHierarchy($budget_period_id_cloned);
394
395 is(
396     scalar(@$budget_hierarchy_cloned),
397     scalar(@$budget_hierarchy),
398     'CloneBudgetPeriod clones the same number of budgets (funds)'
399 );
400 is_deeply(
401     _get_dependencies($budget_hierarchy),
402     _get_dependencies($budget_hierarchy_cloned),
403     'CloneBudgetPeriod keeps the same dependencies order'
404 );
405
406 # CloneBudgetPeriod with param mark_original_budget_as_inactive
407 my $budget_period = C4::Budgets::GetBudgetPeriod($budget_period_id);
408 is( $budget_period->{budget_period_active}, 1,
409     'CloneBudgetPeriod does not mark as inactive the budgetperiod if not needed'
410 );
411
412 $budget_hierarchy_cloned = GetBudgetHierarchy($budget_period_id_cloned);
413 my $number_of_budgets_not_reset = 0;
414 for my $budget (@$budget_hierarchy_cloned) {
415     $number_of_budgets_not_reset++ if $budget->{budget_amount} > 0;
416 }
417 is( $number_of_budgets_not_reset, 5,
418     'CloneBudgetPeriod does not reset budgets (funds) if not needed' );
419
420 $budget_period_id_cloned = C4::Budgets::CloneBudgetPeriod(
421     {
422         budget_period_id                 => $budget_period_id,
423         budget_period_startdate          => '2014-01-01',
424         budget_period_enddate            => '2014-12-31',
425         mark_original_budget_as_inactive => 1,
426     }
427 );
428
429 $budget_hierarchy        = GetBudgetHierarchy($budget_period_id);
430 is( $budget_hierarchy->[0]->{children}->[0]->{budget_name}, 'budget_11', 'GetBudgetHierarchy should return budgets ordered by name, first child is budget_11' );
431 is( $budget_hierarchy->[0]->{children}->[1]->{budget_name}, 'budget_12', 'GetBudgetHierarchy should return budgets ordered by name, second child is budget_12' );
432 is($budget_hierarchy->[0]->{budget_name},'budget_1','GetBudgetHierarchy should return budgets ordered by name, first budget is budget_1');
433 is($budget_hierarchy->[0]->{budget_level},'0','budget_level of budget (budget_1)  should be 0');
434 is($budget_hierarchy->[0]->{children}->[0]->{budget_level},'1','budget_level of first fund(budget_11)  should be 1');
435 is($budget_hierarchy->[0]->{children}->[1]->{budget_level},'1','budget_level of second fund(budget_12)  should be 1');
436 is($budget_hierarchy->[0]->{children}->[0]->{children}->[0]->{budget_level},'2','budget_level of  child fund budget_11 should be 2');
437 $budget_hierarchy        = GetBudgetHierarchy($budget_period_id);
438 $budget_hierarchy_cloned = GetBudgetHierarchy($budget_period_id_cloned);
439
440 is( scalar(@$budget_hierarchy_cloned), scalar(@$budget_hierarchy),
441 'CloneBudgetPeriod (with inactive param) clones the same number of budgets (funds)'
442 );
443 is_deeply(
444     _get_dependencies($budget_hierarchy),
445     _get_dependencies($budget_hierarchy_cloned),
446     'CloneBudgetPeriod (with inactive param) keeps the same dependencies order'
447 );
448 $budget_period = C4::Budgets::GetBudgetPeriod($budget_period_id);
449 is( $budget_period->{budget_period_active}, 0,
450     'CloneBudgetPeriod (with inactive param) marks as inactive the budgetperiod'
451 );
452
453 # CloneBudgetPeriod with param reset_all_budgets
454 $budget_period_id_cloned = C4::Budgets::CloneBudgetPeriod(
455     {
456         budget_period_id        => $budget_period_id,
457         budget_period_startdate => '2014-01-01',
458         budget_period_enddate   => '2014-12-31',
459         reset_all_budgets         => 1,
460     }
461 );
462
463 $budget_hierarchy_cloned     = GetBudgetHierarchy($budget_period_id_cloned);
464 $number_of_budgets_not_reset = 0;
465 for my $budget (@$budget_hierarchy_cloned) {
466     $number_of_budgets_not_reset++ if $budget->{budget_amount} > 0;
467 }
468 is( $number_of_budgets_not_reset, 0,
469     'CloneBudgetPeriod has reset all budgets (funds)' );
470
471 #GetBudgetsByActivity
472 my $result=C4::Budgets::GetBudgetsByActivity(1);
473 isnt( $result, undef ,'GetBudgetsByActivity return correct value with parameter 1');
474 $result=C4::Budgets::GetBudgetsByActivity(0);
475  isnt( $result, undef ,'GetBudgetsByActivity return correct value with parameter 0');
476 $result=C4::Budgets::GetBudgetsByActivity();
477  is( $result, 0 , 'GetBudgetsByActivity return 0 with none parameter or other 0 or 1' );
478 DelBudget($budget_id);
479 DelBudgetPeriod($bpid);
480
481 # CloneBudgetPeriod with param amount_change_*
482 $budget_period_id_cloned = C4::Budgets::CloneBudgetPeriod(
483     {
484         budget_period_id        => $budget_period_id,
485         budget_period_startdate => '2014-01-01',
486         budget_period_enddate   => '2014-12-31',
487         amount_change_percentage => 16,
488         amount_change_round_increment => 5,
489     }
490 );
491
492 $budget_period_cloned = C4::Budgets::GetBudgetPeriod($budget_period_id_cloned);
493 cmp_ok($budget_period_cloned->{budget_period_total}, '==', 11600, "CloneBudgetPeriod changed correctly budget amount");
494 $budget_hierarchy_cloned     = GetBudgetHierarchy($budget_period_id_cloned);
495 cmp_ok($budget_hierarchy_cloned->[0]->{budget_amount}, '==', 1160, "CloneBudgetPeriod changed correctly funds amounts");
496 cmp_ok($budget_hierarchy_cloned->[1]->{budget_amount}, '==', 115, "CloneBudgetPeriod changed correctly funds amounts");
497 cmp_ok($budget_hierarchy_cloned->[2]->{budget_amount}, '==', 55, "CloneBudgetPeriod changed correctly funds amounts");
498 cmp_ok($budget_hierarchy_cloned->[3]->{budget_amount}, '==', 115, "CloneBudgetPeriod changed correctly funds amounts");
499 cmp_ok($budget_hierarchy_cloned->[4]->{budget_amount}, '==', 2320, "CloneBudgetPeriod changed correctly funds amounts");
500 cmp_ok($budget_hierarchy_cloned->[5]->{budget_amount}, '==', 0, "CloneBudgetPeriod changed correctly funds amounts");
501
502 $budget_period_id_cloned = C4::Budgets::CloneBudgetPeriod(
503     {
504         budget_period_id        => $budget_period_id,
505         budget_period_startdate => '2014-01-01',
506         budget_period_enddate   => '2014-12-31',
507         amount_change_percentage => 16,
508         amount_change_round_increment => 5,
509         reset_all_budgets => 1,
510     }
511 );
512 $budget_hierarchy_cloned     = GetBudgetHierarchy($budget_period_id_cloned);
513 cmp_ok($budget_hierarchy_cloned->[0]->{budget_amount}, '==', 0, "CloneBudgetPeriod reset all fund amounts");
514
515 # MoveOrders
516 my $number_orders_moved = C4::Budgets::MoveOrders();
517 is( $number_orders_moved, undef, 'MoveOrders return undef if no arg passed' );
518 $number_orders_moved =
519   C4::Budgets::MoveOrders( { from_budget_period_id => $budget_period_id } );
520 is( $number_orders_moved, undef,
521     'MoveOrders return undef if only 1 arg passed' );
522 $number_orders_moved =
523   C4::Budgets::MoveOrders( { to_budget_period_id => $budget_period_id } );
524 is( $number_orders_moved, undef,
525     'MoveOrders return undef if only 1 arg passed' );
526 $number_orders_moved = C4::Budgets::MoveOrders(
527     {
528         from_budget_period_id => $budget_period_id,
529         to_budget_period_id   => $budget_period_id
530     }
531 );
532 is( $number_orders_moved, undef,
533     'MoveOrders return undef if 2 budget period id are the same' );
534
535 $budget_period_id_cloned = C4::Budgets::CloneBudgetPeriod(
536     {
537         budget_period_id        => $budget_period_id,
538         budget_period_startdate => '2014-01-01',
539         budget_period_enddate   => '2014-12-31',
540     }
541 );
542
543 my $report = C4::Budgets::MoveOrders(
544     {
545         from_budget_period_id  => $budget_period_id,
546         to_budget_period_id    => $budget_period_id_cloned,
547         move_remaining_unspent => 1,
548     }
549 );
550 is( scalar( @$report ), 6 , "MoveOrders has processed 6 funds" );
551
552 my $number_of_orders_moved = 0;
553 $number_of_orders_moved += scalar( @{ $_->{orders_moved} } ) for @$report;
554 is( $number_of_orders_moved, $number_of_orders_to_move, "MoveOrders has moved $number_of_orders_to_move orders" );
555
556 my @new_budget_ids = map { $_->{budget_id} }
557   @{ C4::Budgets::GetBudgetHierarchy($budget_period_id_cloned) };
558 my @old_budget_ids = map { $_->{budget_id} }
559   @{ C4::Budgets::GetBudgetHierarchy($budget_period_id) };
560 for my $budget_id ( keys %budgets ) {
561     for my $ordernumber ( @{ $budgets{$budget_id} } ) {
562         my $budget            = GetBudgetByOrderNumber($ordernumber);
563         my $is_in_new_budgets = grep /^$budget->{budget_id}$/, @new_budget_ids;
564         my $is_in_old_budgets = grep /^$budget->{budget_id}$/, @old_budget_ids;
565         is( $is_in_new_budgets, 1, "MoveOrders changed the budget_id for order $ordernumber" );
566         is( $is_in_old_budgets, 0, "MoveOrders changed the budget_id for order $ordernumber" );
567     }
568 }
569
570
571 # MoveOrders with param move_remaining_unspent
572 my @new_budgets = @{ C4::Budgets::GetBudgetHierarchy($budget_period_id_cloned) };
573 my @old_budgets = @{ C4::Budgets::GetBudgetHierarchy($budget_period_id) };
574
575 for my $new_budget ( @new_budgets ) {
576     my ( $old_budget ) = map { $_->{budget_code} eq $new_budget->{budget_code} ? $_ : () } @old_budgets;
577     my $new_budget_amount_should_be = $old_budget->{budget_amount} * 2 - $old_budget->{total_spent};
578     is( $new_budget->{budget_amount} + 0, $new_budget_amount_should_be, "MoveOrders updated the budget amount with the previous unspent budget (for budget $new_budget->{budget_code})" );
579 }
580
581 # Test SetOwnerToFundHierarchy
582
583 my $patron_category = $builder->build({ source => 'Category' });
584 my $branchcode = $library->{branchcode};
585 my $john_doe = C4::Members::AddMember(
586     cardnumber   => '123456',
587     firstname    => 'John',
588     surname      => 'Doe',
589     categorycode => $patron_category->{categorycode},
590     branchcode   => $branchcode,
591     dateofbirth  => '',
592     dateexpiry   => '9999-12-31',
593     userid       => 'john.doe'
594 );
595
596 C4::Budgets::SetOwnerToFundHierarchy( $budget_id1, $john_doe );
597 is( C4::Budgets::GetBudget($budget_id1)->{budget_owner_id},
598     $john_doe, "SetOwnerToFundHierarchy should have set John Doe for budget 1 ($budget_id1)" );
599 is( C4::Budgets::GetBudget($budget_id11)->{budget_owner_id},
600     $john_doe, "SetOwnerToFundHierarchy should have set John Doe for budget 11 ($budget_id11)" );
601 is( C4::Budgets::GetBudget($budget_id111)->{budget_owner_id},
602     $john_doe, "SetOwnerToFundHierarchy should have set John Doe for budget 111 ($budget_id111)" );
603 is( C4::Budgets::GetBudget($budget_id12)->{budget_owner_id},
604     $john_doe, "SetOwnerToFundHierarchy should have set John Doe for budget 12 ($budget_id12 )" );
605 is( C4::Budgets::GetBudget($budget_id2)->{budget_owner_id},
606     undef, "SetOwnerToFundHierarchy should not have set an owner for budget 2 ($budget_id2)" );
607 is( C4::Budgets::GetBudget($budget_id21)->{budget_owner_id},
608     undef, "SetOwnerToFundHierarchy should not have set an owner for budget 21 ($budget_id21)" );
609
610 my $jane_doe = C4::Members::AddMember(
611     cardnumber   => '789012',
612     firstname    => 'Jane',
613     surname      => 'Doe',
614     categorycode => $patron_category->{categorycode},
615     branchcode   => $branchcode,
616     dateofbirth  => '',
617     dateexpiry   => '9999-12-31',
618     userid       => 'jane.doe'
619 );
620
621 C4::Budgets::SetOwnerToFundHierarchy( $budget_id11, $jane_doe );
622 is( C4::Budgets::GetBudget($budget_id1)->{budget_owner_id},
623     $john_doe, "SetOwnerToFundHierarchy should have set John Doe $john_doe for budget 1 ($budget_id1)" );
624 is( C4::Budgets::GetBudget($budget_id11)->{budget_owner_id},
625     $jane_doe, "SetOwnerToFundHierarchy should have set John Doe $jane_doe for budget 11 ($budget_id11)" );
626 is( C4::Budgets::GetBudget($budget_id111)->{budget_owner_id},
627     $jane_doe, "SetOwnerToFundHierarchy should have set John Doe $jane_doe for budget 111 ($budget_id111)" );
628 is( C4::Budgets::GetBudget($budget_id12)->{budget_owner_id},
629     $john_doe, "SetOwnerToFundHierarchy should have set John Doe $john_doe for budget 12 ($budget_id12 )" );
630 is( C4::Budgets::GetBudget($budget_id2)->{budget_owner_id},
631     undef, "SetOwnerToFundHierarchy should have set John Doe $john_doe for budget 2 ($budget_id2)" );
632 is( C4::Budgets::GetBudget($budget_id21)->{budget_owner_id},
633     undef, "SetOwnerToFundHierarchy should have set John Doe $john_doe for budget 21 ($budget_id21)" );
634
635 # Test GetBudgetAuthCats
636
637 my $budgetPeriodId = AddBudgetPeriod({
638     budget_period_startdate   => '2008-01-01',
639     budget_period_enddate     => '2008-12-31',
640     budget_period_description => 'just another budget',
641     budget_period_active      => 0,
642 });
643
644 $budgets = GetBudgets();
645 my $i = 0;
646 for my $budget ( @$budgets )
647 {
648     $budget->{sort1_authcat} = "sort1_authcat_$i";
649     $budget->{sort2_authcat} = "sort2_authcat_$i";
650     $budget->{budget_period_id} = $budgetPeriodId;
651     ModBudget( $budget );
652     $i++;
653 }
654
655 my $authCat = GetBudgetAuthCats($budgetPeriodId);
656
657 is( scalar @{$authCat}, $i * 2, "GetBudgetAuthCats returns only non-empty sorting categories (no empty authCat in db)" );
658
659 $i = 0;
660 for my $budget ( @$budgets )
661 {
662     $budget->{sort1_authcat} = "sort_authcat_$i";
663     $budget->{sort2_authcat} = "sort_authcat_$i";
664     $budget->{budget_period_id} = $budgetPeriodId;
665     ModBudget( $budget );
666     $i++;
667 }
668
669 $authCat = GetBudgetAuthCats($budgetPeriodId);
670 is( scalar @$authCat, scalar @$budgets, "GetBudgetAuthCats returns distinct authCat" );
671
672 $i = 0;
673 for my $budget ( @$budgets )
674 {
675     $budget->{sort1_authcat} = "sort1_authcat_$i";
676     $budget->{sort2_authcat} = "";
677     $budget->{budget_period_id} = $budgetPeriodId;
678     ModBudget( $budget );
679     $i++;
680 }
681
682 $authCat = GetBudgetAuthCats($budgetPeriodId);
683
684 is( scalar @{$authCat}, $i, "GetBudgetAuthCats returns only non-empty sorting categories (empty sort2_authcat on all records)" );
685
686 $i = 0;
687 for my $budget ( @$budgets )
688 {
689     $budget->{sort1_authcat} = "";
690     $budget->{sort2_authcat} = "";
691     $budget->{budget_period_id} = $budgetPeriodId;
692     ModBudget( $budget );
693     $i++;
694 }
695
696 $authCat = GetBudgetAuthCats($budgetPeriodId);
697
698 is( scalar @{$authCat}, 0, "GetBudgetAuthCats returns only non-empty sorting categories (all empty)" );
699
700 # /Test GetBudgetAuthCats
701
702 sub _get_dependencies {
703     my ($budget_hierarchy) = @_;
704     my $graph;
705     for my $budget (@$budget_hierarchy) {
706         if ( $budget->{child} ) {
707             my @sorted = sort @{ $budget->{child} };
708             for my $child_id (@sorted) {
709                 push @{ $graph->{ $budget->{budget_name} }{children} },
710                   _get_budgetname_by_id( $budget_hierarchy, $child_id );
711             }
712         }
713         push @{ $graph->{ $budget->{budget_name} }{parents} },
714           $budget->{parent_id};
715     }
716     return $graph;
717 }
718
719 sub _get_budgetname_by_id {
720     my ( $budgets, $budget_id ) = @_;
721     my ($budget_name) =
722       map { ( $_->{budget_id} eq $budget_id ) ? $_->{budget_name} : () }
723       @$budgets;
724     return $budget_name;
725 }
726
727 # C4::Context->userenv
728 sub Mock_userenv {
729     return $userenv;
730 }