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

(-)a/Koha/StockRotationStage.pm (-3 / +9 lines)
Lines 333-339 sub investigate { Link Here
333
        $report->{branched}->{$stagebranchcode} = {
333
        $report->{branched}->{$stagebranchcode} = {
334
            code  => $stagebranchcode,
334
            code  => $stagebranchcode,
335
            name  => $stagebranch->branchname,
335
            name  => $stagebranch->branchname,
336
            email => $stagebranch->branchemail,
336
            email => $stagebranch->branchreplyto
337
              ? $stagebranch->branchreplyto
338
              : $stagebranch->branchemail,
337
            phone => $stagebranch->branchphone,
339
            phone => $stagebranch->branchphone,
338
            items => [],
340
            items => [],
339
            log => [],
341
            log => [],
Lines 355-361 sub investigate { Link Here
355
            $report->{branched}->{$branchcode} = {
357
            $report->{branched}->{$branchcode} = {
356
                code  => $branchcode,
358
                code  => $branchcode,
357
                name  => $branch->branchname,
359
                name  => $branch->branchname,
358
                email => $branch->branchemail,
360
                email => $stagebranch->branchreplyto
361
                  ? $stagebranch->branchreplyto
362
                  : $stagebranch->branchemail,
359
                phone => $branch->branchphone,
363
                phone => $branch->branchphone,
360
                items => [],
364
                items => [],
361
                log => [],
365
                log => [],
Lines 371-377 sub investigate { Link Here
371
            $report->{branched}->{$branchcode} = {
375
            $report->{branched}->{$branchcode} = {
372
                code  => $branchcode,
376
                code  => $branchcode,
373
                name  => $branch->branchname,
377
                name  => $branch->branchname,
374
                email => $branch->branchemail,
378
                email => $stagebranch->branchreplyto
379
                  ? $stagebranch->branchreplyto
380
                  : $stagebranch->branchemail,
375
                phone => $branch->branchphone,
381
                phone => $branch->branchphone,
376
                items => [],
382
                items => [],
377
                log => [],
383
                log => [],
(-)a/misc/cronjobs/stockrotation.pl (-1 / +1 lines)
Lines 110-115 database updates have been performed."). Link Here
110
use Modern::Perl;
110
use Modern::Perl;
111
use Getopt::Long qw/HelpMessage :config gnu_getopt/;
111
use Getopt::Long qw/HelpMessage :config gnu_getopt/;
112
use C4::Context;
112
use C4::Context;
113
use C4::Letters;
113
use Koha::StockRotationRotas;
114
use Koha::StockRotationRotas;
114
115
115
my $admin_email = '';
116
my $admin_email = '';
116
- 

Return to bug 11897