Skip to content

Commit

Permalink
Add account creation
Browse files Browse the repository at this point in the history
  • Loading branch information
mblenk committed Jul 24, 2023
1 parent 4787034 commit 860ebaa
Show file tree
Hide file tree
Showing 4 changed files with 492 additions and 0 deletions.
63 changes: 63 additions & 0 deletions Koha/MarcOrderAccount.pm
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
package Koha::MarcOrderAccount;

# 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 Koha::Database;

use base qw(Koha::Object);

=head1 NAME
Koha::MarcOrderAccount - Koha Marc Ordering Account Object class
=head1 API
=head2 Class Methods
=cut

=head3 vendor
=cut

sub vendor {
my ( $self ) = @_;
my $vendor_rs = $self->_result->vendor;
return unless $vendor_rs;
return Koha::Acquisition::Bookseller->_new_from_dbic($vendor_rs);
}

=head3 budget
=cut

sub budget {
my ( $self ) = @_;
my $budget_rs = $self->_result->budget;
return Koha::Acquisition::Fund->_new_from_dbic( $budget_rs );
}

=head3 _type
=cut

sub _type {
return 'MarcOrderAccount';
}

1;
51 changes: 51 additions & 0 deletions Koha/MarcOrderAccounts.pm
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
package Koha::MarcOrderAccounts;

# 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 Koha::Database;
use Koha::MarcOrderAccount;

use base qw(Koha::Objects);

=head1 NAME
Koha::MarcOrderAccount - Koha Marc Ordering Account Object class
=head1 API
=head2 Class Methods
=cut

=head3 type
=cut

sub _type {
return 'MarcOrderAccount';
}

=head3 object_class
=cut

sub object_class {
return 'Koha::MarcOrderAccount';
}

1;
132 changes: 132 additions & 0 deletions admin/marc_order_accounts.pl
Original file line number Diff line number Diff line change
@@ -0,0 +1,132 @@
#!/usr/bin/perl

# A script that allows the user to create an account and profile for auto-creating orders from imported marc files
# The script displays account details and allows account creation/editing in the first instance
# If the "run" operation is passed then the script will run the process of creating orders

# Copyright 2023 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 qw ( -utf8 );

use C4::Context;
use C4::Auth qw( get_template_and_user );
use C4::Budgets qw( GetBudgets );
use C4::Output qw( output_html_with_http_headers );
use C4::Matcher;

use Koha::UploadedFiles;
use Koha::ImportBatchProfiles;
use Koha::MarcOrder;
use Koha::Acquisition::Booksellers;
use Koha::MarcOrderAccount;
use Koha::MarcOrderAccounts;

my $input = CGI->new;

my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
{
template_name => "admin/marc_order_accounts.tt",
query => $input,
type => "intranet",
}
);

my $crypt = Koha::Encryption->new;

my $op = $input->param('op');
$op ||= 'display';

if( $op eq 'acct_form') {
$template->param( acct_form => 1 );
my @vendors = Koha::Acquisition::Booksellers->search(
undef,
{
columns => [ 'name', 'id' ],
order_by => { -asc => 'name' }
}
)->as_list;
my $budgets = GetBudgets();
$template->param(
vendors => \@vendors,
budgets => $budgets
);
my @matchers = C4::Matcher::GetMatcherList();
$template->param( available_matchers => \@matchers );

show_account($input, $template);
} elsif ( $op eq 'delete_acct' ) {
show_account($input, $template);
$template->param( delete_acct => 1);
} else {
if( $op eq 'save' ) {

my $fields = {
id => scalar $input->param('id'),
description => scalar $input->param('description'),
vendor_id => scalar $input->param('vendor_id'),
budget_id => scalar $input->param('budget_id'),
download_directory => scalar $input->param('download_directory'),
matcher_id => scalar $input->param('matcher'),
overlay_action => scalar $input->param('overlay_action'),
nomatch_action => scalar $input->param('nomatch_action'),
parse_items => scalar $input->param('parse_items'),
item_action => scalar $input->param('item_action'),
record_type => scalar $input->param('record_type'),
encoding => scalar $input->param('encoding') || 'UTF-8',
};

if(scalar $input->param('id')) {
# Update existing account
my $account = Koha::MarcOrderAccounts->find(scalar $input->param('id'));
$account->update($fields);
} else {
# Add new account
my $new_account = Koha::MarcOrderAccount->new($fields);
$new_account->store;
}
} elsif ($op eq 'delete_confirmed') {
my $acct_id = $input->param('id');
my $acct = Koha::MarcOrderAccounts->find($acct_id);
$acct->delete;
}

$template->param( display => 1 );
my @accounts = Koha::MarcOrderAccounts->search(
{},
{
join => ['vendor', 'budget']
}
)->as_list;
$template->param( accounts => \@accounts );

}

output_html_with_http_headers $input, $cookie, $template->output;

sub show_account {
my ($input, $template) = @_;
my $acct_id = $input->param('id');
if ($acct_id) {
my $acct = Koha::MarcOrderAccounts->find($acct_id);
if ($acct) {
$template->param( account => $acct );
}
}
return;
}
Loading

0 comments on commit 860ebaa

Please sign in to comment.