Description
Kyle M Hall (khall)
2017-10-18 16:39:58 UTC
Created attachment 81956 [details] [review] Bug 19489 - Development for fines and Fees Module - Detailed Description of charges in Patron Account Tab/Fines Tab Test plan: 1) Apply this patch 2) Choose a patron with overdue items applied fines 3) Click Fines from left menu 4) Test the values in barcode, due date and return date in Pay fines and Account tabs 5) Also test Column visibility, Print and Details buttons for functioning Comment on attachment 81956 [details] [review] Bug 19489 - Development for fines and Fees Module - Detailed Description of charges in Patron Account Tab/Fines Tab Review of attachment 81956 [details] [review]: ----------------------------------------------------------------- Everything works nicely in testing, the columns appear as expected. The method for checkouts itself should be an object method for Koha::Account::Line It would be nice too if there were some refactoring to simply pass the Line objects and use the fields/method on the the template rather than formatting in a hash in the scripts ::: members/accountline-details.pl @@ +24,5 @@ > use C4::Output; > use C4::Context; > use Koha::Patrons; > +use Koha::Checkouts; > +use Koha::Old::Checkouts; Rather than importing these here we should implement 'checkout' as an object method for the Koha::Account::Line @@ +67,5 @@ > my $patron = Koha::Patrons->find( $accountline->borrowernumber ); > + my $issues; > + if ( $accountline->issue_id ) { > + $issues = Koha::Checkouts->find($accountline->issue_id ); > + $issues = Koha::Old::Checkouts->find($accountline->issue_id ) unless $issues; As mentioned above - this should use an object method from Koha::Account::Line The plural is also confusing as there should on ly ever be one $accountline->checkout; ::: members/boraccount.pl @@ +112,5 @@ > + > + if ( $accountline->{issue_id} ) { > + my $issues = Koha::Checkouts->find($accountline->{issue_id} ); > + $issues = Koha::Old::Checkouts->find($accountline->{issue_id} ) unless $issues; > + $accountline->{issue} = $issues; As before, this should use an object method ::: members/pay.pl @@ +152,5 @@ > } > + if ( $account_line->{issue_id} ) { > + my $issues = Koha::Checkouts->find($account_line->{issue_id} ); > + $issues = Koha::Old::Checkouts->find($account_line->{issue_id} ) unless $issues; > + $account_line->{issue} = $issues; Use object method ::: members/printinvoice.pl @@ +64,5 @@ > + > +if ( $accountline->{issue_id} ) { > + my $issues = Koha::Checkouts->find($accountline->{issue_id} ); > + $issues = Koha::Old::Checkouts->find($accountline->{issue_id} ) unless $issues; > + $accountline->{issue} = $issues; Use object method Created attachment 81989 [details] [review] (Object method) Development for fines and Fees Module - Detailed Description of charges in Patron Account Tab/Fines Tab Test plan: 1) Apply this patch 2) Choose a patron with overdue items applied fines 3) Click Fines from left menu 4) Test the values in barcode, due date and return date in Pay fines and Account tabs 5) Also test Column visibility, Print and Details buttons for functioning Created attachment 81991 [details] [review] Bug 19489 - (Object Method) Development for fines and Fees Module - Detailed Description of charges in Patron Account Tab/Fines Tab Test plan: 1) Apply this patch 2) Choose a patron with overdue items applied fines 3) Click Fines from left menu 4) Test the values in barcode, due date and return date in Pay fines and Account tabs 5) Also test Column visibility, Print and Details buttons for functioning Created attachment 82519 [details] [review] Bug 19489 - (Object Method) Development for fines and Fees Module - Detailed Description of charges in Patron Account Tab/Fines Tab Test plan: 1) Apply this patch 2) Choose a patron with overdue items applied fines 3) Click Fines from left menu 4) Test the values in barcode, due date and return date in Pay fines and Account tabs 5) Also test Column visibility, Print and Details buttons for functioning Unit test added. Created attachment 82520 [details] [review] Bug 19489 - (Object Method) Development for fines and Fees Module - Detailed Description of charges in Patron Account Tab/Fines Tab Test plan: 1) Apply this patch 2) Choose a patron with overdue items applied fines 3) Click Fines from left menu 4) Test the values in barcode, due date and return date in Pay fines and Account tabs 5) Also test Column visibility, Print and Details buttons for functioning Unit test added. Created attachment 82614 [details] [review] Bug 19489: Improvements in Unit test and Koha::Account::Line->issue method Test Plan: 1) Apply this patch 2) prove t/db_dependent/Koha/Account/Lines.t Created attachment 82615 [details] [review] Bug 19489: Development for fines and Fees Module Test plan: 1) Apply this patch 2) Choose a patron with overdue items applied fines 3) Click Fines from left menu 4) Test the values in barcode, due date and return date in Pay fines and Account tabs 5) Also test Column visibility, Print and Details buttons for functioning This seems to be working, but the test doesn't pass: t/db_dependent/Koha/Account/Lines.t .. 1/5 # Failed test 'No tests run for subtest "item() tests"' # at t/db_dependent/Koha/Account/Lines.t line 67. DBIx::Class::Storage::DBI::_dbh_execute(): Field 'account_balance' doesn't have a default value at /home/vagrant/kohaclone/t/lib/TestBuilder.pm line 288 # Looks like your test exited with 255 just after 1. t/db_dependent/Koha/Account/Lines.t .. Dubious, test returned 255 (wstat 65280, 0xff00) Failed 5/5 subtests Test Summary Report ------------------- t/db_dependent/Koha/Account/Lines.t (Wstat: 65280 Tests: 1 Failed: 1) Failed test: 1 Non-zero exit status: 255 Parse errors: Bad plan. You planned 5 tests but ran 1. Files=1, Tests=1, 3 wallclock secs ( 0.01 usr 0.01 sys + 1.21 cusr 0.52 csys = 1.75 CPU) Result: FAIL Hi Owen, It is most probably another patch made it this since we've tested before sending patches and unit tests. Our developers is looking once again, will change it soon. Thanks a lot. Devinim Koha Team (In reply to Owen Leonard from comment #9) > This seems to be working, but the test doesn't pass: > > t/db_dependent/Koha/Account/Lines.t .. 1/5 > # Failed test 'No tests run for subtest "item() tests"' > # at t/db_dependent/Koha/Account/Lines.t line 67. > DBIx::Class::Storage::DBI::_dbh_execute(): Field 'account_balance' doesn't > have a default value at /home/vagrant/kohaclone/t/lib/TestBuilder.pm line 288 > # Looks like your test exited with 255 just after 1. > t/db_dependent/Koha/Account/Lines.t .. Dubious, test returned 255 (wstat > 65280, 0xff00) > Failed 5/5 subtests > > Test Summary Report > ------------------- > t/db_dependent/Koha/Account/Lines.t (Wstat: 65280 Tests: 1 Failed: 1) > Failed test: 1 > Non-zero exit status: 255 > Parse errors: Bad plan. You planned 5 tests but ran 1. > Files=1, Tests=1, 3 wallclock secs ( 0.01 usr 0.01 sys + 1.21 cusr 0.52 > csys = 1.75 CPU) > Result: FAIL We applied the test on the latest provisioned kohadevbox environment and we found that there are some changes to pay.tt . When we changed pay.tt manually we passed dependency test as you may see below. prove t/db_dependent/Koha/Account/Lines.t t/db_dependent/Koha/Account/Lines.t .. ok All tests successful. Files=1, Tests=5, 5 wallclock secs ( 0.03 usr 0.01 sys + 3.90 cusr 0.66 csys = 4.60 CPU) Result: PASS How did you get your errors? Thanks, Created attachment 82846 [details] [review] Bug 19489: Development for fines and Fees Module Due to changes in pay.tt occured from other patches we have renewed pay.tt file. Test plan: 1) Apply this patch 2) Choose a patron with overdue items applied fines 3) Click Fines from left menu 4) Test the values in barcode, due date and return date in Pay fines and Account tabs 5) Also test Column visibility, Print and Details buttons for functioning Created attachment 83109 [details] [review] Bug 19489: (Improvements in Unit test and Koha::Account::Line->issue method) Signed-off-by: Nick Clemens <nick@bywatersolutions.com> Created attachment 83110 [details] [review] Bug 19489: Development for fines and Fees Module Signed-off-by: Nick Clemens <nick@bywatersolutions.com> due_date must be displayed with the as_due_date flag, not with_hours: [% your_due_date | $KohaDates as_due_date => 1 %] 2. As well, the html filter is not needed when already KohaDates filtered. 3. in printinvoice.pl +$accountline->{'item'} = $accountline->{itemnumber} ? $accountline_object->item : "" ; +$accountline->{'issue'} = $accountline->{issue_id} ? $accountline_object->issue : "" ; It read wrong, why not: $accountline->{item} = $accountline_object->item || "" ; $accountline->{issue} = $accountline_object->issue || ""; ? (In reply to Jonathan Druart from comment #15) > due_date must be displayed with the as_due_date flag, not with_hours: > > [% your_due_date | $KohaDates as_due_date => 1 %] Hi Jonathan, In order to make code integrity, we've looked at members/readingrec.tt Line 95 of that file also uses due_date. (In reply to Jonathan Druart from comment #16) > 2. As well, the html filter is not needed when already KohaDates filtered. > > 3. in printinvoice.pl > > +$accountline->{'item'} = $accountline->{itemnumber} ? > $accountline_object->item : "" ; > +$accountline->{'issue'} = $accountline->{issue_id} ? > $accountline_object->issue : "" ; > > It read wrong, why not: > $accountline->{item} = $accountline_object->item || "" ; > $accountline->{issue} = $accountline_object->issue || ""; > ? 2. As similar to answer 1, some other files also use html filter like reserve/request.tt catalogue/issuehistory.tt 3. If you choose Create manual invoice tab and then select a type without using a barcode number (like New Card), since there won't be an itemnumber in accountline table, item object will give an error like ( DBIC result _type isn't of the _type Item at /home/vagrant/kohaclone/members/printinvoice.pl line 60) . (In reply to Devinim from comment #17) > (In reply to Jonathan Druart from comment #15) > > due_date must be displayed with the as_due_date flag, not with_hours: > > > > [% your_due_date | $KohaDates as_due_date => 1 %] > > Hi Jonathan, > > In order to make code integrity, we've looked at > members/readingrec.tt > Line 95 of that file also uses due_date. It is wrong :) IIRC due dates must be displayed using the as_due_date flag, to not show the time part if 23:59 (In reply to Devinim from comment #18) > (In reply to Jonathan Druart from comment #16) > > 2. As well, the html filter is not needed when already KohaDates filtered. > > 2. As similar to answer 1, some other files also use html filter like > reserve/request.tt > catalogue/issuehistory.tt It is because we removed the html filter when the $KohaDates occurrences were used without parameters. It is not a big deal anyway but we could avoid unnecessary processing removing these filters. I am going to deal with that on a separate bug report. > > 3. in printinvoice.pl > > > > +$accountline->{'item'} = $accountline->{itemnumber} ? > > $accountline_object->item : "" ; > > +$accountline->{'issue'} = $accountline->{issue_id} ? > > $accountline_object->issue : "" ; > > > > It read wrong, why not: > > $accountline->{item} = $accountline_object->item || "" ; > > $accountline->{issue} = $accountline_object->issue || ""; > > ? > > > 3. If you choose Create manual invoice tab and then select a type without > using a barcode number (like New Card), since there won't be an itemnumber > in accountline table, item object will give an error like ( DBIC result > _type isn't of the _type Item at > /home/vagrant/kohaclone/members/printinvoice.pl line 60) . It's a bug, I have opened bug 22006 Created attachment 83242 [details] [review] Bug 19489: Simplify the code a bit Created attachment 83276 [details] [review] Bug 19489: (Improvements in KohaDate) Development for fines and Fees Module Created attachment 83277 [details] [review] Bug 19489: (Improvements in KohaDate) Development for fines and Fees Module Created attachment 83299 [details] [review] Bug 19489: Add the Koha::Account::Line->issue method Signed-off-by: Nick Clemens <nick@bywatersolutions.com> Created attachment 83300 [details] [review] Bug 19489: Development for fines and Fees Module - Detailed Description of charges in Patron Account Tab/Fines Tab Test plan: 1) Apply this patch 2) Choose a patron with overdue items applied fines 3) Click Fines from left menu 4) Test the values in barcode, due date and return date in Pay fines and Account tabs 5) Also test Column visibility, Print and Details buttons for functioning Created attachment 83301 [details] [review] Bug 19489: Cover non-existent issue I have updated the commit message, re-added the test plan and submitted a follow-up to cover the non-existing issue case. Created attachment 83618 [details] [review] Bug 19489: Add the Koha::Account::Line->issue method Signed-off-by: Nick Clemens <nick@bywatersolutions.com> Created attachment 83619 [details] [review] Bug 19489: Development for fines and Fees Module - Detailed Description of charges in Patron Account Tab/Fines Tab Test plan: 1) Apply this patch 2) Choose a patron with overdue items applied fines 3) Click Fines from left menu 4) Test the values in barcode, due date and return date in Pay fines and Account tabs 5) Also test Column visibility, Print and Details buttons for functioning Signed-off-by: Nick Clemens <nick@bywatersolutions.com> Created attachment 83620 [details] [review] Bug 19489: Cover non-existent issue Signed-off-by: Nick Clemens <nick@bywatersolutions.com> Cleared minor conflict when applying (test counts) Hi Devinim, can we please get a rebase? Thx! Created attachment 85236 [details] [review] Bug 19489: (Rebased) Koha::Account::Line->issue method and Unit test Test Plan: 1) Apply this patch 2) prove t/db_dependent/Koha/Account/Lines.t Created attachment 85237 [details] [review] Bug 19489: (Rebased) Development for fines and Fees Module - Detailed Description of charges in Patron Account Tab/Fines Tab Test plan: 1) Apply this patch 2) Choose a patron with overdue items applied fines 3) Click Fines from left menu 4) Test the values in barcode, due date and return date in Pay fines and Account tabs 5) Also test Column visibility, Print and Details buttons for functioning Depending on how difficult the rebase was, it's ok to set back to "Signed off" after rebasing. If you feel it should be tested from scratch (hard rebase), setting to "Needs Signoff" is of course better. We usually keep the sign-off lines on the patches - it shows that someone spent time on it already. :) Hi Katrin, As you suggested I changed the Signed Off. Thanks. Comment on attachment 85236 [details] [review] Bug 19489: (Rebased) Koha::Account::Line->issue method and Unit test Review of attachment 85236 [details] [review]: ----------------------------------------------------------------- ::: Koha/Account/Line.pm @@ +55,5 @@ > } > > +=head3 issue > + > +Return the item linked to this account line if exists item? @@ +59,5 @@ > +Return the item linked to this account line if exists > + > +=cut > + > +sub issue { According to Koha terminology, this should be named "checkout" Comment on attachment 85237 [details] [review] Bug 19489: (Rebased) Development for fines and Fees Module - Detailed Description of charges in Patron Account Tab/Fines Tab Review of attachment 85237 [details] [review]: ----------------------------------------------------------------- ::: members/printinvoice.pl @@ +57,5 @@ > 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 || ""; We are still only adding this non-objective code, but as this file is still not fully refactored to using objects it is not blocker from me. Failed because of issue method name. It really should be changed Created attachment 85275 [details] [review] Bug 19489: Change method name Created attachment 85315 [details] [review] Bug 19489: (follow-up) Fix typos in the tests Created attachment 85668 [details] [review] Bug 19489: Koha::Account::Line->issue method and Unit test Signed-off-by: Josef Moravec <josef.moravec@gmail.com> Created attachment 85669 [details] [review] Bug 19489: Detailed Description of charges in Patron accounting Signed-off-by: Josef Moravec <josef.moravec@gmail.com> Created attachment 85670 [details] [review] Bug 19489: Change method name issue --> checkout Signed-off-by: Josef Moravec <josef.moravec@gmail.com> Created attachment 85671 [details] [review] Bug 19489: (follow-up) Fix typos in the tests Signed-off-by: Josef Moravec <josef.moravec@gmail.com> Created attachment 85672 [details] [review] Bug 19489: (QA follow-up) Cache checkout object in variable Signed-off-by: Josef Moravec <josef.moravec@gmail.com> Created attachment 85673 [details] [review] Bug 19489: (QA follow-up) Update test to use objects and module methods for creating needed data Test plan: prove t/db_dependent/Koha/Account/Lines.t Signed-off-by: Josef Moravec <josef.moravec@gmail.com> Created attachment 85674 [details] [review] Bug 19489: (QA follow-up) Remove passing issue_id in pay form This is not needed Signed-off-by: Josef Moravec <josef.moravec@gmail.com> Created attachment 85675 [details] [review] Bug 19489: (QA follow-up) Revert changes in printinvoice It would be change behaviour, libraries are often using POS printers and wider table could make a problem for them and break theirs workflow. Signed-off-by: Josef Moravec <josef.moravec@gmail.com> I added some follow-ups and am leaving this in signed off state. Would like to have another QA team member to look here. Created attachment 85731 [details] [review] Bug 19489: Koha::Account::Line->issue method and Unit test Signed-off-by: Josef Moravec <josef.moravec@gmail.com> Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> Created attachment 85732 [details] [review] 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> Created attachment 85733 [details] [review] 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> Created attachment 85734 [details] [review] Bug 19489: (follow-up) Fix typos in the tests Signed-off-by: Josef Moravec <josef.moravec@gmail.com> Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> Created attachment 85735 [details] [review] Bug 19489: (QA follow-up) Cache checkout object in variable Signed-off-by: Josef Moravec <josef.moravec@gmail.com> Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> Created attachment 85736 [details] [review] Bug 19489: (QA follow-up) Update test to use objects and module methods for creating needed data Test plan: prove t/db_dependent/Koha/Account/Lines.t Signed-off-by: Josef Moravec <josef.moravec@gmail.com> Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> Created attachment 85737 [details] [review] Bug 19489: (QA follow-up) Remove passing issue_id in pay form This is not needed Signed-off-by: Josef Moravec <josef.moravec@gmail.com> Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> Created attachment 85738 [details] [review] Bug 19489: (QA follow-up) Revert changes in printinvoice It would be change behaviour, libraries are often using POS printers and wider table could make a problem for them and break theirs workflow. Signed-off-by: Josef Moravec <josef.moravec@gmail.com> Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> Awesome work all! Pushed to master for 19.05 Enhancement will not be backported to 18.11.x series. |