IRC log for #koha, 2022-10-07

All times shown according to UTC.

Time S Nick Message
02:19 tuxayo joined #koha
02:19 tuxayo The website changed! :)
02:53 fridolin joined #koha
02:57 Oak joined #koha
03:56 mathew joined #koha
04:16 fridolin1 joined #koha
06:03 marcelr joined #koha
06:03 fridolin joined #koha
06:03 marcelr hi #koha
06:46 saa joined #koha
06:49 lds joined #koha
06:49 saa we need small help we had created custom fields under 952 tag after upgrade koha intranet threw error while using acquisitions module while completing the receiving option it is throwing errror as  AH01215: DBIx::Class::Row::store_column(): No such column 'invoicenumber' on Koha::Schema::Result::Item at /usr/share/koha/lib/Koha/Object.pm line 79
06:50 saa can anyone help to correct above issue
07:07 cait joined #koha
07:13 alex_ joined #koha
07:13 alex_ Bonjour
07:14 cait good morning #koha
07:15 marcelr hi alex_ cait
07:26 cait hi marcelr
07:44 saa joined #koha
09:18 cait mtj++
09:36 cait Has someone seen this? I am trying to get the ktd command in my ktd environment to work
09:36 cait every time I run ktd it gives me the help now - so far so good
09:36 cait but when I try to run ktd down or any other command I have: unknown shorthand flag. "f" in in -f
09:36 cait ah i think i missed the compose step...
09:37 cait and the README link to installing is broken hm.
09:40 ashimema hmm
09:40 ashimema weird
09:42 cait Tomas did it with me on my other computer last week
09:43 cait but really not remembering how we installed docker-compose ugh.
09:43 cait will google
10:46 ashimema slowly catch you up cait
10:47 cait i'll have to speed up then :)
10:47 cait ashimema++ thx for QA on my patch :)
10:54 cait looks like ashimema++ and marcelr++ stole all the easy ones to QA! ;)
10:55 ashimema haha.. just wanted to get the queues moving
10:55 ashimema I'm not looking at harder ones
10:55 ashimema where the UI at.. will try to catch Tomas.. see what needs finishing off there
10:56 cait he is gone today and maybe Monday too I think
10:56 cait some holidays?
10:56 ashimema ah, ok
10:58 cait could someone take bug 15048? I SO
10:58 huginn` Bug https://bugs.koha-community.or[…]_bug.cgi?id=15048 normal, P5 - low, ---, mtj, Signed Off , Genre/Form (655) searches fail on searches with $x 'General subdivision' subfield values
11:40 cait my QA script is doing stange things again, anappyling commits :(
11:53 cait ... unapplying
11:57 tundunf joined #koha
12:15 matts joined #koha
12:16 cait someone around using the latest ktd?
12:51 marie-luce joined #koha
13:12 cait ping? :)
13:35 Dyrcona joined #koha
14:04 Dyrcona joined #koha
14:21 cait khall_: *wave*
14:22 khall_ hi cait!
14:22 cait thx for QA and making this less of  a ghost town today :)
14:26 ashimema sorry.. got distracted
14:26 ashimema hello cait
14:26 ashimema I didn't drown 😜
14:27 cait ashimema: well done!
14:32 ashimema why do I end up down a hole so often ☹️
14:32 ashimema our slip printing stuff is a huge mess...
14:32 ashimema weird duplicate code all over the place..
14:33 ashimema I reckon with some careful digging we could replace multiple files and many many many copy pastes with like 25 lines of code!
14:33 * ashimema makes a cuppa
14:33 cait but maybe tackle one slip after the other :)
14:34 cait but i had the same feeling looking at bug 31569 - and i filed like 5 more bugs...
14:34 huginn` Bug https://bugs.koha-community.or[…]_bug.cgi?id=31569 enhancement, P5 - low, ---, nick, Passed QA , Remove GetImportsRecordRange from acqui/addorderiso2709
14:35 cait once you have the object, it would be quite easy to remove a lot of those old import related methods that don't really do a lot
14:35 cait SetMatchedBiblionumber
14:35 gk_ joined #koha
14:36 cait UPDATE import_biblios SET matched_biblionumber = ? WHERE import_record_id = ?|,
14:36 ashimema totally
14:36 cait it's just a setter basically
14:36 ashimema yup#
14:37 ashimema in my case I'm currently reworking bug 12285 to be a simple, modern and generic version
14:37 huginn` Bug https://bugs.koha-community.or[…]_bug.cgi?id=12285 enhancement, P5 - low, ---, emmi.takkinen, Signed Off , Allow easy printing of patron's fines
14:37 cait :)
14:37 cait just remember: don't fall into the rabbit hole
14:37 gk_ upon upgrade from version 22.05.02.000 to 22.05.05 an error like - Upgrade to 22.05.04.002 [14:22:49]: Bug 31086 - Do not allow null values in branchcodes for reserves ERROR: {UNKNOWN}: DBI Exception: DBD::mysql::db do failed: Cannot change column 'branchcode': used in a foreign key constraint 'reserves_ibfk_4' at /usr/share/koha/lib/C4/Installer.pm line 739 is thrown in production system . Please help me to get rid off from this.
14:37 huginn` Bug https://bugs.koha-community.or[…]_bug.cgi?id=31086 normal, P5 - low, ---, nick, RESOLVED FIXED, Do not allow hold requests with no branchcode
14:38 ashimema then converting the other slips on that page should be a simple matter of updating the default template to use TT and then drop the controller and the C4 method..
14:38 ashimema how to migrate old notices will come up yet again though ☹️
14:38 ashimema I just don't know what to do there.. at some point we need to break backwards compatability
14:38 cait i think having a new default and nice TT is a nice step forward
14:38 cait yes, but we are not there yet
14:41 ashimema gk_
14:41 ashimema try running `ALTER TABLE reserves DROP FOREIGN KEY reserves_ibfk_4;`
14:41 ashimema followed by
14:41 ashimema `ALTER TABLE reserves MODIFY COLUMN `branchcode` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'foreign key from the branches table defining which branch the patron wishes to pick this hold up at'`
14:42 ashimema and finally
14:42 ashimema `ALTER TABLE reserves ADD CONSTRAINT reserves_ibfk_4 FOREIGN KEY (branchcode) REFERENCES `branches` (`branchcode`) ON DELETE CASCADE ON UPDATE CASCADE;`
14:42 ashimema then finally.. you should be able to let updatedatabase run and it will complete this time..
14:42 ashimema details in bug 31673
14:42 huginn` Bug https://bugs.koha-community.or[…]_bug.cgi?id=31673 critical, P5 - low, ---, nick, Needs Signoff , DB update of bug 31086 fails: Cannot change column 'branchcode': used in a foreign key constraint
14:48 Dyrcona1 joined #koha
14:49 cait hm still NSO
14:49 cait we should speed that one up
14:49 Dyrcona1 joined #koha
14:50 cait ah, same thought
14:52 gk_ Thank you very much ashimema. It works fantastically!
14:57 ashimema 🙂
14:57 ashimema oleonard around?
14:57 cait ashimema++
15:00 bag joined #koha
15:43 cait left #koha
16:00 lukeg joined #koha
16:30 cait joined #koha
16:50 * cait waves
18:04 fridolin joined #koha
19:52 fridolin joined #koha
21:03 fridolin joined #koha
21:46 caroline fridolin, I tried answering on the french translation mailing list, but it seems I am not authorized to post on that ML...
21:46 caroline The translation you suggested is the correct one
21:46 caroline For 21.11 and before
21:46 caroline For 22.05+, I created bug 31718
21:46 huginn` Bug https://bugs.koha-community.or[…]_bug.cgi?id=31718 enhancement, P5 - low, ---, caroline.cyr-la-rose, Needs Signoff , Change the IF ELSE values in marc_subfields_structure breadcrumbs to facilitate translation
23:31 dpk_ joined #koha

| Channels | #koha index | Today | | Search | Google Search | Plain-Text | plain, newest first | summary