Bug 35368: Add public to "Add a new checkout" in API documentation
[koha.git] / admin / edi_accounts.pl
1 #!/usr/bin/perl
2
3 # Copyright 2011,2014 Mark Gavillet & PTFS Europe Ltd
4 #
5 # This file is part of Koha.
6 #
7 # Koha is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
11 #
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
16 #
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>.
19
20 use Modern::Perl;
21
22 use CGI;
23
24 use C4::Auth qw( get_template_and_user );
25 use C4::Output qw( output_html_with_http_headers );
26 use Koha::Database;
27 use Koha::Encryption;
28 use Koha::Plugins;
29
30 our $input = CGI->new();
31 our $schema = Koha::Database->new()->schema();
32
33 our ( $template, $loggedinuser, $cookie ) = get_template_and_user(
34     {
35         template_name   => 'admin/edi_accounts.tt',
36         query           => $input,
37         type            => 'intranet',
38         flagsrequired   => { acquisition => 'edi_manage' },
39     }
40 );
41
42 my $crypt = Koha::Encryption->new;
43
44 my $op = $input->param('op');
45 $op ||= 'display';
46
47 if ( $op eq 'acct_form' ) {
48     show_account($crypt);
49     $template->param( acct_form => 1 );
50     my @vendors = $schema->resultset('Aqbookseller')->search(
51         undef,
52         {
53             columns => [ 'name', 'id' ],
54             order_by => { -asc => 'name' }
55         }
56     );
57     $template->param( vendors => \@vendors );
58
59     if ( C4::Context->config("enable_plugins") ) {
60         my @plugins = Koha::Plugins->new()->GetPlugins({
61             method => 'edifact',
62         });
63         $template->param( plugins => \@plugins );
64     }
65 }
66 elsif ( $op eq 'delete_confirm' ) {
67     show_account($crypt);
68     $template->param( delete_confirm => 1 );
69 }
70 else {
71     if ( $op eq 'save' ) {
72
73         # validate & display
74         my $id     = $input->param('id');
75         my $password = scalar $input->param('password');
76         $password = $crypt->encrypt_hex($password);
77         my $fields = {
78             description        => scalar $input->param('description'),
79             host               => scalar $input->param('host'),
80             username           => scalar $input->param('username'),
81             password           => $password,
82             vendor_id          => scalar $input->param('vendor_id'),
83             upload_directory   => scalar $input->param('upload_directory'),
84             download_directory => scalar $input->param('download_directory'),
85             san                => scalar $input->param('san'),
86             standard           => scalar $input->param('standard'),
87             transport          => scalar $input->param('transport'),
88             quotes_enabled     => $input->param('quotes_enabled') ? 1 : 0,
89             invoices_enabled   => $input->param('invoices_enabled') ? 1 : 0,
90             orders_enabled     => $input->param('orders_enabled') ? 1 : 0,
91             responses_enabled  => $input->param('responses_enabled') ? 1 : 0,
92             auto_orders        => $input->param('auto_orders') ? 1 : 0,
93             id_code_qualifier  => scalar $input->param('id_code_qualifier'),
94             plugin             => scalar $input->param('plugin'),
95         };
96
97         if ($id) {
98             $schema->resultset('VendorEdiAccount')->search(
99                 {
100                     id => $id,
101                 }
102             )->update_all($fields);
103         }
104         else {    # new record
105             $schema->resultset('VendorEdiAccount')->create($fields);
106         }
107     }
108     elsif ( $op eq 'delete_confirmed' ) {
109
110         $schema->resultset('VendorEdiAccount')
111           ->search( { id => scalar $input->param('id'), } )->delete_all;
112     }
113
114     # we do a default dispaly after deletes and saves
115     # as well as when thats all you want
116     $template->param( display => 1 );
117     my @ediaccounts = $schema->resultset('VendorEdiAccount')->search(
118         {},
119         {
120             join => 'vendor',
121         }
122     );
123     $template->param( ediaccounts => \@ediaccounts );
124 }
125
126 $template->param(
127     code_qualifiers => [
128         {
129             code        => '14',
130             description => 'EAN International',
131         },
132         {
133             code        => '31B',
134             description => 'US SAN Agency',
135         },
136         {
137             code        => '91',
138             description => 'Assigned by supplier',
139         },
140         {
141             code        => '92',
142             description => 'Assigned by buyer',
143         },
144     ],
145     standards => [ 'BIC', 'EUR' ]
146 );
147
148 output_html_with_http_headers( $input, $cookie, $template->output );
149
150 sub get_account {
151     my $id = shift;
152
153     my $account = $schema->resultset('VendorEdiAccount')->find($id);
154     if ($account) {
155         return $account;
156     }
157
158     # passing undef will default to add
159     return;
160 }
161
162 sub show_account {
163     my $crypt = shift;
164     my $acct_id = $input->param('id');
165     if ($acct_id) {
166         my $acct = $schema->resultset('VendorEdiAccount')->find($acct_id);
167         $acct->password( $crypt->decrypt_hex($acct->password) );
168         if ($acct) {
169             $template->param( account => $acct );
170         }
171     }
172     return;
173 }