Project

General

Profile

Spent time

Filters

Apply Clear

Hours: 344.53

Created Date User Activity Issue Comment Hours
05.07.2022 14:57 05.07.2022 Lari Taskula Development Feature #944: Avoid changing tabs on page reload on holds awaiting pickup page Implementing feature and testing. 2.00 Actions
05.07.2022 14:55 05.07.2022 Lari Taskula Development Feature #941: Bug 22456 - Allow patrons to cancel their waiting holds Testing and revieweing Bug. 2.00 Actions
21.03.2022 10:37 21.03.2022 Lari Taskula Development Support #851: Bug 30200 - Add customizable tabs to interlibrary loan requests list Refactoring. We can use "$.fn.dataTable.ext.search.push" function to filter out unwanted statuses. Tidying up the code and testing. 2.00 Actions
24.01.2022 14:43 24.01.2022 Lari Taskula Learning Support #761: koha-illbackend-libris enhancements Getting started. Reading task specification for our first tasks and checking out related resources. Installing koha-illbackend-libris. Running into some issues while configurating the module together with @samu.heiskanen that prevent creation of new requests. The issue is that branchcode does not get passed into the CGI-script. Is it missing from template? Debugging and checking out git history for related changes. It appears a recent commit has caused a bug. Contacting author of the module. 2.00 Actions
17.09.2021 01:52 17.09.2021 Lari Taskula Development Feature #577: Swedbank Pay Integration developement with Swedbank Pay API. 2.00 Actions
06.09.2021 14:00 06.09.2021 Lari Taskula Development Feature #577: Swedbank Pay Starting by reading documentation, forking DIBS Payment Plugin, renaming files and packages and adjusting configuration variables. 2.00 Actions
12.03.2020 18:07 12.03.2020 Lari Taskula Maintenance Feature #254: Bug 24751 - REST API: CRUD endpoints for holdings records Working from home. Fixing broken koha LXD containers & installations. 2.00 Actions
10.01.2020 23:48 10.01.2020 Lari Taskula Development Feature #218: REST API: Checkout Gathering requirements, initial development. 2.00 Actions
08.04.2019 15:19 08.04.2019 Lari Taskula Development Feature #20: Bug 14791 - Automatically attempt to resend failed notices Rebasing patches and re-submitting them for signoff. 2.00 Actions
23.09.2021 10:07 23.09.2021 Lari Taskula Development Feature #577: Swedbank Pay Emailing Swedbank tech support back and forth, implementing the Create order step of Payment Menu. 2.75 Actions
05.10.2022 16:36 05.10.2022 Lari Taskula Design Feature #942: Change item level hold to biblio level hold Design, trying a couple of different solutions in GUI. 3.00 Actions
20.05.2022 05:21 20.05.2022 Lari Taskula Learning Support #939: Holds improvements 05/2022 Investigating requirements and searching for possible existing solutions from Koha Bugzilla and search engines. Emailing client. 3.00 Actions
18.03.2022 18:19 18.03.2022 Lari Taskula Development Support #851: Bug 30200 - Add customizable tabs to interlibrary loan requests list Debugging DataTable's column width issue where the width gets messed up once tabs are changed. It seems SQL reports page does not have the same issue. SQL reports is using just one table instead of each table for every tab. Refactoring code. Running into an annoying issue where I cannot safely filter rows by status code because ILL requests DataTable uses the full given names of statuses instead of status codes. 3.00 Actions
05.02.2021 18:45 05.02.2021 Lari Taskula Development Bug #439: Bug 27630 - TestBuilder real number precision to use column's size Investigating this issue further. Attempting to reload the TestBuilder-generated data via DBIx's discard_changes/get_from_storage methods, but it fails for the tables that don't have primary keys. Digging into DBIx, DBI and eventually some DBD::mysql where (or lower) the problem seems to originate from. Writing better unit tests to prove this issue. 3.00 Actions
04.02.2021 01:41 04.02.2021 Lari Taskula Development Feature #421: Bug 20028 - Export all patron related personal data in one package Implementing a new approach by using DBIx::Class relationships. Interestingly, DBIx::Class::ResultSource::relationships returns other than just tables, for example "borrower_relationships_guarantees". Not sure why this is. 3.00 Actions
11.02.2022 16:32 11.02.2022 Lari Taskula Development Support #820: Allow renewals for ILLs Developing this feature. Studying and experimenting how ILL backend statuses behave. It seems that it's enough to create a new placeholder status "IN_UTL_RENEW" that's not an actual status, but just a placeholder to add a button to illview screen. Its actual status (stored in the database) is still "IN_UTL". Using code from the receive step and adjusting it for the needs of renewals. Testing. Pushing changes to GitHub. 3.50 Actions
02.02.2022 00:21 02.02.2022 Lari Taskula Development Support #779: Bug 24239 - Let the ILL module set ad hoc hard due dates Studying the specification doc for task a. Checking Bugzilla Bug 24239 and studying Magnus's patch. Reading discussion related to the bug. It was suggested that instead of custom attribute, a date_due column could be added to illrequests table. Implementing this and writing tests for this. 3.50 Actions
14.02.2022 07:47 14.02.2022 Lari Taskula Development Support #761: koha-illbackend-libris enhancements Work log entry for Samu's work. Only Lari's entries (such as this) will be billed. Samu debugged a bug with the creation of new ILL request, and after receiving more information from Magnus he fixed it and sent a PR to upstream. 3.75 Actions
30.11.2022 18:52 30.11.2022 Lari Taskula Development Support #973: Bug 18595 - Move C4::Members::Messaging to Koha namespace Thinking of possible solutions to the previous issue with missing contact information at patron creation step. First, attempting to catch exceptions at memberentry.pl and display an error message. This doesn't work however due to incompatible error handling in memberentry.pl. Remembered an old solution, a JavaScript validation that I've already implemented before. This could be an approach for resolving the issue. Found my old work from 2015 (Bug 14590) to which we can use here. Restoring old code from the patch in 14590 and rebasing it on current master. Testing changes, seems to work. Continuing testing rest of the test plans, preparing test plans and patches for attaching. 4.00 Actions
10.11.2022 04:57 10.11.2022 Lari Taskula Development Support #973: Bug 18595 - Move C4::Members::Messaging to Koha namespace Rebasing. Git conflicts resolved mostly without pain. There seems to be new appearances of usage of the methods this Bug aims to replace. They have to be identified, replace with the new methods and amend test plan to cover these cases. Identifying all new occurences and replaced them with new methods. Debugging some failed unit tests, especially t/db_dependent/api/v1/patrons.t. Deeper investigation revealed some issues. Firstly, days_in_advance must be explicitly defined as undef, because Koha has defined default days_in_advance value to be 0 at database level. It is easy to explicitly define it but at the same time it is also pointless to do so and such cases should be handled inside Koha objects. Did not yet implement such checks. Secondly, it seems the new objects do not return letter_code and letter_module which are required by the test, and the test will fail with the current logic. Studying what the current options are to resolve this issue. 4.00 Actions
09.09.2021 21:47 09.09.2021 Lari Taskula Development Feature #578: ansible-role-koha Support OPAC, investigating porting the automatic installer script from KS. 4.00 Actions
08.04.2019 19:31 08.04.2019 Lari Taskula Development Feature #21: SMS::Send::BudgetSMS Implementing module, tests and writing documentation. Pushing to CPAN and GitHub with Travis CI enabled. 4.00 Actions
03.03.2022 02:54 03.03.2022 Lari Taskula Development Support #851: Bug 30200 - Add customizable tabs to interlibrary loan requests list Developing a first working version. Writing test plans. Pushing patches to Bug 30200. 4.50 Actions
14.02.2022 11:44 14.02.2022 Lari Taskula Development Support #762: Edit patron information before registration of arrival Designing this feature. It was requested that reserves.borrowernumber should also update when illrequests.borrowernumber is updated. It could be implemented in various ways, but deciding to extend Koha::Illrequest->store() with logic to replace borrowernumber also in reserves-table. Writing unit tests. Reading plenty of DBIx documentation. Figuring out how to retrieve the before-store() value of "borrowernumber" so that it could be compared with the borrowernumber used in "set" (or $illreq->borrowernumber(xxx)), but apprarently it's not possible without fetching the whole Koha-object again (or unless you somehow store it locally in the object). Managed to make it work by fetching the whole object again if borrowernumber is updated according to "get_dirty_columns". Adding an editable input field to ILL-request edit screen and writing a test plan. Pushing patches to Bugzilla. 4.50 Actions
03.02.2022 08:59 03.02.2022 Lari Taskula Development Feature #786: Cron script reminder for unretrieved material Studying module's already existing cronjob. Designing a flexible config.yaml configuration for this feature. Developing the feature and sending a PR to upstream repository. 6.00 Actions
(76-100/182) Per page: 25, 50, 100, 500

Also available in: Atom CSV