Bugzilla – Attachment 85732 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: Detailed Description of charges in Patron accounting
Bug-19489-Detailed-Description-of-charges-in-Patro.patch (text/plain), 13.90 KB, created by
Kyle M Hall (khall)
on 2019-02-26 19:12:36 UTC
(
hide
)
Description:
Bug 19489: Detailed Description of charges in Patron accounting
Filename:
MIME Type:
Creator:
Kyle M Hall (khall)
Created:
2019-02-26 19:12:36 UTC
Size:
13.90 KB
patch
obsolete
>From a24d1243c5821a9e0d37b4794b251ba0a044863b Mon Sep 17 00:00:00 2001 >From: =?UTF-8?q?Nazl=C4=B1=20=C3=87etin?= <nazli@devinim.com.tr> >Date: Mon, 18 Feb 2019 09:50:10 +0000 >Subject: [PATCH] Bug 19489: Detailed Description of charges in Patron > accounting > >Signed-off-by: Josef Moravec <josef.moravec@gmail.com> > >Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> >--- > admin/columns_settings.yml | 12 +++++++++ > .../en/modules/members/accountline-details.tt | 21 +++++++++++++++ > .../prog/en/modules/members/boraccount.tt | 8 +++++- > .../prog/en/modules/members/pay.tt | 27 ++++++++++++++++--- > .../prog/en/modules/members/printinvoice.tt | 22 +++++++++------ > members/pay.pl | 8 +----- > members/printinvoice.pl | 5 +++- > 7 files changed, 82 insertions(+), 21 deletions(-) > >diff --git a/admin/columns_settings.yml b/admin/columns_settings.yml >index 6bc5c5502c..296103de45 100644 >--- a/admin/columns_settings.yml >+++ b/admin/columns_settings.yml >@@ -357,6 +357,12 @@ modules: > columnname: date > - > columnname: description >+ - >+ columnname: barcode >+ - >+ columnname: date_due >+ - >+ columnname: returndate > - > columnname: note > - >@@ -386,6 +392,12 @@ modules: > columnname: description > - > columnname: date >+ - >+ columnname: barcode >+ - >+ columnname: date_due >+ - >+ columnname: returndate > - > columnname: note > - >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 1e9855bbc2..b777370169 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 >@@ -42,6 +42,9 @@ > <tr> > <th class="title-string">Date</th> > <th>Description of charges</th> >+ <th>Barcode</th> >+ <th>Due date</th> >+ <th>Return date</th> > <th>Note</th> > <th>Amount</th> > <th>Outstanding</th> >@@ -69,6 +72,24 @@ > [% END %] > </td> > >+ <td> >+ [% IF ( accountline.itemnumber ) %] >+ <a href="/cgi-bin/koha/catalogue/moredetail.pl?biblionumber=[% accountline.item.biblionumber | uri %]&itemnumber=[% accountline.itemnumber | uri %]#item[% accountline.itemnumber | uri %]">[% accountline.item.barcode | html %]</a> >+ [% END %] >+ </td> >+ >+ <td> >+ [% IF ( accountline.issue_id ) %] >+ [% accountline.issue.date_due | $KohaDates as_due_date => 1 %] >+ [% END %] >+ </td> >+ >+ <td> >+ [% IF ( accountline.issue_id ) %] >+ [% accountline.issue.returndate | $KohaDates with_hours => 1 %] >+ [% END %] >+ </td> >+ > <td> > [% accountline.note | html_line_break %] > </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 bd54ec7260..8da829335c 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/boraccount.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/boraccount.tt >@@ -45,6 +45,9 @@ > <tr> > <th class="title-string">Date</th> > <th>Description of charges</th> >+ <th>Barcode</th> >+ <th>Due date</th> >+ <th>Return date</th> > <th>Home library</th> > <th>Note</th> > <th>Amount</th> >@@ -63,6 +66,9 @@ > [%- IF account.payment_type %], [% AuthorisedValues.GetByCode('PAYMENT_TYPE', account.payment_type) | html %][% END %] > [%- 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.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> >@@ -83,7 +89,7 @@ > [% END %] > <tfoot> > <tr> >- <td colspan="5">Total due</td> >+ <td colspan="8">Total due</td> > [% IF ( totalcredit ) %] > <td class="credit" style="text-align: right;">[% total | $Price %]</td> > [% ELSE %] >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 08350abe2b..354bab0fef 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/pay.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/pay.tt >@@ -46,6 +46,9 @@ > <th class="NoSort">Actions</th> > <th>Description</th> > <th class="title-string">Date</th> >+ <th>Barcode</th> >+ <th>Due date</th> >+ <th>Return date</th> > <th class="NoSort">Payment note</th> > <th>Account type</th> > <th>Amount</th> >@@ -70,6 +73,7 @@ > [% END %] > <input type="hidden" name="itemnumber[% line.accountlines_id | html %]" value="[% line.itemnumber | html %]" /> > <input type="hidden" name="description[% line.accountlines_id | html %]" value="[% line.description | html %]" /> >+ <input type="hidden" name="issue_id[% line.accountlines_id | html %]" value="[% line.issue_id | html %]" /> > <input type="hidden" name="accounttype[% line.accountlines_id | html %]" value="[% line.accounttype | html %]" /> > <input type="hidden" name="amount[% line.accountlines_id | html %]" value="[% line.amount | html %]" /> > <input type="hidden" name="accountlines_id[% line.accountlines_id | html %]" value="[% line.accountlines_id | html %]" /> >@@ -101,11 +105,26 @@ > [% CASE %][% line.accounttype | html %] > [%- END -%] > [%- IF line.description %], [% line.description | html %][% END %] >- [% IF line.title %]([% line.title | html %])[% END %] >+ [% IF line.itemnumber %]([% line.item.biblio.title | html %])[% END %] > </td> > <td> > <span title="[% line.date | html %]">[% line.date | $KohaDates %]</span> > </td> >+ <td> >+ [% IF line.itemnumber %] >+ <a href="/cgi-bin/koha/catalogue/moredetail.pl?itemnumber=[% line.itemnumber | uri %]&biblionumber=[% line.item.biblionumber | uri %]#item[% line.itemnumber | uri %]">[% line.item.barcode | html %]</a> >+ [% END %] >+ </td> >+ <td> >+ [% IF line.issue_id %] >+ [% line.issue.date_due | $KohaDates as_due_date => 1 %] >+ [% END %] >+ </td> >+ <td> >+ [% IF line.issue_id %] >+ [% line.issue.returndate | $KohaDates with_hours => 1 %] >+ [% END %] >+ </td> > <td class="actions"> > <a href="#" class="add-note" data-accountlines_id="[% line.accountlines_id | html %]"><i class="fa fa-plus"></i> Add note</a> > <span class="payment_note" id="payment_note_[% line.accountlines_id | html %]" style="display:none"><input type="text" size="10" name="payment_note_[% line.accountlines_id | html %]" value="" /> <a href="#" class="cancel-note"><i class="fa fa-remove"></i></a></span> >@@ -120,18 +139,18 @@ > <tfoot> > [% IF outstanding_credits.total_outstanding < 0 %] > <tr> >- <td class="total" colspan="7">Outstanding credits could be applied: </td> >+ <td class="total" colspan="10">Outstanding credits could be applied: </td> > <td class="credit" style="text-align: right;"><button type="submit" id="apply_credits" name="apply_credits" value="apply_credits" class="btn btn-default btn-sm">Apply <strong class="credit">[% outstanding_credits.total_outstanding | $Price %]</strong></button></td> > </tr> > [% END %] > [% IF ( account_grp.total ) %] > <tr> >- <td class="total" colspan="7" style="text-align: right;">Sub total:</td> >+ <td class="total" colspan="10" style="text-align: right;">Sub total:</td> > <td style="text-align: right;">[% account_grp.total | $Price %]</td> > </tr> > [% END %] > <tr> >- <td class="total" colspan="7">Total due:</td> >+ <td class="total" colspan="10">Total due:</td> > [% IF outstanding_credits.total_outstanding < 0 %] > <td style="text-align: right;">[% total + outstanding_credits.total_outstanding | $Price %]</td> > [% ELSE %] >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 a28ac03e34..27fc620713 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/printinvoice.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/printinvoice.tt >@@ -21,23 +21,23 @@ > <table> > [% IF ( LibraryName ) %] > <tr> >- <th colspan="5" class="centerednames"> >- <h3>[% LibraryName | html %]</h3> >+ <th colspan="8" class="centerednames"> >+ <h3>[% LibraryName | html %]</h3> > </th> > </tr> > [% END %] > <tr> >- <th colspan="5" class="centerednames"> >- <h2><u>INVOICE</u></h2> >- </th> >+ <th colspan="8" class="centerednames"> >+ <h2><u>INVOICE</u></h2> >+ </th> > </tr> > <tr> >- <th colspan="5" class="centerednames"> >+ <th colspan="8" class="centerednames"> > <h2>[% Branches.GetName( patron.branchcode ) | html %]</h2> > </th> > </tr> > <tr> >- <th colspan="5" > >+ <th colspan="8" > > Bill to: [% patron.firstname | html %] [% patron.surname | html %] <br /> > Card number: [% patron.cardnumber | html %]<br /> > </th> >@@ -45,6 +45,9 @@ > <tr> > <th>Date</th> > <th>Description of charges</th> >+ <th>Barcode</th> >+ <th>Due date</th> >+ <th>Return date</th> > <th>Note</th> > <th style="text-align:right;">Amount</th> > <th style="text-align:right;">Amount outstanding</th> >@@ -57,6 +60,9 @@ > [% PROCESS account_type_description account=account %] > [%- 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.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> >@@ -65,7 +71,7 @@ > [% END %] > <tfoot> > <tr> >- <td colspan="4">Total outstanding dues as on date: </td> >+ <td colspan="7">Total outstanding dues as on date: </td> > [% IF ( totalcredit ) %]<td class="credit">[% ELSE %]<td class="debit">[% END %][% total | $Price %]</td> > </tr> > </tfoot> >diff --git a/members/pay.pl b/members/pay.pl >index 848141906e..e33c12c9ed 100755 >--- a/members/pay.pl >+++ b/members/pay.pl >@@ -147,13 +147,6 @@ sub add_accounts_to_template { > my $total = $account_lines->total_outstanding; > my @accounts; > while ( my $account_line = $account_lines->next ) { >- $account_line = $account_line->unblessed; >- if ( $account_line->{itemnumber} ) { >- my $item = Koha::Items->find( $account_line->{itemnumber} ); >- my $biblio = $item->biblio; >- $account_line->{biblionumber} = $biblio->biblionumber; >- $account_line->{title} = $biblio->title; >- } > push @accounts, $account_line; > } > borrower_add_additional_fields($patron); >@@ -198,6 +191,7 @@ sub redirect_to_paycollect { > $redirect .= > get_for_redirect( 'amountoutstanding', "amountoutstanding$line_no", 1 ); > $redirect .= get_for_redirect( 'description', "description$line_no", 0 ); >+ $redirect .= get_for_redirect( 'issue_id', "issue_id$line_no", 0 ); > $redirect .= get_for_redirect( 'title', "title$line_no", 0 ); > $redirect .= get_for_redirect( 'itemnumber', "itemnumber$line_no", 0 ); > $redirect .= get_for_redirect( 'accountlines_id', "accountlines_id$line_no", 0 ); >diff --git a/members/printinvoice.pl b/members/printinvoice.pl >index a6d92f7e3a..49e777ef77 100755 >--- a/members/printinvoice.pl >+++ b/members/printinvoice.pl >@@ -55,7 +55,10 @@ output_and_exit_if_error( $input, $cookie, $template, { module => 'members', log > > #get account details > my $total = $patron->account->balance; >-my $accountline = Koha::Account::Lines->find($accountlines_id)->unblessed; >+my $accountline_object = Koha::Account::Lines->find($accountlines_id); >+my $accountline = $accountline_object->unblessed; >+$accountline->{item} = $accountline_object->item || "" ; >+$accountline->{issue} = $accountline_object->issue || ""; > > my $totalcredit; > if ( $total <= 0 ) { >-- >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