View | Details | Raw Unified | Return to bug 17656
Collapse All | Expand All

(-)a/C4/Serials.pm (-125 / +126 lines)
Lines 20-26 package C4::Serials; Link Here
20
20
21
use Modern::Perl;
21
use Modern::Perl;
22
22
23
use Carp       qw( croak );
23
use Carp qw( croak );
24
use Date::Calc qw(
24
use Date::Calc qw(
25
    Add_Delta_Days
25
    Add_Delta_Days
26
    Add_Delta_YM
26
    Add_Delta_YM
Lines 30-43 use Date::Calc qw( Link Here
30
    Today
30
    Today
31
);
31
);
32
use DateTime;
32
use DateTime;
33
use POSIX        qw( strftime );
33
use POSIX qw( strftime );
34
use Scalar::Util qw( looks_like_number );
34
use Scalar::Util qw( looks_like_number );
35
use Try::Tiny;
35
use Try::Tiny;
36
36
37
use C4::Auth   qw( haspermission );
37
use C4::Auth qw( haspermission );
38
use C4::Biblio qw( GetMarcFromKohaField ModBiblio );
38
use C4::Biblio qw( GetMarcFromKohaField ModBiblio );
39
use C4::Context;
39
use C4::Context;
40
use C4::Log                qw( logaction );                  # logaction
40
use C4::Log qw( logaction );    # logaction
41
use C4::Serials::Frequency qw( GetSubscriptionFrequency );
41
use C4::Serials::Frequency qw( GetSubscriptionFrequency );
42
use C4::Serials::Numberpattern;
42
use C4::Serials::Numberpattern;
43
use Koha::AdditionalFieldValues;
43
use Koha::AdditionalFieldValues;
Lines 107-112 BEGIN { Link Here
107
        HasItems
107
        HasItems
108
108
109
        findSerialsByStatus
109
        findSerialsByStatus
110
        &subscriptionCurrentlyOnOrder
111
        &issue_number
110
112
111
    );
113
    );
112
}
114
}
Lines 1300-1336 sub ModNextExpected { Link Here
1300
1302
1301
}
1303
}
1302
1304
1303
=head2 GetSubscriptionIrregularities
1304
1305
=over 4
1306
1307
=item @irreg = &GetSubscriptionIrregularities($subscriptionid);
1308
get the list of irregularities for a subscription
1309
1310
=back
1311
1312
=cut
1313
1314
sub GetSubscriptionIrregularities {
1315
    my $subscriptionid = shift;
1316
1317
    return unless $subscriptionid;
1318
1319
    my $dbh   = C4::Context->dbh;
1320
    my $query = qq{
1321
        SELECT irregularity
1322
        FROM subscription
1323
        WHERE subscriptionid = ?
1324
    };
1325
    my $sth = $dbh->prepare($query);
1326
    $sth->execute($subscriptionid);
1327
1328
    my ($result) = $sth->fetchrow_array;
1329
    my @irreg    = split /;/, $result;
1330
1331
    return @irreg;
1332
}
1333
1334
=head2 ModSubscription
1305
=head2 ModSubscription
1335
1306
1336
this function modifies a subscription. Put all new values on input args.
1307
this function modifies a subscription. Put all new values on input args.
Lines 1340-1350 returns the number of rows affected Link Here
1340
1311
1341
sub ModSubscription {
1312
sub ModSubscription {
1342
    my (
1313
    my (
1343
        $auser,         $branchcode,       $aqbooksellerid,    $cost,          $aqbudgetid, $startdate,
1314
        $auser,         $branchcode,       $aqbooksellerid,    $cost,                   $aqbudgetid,    $startdate,
1344
        $periodicity,   $firstacquidate,   $irregularity,      $numberpattern, $locale,
1315
        $periodicity,   $firstacquidate,   $irregularity,      $permanent_irregularity, $numberpattern, $locale,
1345
        $numberlength,  $weeklength,       $monthlength,       $lastvalue1,    $innerloop1,
1316
        $numberlength,  $weeklength,       $monthlength,       $lastvalue1,             $innerloop1,
1346
        $lastvalue2,    $innerloop2,       $lastvalue3,        $innerloop3,    $status,
1317
        $lastvalue2,    $innerloop2,       $lastvalue3,        $innerloop3,             $status,
1347
        $biblionumber,  $callnumber,       $notes,             $letter,        $manualhistory,
1318
        $biblionumber,  $callnumber,       $notes,             $letter,                 $manualhistory,
1348
        $internalnotes, $serialsadditems,  $staffdisplaycount, $opacdisplaycount,
1319
        $internalnotes, $serialsadditems,  $staffdisplaycount, $opacdisplaycount,
1349
        $graceperiod,   $location,         $enddate,           $subscriptionid, $skip_serialseq,
1320
        $graceperiod,   $location,         $enddate,           $subscriptionid, $skip_serialseq,
1350
        $itemtype,      $previousitemtype, $mana_id,           $ccode,          $published_on_template
1321
        $itemtype,      $previousitemtype, $mana_id,           $ccode,          $published_on_template
Lines 1353-1397 sub ModSubscription { Link Here
1353
    my $subscription = Koha::Subscriptions->find($subscriptionid);
1324
    my $subscription = Koha::Subscriptions->find($subscriptionid);
1354
    $subscription->set(
1325
    $subscription->set(
1355
        {
1326
        {
1356
            librarian             => $auser,
1327
            librarian              => $auser,
1357
            branchcode            => $branchcode,
1328
            branchcode             => $branchcode,
1358
            aqbooksellerid        => $aqbooksellerid,
1329
            aqbooksellerid         => $aqbooksellerid,
1359
            cost                  => $cost,
1330
            cost                   => $cost,
1360
            aqbudgetid            => $aqbudgetid,
1331
            aqbudgetid             => $aqbudgetid,
1361
            biblionumber          => $biblionumber,
1332
            biblionumber           => $biblionumber,
1362
            startdate             => $startdate,
1333
            startdate              => $startdate,
1363
            periodicity           => $periodicity,
1334
            periodicity            => $periodicity,
1364
            numberlength          => $numberlength,
1335
            numberlength           => $numberlength,
1365
            weeklength            => $weeklength,
1336
            weeklength             => $weeklength,
1366
            monthlength           => $monthlength,
1337
            monthlength            => $monthlength,
1367
            lastvalue1            => $lastvalue1,
1338
            lastvalue1             => $lastvalue1,
1368
            innerloop1            => $innerloop1,
1339
            innerloop1             => $innerloop1,
1369
            lastvalue2            => $lastvalue2,
1340
            lastvalue2             => $lastvalue2,
1370
            innerloop2            => $innerloop2,
1341
            innerloop2             => $innerloop2,
1371
            lastvalue3            => $lastvalue3,
1342
            lastvalue3             => $lastvalue3,
1372
            innerloop3            => $innerloop3,
1343
            innerloop3             => $innerloop3,
1373
            status                => $status,
1344
            status                 => $status,
1374
            notes                 => $notes,
1345
            notes                  => $notes,
1375
            letter                => $letter,
1346
            letter                 => $letter,
1376
            firstacquidate        => $firstacquidate,
1347
            firstacquidate         => $firstacquidate,
1377
            irregularity          => $irregularity,
1348
            irregularity           => $irregularity,
1378
            numberpattern         => $numberpattern,
1349
            permanent_irregularity => $permanent_irregularity,
1379
            locale                => $locale,
1350
            numberpattern          => $numberpattern,
1380
            callnumber            => $callnumber,
1351
            locale                 => $locale,
1381
            manualhistory         => $manualhistory,
1352
            callnumber             => $callnumber,
1382
            internalnotes         => $internalnotes,
1353
            manualhistory          => $manualhistory,
1383
            serialsadditems       => $serialsadditems,
1354
            internalnotes          => $internalnotes,
1384
            staffdisplaycount     => $staffdisplaycount,
1355
            serialsadditems        => $serialsadditems,
1385
            opacdisplaycount      => $opacdisplaycount,
1356
            staffdisplaycount      => $staffdisplaycount,
1386
            graceperiod           => $graceperiod,
1357
            opacdisplaycount       => $opacdisplaycount,
1387
            location              => $location,
1358
            graceperiod            => $graceperiod,
1388
            enddate               => $enddate,
1359
            location               => $location,
1389
            skip_serialseq        => $skip_serialseq,
1360
            enddate                => $enddate,
1390
            itemtype              => $itemtype,
1361
            skip_serialseq         => $skip_serialseq,
1391
            previousitemtype      => $previousitemtype,
1362
            itemtype               => $itemtype,
1392
            mana_id               => $mana_id,
1363
            previousitemtype       => $previousitemtype,
1393
            ccode                 => $ccode,
1364
            mana_id                => $mana_id,
1394
            published_on_template => $published_on_template,
1365
            ccode                  => $ccode,
1366
            published_on_template  => $published_on_template,
1395
        }
1367
        }
1396
    )->store;
1368
    )->store;
1397
1369
Lines 1424-1481 the id of this new subscription Link Here
1424
1396
1425
sub NewSubscription {
1397
sub NewSubscription {
1426
    my (
1398
    my (
1427
        $auser,           $branchcode,        $aqbooksellerid,   $cost,          $aqbudgetid, $biblionumber,
1399
        $auser,                  $branchcode,        $aqbooksellerid,   $cost,       $aqbudgetid, $biblionumber,
1428
        $startdate,       $periodicity,       $numberlength,     $weeklength,    $monthlength,
1400
        $startdate,              $periodicity,       $numberlength,     $weeklength, $monthlength,
1429
        $lastvalue1,      $innerloop1,        $lastvalue2,       $innerloop2,    $lastvalue3,
1401
        $lastvalue1,             $innerloop1,        $lastvalue2,       $innerloop2, $lastvalue3,
1430
        $innerloop3,      $status,            $notes,            $letter,        $firstacquidate, $irregularity,
1402
        $innerloop3,             $status,            $notes,            $letter,     $firstacquidate, $irregularity,
1431
        $numberpattern,   $locale,            $callnumber,       $manualhistory, $internalnotes,
1403
        $permanent_irregularity, $numberpattern,     $locale,           $callnumber, $manualhistory,  $internalnotes,
1432
        $serialsadditems, $staffdisplaycount, $opacdisplaycount, $graceperiod,
1404
        $serialsadditems,        $staffdisplaycount, $opacdisplaycount, $graceperiod,
1433
        $location,        $enddate,           $skip_serialseq,   $itemtype, $previousitemtype, $mana_id, $ccode,
1405
        $location,               $enddate,           $skip_serialseq,   $itemtype, $previousitemtype, $mana_id, $ccode,
1434
        $published_on_template,
1406
        $published_on_template,
1435
    ) = @_;
1407
    ) = @_;
1436
    my $dbh = C4::Context->dbh;
1408
    my $dbh = C4::Context->dbh;
1437
1409
1438
    my $subscription = Koha::Subscription->new(
1410
    my $subscription = Koha::Subscription->new(
1439
        {
1411
        {
1440
            librarian             => $auser,
1412
            librarian              => $auser,
1441
            branchcode            => $branchcode,
1413
            branchcode             => $branchcode,
1442
            aqbooksellerid        => $aqbooksellerid,
1414
            aqbooksellerid         => $aqbooksellerid,
1443
            cost                  => $cost,
1415
            cost                   => $cost,
1444
            aqbudgetid            => $aqbudgetid,
1416
            aqbudgetid             => $aqbudgetid,
1445
            biblionumber          => $biblionumber,
1417
            biblionumber           => $biblionumber,
1446
            startdate             => $startdate,
1418
            startdate              => $startdate,
1447
            periodicity           => $periodicity,
1419
            periodicity            => $periodicity,
1448
            numberlength          => $numberlength,
1420
            numberlength           => $numberlength,
1449
            weeklength            => $weeklength,
1421
            weeklength             => $weeklength,
1450
            monthlength           => $monthlength,
1422
            monthlength            => $monthlength,
1451
            lastvalue1            => $lastvalue1,
1423
            lastvalue1             => $lastvalue1,
1452
            innerloop1            => $innerloop1,
1424
            innerloop1             => $innerloop1,
1453
            lastvalue2            => $lastvalue2,
1425
            lastvalue2             => $lastvalue2,
1454
            innerloop2            => $innerloop2,
1426
            innerloop2             => $innerloop2,
1455
            lastvalue3            => $lastvalue3,
1427
            lastvalue3             => $lastvalue3,
1456
            innerloop3            => $innerloop3,
1428
            innerloop3             => $innerloop3,
1457
            status                => $status,
1429
            status                 => $status,
1458
            notes                 => $notes,
1430
            notes                  => $notes,
1459
            letter                => $letter,
1431
            letter                 => $letter,
1460
            firstacquidate        => $firstacquidate,
1432
            firstacquidate         => $firstacquidate,
1461
            irregularity          => $irregularity,
1433
            irregularity           => $irregularity,
1462
            numberpattern         => $numberpattern,
1434
            permanent_irregularity => $permanent_irregularity,
1463
            locale                => $locale,
1435
            numberpattern          => $numberpattern,
1464
            callnumber            => $callnumber,
1436
            locale                 => $locale,
1465
            manualhistory         => $manualhistory,
1437
            callnumber             => $callnumber,
1466
            internalnotes         => $internalnotes,
1438
            manualhistory          => $manualhistory,
1467
            serialsadditems       => $serialsadditems,
1439
            internalnotes          => $internalnotes,
1468
            staffdisplaycount     => $staffdisplaycount,
1440
            serialsadditems        => $serialsadditems,
1469
            opacdisplaycount      => $opacdisplaycount,
1441
            staffdisplaycount      => $staffdisplaycount,
1470
            graceperiod           => $graceperiod,
1442
            opacdisplaycount       => $opacdisplaycount,
1471
            location              => $location,
1443
            graceperiod            => $graceperiod,
1472
            enddate               => $enddate,
1444
            location               => $location,
1473
            skip_serialseq        => $skip_serialseq,
1445
            enddate                => $enddate,
1474
            itemtype              => $itemtype,
1446
            skip_serialseq         => $skip_serialseq,
1475
            previousitemtype      => $previousitemtype,
1447
            itemtype               => $itemtype,
1476
            mana_id               => $mana_id,
1448
            previousitemtype       => $previousitemtype,
1477
            ccode                 => $ccode,
1449
            mana_id                => $mana_id,
1478
            published_on_template => $published_on_template,
1450
            ccode                  => $ccode,
1451
            published_on_template  => $published_on_template,
1479
        }
1452
        }
1480
    )->store;
1453
    )->store;
1481
    $subscription->discard_changes;
1454
    $subscription->discard_changes;
Lines 2820-2825 sub findSerialsByStatus { Link Here
2820
    return @$serials;
2793
    return @$serials;
2821
}
2794
}
2822
2795
2796
=head2 issue_number
2797
2798
    my $week_number = issue_number($dt, 'week');
2799
2800
=cut
2801
2802
sub issue_number {
2803
    my ( $date, $issue_type ) = @_;
2804
2805
    unless ( ref($date) eq 'DateTime' ) {
2806
        Koha::Exceptions::WrongParameter->throw("Date passed to issue_number is not a valid DateTime object");
2807
    }
2808
2809
    if ( $issue_type eq 'day' ) {
2810
        return $date->dow;
2811
    }
2812
2813
    if ( $issue_type eq 'week' ) {
2814
        return $date->week_number;
2815
    }
2816
2817
    if ( $issue_type eq 'month' ) {
2818
        return $date->month;
2819
    }
2820
2821
    return 0;
2822
}
2823
2823
1;
2824
1;
2824
__END__
2825
__END__
2825
2826
(-)a/Koha/Subscription.pm (-1 / +143 lines)
Lines 19-24 package Koha::Subscription; Link Here
19
19
20
use Modern::Perl;
20
use Modern::Perl;
21
21
22
use C4::Serials::Frequency;
23
use C4::Serials qw(issue_number);
24
22
use Koha::Database;
25
use Koha::Database;
23
use Koha::Biblios;
26
use Koha::Biblios;
24
use Koha::Acquisition::Booksellers;
27
use Koha::Acquisition::Booksellers;
Lines 26-31 use Koha::Biblioitems; Link Here
26
use Koha::Subscriptions;
29
use Koha::Subscriptions;
27
use Koha::Subscription::Frequencies;
30
use Koha::Subscription::Frequencies;
28
use Koha::Subscription::Numberpatterns;
31
use Koha::Subscription::Numberpatterns;
32
use Koha::DateUtils;
33
use JSON;
34
use Date::Calc qw( Delta_Days Add_Delta_Days Add_Delta_YM );
29
35
30
use base qw(Koha::Object Koha::Object::Mixin::AdditionalFields);
36
use base qw(Koha::Object Koha::Object::Mixin::AdditionalFields);
31
37
Lines 191-197 sub get_sharable_info { Link Here
191
    return $sub_mana_info;
197
    return $sub_mana_info;
192
}
198
}
193
199
194
=head3 _type
200
=head2 irregularities
201
202
Returns an array containing irregularities
203
204
=cut
205
206
sub irregularities {
207
    my ($self) = @_;
208
209
    return split( ';', $self->irregularity );
210
}
211
212
=head2 permanent_irregularities
213
214
Returns an array containing permanent irregularities
215
216
=cut
217
218
sub permanent_irregularities {
219
    my ($self) = @_;
220
221
    return split( ';', $self->permanent_irregularity );
222
}
223
224
=head3 lengthtype
225
226
Return the length type (issues, weeks, months)
227
228
=cut
229
230
sub lengthtype {
231
    my ($self) = @_;
232
233
    if ( $self->numberlength ) {
234
        return 'issues';
235
    }
236
237
    if ( $self->weeklength ) {
238
        return 'weeks';
239
    }
240
241
    if ( $self->monthlength ) {
242
        return 'months';
243
    }
244
}
245
246
=head3 guess_irregularities
247
248
my @irregularities = $subscription->guess_irregularities
249
250
=cut
251
252
sub guess_irregularities {
253
    my ($self) = @_;
254
255
    my @irregularities;
256
    my %permanent_irregularities = map { $_ => 1 } $self->permanent_irregularities;
257
258
    my $schema    = Koha::Database->new->schema;
259
    my $frequency = $schema->resultset('SubscriptionFrequency')->find( $self->periodicity );
260
261
    my $enddate      = $self->enddate;
262
    my $nextexpected = C4::Serials::GetNextExpected( $self->id );
263
    my $date         = $nextexpected->{planneddate};
264
265
    my ($issuenumber) = C4::Serials::GetFictiveIssueNumber( $self->unblessed, $date );
266
    my $dow = issue_number( dt_from_string($date), $frequency->unit );
267
268
    if ( defined( $permanent_irregularities{$dow} ) ) {
269
        push @irregularities, $issuenumber;
270
    }
271
272
    while ( Delta_Days( split( /-/, $date ), split( /-/, $enddate ) ) >= 0 ) {
273
        $issuenumber++;
274
        $date = C4::Serials::GetNextDate( $self->unblessed, $date );
275
        $dow  = issue_number( dt_from_string($date), $frequency->unit );
276
277
        if ( defined( $permanent_irregularities{$dow} ) ) {
278
            push @irregularities, $issuenumber;
279
        }
280
    }
281
282
    return @irregularities;
283
}
284
285
=head2 guess_enddate
286
287
my $enddate = $subscription->guess_enddate;
288
289
=cut
290
291
sub guess_enddate {
292
    my ($self) = @_;
293
294
    my ( $year, $month, $day, $enddate );
295
    my $startdate    = $self->startdate;
296
    my $numberlength = $self->numberlength;
297
    my $weeklength   = $self->weeklength;
298
    my $monthlength  = $self->monthlength;
299
300
    if ( $numberlength != 0 ) {
301
        my $frequency = GetSubscriptionFrequency( $self->periodicity );
302
        if ( $frequency->{'unit'} eq 'day' ) {
303
            ( $year, $month, $day ) = Add_Delta_Days(
304
                split( /-/, $startdate ),
305
                $numberlength * $frequency->{'unitsperissue'} / $frequency->{'issuesperunit'}
306
            );
307
        } elsif ( $frequency->{'unit'} eq 'week' ) {
308
            ( $year, $month, $day ) = Add_Delta_Days(
309
                split( /-/, $startdate ),
310
                $numberlength * 7 * $frequency->{'unitsperissue'} / $frequency->{'issuesperunit'}
311
            );
312
        } elsif ( $frequency->{'unit'} eq 'month' ) {
313
            ( $year, $month, $day ) = Add_Delta_YM(
314
                split( /-/, $startdate ), 0,
315
                $numberlength * $frequency->{'unitsperissue'} / $frequency->{'issuesperunit'}
316
            );
317
        } elsif ( $frequency->{'unit'} eq 'year' ) {
318
            ( $year, $month, $day ) = Add_Delta_YM(
319
                split( /-/, $startdate ),
320
                $numberlength * $frequency->{'unitsperissue'} / $frequency->{'issuesperunit'}, 0
321
            );
322
        }
323
    } elsif ( $weeklength != 0 ) {
324
        ( $year, $month, $day ) = Add_Delta_Days( split( /-/, $startdate ), $weeklength * 7 );
325
    } elsif ( $monthlength != 0 ) {
326
        ( $year, $month, $day ) = Add_Delta_YM( split( /-/, $startdate ), 0, $monthlength );
327
    }
328
    if ( defined $year ) {
329
        $enddate = sprintf( "%04d-%02d-%02d", $year, $month, $day );
330
    } else {
331
        undef $enddate;
332
    }
333
    return $enddate;
334
}
335
336
=head3 type
195
337
196
=cut
338
=cut
197
339
(-)a/installer/data/mysql/atomicupdate/Bug_17656-add-permanent-irregularities.perl (+9 lines)
Line 0 Link Here
1
$DBversion = 'XXX';
2
if( CheckVersion( $DBversion ) ) {
3
    if( !column_exists( 'subscription', 'permanent_irregularity' ) ) {
4
        $dbh->do( "ALTER TABLE `subscription` ADD permanent_irregularity MEDIUMTEXT AFTER irregularity" );
5
    }
6
7
    SetVersion( $DBversion );
8
    print "Upgrade to $DBversion done (Bug 17656 - Irregularities in serial prediction pattern are planned only for current subscription)\n";
9
}
(-)a/installer/data/mysql/kohastructure.sql (-1 / +2 lines)
Lines 6122-6127 CREATE TABLE `subscription` ( Link Here
6122
  `firstacquidate` date DEFAULT NULL COMMENT 'first issue received date',
6122
  `firstacquidate` date DEFAULT NULL COMMENT 'first issue received date',
6123
  `manualhistory` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'yes or no to managing the history manually',
6123
  `manualhistory` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'yes or no to managing the history manually',
6124
  `irregularity` mediumtext DEFAULT NULL COMMENT 'any irregularities in the subscription',
6124
  `irregularity` mediumtext DEFAULT NULL COMMENT 'any irregularities in the subscription',
6125
  `permanent_irregularity` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'permanent irregularities for renewal',
6125
  `skip_serialseq` tinyint(1) NOT NULL DEFAULT 0,
6126
  `skip_serialseq` tinyint(1) NOT NULL DEFAULT 0,
6126
  `letter` varchar(20) DEFAULT NULL,
6127
  `letter` varchar(20) DEFAULT NULL,
6127
  `numberpattern` int(11) DEFAULT NULL COMMENT 'the numbering pattern used links to subscription_numberpatterns.id',
6128
  `numberpattern` int(11) DEFAULT NULL COMMENT 'the numbering pattern used links to subscription_numberpatterns.id',
Lines 6755-6758 CREATE TABLE `zebraqueue` ( Link Here
6755
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
6756
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
6756
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
6757
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
6757
6758
6758
-- Dump completed on 2024-11-25 12:13:27
6759
-- Dump completed on 2024-11-25 12:13:27
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/serials/subscription_daily_choice.inc (+30 lines)
Line 0 Link Here
1
<p><em> If there is a day (or more) in the week where issues are never published, you can check corresponding boxes below. </em></p>
2
[% daily_choice = [ {name => 'monday', value => 1}, {name => 'tuesday', value => 2}, {name => 'wednesday', value => 3}, {name => 'thursday', value => 4}, {name => 'friday', value => 5}, {name => 'saturday', value => 6}, {name => 'sunday', value => 7} ] %]
3
4
[% BLOCK days %]
5
    [% SWITCH d %]
6
    [% CASE 'monday' %]
7
        Monday
8
    [% CASE 'tuesday' %]
9
        Tuesday
10
    [% CASE 'wednesday' %]
11
        Wednesday
12
    [% CASE 'thursday' %]
13
        Thursday
14
    [% CASE 'friday' %]
15
        Friday
16
    [% CASE 'saturday' %]
17
        Saturday
18
    [% CASE 'sunday' %]
19
        Sunday
20
    [% END %]
21
[% END %]
22
23
[% FOREACH day IN daily_choice %]
24
    [% IF permanent_irreg.grep( day.value ).0 == day.value %]
25
        <input type="checkbox" name="permanent_irregularity" id="[% day.name %]" data-dow="[% day.value %]" value="[% day.value %]" class="skip" checked="checked" />
26
    [% ELSE %]
27
        <input type="checkbox" name="permanent_irregularity" id="[% day.name %]" data-dow="[% day.value %]" value="[% day.value %]" class="skip" />
28
    [% END %]
29
    <label for="[% day.name | html %]" class="inline">[% PROCESS days d=day.name %]</label>
30
[% END %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/serials/subscription_monthly_choice.inc (+40 lines)
Line 0 Link Here
1
<p><em> If there is a month (or more) in the year where issues are never published, you can check corresponding boxes below. </em></p>
2
[% monthly_choice = [ {name => 'january', value => 1}, {name => 'february', value => 2}, {name => 'march', value => 3}, {name => 'april', value => 4}, {name => 'may', value => 5}, {name => 'june', value => 6}, {name => 'july', value => 7}, {name => 'august', value => 8}, {name => 'september', value => 9}, {name => 'october', value => 10}, {name => 'november', value => 11}, {name => 'december', value =>12} ] %]
3
4
[% BLOCK months %]
5
    [% SWITCH m %]
6
    [% CASE 'january' %]
7
        January
8
    [% CASE 'february' %]
9
        February
10
    [% CASE 'march' %]
11
        March
12
    [% CASE 'april' %]
13
        April
14
    [% CASE 'may' %]
15
        May
16
    [% CASE 'june' %]
17
        June
18
    [% CASE 'july' %]
19
        July
20
    [% CASE 'august' %]
21
        August
22
    [% CASE 'september' %]
23
        September
24
    [% CASE 'october' %]
25
        October
26
    [% CASE 'november' %]
27
        November
28
    [% CASE 'december' %]
29
        December
30
    [% END %]
31
[% END %]
32
33
[% FOREACH month IN monthly_choice %]
34
    [% IF permanent_irreg.grep( month.value ).0 == month.value %]
35
        <input type="checkbox" name="permanent_irregularity" id="[% month.name %]" data-dow="[% month.value %]" value="[% month.value %]" class="skip" checked="checked" />
36
    [% ELSE %]
37
        <input type="checkbox" name="permanent_irregularity" id="[% month.name %]" data-dow="[% month.value %]" value="[% month.value %]" class="skip" />
38
    [% END %]
39
    <label for="[% month.name | html %]" class="inline">[% PROCESS months m=month.name %]</label>
40
[% END %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/serials/subscription_weekly_choice.inc (+27 lines)
Line 0 Link Here
1
<div class="row select-weeks">
2
    <div class="col-lg-12">
3
        <div class="button-group">
4
            <button type="button" class="btn btn-default btn-sm dropdown-toggle" data-toggle="dropdown">
5
                Week(s) not published
6
                <span class="caret"></span>
7
            </button>
8
            <ul class="dropdown-menu week-columns">
9
                [% FOREACH p IN predictions_loop %]
10
                    <li>
11
                        <a href="#" class="small">
12
                            [% IF permanent_irreg.grep( p.dow ).0 == p.dow %]
13
                                <input type="checkbox" name="permanent_irregularity" value="[% p.dow %]" data-dow="[% p.dow %]" class="skip" checked="checked" />
14
                            [% ELSE %]
15
                                <input type="checkbox" name="permanent_irregularity" value="[% p.dow %]" data-dow="[% p.dow %]" class="skip" />
16
                            [% END %]
17
                            &nbsp;Week <b>#[% p.dow %]</b> ([% p.publicationdate | $KohaDates %])
18
                        </a>
19
                    </li>
20
                [% END %]
21
            </ul>
22
        </div>
23
    </div>
24
</div>
25
<p>
26
    <em>Choice the week(s) in the year where issues are never published.</em>
27
</p>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/showpredictionpattern.tt (-16 / +15 lines)
Lines 5-26 Link Here
5
[% END %]
5
[% END %]
6
[% IF (ask_for_irregularities) %]
6
[% IF (ask_for_irregularities) %]
7
    <p><em>Please check issues that are NOT published (irregularities)</em></p>
7
    <p><em>Please check issues that are NOT published (irregularities)</em></p>
8
    [% IF (daily_options) %]
8
    [% IF (show_irregularity_options) %]
9
        <p><em> If there is a day (or more) in the week where issues are never published, you can check corresponding boxes below. </em></p>
9
        <script>
10
        <input type="checkbox" id="monday" data-dow="1" class="skipday" />
10
            //<![CDATA[
11
        <label for="monday">Monday</label>
11
            $(document).ready(function () {
12
        <input type="checkbox" id="tuesday" data-dow="2" class="skipday" />
12
                Check_permanent_irregularities();
13
        <label for="tuesday">Tuesday</label>
13
            });
14
        <input type="checkbox" id="wednesday" data-dow="3" class="skipday" />
14
            //]]>
15
        <label for="wednesday">Wednesday</label>
15
        </script>
16
        <input type="checkbox" id="thursday" data-dow="4" class="skipday" />
16
        [% IF (show_irregularity_options == 'day') %]
17
        <label for="thursday">Thursday</label>
17
            [% INCLUDE 'serials/subscription_daily_choice.inc' %]
18
        <input type="checkbox" id="friday" data-dow="5" class="skipday" />
18
        [% ELSIF (show_irregularity_options == 'month') %]
19
        <label for="friday">Friday</label>
19
            [% INCLUDE 'serials/subscription_monthly_choice.inc' %]
20
        <input type="checkbox" id="saturday" data-dow="6" class="skipday" />
20
        [% ELSIF (show_irregularity_options == 'week') %]
21
        <label for="saturday">Saturday</label>
21
            [% INCLUDE 'serials/subscription_weekly_choice.inc' %]
22
        <input type="checkbox" id="sunday" data-dow="7" class="skipday" />
22
        [% END %]
23
        <label for="sunday">Sunday</label>
24
    [% END %]
23
    [% END %]
25
[% END %]
24
[% END %]
26
[% IF (predictions_loop) %]
25
[% IF (predictions_loop) %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/subscription-add.tt (-1 / +2 lines)
Lines 379-385 Link Here
379
                                <select name="numbering_pattern" id="numberpattern" class="required" required="required">
379
                                <select name="numbering_pattern" id="numberpattern" class="required" required="required">
380
                                    <option value="">-- please choose --</option>
380
                                    <option value="">-- please choose --</option>
381
                                    [% FOREACH numberpattern IN numberpatterns %]
381
                                    [% FOREACH numberpattern IN numberpatterns %]
382
                                        <option value="[% numberpattern.id | html %]" [% IF numberpattern.selected %]selected="selected"[% END %]> [% numberpattern.label | html %] </option>
382
                                        <option value="[% numberpattern.id | html %]" [% IF numberpattern.selected %]selected="selected"[% END %]> </option>
383
                                    [% END %]
383
                                    [% END %]
384
                                </select>
384
                                </select>
385
                                <span class="required">Required</span>
385
                                <span class="required">Required</span>
Lines 602-607 Link Here
602
        [%- END -%]
602
        [%- END -%]
603
        var BOOKSELLER_IDS = [% To.json( bookseller_ids ) || '[]' | html %];
603
        var BOOKSELLER_IDS = [% To.json( bookseller_ids ) || '[]' | html %];
604
    </script>
604
    </script>
605
    [% Asset.js("js/subscription.js") | $raw %]
605
    [% Asset.js("js/subscription-add.js") | $raw %]
606
    [% Asset.js("js/subscription-add.js") | $raw %]
606
    [% Asset.js("js/showpredictionpattern.js") | $raw %]
607
    [% Asset.js("js/showpredictionpattern.js") | $raw %]
607
    [% Asset.js("js/additional-fields-entry.js") | $raw %]
608
    [% Asset.js("js/additional-fields-entry.js") | $raw %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/subscription-renew.tt (-2 / +43 lines)
Lines 2-7 Link Here
2
[% USE Koha %]
2
[% USE Koha %]
3
[% USE Branches %]
3
[% USE Branches %]
4
[% PROCESS 'i18n.inc' %]
4
[% PROCESS 'i18n.inc' %]
5
[% USE Asset %]
5
[% SET footerjs = 1 %]
6
[% SET footerjs = 1 %]
6
[% INCLUDE 'doc-head-open.inc' %]
7
[% INCLUDE 'doc-head-open.inc' %]
7
<title
8
<title
Lines 60-65 Link Here
60
            [% INCLUDE 'csrf-token.inc' %]
61
            [% INCLUDE 'csrf-token.inc' %]
61
            <input type="hidden" name="op" value="cud-renew" />
62
            <input type="hidden" name="op" value="cud-renew" />
62
            <input type="hidden" name="subscriptionid" value="[% subscription.subscriptionid | html %]" />
63
            <input type="hidden" name="subscriptionid" value="[% subscription.subscriptionid | html %]" />
64
            <input type="hidden" id="frequency" value="[% subscription.periodicity | html %]" />
65
            <input type="hidden" id="acqui_date" value="[% subscription.firstacquidate | html %]" />
66
            <input type="hidden" id="nextacquidate" value="[% nextacquidate | html %]" />
67
68
            <input type="hidden" id="to" value="[% enddate | html %]" />
69
            <input type="hidden" id="subtype" value="[% lengthtype | html %]" />
70
            <input type="hidden" id="sublength" value="[% sublength | html %]" />
71
            <input type="hidden" id="numberingmethod" value="[% numberpattern.numberingmethod | html %]" />
72
            <input type="hidden" id="lastvalue1" value="[% subscription.lastvalue1 | html %]" />
73
            <input type="hidden" id="lastvalue2" value="[% subscription.lastvalue2 | html %]" />
74
            <input type="hidden" id="lastvalue3" value="[% subscription.lastvalue3 | html %]" />
75
            <input type="hidden" id="add1" value="[% numberpattern.add1 | html %]" />
76
            <input type="hidden" id="add2" value="[% numberpattern.add2 | html %]" />
77
            <input type="hidden" id="add3" value="[% numberpattern.add3 | html %]" />
78
            <input type="hidden" id="every1" value="[% numberpattern.every1 | html %]" />
79
            <input type="hidden" id="every2" value="[% numberpattern.every2 | html %]" />
80
            <input type="hidden" id="every3" value="[% numberpattern.every3 | html %]" />
81
            <input type="hidden" id="innerloop1" value="[% subscription.innerloop1 | html %]" />
82
            <input type="hidden" id="innerloop2" value="[% subscription.innerloop2 | html %]" />
83
            <input type="hidden" id="innerloop3" value="[% subscription.innerloop3 | html %]" />
84
            <input type="hidden" id="setto1" value="[% numberpattern.setto1 | html %]" />
85
            <input type="hidden" id="setto2" value="[% numberpattern.setto2 | html %]" />
86
            <input type="hidden" id="setto3" value="[% numberpattern.setto3 | html %]" />
87
            <input type="hidden" id="numbering1" value="[% numberpattern.numbering1 | html %]" />
88
            <input type="hidden" id="numbering2" value="[% numberpattern.numbering2 | html %]" />
89
            <input type="hidden" id="numbering3" value="[% numberpattern.numbering3 | html %]" />
90
            <input type="hidden" id="whenmorethan1" value="[% numberpattern.whenmorethan1 | html %]" />
91
            <input type="hidden" id="whenmorethan2" value="[% numberpattern.whenmorethan2 | html %]" />
92
            <input type="hidden" id="whenmorethan3" value="[% numberpattern.whenmorethan3 | html %]" />
93
            <input type="hidden" id="locale" value="[% subscription.locale | html %]" />
63
            <fieldset class="rows"
94
            <fieldset class="rows"
64
                ><legend>Subscription renewal for [% subscription.bibliotitle | html %]</legend>
95
                ><legend>Subscription renewal for [% subscription.bibliotitle | html %]</legend>
65
                <ol>
96
                <ol>
Lines 109-114 Link Here
109
                            <textarea name="note" id="note" rows="5" cols="50"></textarea>
140
                            <textarea name="note" id="note" rows="5" cols="50"></textarea>
110
                        </li>
141
                        </li>
111
                    [% END %]
142
                    [% END %]
143
144
                    <li id="displayexample"></li>
112
                </ol>
145
                </ol>
113
            </fieldset>
146
            </fieldset>
114
            <nav class="navbar navbar-default fixed-bottom">
147
            <nav class="navbar navbar-default fixed-bottom">
Lines 125-138 Link Here
125
    [% MACRO jsinclude BLOCK %]
158
    [% MACRO jsinclude BLOCK %]
126
        [% INCLUDE 'calendar.inc' %]
159
        [% INCLUDE 'calendar.inc' %]
127
        <script>
160
        <script>
128
            $(document).ready(function () {
161
            var subscriptionid = "[% subscription.subscriptionid %]";
129
                $(".close").on("click", function (e) {
162
            var irregularity = "[% subscription.irregularity %]";
163
            var more_than_one_serial = "[% more_than_one_serial %]";
164
            $(document).ready(function(){
165
                if (subscriptionid) {
166
                    testPredictionPattern();
167
                }
168
                $(".close").on("click", function(e){
130
                    e.preventDefault();
169
                    e.preventDefault();
131
                    window.opener.location.reload(false);
170
                    window.opener.location.reload(false);
132
                    self.close();
171
                    self.close();
133
                });
172
                });
134
            });
173
            });
135
        </script>
174
        </script>
175
        [% Asset.js("js/subscription.js") | $raw %]
176
        [% Asset.js("js/showpredictionpattern.js") | $raw %]
136
    [% END %]
177
    [% END %]
137
178
138
    [% INCLUDE 'intranet-bottom.inc' popup_window=1 %]
179
    [% INCLUDE 'intranet-bottom.inc' popup_window=1 %]
(-)a/koha-tmpl/intranet-tmpl/prog/js/showpredictionpattern.js (-1 / +20 lines)
Lines 8-16 function Check_boxes(dow) { Link Here
8
            $(this).prop("checked", false);
8
            $(this).prop("checked", false);
9
        });
9
        });
10
    }
10
    }
11
    return false;
12
}
13
function Check_permanent_irregularities() {
14
    nothing_checked = 1;
15
    $("input[name='irregularity']").each(function () {
16
        if ($(this).is(":checked")) {
17
            nothing_checked = 0;
18
        }
19
    });
20
21
    // No day/month/week are checked, could be after a renewal.
22
    // So check them according to permanent irregularity
23
    if (nothing_checked) {
24
        $(".skip").each(function () {
25
            if ($(this).is(":checked")) {
26
                Check_boxes($(this).data("dow"));
27
            }
28
        });
29
    }
11
}
30
}
12
$(document).ready(function () {
31
$(document).ready(function () {
13
    $("#displayexample").on("change", ".skipday", function () {
32
    $("#displayexample").on("change", ".skip", function () {
14
        Check_boxes($(this).data("dow"));
33
        Check_boxes($(this).data("dow"));
15
    });
34
    });
16
});
35
});
(-)a/koha-tmpl/intranet-tmpl/prog/js/subscription-add.js (-1 / +1 lines)
Lines 699-705 function showPredictionPatternTest(data) { Link Here
699
    $("#page_2 > div").attr("class", "col-sm-6");
699
    $("#page_2 > div").attr("class", "col-sm-6");
700
}
700
}
701
701
702
function hidePredcitionPatternTest() {
702
function hidePredictionPatternTest() {
703
    $("#displayexample").hide();
703
    $("#displayexample").hide();
704
    $("#page_2 > div").attr(
704
    $("#page_2 > div").attr(
705
        "class",
705
        "class",
(-)a/koha-tmpl/intranet-tmpl/prog/js/subscription.js (+99 lines)
Line 0 Link Here
1
var advancedpatternlocked;
2
3
function testPredictionPattern() {
4
    var frequencyid = $("#frequency").val();
5
    var acquidate;
6
    var error = 0;
7
    var error_msg = "";
8
    if (frequencyid == undefined || frequencyid == "") {
9
        error_msg += "- " + MSG_FREQUENCY_UNDEFINED + "\n";
10
        error++;
11
    }
12
    acquidate = $("#acqui_date").val();
13
    if (acquidate == undefined || acquidate == "") {
14
        error_msg += "-" + MSG_PUB_DATE_UNDEFINED + "\n";
15
        error++;
16
    }
17
    if (more_than_one_serial !== "") {
18
        var nextacquidate = $("#nextacquidate").val();
19
        if (nextacquidate == undefined || nextacquidate == "") {
20
            error_msg += "-" + MSG_NEXT_ISSUE_UNDEFINED + "\n";
21
            error++;
22
        }
23
    }
24
25
    if (error) {
26
        alert(MSG_PATTERN_TEST_FAILED.format(error_msg));
27
        return false;
28
    }
29
30
    var custompattern = 0;
31
    if (advancedpatternlocked == 0) {
32
        custompattern = 1;
33
    }
34
35
    var ajaxData = {
36
        custompattern: custompattern,
37
        firstacquidate: acquidate,
38
    };
39
40
    if (subscriptionid !== "") {
41
        ajaxData.subscriptionid = subscriptionid;
42
    }
43
    if (more_than_one_serial !== "") {
44
        ajaxData.nextacquidate = nextacquidate;
45
    }
46
47
    var ajaxParams = [
48
        "to",
49
        "subtype",
50
        "sublength",
51
        "frequency",
52
        "numberingmethod",
53
        "lastvalue1",
54
        "lastvalue2",
55
        "lastvalue3",
56
        "add1",
57
        "add2",
58
        "add3",
59
        "every1",
60
        "every2",
61
        "every3",
62
        "innerloop1",
63
        "innerloop2",
64
        "innerloop3",
65
        "setto1",
66
        "setto2",
67
        "setto3",
68
        "numbering1",
69
        "numbering2",
70
        "numbering3",
71
        "whenmorethan1",
72
        "whenmorethan2",
73
        "whenmorethan3",
74
        "locale",
75
        "sfdescription",
76
        "unitsperissue",
77
        "issuesperunit",
78
        "unit",
79
    ];
80
    for (i in ajaxParams) {
81
        var param = ajaxParams[i];
82
        var value = $("#" + param).val();
83
        if (value && value.length > 0) ajaxData[param] = value;
84
    }
85
86
    $.ajax({
87
        url: "/cgi-bin/koha/serials/showpredictionpattern.pl",
88
        data: ajaxData,
89
        success: function (data) {
90
            showPredictionPatternTest(data);
91
            patternneedtobetested = 0;
92
        },
93
    });
94
}
95
96
function showPredictionPatternTest(data) {
97
    $("#displayexample").html(data).show();
98
    $("#page_2 > div").attr("class", "col-xs-6");
99
}
(-)a/serials/showpredictionpattern.pl (-10 / +15 lines)
Lines 30-39 publication date, based on frequency and first publication date. Link Here
30
30
31
use Modern::Perl;
31
use Modern::Perl;
32
32
33
use CGI         qw ( -utf8 );
33
use CGI qw ( -utf8 );
34
use Date::Calc  qw( Add_Delta_Days Add_Delta_YM Day_of_Week Delta_Days );
34
use Date::Calc qw( Add_Delta_Days Add_Delta_YM Day_of_Week Delta_Days );
35
use C4::Auth    qw( get_template_and_user );
35
use C4::Auth qw( get_template_and_user );
36
use C4::Output  qw( output_html_with_http_headers );
36
use C4::Output qw( output_html_with_http_headers );
37
use C4::Serials qw( GetSubscription GetFictiveIssueNumber GetSeq GetSubscriptionIrregularities GetNextDate GetNextSeq );
37
use C4::Serials qw( GetSubscription GetFictiveIssueNumber GetSeq GetSubscriptionIrregularities GetNextDate GetNextSeq );
38
use C4::Serials::Frequency;
38
use C4::Serials::Frequency;
39
use Koha::DateUtils qw( dt_from_string );
39
use Koha::DateUtils qw( dt_from_string );
Lines 119-133 if ( defined $subscriptionid ) { Link Here
119
119
120
my @predictions_loop;
120
my @predictions_loop;
121
my ($calculated) = GetSeq( \%subscription, \%pattern );
121
my ($calculated) = GetSeq( \%subscription, \%pattern );
122
my $dow = issue_number( dt_from_string($date), $frequency->{unit} );
122
push @predictions_loop, {
123
push @predictions_loop, {
123
    number          => $calculated,
124
    number          => $calculated,
124
    publicationdate => $date,
125
    publicationdate => $date,
125
    issuenumber     => $issuenumber,
126
    issuenumber     => $issuenumber,
126
    dow             => Day_of_Week( split /-/, $date ),
127
    dow             => $dow,
127
};
128
};
128
my @irreg = ();
129
my @irreg           = ();
130
my @permanent_irreg = ();
129
if ( defined $subscriptionid ) {
131
if ( defined $subscriptionid ) {
130
    @irreg = C4::Serials::GetSubscriptionIrregularities($subscriptionid);
132
    my $subscription_o = Koha::Subscriptions->find($subscriptionid);
133
    @irreg           = $subscription_o->irregularities;
134
    @permanent_irreg = $subscription_o->permanent_irregularities;
131
    while ( @irreg && $issuenumber > $irreg[0] ) {
135
    while ( @irreg && $issuenumber > $irreg[0] ) {
132
        shift @irreg;
136
        shift @irreg;
133
    }
137
    }
Lines 146-152 while ( $i < 1000 ) { Link Here
146
    }
150
    }
147
    if ( defined $date ) {
151
    if ( defined $date ) {
148
        $line{'publicationdate'} = $date;
152
        $line{'publicationdate'} = $date;
149
        $line{'dow'}             = Day_of_Week( split /-/, $date );
153
        $line{dow}               = issue_number( dt_from_string($date), $frequency->{unit} );
150
    }
154
    }
151
155
152
    # Check if we don't have exceed end date
156
    # Check if we don't have exceed end date
Lines 193-200 $template->param( Link Here
193
197
194
if ( $frequency->{unit} and not $custompattern ) {
198
if ( $frequency->{unit} and not $custompattern ) {
195
    $template->param( ask_for_irregularities => 1 );
199
    $template->param( ask_for_irregularities => 1 );
196
    if ( $frequency->{unit} eq 'day' and $frequency->{unitsperissue} == 1 ) {
200
    if ( $frequency->{unit} =~ /^(day|month|week)$/ and $frequency->{unitsperissue} == 1 ) {
197
        $template->param( daily_options => 1 );
201
        $template->param( show_irregularity_options => $frequency->{unit} );
202
        $template->param( permanent_irreg           => \@permanent_irreg );
198
    }
203
    }
199
}
204
}
200
205
(-)a/serials/subscription-add.pl (-76 / +57 lines)
Lines 17-26 Link Here
17
17
18
use Modern::Perl;
18
use Modern::Perl;
19
19
20
use CGI        qw ( -utf8 );
20
use CGI qw ( -utf8 );
21
use Date::Calc qw( Add_Delta_Days Add_Delta_YM );
21
use Date::Calc qw( Add_Delta_Days Add_Delta_YM );
22
use C4::Koha   qw( GetAuthorisedValues );
22
use C4::Koha qw( GetAuthorisedValues );
23
use C4::Auth   qw( get_template_and_user );
23
use C4::Auth qw( get_template_and_user );
24
use C4::Output qw( output_and_exit output_html_with_http_headers );
24
use C4::Output qw( output_and_exit output_html_with_http_headers );
25
use C4::Context;
25
use C4::Context;
26
use C4::Serials
26
use C4::Serials
Lines 259-304 sub get_letter_loop { Link Here
259
    ];
259
    ];
260
}
260
}
261
261
262
sub _guess_enddate {
263
    my ( $startdate_iso, $frequencyid, $numberlength, $weeklength, $monthlength ) = @_;
264
    my ( $year, $month, $day );
265
    my $enddate;
266
    if ( $numberlength != 0 ) {
267
        my $frequency = GetSubscriptionFrequency($frequencyid);
268
        if ( $frequency->{'unit'} eq 'day' ) {
269
            ( $year, $month, $day ) = Add_Delta_Days(
270
                split( /-/, $startdate_iso ),
271
                $numberlength * $frequency->{'unitsperissue'} / $frequency->{'issuesperunit'}
272
            );
273
        } elsif ( $frequency->{'unit'} eq 'week' ) {
274
            ( $year, $month, $day ) = Add_Delta_Days(
275
                split( /-/, $startdate_iso ),
276
                $numberlength * 7 * $frequency->{'unitsperissue'} / $frequency->{'issuesperunit'}
277
            );
278
        } elsif ( $frequency->{'unit'} eq 'month' ) {
279
            ( $year, $month, $day ) = Add_Delta_YM(
280
                split( /-/, $startdate_iso ), 0,
281
                $numberlength * $frequency->{'unitsperissue'} / $frequency->{'issuesperunit'}
282
            );
283
        } elsif ( $frequency->{'unit'} eq 'year' ) {
284
            ( $year, $month, $day ) = Add_Delta_YM(
285
                split( /-/, $startdate_iso ),
286
                $numberlength * $frequency->{'unitsperissue'} / $frequency->{'issuesperunit'}, 0
287
            );
288
        }
289
    } elsif ( $weeklength != 0 ) {
290
        ( $year, $month, $day ) = Add_Delta_Days( split( /-/, $startdate_iso ), $weeklength * 7 );
291
    } elsif ( $monthlength != 0 ) {
292
        ( $year, $month, $day ) = Add_Delta_YM( split( /-/, $startdate_iso ), 0, $monthlength );
293
    }
294
    if ( defined $year ) {
295
        $enddate = sprintf( "%04d-%02d-%02d", $year, $month, $day );
296
    } else {
297
        undef $enddate;
298
    }
299
    return $enddate;
300
}
301
302
sub redirect_add_subscription {
262
sub redirect_add_subscription {
303
    my $periodicity = $query->param('frequency');
263
    my $periodicity = $query->param('frequency');
304
    if ( $periodicity eq 'mana' ) {
264
    if ( $periodicity eq 'mana' ) {
Lines 314-327 sub redirect_add_subscription { Link Here
314
    }
274
    }
315
    my $numberpattern = Koha::Subscription::Numberpatterns->new_or_existing( { $query->Vars } );
275
    my $numberpattern = Koha::Subscription::Numberpatterns->new_or_existing( { $query->Vars } );
316
276
317
    my $auser          = $query->param('user');
277
    my $auser                  = $query->param('user');
318
    my $branchcode     = $query->param('branchcode');
278
    my $branchcode             = $query->param('branchcode');
319
    my $aqbooksellerid = $query->param('aqbooksellerid');
279
    my $aqbooksellerid         = $query->param('aqbooksellerid');
320
    my $cost           = $query->param('cost');
280
    my $cost                   = $query->param('cost');
321
    my $aqbudgetid     = $query->param('aqbudgetid');
281
    my $aqbudgetid             = $query->param('aqbudgetid');
322
    my @irregularity   = $query->multi_param('irregularity');
282
    my @irregularity           = $query->multi_param('irregularity');
323
    my $locale         = $query->param('locale');
283
    my @permanent_irregularity = $query->multi_param('permanent_irregularity');
324
    my $graceperiod    = $query->param('graceperiod') || 0;
284
    my $locale                 = $query->param('locale');
285
    my $graceperiod            = $query->param('graceperiod') || 0;
325
286
326
    my $subtype   = $query->param('subtype');
287
    my $subtype   = $query->param('subtype');
327
    my $sublength = $query->param('sublength');
288
    my $sublength = $query->param('sublength');
Lines 362-382 sub redirect_add_subscription { Link Here
362
        output_pref( { str => scalar $query->param('firstacquidate'), dateonly => 1, dateformat => 'iso' } );
323
        output_pref( { str => scalar $query->param('firstacquidate'), dateonly => 1, dateformat => 'iso' } );
363
324
364
    if ( !defined $enddate || $enddate eq '' ) {
325
    if ( !defined $enddate || $enddate eq '' ) {
326
        my $subscription = Koha::Subscriptions->new(
327
            {
328
                startdate    => $startdate,
329
                periodicity  => $periodicity,
330
                weeklength   => $weeklength,
331
                monthlength  => $monthlength,
332
                numberlength => $numberlength
333
            }
334
        );
335
365
        if ( $subtype eq "issues" ) {
336
        if ( $subtype eq "issues" ) {
366
            $enddate = _guess_enddate( $firstacquidate, $periodicity, $numberlength, $weeklength, $monthlength );
337
            $subscription->startdate($firstacquidate);
367
        } else {
368
            $enddate = _guess_enddate( $startdate, $periodicity, $numberlength, $weeklength, $monthlength );
369
        }
338
        }
339
        $enddate = $subscription->guess_enddate;
370
    }
340
    }
371
    my $subscriptionid = NewSubscription(
341
    my $subscriptionid = NewSubscription(
372
        $auser,                     $branchcode,       $aqbooksellerid, $cost, $aqbudgetid, $biblionumber,
342
        $auser,                     $branchcode,  $aqbooksellerid, $cost, $aqbudgetid, $biblionumber,
373
        $startdate,                 $periodicity,      $numberlength,   $weeklength,
343
        $startdate,                 $periodicity, $numberlength,   $weeklength,
374
        $monthlength,               $lastvalue1,       $innerloop1,     $lastvalue2, $innerloop2,
344
        $monthlength,               $lastvalue1,  $innerloop1,     $lastvalue2, $innerloop2,
375
        $lastvalue3,                $innerloop3,       $status,         $notes, $letter, $firstacquidate,
345
        $lastvalue3,                $innerloop3,  $status,         $notes, $letter, $firstacquidate,
376
        join( ";", @irregularity ), $numberpattern,    $locale,         $callnumber,
346
        join( ";", @irregularity ), join( ';', @permanent_irregularity ), $numberpattern, $locale,
377
        $manualhistory,             $internalnotes,    $serialsadditems,
347
        $callnumber,                $manualhistory,                       $internalnotes, $serialsadditems,
378
        $staffdisplaycount,         $opacdisplaycount, $graceperiod, $location, $enddate,
348
        $staffdisplaycount,         $opacdisplaycount,                    $graceperiod,   $location, $enddate,
379
        $skip_serialseq,            $itemtype,         $previousitemtype, $mana_id, $ccode, $published_on_template
349
        $skip_serialseq,            $itemtype, $previousitemtype, $mana_id, $ccode, $published_on_template
380
    );
350
    );
381
    if (    ( C4::Context->preference('Mana') == 1 )
351
    if (    ( C4::Context->preference('Mana') == 1 )
382
        and ( grep { $_ eq "subscription" } split( /,/, C4::Context->preference('AutoShareWithMana') ) ) )
352
        and ( grep { $_ eq "subscription" } split( /,/, C4::Context->preference('AutoShareWithMana') ) ) )
Lines 397-405 sub redirect_add_subscription { Link Here
397
}
367
}
398
368
399
sub redirect_mod_subscription {
369
sub redirect_mod_subscription {
400
    my $subscriptionid = $query->param('subscriptionid');
370
    my $subscriptionid         = $query->param('subscriptionid');
401
    my @irregularity   = $query->multi_param('irregularity');
371
    my @irregularity           = $query->multi_param('irregularity');
402
    my $auser          = $query->param('user');
372
    my @permanent_irregularity = $query->multi_param('permanent_irregularity');
373
    my $auser                  = $query->param('user');
403
    my $librarian => scalar $query->param('librarian'),
374
    my $librarian => scalar $query->param('librarian'),
404
        my $branchcode = $query->param('branchcode');
375
        my $branchcode = $query->param('branchcode');
405
    my $cost           = $query->param('cost');
376
    my $cost           = $query->param('cost');
Lines 469-479 sub redirect_mod_subscription { Link Here
469
440
470
    # Guess end date
441
    # Guess end date
471
    if ( !defined $enddate || $enddate eq '' ) {
442
    if ( !defined $enddate || $enddate eq '' ) {
443
        my $subscription = Koha::Subscriptions->new(
444
            {
445
                startdate    => $startdate,
446
                periodicity  => $periodicity,
447
                weeklength   => $weeklength,
448
                monthlength  => $monthlength,
449
                numberlength => $numberlength
450
            }
451
        );
452
472
        if ( $subtype eq "issues" ) {
453
        if ( $subtype eq "issues" ) {
473
            $enddate = _guess_enddate( $nextacquidate, $periodicity, $numberlength, $weeklength, $monthlength );
454
            $subscription->startdate($nextacquidate);
474
        } else {
475
            $enddate = _guess_enddate( $startdate, $periodicity, $numberlength, $weeklength, $monthlength );
476
        }
455
        }
456
        $enddate = $subscription->guess_enddate;
477
    }
457
    }
478
458
479
    my $nextexpected = GetNextExpected($subscriptionid);
459
    my $nextexpected = GetNextExpected($subscriptionid);
Lines 487-500 sub redirect_mod_subscription { Link Here
487
    }
467
    }
488
468
489
    ModSubscription(
469
    ModSubscription(
490
        $auser,            $branchcode,     $aqbooksellerid, $cost, $aqbudgetid, $startdate,
470
        $auser,       $branchcode,     $aqbooksellerid, $cost, $aqbudgetid, $startdate,
491
        $periodicity,      $firstacquidate, join( ";", @irregularity ),
471
        $periodicity, $firstacquidate, join( ";", @irregularity ),
492
        $numberpattern,    $locale,         $numberlength,     $weeklength, $monthlength, $lastvalue1,
472
        join( ';', @permanent_irregularity ), $numberpattern, $locale,
493
        $innerloop1,       $lastvalue2,     $innerloop2,       $lastvalue3, $innerloop3,
473
        $numberlength,     $weeklength,    $monthlength,      $lastvalue1,
494
        $status,           $biblionumber,   $callnumber,       $notes,      $letter,
474
        $innerloop1,       $lastvalue2,    $innerloop2,       $lastvalue3, $innerloop3,
495
        $manualhistory,    $internalnotes,  $serialsadditems,  $staffdisplaycount,
475
        $status,           $biblionumber,  $callnumber,       $notes,      $letter,
496
        $opacdisplaycount, $graceperiod,    $location,         $enddate, $subscriptionid,
476
        $manualhistory,    $internalnotes, $serialsadditems,  $staffdisplaycount,
497
        $skip_serialseq,   $itemtype,       $previousitemtype, $mana_id, $ccode, $published_on_template
477
        $opacdisplaycount, $graceperiod,   $location,         $enddate, $subscriptionid,
478
        $skip_serialseq,   $itemtype,      $previousitemtype, $mana_id, $ccode, $published_on_template
498
    );
479
    );
499
480
500
    my @additional_fields =
481
    my @additional_fields =
(-)a/serials/subscription-renew.pl (-7 / +53 lines)
Lines 44-58 Id of the subscription this script has to renew Link Here
44
44
45
use Modern::Perl;
45
use Modern::Perl;
46
46
47
use CGI  qw ( -utf8 );
47
use CGI qw ( -utf8 );
48
use Carp qw( carp );
48
use Carp qw( carp );
49
use C4::Koha;
49
use C4::Koha;
50
use C4::Auth qw( get_template_and_user );
50
use C4::Auth qw( get_template_and_user );
51
use C4::Context;
51
use C4::Context;
52
use C4::Auth        qw( get_template_and_user );
52
use C4::Auth qw( get_template_and_user );
53
use C4::Output      qw( output_and_exit output_html_with_http_headers );
53
use C4::Output qw( output_and_exit output_html_with_http_headers );
54
use C4::Serials     qw( GetSubscription GetSubscriptionLength NewSubscription ReNewSubscription );
54
use C4::Serials qw( GetSubscription GetSubscriptionLength NewSubscription ReNewSubscription );
55
use C4::Serials::Frequency;
56
use C4::Serials::Numberpattern;
55
use Koha::DateUtils qw( dt_from_string output_pref );
57
use Koha::DateUtils qw( dt_from_string output_pref );
58
use Date::Calc qw(Today Day_of_Year Week_of_Year Add_Delta_Days Add_Delta_YM);
56
59
57
my $query = CGI->new;
60
my $query = CGI->new;
58
my $dbh   = C4::Context->dbh;
61
my $dbh   = C4::Context->dbh;
Lines 86-91 if ( $op eq "cud-renew" ) { Link Here
86
        print $query->redirect("/cgi-bin/koha/serials/subscription-detail.pl?subscriptionid=$subscriptionid");
89
        print $query->redirect("/cgi-bin/koha/serials/subscription-detail.pl?subscriptionid=$subscriptionid");
87
    }
90
    }
88
91
92
    my @permanent_irregularities = $query->param('permanent_irregularity');
93
    my @irregularities           = $query->param('irregularity');
89
    my $startdate = output_pref( { str => scalar $query->param('startdate'), dateonly => 1, dateformat => 'iso' } );
94
    my $startdate = output_pref( { str => scalar $query->param('startdate'), dateonly => 1, dateformat => 'iso' } );
90
    ( $numberlength, $weeklength, $monthlength ) = GetSubscriptionLength( $subtype, $sublength );
95
    ( $numberlength, $weeklength, $monthlength ) = GetSubscriptionLength( $subtype, $sublength );
91
    ReNewSubscription(
96
    ReNewSubscription(
Lines 115-120 if ( $op eq "cud-renew" ) { Link Here
115
                monthlength    => $subscription->{monthlength},
120
                monthlength    => $subscription->{monthlength},
116
            }
121
            }
117
        );
122
        );
123
124
        $subscription = Koha::Subscriptions->find($subscriptionid);
125
        my @irregularities = $subscription->guess_irregularities;
126
        $subscription->permanent_irregularity( join( ';', @permanent_irregularities ) );
127
        $subscription->irregularity( join( ';', @irregularities ) ) $subscription->store;
118
    }
128
    }
119
} elsif ( $op eq 'multi_renew' ) {
129
} elsif ( $op eq 'multi_renew' ) {
120
    my @subscriptions;
130
    my @subscriptions;
Lines 140-153 if ( $op eq "cud-renew" ) { Link Here
140
    my $newstartdate = output_pref( { str => $subscription->{enddate}, dateonly => 1 } )
150
    my $newstartdate = output_pref( { str => $subscription->{enddate}, dateonly => 1 } )
141
        or output_pref( { dt => dt_from_string, dateonly => 1 } );
151
        or output_pref( { dt => dt_from_string, dateonly => 1 } );
142
152
153
    my ($serials_number) = GetSerials($subscriptionid);
154
    if ( $serials_number > 1 ) {
155
        $template->param( more_than_one_serial => 1 );
156
    }
157
158
    my $subscription_o = Koha::Subscriptions->find( $subscription->{subscriptionid} );
159
    my $lengthtype     = $subscription_o->lengthtype;
160
    my $nextexpected   = GetNextExpected($subscriptionid);
161
    $subscription_o->update(
162
        {
163
            startdate    => $subscription->{enddate},
164
            periodicity  => $subscription->{periodicity},
165
            weeklength   => $subscription->{weeklength},
166
            monthlength  => $subscription->{monthlength},
167
            numberlength => $subscription->{numberlength}
168
        }
169
    );
170
    my $enddate = $subscription_o->guess_enddate;
171
172
    my $sub_length;
173
    foreach my $length_unit (qw(numberlength weeklength monthlength)) {
174
        if ( $subscription->{$length_unit} ) {
175
            $sub_length = $subscription->{$length_unit};
176
            last;
177
        }
178
    }
179
180
    my $numberpattern = GetSubscriptionNumberpattern( $subscription->{numberpattern} );
181
143
    $template->param(
182
    $template->param(
144
        startdate    => $newstartdate,
183
        startdate     => $newstartdate,
145
        subscription => $subscription,
184
        subscription  => $subscription,
185
        numberpattern => $numberpattern,
186
        startdate     => $newstartdate,
187
        nextacquidate => $nextexpected->{planneddate},
188
        enddate       => $enddate,
189
        lengthtype    => $lengthtype,
190
        sublength     => $sub_length,
146
    );
191
    );
147
}
192
}
148
193
149
$template->param(
194
$template->param(
150
    op => $op,
195
    op    => $op,
196
    popup => ( $mode eq 'popup' ),
151
);
197
);
152
198
153
output_html_with_http_headers $query, $cookie, $template->output;
199
output_html_with_http_headers $query, $cookie, $template->output;
(-)a/t/Serials/IssueNumber.t (+47 lines)
Line 0 Link Here
1
#!/usr/bin/perl
2
3
# This file is part of Koha.
4
#
5
# Koha is free software; you can redistribute it and/or modify it
6
# under the terms of the GNU General Public License as published by
7
# the Free Software Foundation; either version 3 of the License, or
8
# (at your option) any later version.
9
#
10
# Koha is distributed in the hope that it will be useful, but
11
# WITHOUT ANY WARRANTY; without even the implied warranty of
12
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
# GNU General Public License for more details.
14
#
15
# You should have received a copy of the GNU General Public License
16
# along with Koha; if not, see <http://www.gnu.org/licenses>.
17
18
use Modern::Perl;
19
20
use Test::More tests => 10;
21
use Test::Warn;
22
23
BEGIN {
24
    use_ok('C4::Serials');
25
}
26
27
my $dt = DateTime->new( year => 2017, month => 1, day => 1 );
28
29
eval { issue_number( '2017', 'day' ); };
30
is( ref($@), 'Koha::Exceptions::WrongParameter' );
31
is( $@,      'Date passed to issue_number is not a valid DateTime object' );
32
33
is( issue_number( $dt, 'day' ), 7, '2017-01-01 is the seventh day of week' );
34
35
is( issue_number( $dt, 'week' ), 52, '2017-01-01 is the week #52 of the year' );
36
37
is( issue_number( $dt, 'month' ), 1, '2017-01-01 is the first month of the year' );
38
39
$dt = DateTime->new( year => 2022, month => 9, day => 17 );
40
41
is( issue_number( $dt, 'day' ), 6, '2022-09-17 is the sixth day of week' );
42
43
is( issue_number( $dt, 'week' ), 37, '2022-09-17 is the week #37 of the year' );
44
45
is( issue_number( $dt, 'month' ), 9, '2022-09-17 is the ninth month of the year' );
46
47
is( issue_number( $dt, 'foo' ), 0, 'issue_number return 0 for others issue type' );
(-)a/t/db_dependent/Koha/Subscription.t (-1 / +44 lines)
Lines 19-25 Link Here
19
19
20
use Modern::Perl;
20
use Modern::Perl;
21
21
22
use Test::More tests => 10;
22
use Test::More tests => 11;
23
23
24
use Koha::Database;
24
use Koha::Database;
25
use Koha::Subscription;
25
use Koha::Subscription;
Lines 125-130 subtest 'Koha::Subscription->frequency' => sub { Link Here
125
    );
125
    );
126
};
126
};
127
127
128
subtest 'Koha::Subscription::lengthtype' => sub {
129
    plan tests => 3;
130
131
    my $subs = $builder->build(
132
        {
133
            source => 'Subscription',
134
            value  => {
135
                numberlength => 7,
136
                weeklength   => 0,
137
                monthlength  => 0,
138
            }
139
        }
140
    );
141
    my $subscription = Koha::Subscriptions->find( $subs->{subscriptionid} );
142
    is( $subscription->lengthtype, 'issues', 'Subscription with numberlength has issues type' );
143
144
    my $subs2 = $builder->build(
145
        {
146
            source => 'Subscription',
147
            value  => {
148
                numberlength => 0,
149
                weeklength   => 52,
150
                monthlength  => 0,
151
            }
152
        }
153
    );
154
    my $subscription2 = Koha::Subscriptions->find( $subs2->{subscriptionid} );
155
    is( $subscription2->lengthtype, 'weeks', 'Subscription with weeklength has weeks type' );
156
157
    my $subs3 = $builder->build(
158
        {
159
            source => 'Subscription',
160
            value  => {
161
                numberlength => 0,
162
                weeklength   => 0,
163
                monthlength  => 12,
164
            }
165
        }
166
    );
167
    my $subscription3 = Koha::Subscriptions->find( $subs3->{subscriptionid} );
168
    is( $subscription3->lengthtype, 'months', 'Subscription with monthlength has months type' );
169
};
170
128
my $nb_of_subs = Koha::Subscriptions->search->count;
171
my $nb_of_subs = Koha::Subscriptions->search->count;
129
my $biblio_1   = $builder->build_sample_biblio;
172
my $biblio_1   = $builder->build_sample_biblio;
130
my $bi_1       = $biblio_1->biblioitem;
173
my $bi_1       = $biblio_1->biblioitem;
(-)a/t/db_dependent/Koha/Subscription/GuessEnddate.t (+172 lines)
Line 0 Link Here
1
#!/usr/bin/perl
2
3
# This file is part of Koha
4
#
5
# Koha is free software; you can redistribute it and/or modify it
6
# under the terms of the GNU General Public License as published by
7
# the Free Software Foundation; either version 3 of the License, or
8
# (at your option) any later version.
9
#
10
# Koha is distributed in the hope that it will be useful, but
11
# WIT HOUT ANY WARRANTY; without even the implied warranty of
12
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
# GNU General Public License for more details.
14
#
15
# You should have received a copy of the GNU General Public License
16
# along with Koha; if not, see <http://www.gnu.org/licenses>.
17
18
use Modern::Perl;
19
20
use Test::More tests => 15;
21
use t::lib::TestBuilder;
22
23
use Koha::Database;
24
use Koha::Subscriptions;
25
26
BEGIN {
27
    use_ok('Koha::Subscriptions');
28
}
29
30
my $schema  = Koha::Database->new->schema;
31
my $builder = t::lib::TestBuilder->new;
32
33
$schema->storage->txn_begin;
34
35
my $frequency = $builder->build(
36
    {
37
        source => 'SubscriptionFrequency',
38
        value  => {
39
            unit          => 'day',
40
            unitsperissue => 1,
41
            issuesperunit => 1
42
        }
43
    }
44
);
45
46
my $subscription = $builder->build(
47
    {
48
        source => 'Subscription',
49
        value  => {
50
            startdate    => '2018-01-01',
51
            weeklength   => 0,
52
            monthlength  => 0,
53
            numberlength => 7,
54
            periodicity  => $frequency->{id},
55
        }
56
    }
57
);
58
59
$subscription = Koha::Subscriptions->find( $subscription->{subscriptionid} );
60
$frequency    = $schema->resultset('SubscriptionFrequency')->find( $frequency->{id} );
61
is( $subscription->guess_enddate, '2018-01-08' );
62
63
$frequency->update(
64
    {
65
        unit          => 'day',
66
        unitsperissue => 2,
67
        issuesperunit => 1
68
    }
69
);
70
is( $subscription->guess_enddate, '2018-01-15' );
71
72
$frequency->update(
73
    {
74
        unit          => 'day',
75
        unitsperissue => 1,
76
        issuesperunit => 2
77
    }
78
);
79
is( $subscription->guess_enddate, '2018-01-04' );
80
81
$frequency->update(
82
    {
83
        unit          => 'week',
84
        unitsperissue => 1,
85
        issuesperunit => 1
86
    }
87
);
88
is( $subscription->guess_enddate, '2018-02-19' );
89
90
$frequency->update(
91
    {
92
        unit          => 'week',
93
        unitsperissue => 2,
94
        issuesperunit => 1
95
    }
96
);
97
is( $subscription->guess_enddate, '2018-04-09' );
98
99
$frequency->update(
100
    {
101
        unit          => 'week',
102
        unitsperissue => 1,
103
        issuesperunit => 2
104
    }
105
);
106
is( $subscription->guess_enddate, '2018-01-25' );
107
108
$frequency->update(
109
    {
110
        unit          => 'month',
111
        unitsperissue => 1,
112
        issuesperunit => 1
113
    }
114
);
115
is( $subscription->guess_enddate, '2018-08-01' );
116
117
$frequency->update(
118
    {
119
        unit          => 'month',
120
        unitsperissue => 2,
121
        issuesperunit => 1
122
    }
123
);
124
is( $subscription->guess_enddate, '2019-03-01' );
125
126
$frequency->update(
127
    {
128
        unit          => 'month',
129
        unitsperissue => 1,
130
        issuesperunit => 2
131
    }
132
);
133
is( $subscription->guess_enddate, '2018-04-01' );
134
135
$frequency->update(
136
    {
137
        unit          => 'year',
138
        unitsperissue => 1,
139
        issuesperunit => 1
140
    }
141
);
142
is( $subscription->guess_enddate, '2025-01-01' );
143
144
$frequency->update(
145
    {
146
        unit          => 'year',
147
        unitsperissue => 2,
148
        issuesperunit => 1
149
    }
150
);
151
is( $subscription->guess_enddate, '2032-01-01' );
152
153
$frequency->update(
154
    {
155
        unit          => 'year',
156
        unitsperissue => 1,
157
        issuesperunit => 2
158
    }
159
);
160
is( $subscription->guess_enddate, '2021-01-01' );
161
162
$subscription->numberlength(0);
163
$subscription->weeklength(2);
164
$subscription->store;
165
is( $subscription->guess_enddate, '2018-01-15' );
166
167
$subscription->weeklength(0);
168
$subscription->monthlength(1);
169
$subscription->store;
170
is( $subscription->guess_enddate, '2018-02-01' );
171
172
$schema->storage->txn_rollback;
(-)a/t/db_dependent/Koha/Subscription/Irregularities.t (+195 lines)
Line 0 Link Here
1
#!/usr/bin/perl
2
3
# This file is part of Koha
4
#
5
# Koha is free software; you can redistribute it and/or modify it
6
# under the terms of the GNU General Public License as published by
7
# the Free Software Foundation; either version 3 of the License, or
8
# (at your option) any later version.
9
#
10
# Koha is distributed in the hope that it will be useful, but
11
# WIT HOUT ANY WARRANTY; without even the implied warranty of
12
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
# GNU General Public License for more details.
14
#
15
# You should have received a copy of the GNU General Public License
16
# along with Koha; if not, see <http://www.gnu.org/licenses>.
17
18
use Modern::Perl;
19
20
use Test::More tests => 2;
21
use t::lib::TestBuilder;
22
23
use C4::Serials;
24
25
use Koha::Database;
26
use Koha::Subscriptions;
27
28
BEGIN {
29
    use_ok('Koha::Subscriptions');
30
}
31
32
my $schema  = Koha::Database->new->schema;
33
my $builder = t::lib::TestBuilder->new;
34
35
$schema->storage->txn_begin;
36
37
my $biblio = $builder->build(
38
    {
39
        source => 'Biblio',
40
    }
41
);
42
43
my $frequency = $builder->build(
44
    {
45
        source => 'SubscriptionFrequency',
46
        value  => {
47
            unit          => 'day',
48
            unitsperissue => 1,
49
            issuesperunit => 1
50
        }
51
    }
52
);
53
54
my $number_pattern = $builder->build(
55
    {
56
        source => 'SubscriptionNumberpattern',
57
        value  => {
58
            numberingmethod => 'No.{X}',
59
            add1            => 1,
60
            every1          => 1,
61
            whenmorethan1   => 99999,
62
            setto1          => 1
63
        }
64
    }
65
);
66
67
my $subscription = $builder->build(
68
    {
69
        source => 'Subscription',
70
        value  => {
71
            biblionumber           => $biblio->{biblionumber},
72
            startdate              => '2018-05-07',
73
            weeklength             => 0,
74
            monthlength            => 0,
75
            numberlength           => 7,
76
            periodicity            => $frequency->{id},
77
            countissuesperunit     => 1,
78
            status                 => 1,
79
            lastvalue1             => 5,
80
            lastvalue2             => 0,
81
            innerloop1             => 0,
82
            innerloop2             => 0,
83
            innerloop3             => 0,
84
            lastvalue3             => 0,
85
            firstacquidate         => '2018-05-07',
86
            irregularity           => '3;4',
87
            permanent_irregularity => '3;4',
88
            numberpattern          => 7,
89
            enddate                => '2018-05-13',
90
            closed                 => 0
91
        }
92
    }
93
);
94
95
$builder->build(
96
    {
97
        source => 'Serial',
98
        value  => {
99
            biblionumber   => $biblio->{biblionumber},
100
            subscriptionid => $subscription->{subscriptionid},
101
            serialseq      => 'No.1',
102
            serialseq_x    => 1,
103
            status         => 2,
104
            planneddate    => '2018-05-07',
105
            publisheddate  => '2018-05-07',
106
        }
107
    }
108
);
109
110
$builder->build(
111
    {
112
        source => 'Serial',
113
        value  => {
114
            biblionumber   => $biblio->{biblionumber},
115
            subscriptionid => $subscription->{subscriptionid},
116
            serialseq      => 'No.2',
117
            serialseq_x    => 2,
118
            status         => 2,
119
            planneddate    => '2018-05-08',
120
            publisheddate  => '2018-05-08',
121
        }
122
    }
123
);
124
125
$builder->build(
126
    {
127
        source => 'Serial',
128
        value  => {
129
            biblionumber   => $biblio->{biblionumber},
130
            subscriptionid => $subscription->{subscriptionid},
131
            serialseq      => 'No.3',
132
            serialseq_x    => 3,
133
            status         => 2,
134
            planneddate    => '2018-05-11',
135
            publisheddate  => '2018-05-11',
136
        }
137
    }
138
);
139
140
$builder->build(
141
    {
142
        source => 'Serial',
143
        value  => {
144
            biblionumber   => $biblio->{biblionumber},
145
            subscriptionid => $subscription->{subscriptionid},
146
            serialseq      => 'No.4',
147
            serialseq_x    => 4,
148
            status         => 2,
149
            planneddate    => '2018-05-12',
150
            publisheddate  => '2018-05-12',
151
        }
152
    }
153
);
154
155
$builder->build(
156
    {
157
        source => 'Serial',
158
        value  => {
159
            biblionumber   => $biblio->{biblionumber},
160
            subscriptionid => $subscription->{subscriptionid},
161
            serialseq      => 'No.5',
162
            serialseq_x    => 5,
163
            status         => 2,
164
            planneddate    => '2018-05-13',
165
            publisheddate  => '2018-05-13',
166
        }
167
    }
168
);
169
170
$builder->build(
171
    {
172
        source => 'Serial',
173
        value  => {
174
            biblionumber   => $biblio->{biblionumber},
175
            subscriptionid => $subscription->{subscriptionid},
176
            serialseq      => 'No.6',
177
            serialseq_x    => 6,
178
            status         => 1,
179
            planneddate    => '2018-05-14',
180
            publisheddate  => '2018-05-14',
181
        }
182
    }
183
);
184
185
ReNewSubscription(
186
    $subscription->{subscriptionid}, undef,
187
    $subscription->{enddate},        $subscription->{numberlength},
188
    $subscription->{weeklength},     $subscription->{monthlength},
189
);
190
191
my $s              = Koha::Subscriptions->find( $subscription->{subscriptionid} );
192
my $irregularities = join( ';', $s->guess_irregularities );
193
is( $irregularities, '10;11', 'Irregularities have been updated' );
194
195
$schema->storage->txn_rollback;
(-)a/t/db_dependent/Serials/SubscriptionIrregularity.t (-1 / +37 lines)
Line 0 Link Here
0
- 
1
#!/usr/bin/perl
2
3
use Modern::Perl;
4
5
use t::lib::TestBuilder;
6
use Test::More tests => 6;
7
8
use Koha::Database;
9
10
use_ok('Koha::Subscription');
11
12
my $schema = Koha::Database->new->schema;
13
$schema->storage->txn_begin;
14
15
my $builder = t::lib::TestBuilder->new();
16
17
my $subscription = $builder->build(
18
    {
19
        source => 'Subscription',
20
        value  => {
21
            irregularity           => '2;4;7',
22
            permanent_irregularity => '1;2'
23
        },
24
    }
25
);
26
27
my $subscription_o = Koha::Subscriptions->find( $subscription->{subscriptionid} );
28
my @irreg          = $subscription_o->irregularities;
29
is( $irreg[0], 2, 'First element of irregularities is 2' );
30
is( $irreg[1], 4, 'Second element of irregularities is 4' );
31
is( $irreg[2], 7, 'Third element of irregularities is 7' );
32
33
my @permanent_irreg = $subscription_o->permanent_irregularities;
34
is( $permanent_irreg[0], 1, 'First element of permanent_irregularities is 1' );
35
is( $permanent_irreg[1], 2, 'Second element of permanent_irregularities is 2' );
36
37
$schema->storage->txn_rollback;

Return to bug 17656