Bug 10852: (follow-up) regression tests
[koha.git] / t / db_dependent / Bookseller.t
1 #!/usr/bin/perl
2
3 use Modern::Perl;
4
5 use Test::More tests => 69;
6 use C4::Context;
7 use Koha::DateUtils;
8 use DateTime::Duration;
9 use C4::Acquisition;
10 use C4::Serials;
11 use C4::Budgets;
12 use C4::Biblio;
13
14 BEGIN {
15     use_ok('C4::Bookseller');
16 }
17
18 can_ok(
19
20     'C4::Bookseller', qw(
21       AddBookseller
22       DelBookseller
23       GetBookSeller
24       GetBookSellerFromId
25       GetBooksellersWithLateOrders
26       ModBookseller )
27 );
28
29 #Start transaction
30 my $dbh = C4::Context->dbh;
31 $dbh->{RaiseError} = 1;
32 $dbh->{AutoCommit} = 0;
33
34 #Start tests
35 $dbh->do(q|DELETE FROM aqorders|);
36 $dbh->do(q|DELETE FROM aqbasket|);
37 $dbh->do(q|DELETE FROM aqbooksellers|);
38 #Test AddBookseller
39 my $count            = scalar( C4::Bookseller::GetBookSeller('') );
40 my $sample_supplier1 = {
41     name          => 'Name1',
42     address1      => 'address1_1',
43     address2      => 'address1-2',
44     address3      => 'address1_2',
45     address4      => 'address1_2',
46     postal        => 'postal1',
47     phone         => 'phone1',
48     accountnumber => 'accountnumber1',
49     fax           => 'fax1',
50     url           => 'url1',
51     contact       => 'contact1',
52     contpos       => 'contpos1',
53     contphone     => 'contphone1',
54     contfax       => 'contefax1',
55     contaltphone  => 'contaltphone1',
56     contemail     => 'contemail1',
57     contnotes     => 'contnotes1',
58     active        => 1,
59     gstreg        => 1,
60     listincgst    => 1,
61     invoiceincgst => 1,
62     gstrate       => '1.0000',
63     discount      => '1.0000',
64     notes         => 'notes1',
65     deliverytime  => undef
66 };
67 my $sample_supplier2 = {
68     name          => 'Name2',
69     address1      => 'address1_2',
70     address2      => 'address2-2',
71     address3      => 'address3_2',
72     address4      => 'address4_2',
73     postal        => 'postal2',
74     phone         => 'phone2',
75     accountnumber => 'accountnumber2',
76     fax           => 'fax2',
77     url           => 'url2',
78     contact       => 'contact2',
79     contpos       => 'contpos2',
80     contphone     => 'contphone2',
81     contfax       => 'contefax2',
82     contaltphone  => 'contaltphone2',
83     contemail     => 'contemail2',
84     contnotes     => 'contnotes2',
85     active        => 1,
86     gstreg        => 1,
87     listincgst    => 1,
88     invoiceincgst => 1,
89     gstrate       => '2.0000',
90     discount      => '2.0000',
91     notes         => 'notes2',
92     deliverytime  => 2,
93 };
94
95 my $id_supplier1 = C4::Bookseller::AddBookseller($sample_supplier1);
96 my $id_supplier2 = C4::Bookseller::AddBookseller($sample_supplier2);
97
98 #my $id_bookseller3 = C4::Bookseller::AddBookseller();# NOTE : Doesn't work because the field name cannot be null
99
100 like( $id_supplier1, '/^\d+$/', "AddBookseller for supplier1 return an id" );
101 like( $id_supplier2, '/^\d+$/', "AddBookseller for supplier2 return an id" );
102 is( scalar( C4::Bookseller::GetBookSeller('') ),
103     $count + 2, "Supplier1 and Supplier2 have been added" );
104
105 #Test DelBookseller
106 my $del = C4::Bookseller::DelBookseller($id_supplier1);
107 is( $del, 1, "DelBookseller returns 1 - 1 supplier has been deleted " );
108 is( C4::Bookseller::GetBookSellerFromId($id_supplier1),
109     undef, "Supplier1  has been deleted - id_supplier1 doesnt exist anymore" );
110
111 #Test GetBookSeller
112 my @bookseller2 = C4::Bookseller::GetBookSeller( $sample_supplier2->{name} );
113 is( scalar(@bookseller2), 1, "Get only  Supplier2" );
114 $bookseller2[0] = field_filter( $bookseller2[0] );
115 delete $bookseller2[0]->{basketcount};
116
117 $sample_supplier2->{id} = $id_supplier2;
118 is_deeply( $bookseller2[0], $sample_supplier2,
119     "GetBookSeller returns the right informations about $sample_supplier2" );
120
121 $id_supplier1 = C4::Bookseller::AddBookseller($sample_supplier1);
122 my @booksellers = C4::Bookseller::GetBookSeller('')
123   ;    #NOTE :without params, it returns all the booksellers
124 for my $i ( 0 .. scalar(@booksellers) - 1 ) {
125     $booksellers[$i] = field_filter( $booksellers[$i] );
126     delete $booksellers[$i]->{basketcount};
127 }
128
129 $sample_supplier1->{id} = $id_supplier1;
130 is( scalar(@booksellers), $count + 2, "Get  Supplier1 and Supplier2" );
131 my @tab = ( $sample_supplier1, $sample_supplier2 );
132 is_deeply( \@booksellers, \@tab,
133     "Returns right fields of Supplier1 and Supplier2" );
134
135 #Test basketcount
136 my @bookseller1 = C4::Bookseller::GetBookSeller( $sample_supplier1->{name} );
137 #FIXME : if there is 0 basket, GetBookSeller returns 1 as basketcount
138 #is( $bookseller1[0]->{basketcount}, 0, 'Supplier1 has 0 basket' );
139 my $sample_basket1 =
140   C4::Acquisition::NewBasket( $id_supplier1, 'authorisedby1', 'basketname1' );
141 my $sample_basket2 =
142   C4::Acquisition::NewBasket( $id_supplier1, 'authorisedby2', 'basketname2' );
143 @bookseller1 = C4::Bookseller::GetBookSeller( $sample_supplier1->{name} );
144 is( $bookseller1[0]->{basketcount}, 2, 'Supplier1 has 2 baskets' );
145
146 #Test GetBookSellerFromId
147 my $bookseller1fromid = C4::Bookseller::GetBookSellerFromId();
148 is( $bookseller1fromid, undef,
149     "GetBookSellerFromId returns undef if no id given" );
150 $bookseller1fromid = C4::Bookseller::GetBookSellerFromId($id_supplier1);
151 $bookseller1fromid = field_filter($bookseller1fromid);
152 delete $bookseller1fromid->{basketcount};
153 delete $bookseller1fromid->{subscriptioncount};
154 is_deeply( $bookseller1fromid, $sample_supplier1,
155     "Get Supplier1 (GetBookSellerFromId)" );
156
157 #Test basketcount
158 $bookseller1fromid = C4::Bookseller::GetBookSellerFromId($id_supplier1);
159 is( $bookseller1fromid->{basketcount}, 2, 'Supplier1 has 2 baskets' );
160
161 #Test subscriptioncount
162 my $dt_today    = dt_from_string;
163 my $today       = output_pref({ dt => $dt_today, dateformat => 'iso', timeformat => '24hr', dateonly => 1 });
164
165 my $dt_today1 = dt_from_string;
166 my $dur5 = DateTime::Duration->new( days => -5 );
167 $dt_today1->add_duration($dur5);
168 my $daysago5 = output_pref({ dt => $dt_today1, dateformat => 'iso', timeformat => '24hr', dateonly => 1 });
169
170 my $budgetperiod = C4::Budgets::AddBudgetPeriod({
171     budget_period_startdate => $daysago5,
172     budget_period_enddate   => $today,
173     budget_description      => "budget desc"
174 });
175 my $id_budget = AddBudget({
176     budget_code        => "CODE",
177     budget_amount      => "123.132",
178     budget_name        => "Budgetname",
179     budget_notes       => "This is a note",
180     budget_description => "BudgetDescription",
181     budget_active      => 1,
182     budget_period_id   => $budgetperiod
183 });
184 my $bib = MARC::Record->new();
185 $bib->append_fields(
186     MARC::Field->new('245', ' ', ' ', a => 'Journal of ethnology'),
187     MARC::Field->new('500', ' ', ' ', a => 'bib notes'),
188 );
189 my ($biblionumber, $biblioitemnumber) = AddBiblio($bib, '');
190 $bookseller1fromid = C4::Bookseller::GetBookSellerFromId($id_supplier1);
191 is( $bookseller1fromid->{subscriptioncount},
192     0, 'Supplier1 has 0 subscription' );
193
194 my $id_subscription1 = NewSubscription(
195     undef,      "",     $id_supplier1, undef, $id_budget, $biblionumber,
196     '01-01-2013',undef, undef, undef,  undef,
197     undef,      undef,  undef, undef, undef, undef,
198     1,          "subscription notes",undef, '01-01-2013', undef, undef,
199     undef, 'CALL ABC',  0,    "intnotes",  0,
200     undef, undef, 0,          undef,         '2013-11-30', 0
201 );
202
203 my @subscriptions = SearchSubscriptions({biblionumber => $biblionumber});
204 is($subscriptions[0]->{publicnotes}, 'subscription notes', 'subscription search results include public notes (bug 10689)');
205
206 my $id_subscription2 = NewSubscription(
207     undef,      "",     $id_supplier1, undef, $id_budget, $biblionumber,
208     '01-01-2013',undef, undef, undef,  undef,
209     undef,      undef,  undef, undef, undef, undef,
210     1,          "subscription notes",undef, '01-01-2013', undef, undef,
211     undef, 'CALL DEF',  0,    "intnotes",  0,
212     undef, undef, 0,          undef,         '2013-07-31', 0
213 );
214
215 $bookseller1fromid = C4::Bookseller::GetBookSellerFromId($id_supplier1);
216 is( $bookseller1fromid->{subscriptioncount},
217     2, 'Supplier1 has 2 subscriptions' );
218
219 #Test ModBookseller
220 $sample_supplier2 = {
221     id            => $id_supplier2,
222     name          => 'Name2 modified',
223     address1      => 'address1_2 modified',
224     address2      => 'address2-2 modified',
225     address3      => 'address3_2 modified',
226     address4      => 'address4_2 modified',
227     postal        => 'postal2 modified',
228     phone         => 'phone2 modified',
229     accountnumber => 'accountnumber2 modified',
230     fax           => 'fax2 modified',
231     url           => 'url2 modified',
232     contact       => 'contact2 modified',
233     contpos       => 'contpos2 modified',
234     contphone     => 'contphone2 modified',
235     contfax       => 'contefax2 modified',
236     contaltphone  => 'contaltphone2 modified',
237     contemail     => 'contemail2 modified',
238     contnotes     => 'contnotes2 modified',
239     active        => 1,
240     gstreg        => 1,
241     listincgst    => 1,
242     invoiceincgst => 1,
243     gstrate       => '2.0000 ',
244     discount      => '2.0000',
245     notes         => 'notes2 modified',
246     deliverytime  => 2,
247 };
248
249 my $modif1 = C4::Bookseller::ModBookseller();
250 is( $modif1, undef,
251     "ModBookseller returns undef if no params given - Nothing happened" );
252 $modif1 = C4::Bookseller::ModBookseller($sample_supplier2);
253 is( $modif1, 1, "ModBookseller modifies only the supplier2" );
254 is( scalar( C4::Bookseller::GetBookSeller('') ),
255     $count + 2, "Supplier2 has been modified - Nothing added" );
256
257 $modif1 = C4::Bookseller::ModBookseller(
258     {
259         id   => -1,
260         name => 'name3'
261     }
262 );
263 #is( $modif1, '0E0',
264 #    "ModBookseller returns OEO if the id doesnt exist - Nothing modified" );
265
266 #Test GetBooksellersWithLateOrders
267 #Add 2 suppliers
268 my $sample_supplier3 = {
269     name          => 'Name3',
270     address1      => 'address1_3',
271     address2      => 'address1-3',
272     address3      => 'address1_3',
273     address4      => 'address1_3',
274     postal        => 'postal3',
275     phone         => 'phone3',
276     accountnumber => 'accountnumber3',
277     fax           => 'fax3',
278     url           => 'url3',
279     contact       => 'contact3',
280     contpos       => 'contpos3',
281     contphone     => 'contphone3',
282     contfax       => 'contefax3',
283     contaltphone  => 'contaltphone3',
284     contemail     => 'contemail3',
285     contnotes     => 'contnotes3',
286     active        => 1,
287     gstreg        => 1,
288     listincgst    => 1,
289     invoiceincgst => 1,
290     gstrate       => '3.0000',
291     discount      => '3.0000',
292     notes         => 'notes3',
293     deliverytime  => 3
294 };
295 my $sample_supplier4 = {
296     name          => 'Name4',
297     address1      => 'address1_4',
298     address2      => 'address1-4',
299     address3      => 'address1_4',
300     address4      => 'address1_4',
301     postal        => 'postal4',
302     phone         => 'phone4',
303     accountnumber => 'accountnumber4',
304     fax           => 'fax4',
305     url           => 'url4',
306     contact       => 'contact4',
307     contpos       => 'contpos4',
308     contphone     => 'contphone4',
309     contfax       => 'contefax4',
310     contaltphone  => 'contaltphone4',
311     contemail     => 'contemail4',
312     contnotes     => 'contnotes4',
313     active        => 1,
314     gstreg        => 1,
315     listincgst    => 1,
316     invoiceincgst => 1,
317     gstrate       => '3.0000',
318     discount      => '3.0000',
319     notes         => 'notes3',
320 };
321 my $id_supplier3 = C4::Bookseller::AddBookseller($sample_supplier3);
322 my $id_supplier4 = C4::Bookseller::AddBookseller($sample_supplier4);
323
324 #Add 2 baskets
325 my $sample_basket3 =
326   C4::Acquisition::NewBasket( $id_supplier3, 'authorisedby3', 'basketname3',
327     'basketnote3' );
328 my $sample_basket4 =
329   C4::Acquisition::NewBasket( $id_supplier4, 'authorisedby4', 'basketname4',
330     'basketnote4' );
331
332 #Modify the basket to add a close date
333 my $basket1info = {
334     basketno     => $sample_basket1,
335     closedate    => $today,
336     booksellerid => $id_supplier1
337 };
338
339 my $basket2info = {
340     basketno     => $sample_basket2,
341     closedate    => $daysago5,
342     booksellerid => $id_supplier2
343 };
344
345 my $dt_today2 = dt_from_string;
346 my $dur10 = DateTime::Duration->new( days => -10 );
347 $dt_today2->add_duration($dur10);
348 my $daysago10 = output_pref({ dt => $dt_today2, dateformat => 'iso', timeformat => '24hr', dateonly => 1 });
349 my $basket3info = {
350     basketno  => $sample_basket3,
351     closedate => $daysago10,
352 };
353
354 my $basket4info = {
355     basketno  => $sample_basket4,
356     closedate => $today,
357 };
358 ModBasket($basket1info);
359 ModBasket($basket2info);
360 ModBasket($basket3info);
361 ModBasket($basket4info);
362
363 #Add 1 subscription
364 my $id_subscription3 = NewSubscription(
365     undef,      "",     $id_supplier1, undef, $id_budget, $biblionumber,
366     '01-01-2013',undef, undef, undef,  undef,
367     undef,      undef,  undef, undef, undef, undef,
368     1,          "subscription notes",undef, '01-01-2013', undef, undef,
369     undef,       undef,  0,    "intnotes",  0,
370     undef, undef, 0,          'LOCA',         '2013-12-31', 0
371 );
372
373 @subscriptions = SearchSubscriptions({expiration_date => '2013-12-31'});
374 is(scalar(@subscriptions), 3, 'search for subscriptions by expiration date');
375 @subscriptions = SearchSubscriptions({expiration_date => '2013-08-15'});
376 is(scalar(@subscriptions), 1, 'search for subscriptions by expiration date');
377 @subscriptions = SearchSubscriptions({callnumber => 'CALL'});
378 is(scalar(@subscriptions), 2, 'search for subscriptions by call number');
379 @subscriptions = SearchSubscriptions({callnumber => 'DEF'});
380 is(scalar(@subscriptions), 1, 'search for subscriptions by call number');
381 @subscriptions = SearchSubscriptions({location => 'LOCA'});
382 is(scalar(@subscriptions), 1, 'search for subscriptions by location');
383
384 #Add 4 orders
385 my ( $ordernumber1, $ordernumber2, $ordernumber3, $ordernumber4 );
386 my ( $basketno1,    $basketno2,    $basketno3,    $basketno4 );
387 ( $basketno1, $ordernumber1 ) = C4::Acquisition::NewOrder(
388     {
389         basketno         => $sample_basket1,
390         quantity         => 24,
391         biblionumber     => $biblionumber,
392         budget_id        => $id_budget,
393         entrydate        => '01-01-2013',
394         currency         => 'EUR',
395         notes            => "This is a note1",
396         gstrate          => 0.0500,
397         orderstatus      => 1,
398         subscriptionid   => $id_subscription1,
399         quantityreceived => 2,
400         rrp              => 10,
401         ecost            => 10,
402         datereceived     => '01-06-2013'
403     }
404 );
405 ( $basketno2, $ordernumber2 ) = C4::Acquisition::NewOrder(
406     {
407         basketno       => $sample_basket2,
408         quantity       => 20,
409         biblionumber   => $biblionumber,
410         budget_id      => $id_budget,
411         entrydate      => '01-01-2013',
412         currency       => 'EUR',
413         notes          => "This is a note2",
414         gstrate        => 0.0500,
415         orderstatus    => 1,
416         subscriptionid => $id_subscription2,
417         rrp            => 10,
418         ecost          => 10,
419     }
420 );
421 ( $basketno3, $ordernumber3 ) = C4::Acquisition::NewOrder(
422     {
423         basketno       => $sample_basket3,
424         quantity       => 20,
425         biblionumber   => $biblionumber,
426         budget_id      => $id_budget,
427         entrydate      => '02-02-2013',
428         currency       => 'EUR',
429         notes          => "This is a note3",
430         gstrate        => 0.0500,
431         orderstatus    => 2,
432         subscriptionid => $id_subscription3,
433         rrp            => 11,
434         ecost          => 11,
435     }
436 );
437 ( $basketno4, $ordernumber4 ) = C4::Acquisition::NewOrder(
438     {
439         basketno         => $sample_basket4,
440         quantity         => 20,
441         biblionumber     => $biblionumber,
442         budget_id        => $id_budget,
443         entrydate        => '02-02-2013',
444         currency         => 'EUR',
445         notes            => "This is a note3",
446         gstrate          => 0.0500,
447         orderstatus      => 2,
448         subscriptionid   => $id_subscription3,
449         rrp              => 11,
450         ecost            => 11,
451         quantityreceived => 20
452     }
453 );
454
455 #Test cases:
456 # Sample datas :
457 #   Supplier1: delivery -> undef Basket1 : closedate -> today
458 #   Supplier2: delivery -> 2     Basket2 : closedate -> $daysago5
459 #   Supplier3: delivery -> 3     Basket3 : closedate -> $daysago10
460 #Case 1 : Without parameters:
461 #   quantityreceived < quantity AND rrp <> 0 AND ecost <> 0 AND quantity - COALESCE(quantityreceived,0) <> 0 AND closedate IS NOT NULL -LATE-
462 #   datereceived !null AND rrp <> 0 AND ecost <> 0 AND quantity - COALESCE(quantityreceived,0) <> 0 AND closedate IS NOT NULL -LATE-
463 #   datereceived !null AND rrp <> 0 AND ecost <> 0 AND quantity - COALESCE(quantityreceived,0) <> 0 AND closedate IS NOT NULL -LATE-
464 #   quantityreceived = quantity -NOT LATE-
465 my %suppliers = C4::Bookseller::GetBooksellersWithLateOrders();
466 ok( exists( $suppliers{$id_supplier1} ), "Supplier1 has late orders" );
467 ok( exists( $suppliers{$id_supplier2} ), "Supplier2 has late orders" );
468 ok( exists( $suppliers{$id_supplier3} ), "Supplier3 has late orders" );
469 isnt( exists( $suppliers{$id_supplier4} ), 1, "Supplier4 hasnt late orders" )
470   ;    # Quantity = quantityreceived
471
472 #Case 2: With $delay = 4
473 #    today + 0 > now-$delay -NOT LATE-
474 #    (today-5) + 2   <= now() - $delay -NOT LATE-
475 #    (today-10) + 3  <= now() - $delay -LATE-
476 #    quantityreceived = quantity -NOT LATE-
477 %suppliers = C4::Bookseller::GetBooksellersWithLateOrders( 4, undef, undef );
478 isnt( exists( $suppliers{$id_supplier1} ),
479     1, "Supplier1 has late orders but  today  > now() - 4 days" );
480 isnt( exists( $suppliers{$id_supplier2} ),
481     1, "Supplier2 has late orders and $daysago5 <= now() - (4 days+2)" );
482 ok( exists( $suppliers{$id_supplier3} ),
483     "Supplier3 has late orders and $daysago10  <= now() - (4 days+3)" );
484 isnt( exists( $suppliers{$id_supplier4} ), 1, "Supplier4 hasnt late orders" );
485
486 #Case 3: With $delay = -1
487 is( C4::Bookseller::GetBooksellersWithLateOrders( -1, undef, undef ),
488     undef, "-1 is a wrong value for a delay" );
489
490 #Case 4: With $delay = 0
491 #    today  == now-0 -LATE- (if no deliverytime or deliverytime == 0)
492 #    today-5   <= now() - $delay+2 -LATE-
493 #    today-10  <= now() - $delay+3 -LATE-
494 #    quantityreceived = quantity -NOT LATE-
495 %suppliers = C4::Bookseller::GetBooksellersWithLateOrders( 0, undef, undef );
496
497 ok( exists( $suppliers{$id_supplier1} ),
498     "Supplier1 has late orders but $today == now() - 0 days" )
499   ;
500 ok( exists( $suppliers{$id_supplier2} ),
501     "Supplier2 has late orders and $daysago5 <= now() - 2" );
502 ok( exists( $suppliers{$id_supplier3} ),
503     "Supplier3 has late orders and $daysago10 <= now() - 3" );
504 isnt( exists( $suppliers{$id_supplier4} ), 1, "Supplier4 hasnt late orders" );
505
506 #Case 5 : With $estimateddeliverydatefrom = today-4
507 #    today >= today-4 -NOT LATE-
508 #    (today-5)+ 2 days >= today-4  -LATE-
509 #    (today-10) + 3 days < today-4   -NOT LATE-
510 #    quantityreceived = quantity -NOT LATE-
511 my $dt_today3 = dt_from_string;
512 my $dur4 = DateTime::Duration->new( days => -4 );
513 $dt_today3->add_duration($dur4);
514 my $daysago4 =  output_pref({ dt => $dt_today3, dateformat => 'iso', timeformat => '24hr', dateonly => 1 });
515 %suppliers =
516   C4::Bookseller::GetBooksellersWithLateOrders( undef, $daysago4, undef );
517
518 ok( exists( $suppliers{$id_supplier1} ),
519     "Supplier1 has late orders and $today >= $daysago4 -deliverytime undef" );
520 ok( exists( $suppliers{$id_supplier2} ),
521     "Supplier2 has late orders and $daysago5 + 2 days >= $daysago4 " );
522 isnt( exists( $suppliers{$id_supplier3} ),
523     1, "Supplier3 has late orders and $daysago10 + 5 days < $daysago4 " );
524 isnt( exists( $suppliers{$id_supplier4} ), 1, "Supplier4 hasnt late orders" );
525
526 #Case 6: With $estimateddeliverydatefrom =today-10 and $estimateddeliverydateto = today - 5
527 #    $daysago10<$daysago5<today -NOT LATE-
528 #    $daysago10<$daysago5<$daysago5 +2 -NOT lATE-
529 #    $daysago10<$daysago10 +3 <$daysago5 -LATE-
530 #    quantityreceived = quantity -NOT LATE-
531 %suppliers = C4::Bookseller::GetBooksellersWithLateOrders( undef, $daysago10,
532     $daysago5 );
533 isnt( exists( $suppliers{$id_supplier1} ),
534     1, "Supplier1 has late orders but $daysago10 < $daysago5 < $today" );
535 isnt(
536     exists( $suppliers{$id_supplier2} ),
537     1,
538     "Supplier2 has late orders but $daysago10 < $daysago5 < $daysago5+2"
539 );
540 ok(
541     exists( $suppliers{$id_supplier3} ),
542 "Supplier3 has late orders and $daysago10 <= $daysago10 +3 <= $daysago5"
543 );
544 isnt( exists( $suppliers{$id_supplier4} ), 1, "Supplier4 hasnt late orders" );
545
546 #Case 7: With $estimateddeliverydateto = today-5
547 #    $today >= $daysago5  -NOT LATE-
548 #    $daysago5 + 2 days  > $daysago5 -NOT LATE-
549 #    $daysago10 + 3  <+ $daysago5  -LATE-
550 #    quantityreceived = quantity -NOT LATE-
551 %suppliers =
552   C4::Bookseller::GetBooksellersWithLateOrders( undef, undef, $daysago5 );
553 isnt( exists( $suppliers{$id_supplier1} ),
554     1,
555     "Supplier1 has late orders but $today >= $daysago5 - deliverytime undef" );
556 isnt( exists( $suppliers{$id_supplier2} ),
557     1, "Supplier2 has late orders but  $daysago5 + 2 days  > $daysago5 " );
558 ok( exists( $suppliers{$id_supplier3} ),
559     "Supplier3 has late orders and $daysago10 + 3  <= $daysago5" );
560 isnt( exists( $suppliers{$id_supplier4} ), 1, "Supplier4 hasnt late orders" );
561
562 #Test with $estimateddeliverydatefrom and  $estimateddeliverydateto and $delay
563 #Case 8 :With $estimateddeliverydatefrom = 2013-07-05 and  $estimateddeliverydateto = 2013-07-08 and $delay =5
564 #    $daysago4<today<=$today and $today<now()-3  -NOT LATE-
565 #    $daysago4 < $daysago5 + 2days <= today and $daysago5 <= now()-3+2 days -LATE-
566 #    $daysago4 > $daysago10 + 3days < today and $daysago10 <= now()-3+3 days -NOT LATE-
567 #    quantityreceived = quantity -NOT LATE-
568 %suppliers =
569   C4::Bookseller::GetBooksellersWithLateOrders( 3, $daysago4, $today );
570 isnt(
571     exists( $suppliers{$id_supplier1} ),
572     1,
573     "Supplier1 has late orders but $daysago4<today<=$today and $today<now()-3"
574 );
575 ok(
576     exists( $suppliers{$id_supplier2} ),
577 "Supplier2 has late orders and $daysago4 < $daysago5 + 2days <= today and $daysago5 <= now()-3+2 days"
578 );
579 isnt(
580     exists( $suppliers{$id_supplier3} ),
581 "Supplier3 has late orders but $daysago4 > $daysago10 + 3days < today and $daysago10 <= now()-3+3 days"
582 );
583 isnt( exists( $suppliers{$id_supplier4} ), 1, "Supplier4 hasnt late orders" );
584
585 #Case 9 :With $estimateddeliverydatefrom = $daysago5  and $delay = 3
586 #   $today < $daysago5 and $today > $today-5 -NOT LATE-
587 #   $daysago5 + 2 days >= $daysago5  and $daysago5 < today - 3+2 -LATE-
588 #   $daysago10 + 3 days < $daysago5 and $daysago10 < today -3+2-NOT LATE-
589 #   quantityreceived = quantity -NOT LATE-
590 %suppliers =
591   C4::Bookseller::GetBooksellersWithLateOrders( 3, $daysago5, undef );
592 isnt( exists( $suppliers{$id_supplier1} ),
593     1, "$today < $daysago10 and $today > $today-3" );
594 ok(
595     exists( $suppliers{$id_supplier2} ),
596 "Supplier2 has late orders and $daysago5 + 2 days >= $daysago5  and $daysago5 < today - 3+2"
597 );
598 isnt(
599     exists( $suppliers{$id_supplier3} ),
600     1,
601 "Supplier2 has late orders but $daysago10 + 3 days < $daysago5 and $daysago10 < today -3+2 "
602 );
603 isnt( exists( $suppliers{$id_supplier4} ), 1, "Supplier4 hasnt late orders" );
604
605 #Test with $estimateddeliverydateto  and $delay
606 #Case 10:With $estimateddeliverydateto = $daysago5 and $delay = 5
607 #    today > $daysago5 today > now() -5 -NOT LATE-
608 #    $daysago5 + 2 days > $daysago5  and $daysago5 > now() - 2+5 days -NOT LATE-
609 #    $daysago10 + 3 days <= $daysago5 and $daysago10 <= now() - 3+5 days -LATE-
610 #    quantityreceived = quantity -NOT LATE-
611 %suppliers =
612   C4::Bookseller::GetBooksellersWithLateOrders( 5, undef, $daysago5 );
613 isnt( exists( $suppliers{$id_supplier1} ),
614     1, "Supplier2 has late orders but today > $daysago5 today > now() -5" );
615 isnt(
616     exists( $suppliers{$id_supplier2} ),
617     1,
618 "Supplier2 has late orders but $daysago5 + 2 days > $daysago5  and $daysago5 > now() - 2+5 days"
619 );
620 ok(
621     exists( $suppliers{$id_supplier3} ),
622 "Supplier2 has late orders and $daysago10 + 3 days <= $daysago5 and $daysago10 <= now() - 3+5 days "
623 );
624 isnt( exists( $suppliers{$id_supplier4} ), 1, "Supplier4 hasnt late orders" );
625
626 #Case 11: With $estimateddeliverydatefrom =today-10 and $estimateddeliverydateto = today - 10
627 #    $daysago10==$daysago10==$daysago10 -NOT LATE-
628 #    $daysago10==$daysago10<$daysago5+2-NOT lATE-
629 #    $daysago10==$daysago10 <$daysago10+3-LATE-
630 #    quantityreceived = quantity -NOT LATE-
631
632 #Basket1 closedate -> $daysago10
633 $basket1info = {
634     basketno  => $sample_basket1,
635     closedate => $daysago10,
636 };
637 ModBasket($basket1info);
638 %suppliers = C4::Bookseller::GetBooksellersWithLateOrders( undef, $daysago10,
639     $daysago10 );
640 ok( exists( $suppliers{$id_supplier1} ),
641     "Supplier1 has late orders and $daysago10==$daysago10==$daysago10 " )
642   ;
643 isnt( exists( $suppliers{$id_supplier2} ),
644     1,
645     "Supplier2 has late orders but $daysago10==$daysago10<$daysago5+2" );
646 isnt( exists( $suppliers{$id_supplier3} ),
647     1,
648     "Supplier3 has late orders but $daysago10==$daysago10 <$daysago10+3" );
649 isnt( exists( $suppliers{$id_supplier4} ), 1, "Supplier4 hasnt late orders" );
650
651 #Case 12: closedate == $estimateddeliverydatefrom =today-10
652 %suppliers =
653   C4::Bookseller::GetBooksellersWithLateOrders( undef, $daysago10, undef );
654 ok( exists( $suppliers{$id_supplier1} ),
655     "Supplier1 has late orders and $daysago10==$daysago10 " );
656
657 #Case 13: closedate == $estimateddeliverydateto =today-10
658 %suppliers =
659   C4::Bookseller::GetBooksellersWithLateOrders( undef, undef, $daysago10 );
660 ok( exists( $suppliers{$id_supplier1} ),
661     "Supplier1 has late orders and $daysago10==$daysago10 " )
662   ;
663
664 #End transaction
665 $dbh->rollback;
666
667 #field_filter filters the useless fields or foreign keys
668 #NOTE: all the fields of aqbookseller arent considered
669 #returns a cleaned structure
670 sub field_filter {
671     my ($struct) = @_;
672
673     for my $field (
674         'bookselleremail', 'booksellerfax',
675         'booksellerurl',   'othersupplier',
676         'currency',        'invoiceprice',
677         'listprice'
678       )
679     {
680
681         if ( grep { /^$field$/ } keys %$struct ) {
682             delete $struct->{$field};
683         }
684     }
685     return $struct;
686 }