Bugzilla – Attachment 83229 Details for
Bug 21002
Add Koha::Account::add_debit
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 21002: Add ->add_debit method to Koha::Account
Bug-21002-Add--adddebit-method-to-KohaAccount.patch (text/plain), 6.41 KB, created by
Martin Renvoize (ashimema)
on 2018-12-14 16:19:44 UTC
(
hide
)
Description:
Bug 21002: Add ->add_debit method to Koha::Account
Filename:
MIME Type:
Creator:
Martin Renvoize (ashimema)
Created:
2018-12-14 16:19:44 UTC
Size:
6.41 KB
patch
obsolete
>From 5b769ef59a2316bdba1f2b27e6ff1c6d69c63855 Mon Sep 17 00:00:00 2001 >From: Martin Renvoize <martin.renvoize@ptfs-europe.com> >Date: Wed, 12 Dec 2018 08:54:01 +0000 >Subject: [PATCH] Bug 21002: Add ->add_debit method to Koha::Account > >Sponsored-by: PTFS Europe > >Signed-off-by: Josef Moravec <josef.moravec@gmail.com> >--- > Koha/Account.pm | 160 ++++++++++++++++++++++++++++++++++++++++++++++-- > 1 file changed, 155 insertions(+), 5 deletions(-) > >diff --git a/Koha/Account.pm b/Koha/Account.pm >index 2abe9623ea..6f0b6e20a2 100644 >--- a/Koha/Account.pm >+++ b/Koha/Account.pm >@@ -32,6 +32,7 @@ use Koha::Patrons; > use Koha::Account::Lines; > use Koha::Account::Offsets; > use Koha::DateUtils qw( dt_from_string ); >+use Koha::Exceptions::Account; > > =head1 NAME > >@@ -333,7 +334,7 @@ sub add_credit { > > my $schema = Koha::Database->new->schema; > >- my $account_type = $Koha::Account::account_type->{$type}; >+ my $account_type = $Koha::Account::account_type_credit->{$type}; > $account_type .= $sip > if defined $sip && > $type eq 'payment'; >@@ -409,6 +410,128 @@ sub add_credit { > return $line; > } > >+=head3 add_debit >+ >+This method allows adding debits to a patron's account >+ >+my $debit_line = Koha::Account->new({ patron_id => $patron_id })->add_debit( >+ { >+ amount => $amount, >+ description => $description, >+ note => $note, >+ user_id => $user_id, >+ library_id => $library_id, >+ type => $debit_type, >+ item_id => $item_id, >+ issue_id => $issue_id >+ } >+); >+ >+$debit_type can be any of: >+ - fine >+ - lost_item >+ - new_card >+ - account >+ - sundry >+ - processing >+ - rent >+ - reserve >+ - overdue >+ - manual >+ >+=cut >+ >+sub add_debit { >+ >+ my ( $self, $params ) = @_; >+ >+ # amount should always be a positive value >+ my $amount = $params->{amount}; >+ >+ unless ( $amount > 0 ) { >+ Koha::Exceptions::Account::AmountNotPositive->throw( >+ error => 'Debit amount passed is not positive' >+ ); >+ } >+ >+ my $description = $params->{description} // q{}; >+ my $note = $params->{note} // q{}; >+ my $user_id = $params->{user_id}; >+ my $library_id = $params->{library_id}; >+ my $type = $params->{type}; >+ my $item_id = $params->{item_id}; >+ my $issue_id = $params->{issue_id}; >+ >+ my $schema = Koha::Database->new->schema; >+ >+ unless ( exists($Koha::Account::account_type_debit->{$type}) ) { >+ Koha::Exceptions::Account::UnrecognisedType->throw( >+ error => 'Type of debit not recognised' >+ ); >+ } >+ >+ my $account_type = $Koha::Account::account_type_debit->{$type}; >+ >+ my $line; >+ >+ $schema->txn_do( >+ sub { >+ # We should remove accountno, it is no longer needed >+ my $last = Koha::Account::Lines->search( { borrowernumber => $self->{patron_id} }, >+ { order_by => 'accountno' } )->next(); >+ my $accountno = $last ? $last->accountno + 1 : 1; >+ >+ # Insert the account line >+ $line = Koha::Account::Line->new( >+ { borrowernumber => $self->{patron_id}, >+ date => \'NOW()', >+ amount => $amount, >+ description => $description, >+ accounttype => $account_type, >+ amountoutstanding => $amount, >+ payment_type => undef, >+ note => $note, >+ manager_id => $user_id, >+ itemnumber => $item_id, >+ issue_id => $issue_id, >+ branchcode => $library_id, >+ ( $type eq 'fine' ? ( lastincrement => $amount ) : ()), >+ } >+ )->store(); >+ >+ # Record the account offset >+ my $account_offset = Koha::Account::Offset->new( >+ { debit_id => $line->id, >+ type => $Koha::Account::offset_type->{$type}, >+ amount => $amount >+ } >+ )->store(); >+ >+ if ( C4::Context->preference("FinesLog") ) { >+ logaction( >+ "FINES", 'CREATE', >+ $self->{patron_id}, >+ Dumper( >+ { action => "create_$type", >+ borrowernumber => $self->{patron_id}, >+ accountno => $accountno, >+ amount => $amount, >+ description => $description, >+ amountoutstanding => $amount, >+ accounttype => $account_type, >+ note => $note, >+ itemnumber => $item_id, >+ manager_id => $user_id, >+ } >+ ) >+ ); >+ } >+ } >+ ); >+ >+ return $line; >+} >+ > =head3 balance > > my $balance = $self->balance >@@ -562,14 +685,20 @@ our $offset_type = { > 'forgiven' => 'Writeoff', > 'lost_item_return' => 'Lost Item', > 'payment' => 'Payment', >- 'writeoff' => 'Writeoff' >+ 'writeoff' => 'Writeoff', >+ 'reserve' => 'Reserve Fee', >+ 'processing' => 'Processing Fee', >+ 'lost_item' => 'Lost Item', >+ 'rent' => 'Rental Fee', >+ 'fine' => 'Fine', >+ 'manual_debit' => 'Manual Debit', > }; > >-=head3 $account_type >+=head3 $account_type_credit > > =cut > >-our $account_type = { >+our $account_type_credit = { > 'credit' => 'C', > 'forgiven' => 'FOR', > 'lost_item_return' => 'CR', >@@ -577,8 +706,29 @@ our $account_type = { > 'writeoff' => 'W' > }; > >-=head1 AUTHOR >+=head3 $account_type_debit >+ >+=cut >+ >+our $account_type_debit = { >+ 'fine' => 'FU', >+ 'lost_item' => 'L', >+ 'new_card' => 'N', >+ 'account' => 'A', >+ 'sundry' => 'M', >+ 'processing' => 'PF', >+ 'rent' => 'Rent', >+ 'reserve' => 'Res', >+ 'overdue' => 'O', >+ 'manual_debit' => 'M', >+}; >+ >+=head1 AUTHORS >+ >+=encoding utf8 > > Kyle M Hall <kyle.m.hall@gmail.com> >+Tomás Cohen Arazi <tomascohen@gmail.com> >+Martin Renvoize <martin.renvoize@ptfs-europe.com> > > =cut >-- >2.19.2
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 21002
:
81614
|
81620
|
81880
|
82772
|
82773
|
82785
|
82786
|
83009
|
83010
|
83086
|
83087
|
83099
|
83100
|
83228
|
83229
|
83273
|
83274
|
83706
|
83707