Alex Buckley
0c6a2bd1ad
Not all EDI vendors accept Koha servers connecting on port 22, sometimes they require a different port to be used, so it would be helpful for librarians to be able to configure non-standard EDI SFTP ports themselves. Test plan: 1. Set EDIFACT syspref = 'Enable' and define a EDI account: Administration > Acquisition parameters > EDI accounts. 2. Create an EDI order: https://koha-community.org/manual/latest/en/html/acquisitions.html#ordering-via-edi 3. Confirm you can upload the EDI order and download the vendor invoice. 4. Apply patches, update database, and restart services. 5. Go to the EDI account you made in #1. 6. Confirm there are two new fields: Upload port and Download port, both have the value of 22. 7. Create a new EDI order. 8. Confirm you can upload the EDI order and download the vendor invoice. 9. Change the EDI account. Set the Download port = 10022. 10. Create a third EDI order. 11. Confirm you can upload the EDI order and download the vendor invoice. Sponsored-by: Waikato Institute of Technology, New Zealand Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de>
175 lines
5.4 KiB
Perl
Executable file
175 lines
5.4 KiB
Perl
Executable file
#!/usr/bin/perl
|
|
|
|
# Copyright 2011,2014 Mark Gavillet & PTFS Europe Ltd
|
|
#
|
|
# This file is part of Koha.
|
|
#
|
|
# Koha is free software; you can redistribute it and/or modify it
|
|
# under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# Koha is distributed in the hope that it will be useful, but
|
|
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with Koha; if not, see <http://www.gnu.org/licenses>.
|
|
|
|
use Modern::Perl;
|
|
|
|
use CGI;
|
|
|
|
use C4::Auth qw( get_template_and_user );
|
|
use C4::Output qw( output_html_with_http_headers );
|
|
use Koha::Database;
|
|
use Koha::Encryption;
|
|
use Koha::Plugins;
|
|
|
|
our $input = CGI->new();
|
|
our $schema = Koha::Database->new()->schema();
|
|
|
|
our ( $template, $loggedinuser, $cookie ) = get_template_and_user(
|
|
{
|
|
template_name => 'admin/edi_accounts.tt',
|
|
query => $input,
|
|
type => 'intranet',
|
|
flagsrequired => { acquisition => 'edi_manage' },
|
|
}
|
|
);
|
|
|
|
my $crypt = Koha::Encryption->new;
|
|
|
|
my $op = $input->param('op');
|
|
$op ||= 'display';
|
|
|
|
if ( $op eq 'acct_form' ) {
|
|
show_account($crypt);
|
|
$template->param( acct_form => 1 );
|
|
my @vendors = $schema->resultset('Aqbookseller')->search(
|
|
undef,
|
|
{
|
|
columns => [ 'name', 'id' ],
|
|
order_by => { -asc => 'name' }
|
|
}
|
|
);
|
|
$template->param( vendors => \@vendors );
|
|
|
|
if ( C4::Context->config("enable_plugins") ) {
|
|
my @plugins = Koha::Plugins->new()->GetPlugins({
|
|
method => 'edifact',
|
|
});
|
|
$template->param( plugins => \@plugins );
|
|
}
|
|
}
|
|
elsif ( $op eq 'cud-delete_confirm' ) {
|
|
show_account($crypt);
|
|
$template->param( delete_confirm => 1 );
|
|
}
|
|
else {
|
|
if ( $op eq 'cud-save' ) {
|
|
|
|
# validate & display
|
|
my $id = $input->param('id');
|
|
my $password = scalar $input->param('password');
|
|
$password = $crypt->encrypt_hex($password);
|
|
my $fields = {
|
|
description => scalar $input->param('description'),
|
|
host => scalar $input->param('host'),
|
|
username => scalar $input->param('username'),
|
|
password => $password,
|
|
upload_port => scalar $input->param('upload_port'),
|
|
download_port => scalar $input->param('download_port'),
|
|
vendor_id => scalar $input->param('vendor_id'),
|
|
upload_directory => scalar $input->param('upload_directory'),
|
|
download_directory => scalar $input->param('download_directory'),
|
|
san => scalar $input->param('san'),
|
|
standard => scalar $input->param('standard'),
|
|
transport => scalar $input->param('transport'),
|
|
quotes_enabled => $input->param('quotes_enabled') ? 1 : 0,
|
|
invoices_enabled => $input->param('invoices_enabled') ? 1 : 0,
|
|
orders_enabled => $input->param('orders_enabled') ? 1 : 0,
|
|
responses_enabled => $input->param('responses_enabled') ? 1 : 0,
|
|
auto_orders => $input->param('auto_orders') ? 1 : 0,
|
|
id_code_qualifier => scalar $input->param('id_code_qualifier'),
|
|
plugin => scalar $input->param('plugin'),
|
|
};
|
|
|
|
if ($id) {
|
|
$schema->resultset('VendorEdiAccount')->search(
|
|
{
|
|
id => $id,
|
|
}
|
|
)->update_all($fields);
|
|
}
|
|
else { # new record
|
|
$schema->resultset('VendorEdiAccount')->create($fields);
|
|
}
|
|
}
|
|
elsif ( $op eq 'cud-delete_confirmed' ) {
|
|
|
|
$schema->resultset('VendorEdiAccount')
|
|
->search( { id => scalar $input->param('id'), } )->delete_all;
|
|
}
|
|
|
|
# we do a default dispaly after deletes and saves
|
|
# as well as when thats all you want
|
|
$template->param( display => 1 );
|
|
my @ediaccounts = $schema->resultset('VendorEdiAccount')->search(
|
|
{},
|
|
{
|
|
join => 'vendor',
|
|
}
|
|
);
|
|
$template->param( ediaccounts => \@ediaccounts );
|
|
}
|
|
|
|
$template->param(
|
|
code_qualifiers => [
|
|
{
|
|
code => '14',
|
|
description => 'EAN International',
|
|
},
|
|
{
|
|
code => '31B',
|
|
description => 'US SAN Agency',
|
|
},
|
|
{
|
|
code => '91',
|
|
description => 'Assigned by supplier',
|
|
},
|
|
{
|
|
code => '92',
|
|
description => 'Assigned by buyer',
|
|
},
|
|
],
|
|
standards => [ 'BIC', 'EUR' ]
|
|
);
|
|
|
|
output_html_with_http_headers( $input, $cookie, $template->output );
|
|
|
|
sub get_account {
|
|
my $id = shift;
|
|
|
|
my $account = $schema->resultset('VendorEdiAccount')->find($id);
|
|
if ($account) {
|
|
return $account;
|
|
}
|
|
|
|
# passing undef will default to add
|
|
return;
|
|
}
|
|
|
|
sub show_account {
|
|
my $crypt = shift;
|
|
my $acct_id = $input->param('id');
|
|
if ($acct_id) {
|
|
my $acct = $schema->resultset('VendorEdiAccount')->find($acct_id);
|
|
$acct->password( $crypt->decrypt_hex($acct->password) );
|
|
if ($acct) {
|
|
$template->param( account => $acct );
|
|
}
|
|
}
|
|
return;
|
|
}
|