Bugzilla – Attachment 85733 Details for
Bug 19489
Detailed description of charges on Accounting tab
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 19489: Change method name issue --> checkout
Bug-19489-Change-method-name-issue----checkout.patch (text/plain), 8.58 KB, created by
Kyle M Hall (khall)
on 2019-02-26 19:12:41 UTC
(
hide
)
Description:
Bug 19489: Change method name issue --> checkout
Filename:
MIME Type:
Creator:
Kyle M Hall (khall)
Created:
2019-02-26 19:12:41 UTC
Size:
8.58 KB
patch
obsolete
>From fe183156b507490742e44217ea3b3ee193dc676e Mon Sep 17 00:00:00 2001 >From: =?UTF-8?q?Nazl=C4=B1=20=C3=87etin?= <nazli@devinim.com.tr> >Date: Tue, 19 Feb 2019 12:45:56 +0000 >Subject: [PATCH] Bug 19489: Change method name issue --> checkout > >Signed-off-by: Josef Moravec <josef.moravec@gmail.com> > >Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> >--- > Koha/Account/Line.pm | 12 ++++++------ > .../prog/en/modules/members/accountline-details.tt | 4 ++-- > .../prog/en/modules/members/boraccount.tt | 4 ++-- > .../intranet-tmpl/prog/en/modules/members/pay.tt | 4 ++-- > .../prog/en/modules/members/printinvoice.tt | 4 ++-- > members/printinvoice.pl | 2 +- > t/db_dependent/Koha/Account/Lines.t | 14 +++++++------- > 7 files changed, 22 insertions(+), 22 deletions(-) > >diff --git a/Koha/Account/Line.pm b/Koha/Account/Line.pm >index cf7e59593a..e5b8d6cf02 100644 >--- a/Koha/Account/Line.pm >+++ b/Koha/Account/Line.pm >@@ -54,19 +54,19 @@ sub item { > return Koha::Item->_new_from_dbic( $rs ); > } > >-=head3 issue >+=head3 checkout > >-Return the item linked to this account line if exists >+Return the checkout linked to this account line if exists > > =cut > >-sub issue { >+sub checkout { > my ( $self ) = @_; > return unless $self->issue_id ; > >- my $issue = Koha::Checkouts->find( $self->issue_id ); >- $issue = Koha::Old::Checkouts->find( $self->issue_id ) unless $issue; >- return $issue; >+ my $checkout = Koha::Checkouts->find( $self->issue_id ); >+ $checkout = Koha::Old::Checkouts->find( $self->issue_id ) unless $checkout; >+ return $checkout; > } > > =head3 void >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/members/accountline-details.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/members/accountline-details.tt >index b777370169..c98dbb8ca0 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/accountline-details.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/accountline-details.tt >@@ -80,13 +80,13 @@ > > <td> > [% IF ( accountline.issue_id ) %] >- [% accountline.issue.date_due | $KohaDates as_due_date => 1 %] >+ [% accountline.checkout.date_due | $KohaDates as_due_date => 1 %] > [% END %] > </td> > > <td> > [% IF ( accountline.issue_id ) %] >- [% accountline.issue.returndate | $KohaDates with_hours => 1 %] >+ [% accountline.checkout.returndate | $KohaDates with_hours => 1 %] > [% END %] > </td> > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/members/boraccount.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/members/boraccount.tt >index 8da829335c..22b796e8e7 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/boraccount.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/boraccount.tt >@@ -67,8 +67,8 @@ > [%- IF account.description %], [% account.description | html %][% END %] > [% IF ( account.itemnumber ) %]<a href="/cgi-bin/koha/catalogue/moredetail.pl?biblionumber=[% account.item.biblionumber | uri %]&itemnumber=[% account.itemnumber | uri %]">[% account.item.biblio.title | html %]</a>[% END %]</td> > <td>[% IF ( account.itemnumber ) %]<a href="/cgi-bin/koha/catalogue/moredetail.pl?itemnumber=[% account.itemnumber | uri %]&biblionumber=[% account.item.biblionumber | uri %]#item[% account.itemnumber | uri %]">[% account.item.barcode | html %]</a>[% END %]</td> >- <td>[% IF ( account.issue_id ) %][% account.issue.date_due | $KohaDates as_due_date => 1 %][% END %]</td> >- <td>[% IF ( account.issue_id ) %][% account.issue.returndate | $KohaDates with_hours => 1 %][% END %]</td> >+ <td>[% IF ( account.issue_id ) %][% account.checkout.date_due | $KohaDates as_due_date => 1 %][% END %]</td> >+ <td>[% IF ( account.issue_id ) %][% account.checkout.returndate | $KohaDates with_hours => 1 %][% END %]</td> > <td>[% IF account.itemnumber %][% Branches.GetName( account.item.homebranch ) | html %][% END %]</td> > <td>[% account.note | html_line_break %]</td> > [% IF account.amount <= 0 %]<td class="credit" style="text-align: right;">[% ELSE %]<td class="debit" style="text-align: right;">[% END %][% account.amount | $Price %]</td> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/members/pay.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/members/pay.tt >index 354bab0fef..1a67ca3ba0 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/pay.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/pay.tt >@@ -117,12 +117,12 @@ > </td> > <td> > [% IF line.issue_id %] >- [% line.issue.date_due | $KohaDates as_due_date => 1 %] >+ [% line.checkout.date_due | $KohaDates as_due_date => 1 %] > [% END %] > </td> > <td> > [% IF line.issue_id %] >- [% line.issue.returndate | $KohaDates with_hours => 1 %] >+ [% line.checkout.returndate | $KohaDates with_hours => 1 %] > [% END %] > </td> > <td class="actions"> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/members/printinvoice.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/members/printinvoice.tt >index 27fc620713..65d21b3aae 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/printinvoice.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/printinvoice.tt >@@ -61,8 +61,8 @@ > [%- IF account.description %], [% account.description | html %][% END %] > </td> > <td>[% account.item.barcode | html %]</td> >- <td>[% account.issue.date_due | $KohaDates as_due_date => 1 %]</td> >- <td>[% account.issue.returndate | $KohaDates with_hours => 1 %]</td> >+ <td>[% account.checkout.date_due | $KohaDates as_due_date => 1 %]</td> >+ <td>[% account.checkout.returndate | $KohaDates with_hours => 1 %]</td> > <td>[% account.note | html %]</td> > [% IF ( account.amountcredit ) %]<td class="credit">[% ELSE %]<td class="debit">[% END %][% account.amount | $Price %]</td> > [% IF ( account.amountoutstandingcredit ) %]<td class="credit">[% ELSE %]<td class="debit">[% END %][% account.amountoutstanding | $Price %]</td> >diff --git a/members/printinvoice.pl b/members/printinvoice.pl >index 49e777ef77..f13b4f843f 100755 >--- a/members/printinvoice.pl >+++ b/members/printinvoice.pl >@@ -58,7 +58,7 @@ my $total = $patron->account->balance; > my $accountline_object = Koha::Account::Lines->find($accountlines_id); > my $accountline = $accountline_object->unblessed; > $accountline->{item} = $accountline_object->item || "" ; >-$accountline->{issue} = $accountline_object->issue || ""; >+$accountline->{checkout} = $accountline_object->checkout || ""; > > my $totalcredit; > if ( $total <= 0 ) { >diff --git a/t/db_dependent/Koha/Account/Lines.t b/t/db_dependent/Koha/Account/Lines.t >index e00841c601..222807e162 100755 >--- a/t/db_dependent/Koha/Account/Lines.t >+++ b/t/db_dependent/Koha/Account/Lines.t >@@ -438,19 +438,19 @@ subtest 'issue() tests' => sub { > amount => 10, > })->store; > >- my $line_issue = $line->issue; >- is( ref($line_issue), 'Koha::Checkout', 'Result type is correct' ); >- is( $line_issue->issue_id, $checkout->issue_id, 'Koha::Account::Line->issue should return the correct issue'); >+ my $line_checkout = $line->checkout; >+ is( ref($line_checkout), 'Koha::Checkout', 'Result type is correct' ); >+ is( $line_checkout->issue_id, $checkout->issue_id, 'Koha::Account::Line->issue should return the correct issue'); > > my ( $returned, undef, $old_checkout) = C4::Circulation::AddReturn( $item->{barcode} ,$library->{branchcode} ); > is( $returned, 1, 'The item should have been returned' ); > >- my $old_line_issue = $line->issue; >- is( ref($old_line_issue), 'Koha::Old::Checkout', 'Result type is correct' ); >- is( $old_line_issue->issue_id, $old_checkout->issue_id, 'Koha::Account::Line->issue should return the correct old_issue' ); >+ my $old_line_checkout = $line->checkout; >+ is( ref($old_line_checkout), 'Koha::Old::Checkout', 'Result type is correct' ); >+ is( $old_line_checkout->issue_id, $old_checkout->issue_id, 'Koha::Account::Line->issue should return the correct old_issue' ); > > $line->issue_id(undef)->store; >- is( $line->issue, undef, 'Koha::Account::Line->issue should return undef if no issue linked' ); >+ is( $line->checkout, undef, 'Koha::Account::Line->issue should return undef if no issue linked' ); > > $schema->storage->txn_rollback; > }; >-- >2.17.2 (Apple Git-113)
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 19489
:
81956
|
81989
|
81991
|
82519
|
82520
|
82614
|
82615
|
82846
|
83109
|
83110
|
83242
|
83276
|
83277
|
83299
|
83300
|
83301
|
83618
|
83619
|
83620
|
85236
|
85237
|
85275
|
85315
|
85668
|
85669
|
85670
|
85671
|
85672
|
85673
|
85674
|
85675
|
85731
|
85732
| 85733 |
85734
|
85735
|
85736
|
85737
|
85738