Bug 15839: Koha::Reviews - Add Koha::Review[s] classes
[koha.git] / t / db_dependent / Budgets.t
1 #!/usr/bin/perl
2 use Modern::Perl;
3 use Test::More tests => 137;
4
5 BEGIN {
6     use_ok('C4::Budgets')
7 }
8 use C4::Context;
9 use C4::Biblio;
10 use C4::Bookseller;
11 use C4::Acquisition;
12 use C4::Members qw( AddMember );
13
14 use Koha::Acquisition::Order;
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 $booksellerid = C4::Bookseller::AddBookseller(
274     {
275         name         => "my vendor",
276         address1     => "bookseller's address",
277         phone        => "0123456",
278         active       => 1,
279         deliverytime => 5,
280     }
281 );
282
283 my $basketno = C4::Acquisition::NewBasket( $booksellerid, 1 );
284 my ( $biblionumber, $biblioitemnumber ) =
285   C4::Biblio::AddBiblio( MARC::Record->new, '' );
286
287 my @order_infos = (
288     {
289         budget_id => $budget_id1,
290         pending_quantity  => 1,
291         spent_quantity  => 0,
292     },
293     {
294         budget_id => $budget_id2,
295         pending_quantity  => 2,
296         spent_quantity  => 1,
297     },
298     {
299         budget_id => $budget_id11,
300         pending_quantity  => 3,
301         spent_quantity  => 4,
302     },
303     {
304         budget_id => $budget_id12,
305         pending_quantity  => 4,
306         spent_quantity  => 3,
307     },
308     {
309         budget_id => $budget_id111,
310         pending_quantity  => 2,
311         spent_quantity  => 1,
312     },
313
314     # No order for budget_21
315
316 );
317
318 my %budgets;
319 my $invoiceid = AddInvoice(invoicenumber => 'invoice_test_clone', booksellerid => $booksellerid, unknown => "unknown");
320 my $item_price = 10;
321 my $item_quantity = 2;
322 my $number_of_orders_to_move = 0;
323 for my $infos (@order_infos) {
324     for ( 1 .. $infos->{pending_quantity} ) {
325         my $order = Koha::Acquisition::Order->new(
326             {
327                 basketno           => $basketno,
328                 biblionumber       => $biblionumber,
329                 budget_id          => $infos->{budget_id},
330                 order_internalnote => "internal note",
331                 order_vendornote   => "vendor note",
332                 quantity           => 2,
333                 cost               => $item_price,
334                 rrp                => $item_price,
335                 listprice          => $item_price,
336                 ecost              => $item_price,
337                 rrp                => $item_price,
338                 discount           => 0,
339                 uncertainprice     => 0,
340                 gstrate            => 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                => $item_price,
358                 listprice          => $item_price,
359                 ecost              => $item_price,
360                 rrp                => $item_price,
361                 discount           => 0,
362                 uncertainprice     => 0,
363                 gstrate            => 0,
364             }
365         )->insert;
366         my $ordernumber = $order->{ordernumber};
367         ModReceiveOrder({
368               biblionumber     => $biblionumber,
369               ordernumber      => $ordernumber,
370               budget_id        => $infos->{budget_id},
371               quantityreceived => $item_quantity,
372               cost             => $item_price,
373               ecost            => $item_price,
374               invoiceid        => $invoiceid,
375               rrp              => $item_price,
376               received_items   => [],
377         } );
378     }
379 }
380 is( GetBudgetHierarchySpent( $budget_id1 ), 160, "total spent for budget1 is 160" );
381 is( GetBudgetHierarchySpent( $budget_id11 ), 100, "total spent for budget11 is 100" );
382 is( GetBudgetHierarchySpent( $budget_id111 ), 20, "total spent for budget111 is 20" );
383
384 # CloneBudgetPeriod
385 my $budget_period_id_cloned = C4::Budgets::CloneBudgetPeriod(
386     {
387         budget_period_id        => $budget_period_id,
388         budget_period_startdate => '2014-01-01',
389         budget_period_enddate   => '2014-12-31',
390         budget_period_description => 'Budget Period Cloned',
391     }
392 );
393
394 my $budget_period_cloned = C4::Budgets::GetBudgetPeriod($budget_period_id_cloned);
395 is($budget_period_cloned->{budget_period_description}, 'Budget Period Cloned', 'Cloned budget\'s description is updated.');
396
397 my $budget_hierarchy        = GetBudgetHierarchy($budget_period_id);
398 my $budget_hierarchy_cloned = GetBudgetHierarchy($budget_period_id_cloned);
399
400 is(
401     scalar(@$budget_hierarchy_cloned),
402     scalar(@$budget_hierarchy),
403     'CloneBudgetPeriod clones the same number of budgets (funds)'
404 );
405 is_deeply(
406     _get_dependencies($budget_hierarchy),
407     _get_dependencies($budget_hierarchy_cloned),
408     'CloneBudgetPeriod keeps the same dependencies order'
409 );
410
411 # CloneBudgetPeriod with param mark_original_budget_as_inactive
412 my $budget_period = C4::Budgets::GetBudgetPeriod($budget_period_id);
413 is( $budget_period->{budget_period_active}, 1,
414     'CloneBudgetPeriod does not mark as inactive the budgetperiod if not needed'
415 );
416
417 $budget_hierarchy_cloned = GetBudgetHierarchy($budget_period_id_cloned);
418 my $number_of_budgets_not_reset = 0;
419 for my $budget (@$budget_hierarchy_cloned) {
420     $number_of_budgets_not_reset++ if $budget->{budget_amount} > 0;
421 }
422 is( $number_of_budgets_not_reset, 5,
423     'CloneBudgetPeriod does not reset budgets (funds) if not needed' );
424
425 $budget_period_id_cloned = C4::Budgets::CloneBudgetPeriod(
426     {
427         budget_period_id                 => $budget_period_id,
428         budget_period_startdate          => '2014-01-01',
429         budget_period_enddate            => '2014-12-31',
430         mark_original_budget_as_inactive => 1,
431     }
432 );
433
434 $budget_hierarchy        = GetBudgetHierarchy($budget_period_id);
435 is( $budget_hierarchy->[0]->{children}->[0]->{budget_name}, 'budget_11', 'GetBudgetHierarchy should return budgets ordered by name, first child is budget_11' );
436 is( $budget_hierarchy->[0]->{children}->[1]->{budget_name}, 'budget_12', 'GetBudgetHierarchy should return budgets ordered by name, second child is budget_12' );
437
438 $budget_hierarchy        = GetBudgetHierarchy($budget_period_id);
439 $budget_hierarchy_cloned = GetBudgetHierarchy($budget_period_id_cloned);
440
441 is( scalar(@$budget_hierarchy_cloned), scalar(@$budget_hierarchy),
442 'CloneBudgetPeriod (with inactive param) clones the same number of budgets (funds)'
443 );
444 is_deeply(
445     _get_dependencies($budget_hierarchy),
446     _get_dependencies($budget_hierarchy_cloned),
447     'CloneBudgetPeriod (with inactive param) keeps the same dependencies order'
448 );
449 $budget_period = C4::Budgets::GetBudgetPeriod($budget_period_id);
450 is( $budget_period->{budget_period_active}, 0,
451     'CloneBudgetPeriod (with inactive param) marks as inactive the budgetperiod'
452 );
453
454 # CloneBudgetPeriod with param reset_all_budgets
455 $budget_period_id_cloned = C4::Budgets::CloneBudgetPeriod(
456     {
457         budget_period_id        => $budget_period_id,
458         budget_period_startdate => '2014-01-01',
459         budget_period_enddate   => '2014-12-31',
460         reset_all_budgets         => 1,
461     }
462 );
463
464 $budget_hierarchy_cloned     = GetBudgetHierarchy($budget_period_id_cloned);
465 $number_of_budgets_not_reset = 0;
466 for my $budget (@$budget_hierarchy_cloned) {
467     $number_of_budgets_not_reset++ if $budget->{budget_amount} > 0;
468 }
469 is( $number_of_budgets_not_reset, 0,
470     'CloneBudgetPeriod has reset all budgets (funds)' );
471
472 #GetBudgetsByActivity
473 my $result=C4::Budgets::GetBudgetsByActivity(1);
474 isnt( $result, undef ,'GetBudgetsByActivity return correct value with parameter 1');
475 $result=C4::Budgets::GetBudgetsByActivity(0);
476  isnt( $result, undef ,'GetBudgetsByActivity return correct value with parameter 0');
477 $result=C4::Budgets::GetBudgetsByActivity();
478  is( $result, 0 , 'GetBudgetsByActivity return 0 with none parameter or other 0 or 1' );
479 DelBudget($budget_id);
480 DelBudgetPeriod($bpid);
481
482 # CloneBudgetPeriod with param amount_change_*
483 $budget_period_id_cloned = C4::Budgets::CloneBudgetPeriod(
484     {
485         budget_period_id        => $budget_period_id,
486         budget_period_startdate => '2014-01-01',
487         budget_period_enddate   => '2014-12-31',
488         amount_change_percentage => 16,
489         amount_change_round_increment => 5,
490     }
491 );
492
493 $budget_period_cloned = C4::Budgets::GetBudgetPeriod($budget_period_id_cloned);
494 cmp_ok($budget_period_cloned->{budget_period_total}, '==', 11600, "CloneBudgetPeriod changed correctly budget amount");
495 $budget_hierarchy_cloned     = GetBudgetHierarchy($budget_period_id_cloned);
496 cmp_ok($budget_hierarchy_cloned->[0]->{budget_amount}, '==', 1160, "CloneBudgetPeriod changed correctly funds amounts");
497 cmp_ok($budget_hierarchy_cloned->[1]->{budget_amount}, '==', 115, "CloneBudgetPeriod changed correctly funds amounts");
498 cmp_ok($budget_hierarchy_cloned->[2]->{budget_amount}, '==', 55, "CloneBudgetPeriod changed correctly funds amounts");
499 cmp_ok($budget_hierarchy_cloned->[3]->{budget_amount}, '==', 115, "CloneBudgetPeriod changed correctly funds amounts");
500 cmp_ok($budget_hierarchy_cloned->[4]->{budget_amount}, '==', 2320, "CloneBudgetPeriod changed correctly funds amounts");
501 cmp_ok($budget_hierarchy_cloned->[5]->{budget_amount}, '==', 0, "CloneBudgetPeriod changed correctly funds amounts");
502
503 $budget_period_id_cloned = C4::Budgets::CloneBudgetPeriod(
504     {
505         budget_period_id        => $budget_period_id,
506         budget_period_startdate => '2014-01-01',
507         budget_period_enddate   => '2014-12-31',
508         amount_change_percentage => 16,
509         amount_change_round_increment => 5,
510         reset_all_budgets => 1,
511     }
512 );
513 $budget_hierarchy_cloned     = GetBudgetHierarchy($budget_period_id_cloned);
514 cmp_ok($budget_hierarchy_cloned->[0]->{budget_amount}, '==', 0, "CloneBudgetPeriod reset all fund amounts");
515
516 # MoveOrders
517 my $number_orders_moved = C4::Budgets::MoveOrders();
518 is( $number_orders_moved, undef, 'MoveOrders return undef if no arg passed' );
519 $number_orders_moved =
520   C4::Budgets::MoveOrders( { from_budget_period_id => $budget_period_id } );
521 is( $number_orders_moved, undef,
522     'MoveOrders return undef if only 1 arg passed' );
523 $number_orders_moved =
524   C4::Budgets::MoveOrders( { to_budget_period_id => $budget_period_id } );
525 is( $number_orders_moved, undef,
526     'MoveOrders return undef if only 1 arg passed' );
527 $number_orders_moved = C4::Budgets::MoveOrders(
528     {
529         from_budget_period_id => $budget_period_id,
530         to_budget_period_id   => $budget_period_id
531     }
532 );
533 is( $number_orders_moved, undef,
534     'MoveOrders return undef if 2 budget period id are the same' );
535
536 $budget_period_id_cloned = C4::Budgets::CloneBudgetPeriod(
537     {
538         budget_period_id        => $budget_period_id,
539         budget_period_startdate => '2014-01-01',
540         budget_period_enddate   => '2014-12-31',
541     }
542 );
543
544 my $report = C4::Budgets::MoveOrders(
545     {
546         from_budget_period_id  => $budget_period_id,
547         to_budget_period_id    => $budget_period_id_cloned,
548         move_remaining_unspent => 1,
549     }
550 );
551 is( scalar( @$report ), 6 , "MoveOrders has processed 6 funds" );
552
553 my $number_of_orders_moved = 0;
554 $number_of_orders_moved += scalar( @{ $_->{orders_moved} } ) for @$report;
555 is( $number_of_orders_moved, $number_of_orders_to_move, "MoveOrders has moved $number_of_orders_to_move orders" );
556
557 my @new_budget_ids = map { $_->{budget_id} }
558   @{ C4::Budgets::GetBudgetHierarchy($budget_period_id_cloned) };
559 my @old_budget_ids = map { $_->{budget_id} }
560   @{ C4::Budgets::GetBudgetHierarchy($budget_period_id) };
561 for my $budget_id ( keys %budgets ) {
562     for my $ordernumber ( @{ $budgets{$budget_id} } ) {
563         my $budget            = GetBudgetByOrderNumber($ordernumber);
564         my $is_in_new_budgets = grep /^$budget->{budget_id}$/, @new_budget_ids;
565         my $is_in_old_budgets = grep /^$budget->{budget_id}$/, @old_budget_ids;
566         is( $is_in_new_budgets, 1, "MoveOrders changed the budget_id for order $ordernumber" );
567         is( $is_in_old_budgets, 0, "MoveOrders changed the budget_id for order $ordernumber" );
568     }
569 }
570
571
572 # MoveOrders with param move_remaining_unspent
573 my @new_budgets = @{ C4::Budgets::GetBudgetHierarchy($budget_period_id_cloned) };
574 my @old_budgets = @{ C4::Budgets::GetBudgetHierarchy($budget_period_id) };
575
576 for my $new_budget ( @new_budgets ) {
577     my ( $old_budget ) = map { $_->{budget_code} eq $new_budget->{budget_code} ? $_ : () } @old_budgets;
578     my $new_budget_amount_should_be = $old_budget->{budget_amount} * 2 - $old_budget->{total_spent};
579     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})" );
580 }
581
582 # Test SetOwnerToFundHierarchy
583
584 my $categorycode = 'S';
585 my $branchcode = $library->{branchcode};
586 my $john_doe = C4::Members::AddMember(
587     cardnumber   => '123456',
588     firstname    => 'John',
589     surname      => 'Doe',
590     categorycode => $categorycode,
591     branchcode   => $branchcode,
592     dateofbirth  => '',
593     dateexpiry   => '9999-12-31',
594     userid       => 'john.doe'
595 );
596
597 C4::Budgets::SetOwnerToFundHierarchy( $budget_id1, $john_doe );
598 is( C4::Budgets::GetBudget($budget_id1)->{budget_owner_id},
599     $john_doe, "SetOwnerToFundHierarchy should have set John Doe for budget 1 ($budget_id1)" );
600 is( C4::Budgets::GetBudget($budget_id11)->{budget_owner_id},
601     $john_doe, "SetOwnerToFundHierarchy should have set John Doe for budget 11 ($budget_id11)" );
602 is( C4::Budgets::GetBudget($budget_id111)->{budget_owner_id},
603     $john_doe, "SetOwnerToFundHierarchy should have set John Doe for budget 111 ($budget_id111)" );
604 is( C4::Budgets::GetBudget($budget_id12)->{budget_owner_id},
605     $john_doe, "SetOwnerToFundHierarchy should have set John Doe for budget 12 ($budget_id12 )" );
606 is( C4::Budgets::GetBudget($budget_id2)->{budget_owner_id},
607     undef, "SetOwnerToFundHierarchy should not have set an owner for budget 2 ($budget_id2)" );
608 is( C4::Budgets::GetBudget($budget_id21)->{budget_owner_id},
609     undef, "SetOwnerToFundHierarchy should not have set an owner for budget 21 ($budget_id21)" );
610
611 my $jane_doe = C4::Members::AddMember(
612     cardnumber   => '789012',
613     firstname    => 'Jane',
614     surname      => 'Doe',
615     categorycode => $categorycode,
616     branchcode   => $branchcode,
617     dateofbirth  => '',
618     dateexpiry   => '9999-12-31',
619     userid       => 'jane.doe'
620 );
621
622 C4::Budgets::SetOwnerToFundHierarchy( $budget_id11, $jane_doe );
623 is( C4::Budgets::GetBudget($budget_id1)->{budget_owner_id},
624     $john_doe, "SetOwnerToFundHierarchy should have set John Doe $john_doe for budget 1 ($budget_id1)" );
625 is( C4::Budgets::GetBudget($budget_id11)->{budget_owner_id},
626     $jane_doe, "SetOwnerToFundHierarchy should have set John Doe $jane_doe for budget 11 ($budget_id11)" );
627 is( C4::Budgets::GetBudget($budget_id111)->{budget_owner_id},
628     $jane_doe, "SetOwnerToFundHierarchy should have set John Doe $jane_doe for budget 111 ($budget_id111)" );
629 is( C4::Budgets::GetBudget($budget_id12)->{budget_owner_id},
630     $john_doe, "SetOwnerToFundHierarchy should have set John Doe $john_doe for budget 12 ($budget_id12 )" );
631 is( C4::Budgets::GetBudget($budget_id2)->{budget_owner_id},
632     undef, "SetOwnerToFundHierarchy should have set John Doe $john_doe for budget 2 ($budget_id2)" );
633 is( C4::Budgets::GetBudget($budget_id21)->{budget_owner_id},
634     undef, "SetOwnerToFundHierarchy should have set John Doe $john_doe for budget 21 ($budget_id21)" );
635
636 # Test GetBudgetAuthCats
637
638 my $budgetPeriodId = AddBudgetPeriod({
639     budget_period_startdate   => '2008-01-01',
640     budget_period_enddate     => '2008-12-31',
641     budget_period_description => 'just another budget',
642     budget_period_active      => 0,
643 });
644
645 $budgets = GetBudgets();
646 my $i = 0;
647 for my $budget ( @$budgets )
648 {
649     $budget->{sort1_authcat} = "sort1_authcat_$i";
650     $budget->{sort2_authcat} = "sort2_authcat_$i";
651     $budget->{budget_period_id} = $budgetPeriodId;
652     ModBudget( $budget );
653     $i++;
654 }
655
656 my $authCat = GetBudgetAuthCats($budgetPeriodId);
657
658 is( scalar @{$authCat}, $i * 2, "GetBudgetAuthCats returns only non-empty sorting categories (no empty authCat in db)" );
659
660 $i = 0;
661 for my $budget ( @$budgets )
662 {
663     $budget->{sort1_authcat} = "sort_authcat_$i";
664     $budget->{sort2_authcat} = "sort_authcat_$i";
665     $budget->{budget_period_id} = $budgetPeriodId;
666     ModBudget( $budget );
667     $i++;
668 }
669
670 $authCat = GetBudgetAuthCats($budgetPeriodId);
671 is( scalar @$authCat, scalar @$budgets, "GetBudgetAuthCats returns distinct authCat" );
672
673 $i = 0;
674 for my $budget ( @$budgets )
675 {
676     $budget->{sort1_authcat} = "sort1_authcat_$i";
677     $budget->{sort2_authcat} = "";
678     $budget->{budget_period_id} = $budgetPeriodId;
679     ModBudget( $budget );
680     $i++;
681 }
682
683 $authCat = GetBudgetAuthCats($budgetPeriodId);
684
685 is( scalar @{$authCat}, $i, "GetBudgetAuthCats returns only non-empty sorting categories (empty sort2_authcat on all records)" );
686
687 $i = 0;
688 for my $budget ( @$budgets )
689 {
690     $budget->{sort1_authcat} = "";
691     $budget->{sort2_authcat} = "";
692     $budget->{budget_period_id} = $budgetPeriodId;
693     ModBudget( $budget );
694     $i++;
695 }
696
697 $authCat = GetBudgetAuthCats($budgetPeriodId);
698
699 is( scalar @{$authCat}, 0, "GetBudgetAuthCats returns only non-empty sorting categories (all empty)" );
700
701 # /Test GetBudgetAuthCats
702
703 sub _get_dependencies {
704     my ($budget_hierarchy) = @_;
705     my $graph;
706     for my $budget (@$budget_hierarchy) {
707         if ( $budget->{child} ) {
708             my @sorted = sort @{ $budget->{child} };
709             for my $child_id (@sorted) {
710                 push @{ $graph->{ $budget->{budget_name} }{children} },
711                   _get_budgetname_by_id( $budget_hierarchy, $child_id );
712             }
713         }
714         push @{ $graph->{ $budget->{budget_name} }{parents} },
715           $budget->{parent_id};
716     }
717     return $graph;
718 }
719
720 sub _get_budgetname_by_id {
721     my ( $budgets, $budget_id ) = @_;
722     my ($budget_name) =
723       map { ( $_->{budget_id} eq $budget_id ) ? $_->{budget_name} : () }
724       @$budgets;
725     return $budget_name;
726 }
727
728 # C4::Context->userenv
729 sub Mock_userenv {
730     return $userenv;
731 }