Lines 17-24
Link Here
|
17 |
# You should have received a copy of the GNU General Public License |
17 |
# You should have received a copy of the GNU General Public License |
18 |
# along with Koha; if not, see <http://www.gnu.org/licenses>. |
18 |
# along with Koha; if not, see <http://www.gnu.org/licenses>. |
19 |
|
19 |
|
20 |
use strict; |
20 |
use Modern::Perl; |
21 |
use warnings; |
|
|
22 |
use CGI qw ( -utf8 ); |
21 |
use CGI qw ( -utf8 ); |
23 |
use C4::Auth; |
22 |
use C4::Auth; |
24 |
use C4::Serials; |
23 |
use C4::Serials; |
Lines 29-35
use C4::Letters;
Link Here
|
29 |
use C4::Branch; # GetBranches GetBranchesLoop |
28 |
use C4::Branch; # GetBranches GetBranchesLoop |
30 |
use C4::Koha qw( GetAuthorisedValues ); |
29 |
use C4::Koha qw( GetAuthorisedValues ); |
31 |
use Koha::AdditionalField; |
30 |
use Koha::AdditionalField; |
32 |
use C4::Csv qw( GetCsvProfiles ); |
31 |
use Koha::CsvProfiles; |
|
|
32 |
use C4::Csv; |
33 |
|
33 |
|
34 |
my $input = CGI->new; |
34 |
my $input = CGI->new; |
35 |
|
35 |
|
Lines 107-113
$template->param(
Link Here
|
107 |
claimletter => $claimletter, |
107 |
claimletter => $claimletter, |
108 |
branchloop => $branchloop, |
108 |
branchloop => $branchloop, |
109 |
additional_fields_for_subscription => $additional_fields, |
109 |
additional_fields_for_subscription => $additional_fields, |
110 |
csv_profiles => C4::Csv::GetCsvProfiles( "sql" ), |
110 |
csv_profiles => [ Koha::CsvProfiles->search({ type => 'sql' }) ], |
111 |
letters => $letters, |
111 |
letters => $letters, |
112 |
(uc(C4::Context->preference("marcflavour"))) => 1 |
112 |
(uc(C4::Context->preference("marcflavour"))) => 1 |
113 |
); |
113 |
); |