From bugzilla-daemon@bugs.koha-community.org Mon Dec 23 22:53:16 2019
From: bugzilla-daemon@bugs.koha-community.org
To: koha-bugs@lists.koha-community.org
Subject: [Koha-bugs] [Bug 24305] New: Batch Item modification via item number
in reports does not work with CONCAT in report
Date: Mon, 23 Dec 2019 21:53:15 +0000
Message-ID:
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="===============0558258479685917128=="
--===============0558258479685917128==
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: quoted-printable
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=3D24305
Bug ID: 24305
Summary: Batch Item modification via item number in reports
does not work with CONCAT in report
Change sponsored?: ---
Product: Koha
Version: 19.05
Hardware: All
OS: All
Status: NEW
Severity: normal
Priority: P5 - low
Component: Cataloging
Assignee: koha-bugs@lists.koha-community.org
Reporter: bwsdonna@gmail.com
QA Contact: testopia@bugs.koha-community.org
CC: m.de.rooy@rijksmuseum.nl
If you have a report with a CONCAT statement in it, and use that report to pa=
ss
the item numbers to the batch item modification, the batch modification does
not work. Title list does not show, just the edit item screen, and if you
proceed, nothing is modified.
To create, use a report such as:
SELECT
items.biblionumber,items.itemcallnumber,items.itype,biblio.author,biblio.titl=
e,
biblio.copyrightdate, items.barcode, items.location,CONCAT('', itemnumber,
'' ) AS itemnumber
FROM biblio=20
JOIN items USING (biblionumber)=20
WHERE (items.location IS NULL OR items.location =3D '')
ORDER by items.itemcallnumber ASC
and see that the batch modification is blank. Remove the concat statement, a=
nd
the batch item modification works as expected.
--=20
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
--===============0558258479685917128==--
From bugzilla-daemon@bugs.koha-community.org Thu Dec 26 11:17:22 2019
From: bugzilla-daemon@bugs.koha-community.org
To: koha-bugs@lists.koha-community.org
Subject: [Koha-bugs] [Bug 24305] Batch Item modification via item number in
reports does not work with CONCAT in report
Date: Thu, 26 Dec 2019 10:17:21 +0000
Message-ID:
In-Reply-To:
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="===============1889806255366631445=="
--===============1889806255366631445==
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: 7bit
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=24305
Jonathan Druart changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |Needs Signoff
--
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
--===============1889806255366631445==--
From bugzilla-daemon@bugs.koha-community.org Thu Dec 26 11:17:33 2019
From: bugzilla-daemon@bugs.koha-community.org
To: koha-bugs@lists.koha-community.org
Subject: [Koha-bugs] [Bug 24305] Batch Item modification via item number in
reports does not work with CONCAT in report
Date: Thu, 26 Dec 2019 10:17:24 +0000
Message-ID:
In-Reply-To:
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="===============4344217655177096365=="
--===============4344217655177096365==
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: quoted-printable
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=3D24305
--- Comment #1 from Jonathan Druart =
---
Created attachment 96629
-->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=3D96629&action=3D=
edit
Bug 24305: Fix links to batch tools when report's columns do not contain
integers
If report's columns do not only contain integers, we should not point to
batch tools.
For instance, if the value is a link, the batch tools will not work as
they will not retrieve the id (itemnnumber or biblionumber) properly
Test plan:
Create a report like:
SELECT CONCAT('', itemnumber,
'' ) AS itemnumber
FROM items
LIMIT 10;
Execute it
=3D> There is not link to the batch tools
Edit the report like:
SELECT itemnumber
FROM items
LIMIT 10;
Execute it
=3D> There is a link to the batch tools
Edit the report like
SELECT itemnumber, CONCAT('', itemnumber,
'' ) AS itemnumber
FROM items
LIMIT 10;
Execute it
=3D> There is link to the batch tools
Try other combinations with biblionumber.
--=20
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
--===============4344217655177096365==--
From bugzilla-daemon@bugs.koha-community.org Thu Dec 26 11:18:57 2019
From: bugzilla-daemon@bugs.koha-community.org
To: koha-bugs@lists.koha-community.org
Subject: [Koha-bugs] [Bug 24305] Batch Item modification via item number in
reports does not work with CONCAT in report
Date: Thu, 26 Dec 2019 10:18:57 +0000
Message-ID:
In-Reply-To:
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="===============1792567329371579046=="
--===============1792567329371579046==
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: 7bit
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=24305
Jonathan Druart changed:
What |Removed |Added
----------------------------------------------------------------------------
Depends on| |19233
CC| |jonathan.druart@bugs.koha-c
| |ommunity.org
Version|19.05 |master
Assignee|koha-bugs@lists.koha-commun |jonathan.druart@bugs.koha-c
|ity.org |ommunity.org
Referenced Bugs:
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=19233
[Bug 19233] Add ability to send itemnumbers in report results to batch
modification
--
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
--===============1792567329371579046==--
From bugzilla-daemon@bugs.koha-community.org Thu Jan 9 16:49:17 2020
From: bugzilla-daemon@bugs.koha-community.org
To: koha-bugs@lists.koha-community.org
Subject: [Koha-bugs] [Bug 24305] Batch Item modification via item number in
reports does not work with CONCAT in report
Date: Thu, 09 Jan 2020 15:49:16 +0000
Message-ID:
In-Reply-To:
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="===============6128295458052111206=="
--===============6128295458052111206==
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: quoted-printable
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=3D24305
Holly changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |hc@interleaf.ie
--- Comment #2 from Holly ---
I tested this and noticed something odd. The examples given in the test plan
worked as expected:
Results from reports using only the CONCAT statement did not produce a link to
to the batch tools.
Reports that did not use the CONCAT statement at all did produce a link to the
batch tools.=20
Reports that had the CONCAT statement but also had results that were not
concatenated did produce a link to the batch tools, but only for the results
that were not concatenated. e.g
SELECT itemnumber, CONCAT('', itemnumber,
'' ) AS itemnumber
FROM items
LIMIT 10;
produced a link to the batch tools for the first instance of itemnumber.
However, I tried to create a report that used the CONCAT statement for both t=
he
biblionumber and the itemnumber and the results included a button to link to
the batch tools, however it did not have a dropdown menu to select which tool
to go to.
SELECT CONCAT('', biblionumber, '' ) AS biblionumber, CONCAT('', itemnumber,
'' ) AS itemnumber
FROM items
LIMIT 10
I don't think the button should appear at all in this instance and it shouldn=
't
appear if it is not going to link out to anything.=20
Best,
Holly
--=20
You are receiving this mail because:
You are watching all bug changes.
--===============6128295458052111206==--
From bugzilla-daemon@bugs.koha-community.org Mon Jan 13 12:16:53 2020
From: bugzilla-daemon@bugs.koha-community.org
To: koha-bugs@lists.koha-community.org
Subject: [Koha-bugs] [Bug 24305] Batch Item modification via item number in
reports does not work with CONCAT in report
Date: Mon, 13 Jan 2020 11:16:52 +0000
Message-ID:
In-Reply-To:
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="===============9117361376907180503=="
--===============9117361376907180503==
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: quoted-printable
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=3D24305
--- Comment #3 from Jonathan Druart =
---
Thanks for testing Holly. This patch should fixes the issue you reported!
--=20
You are receiving this mail because:
You are watching all bug changes.
--===============9117361376907180503==--
From bugzilla-daemon@bugs.koha-community.org Mon Jan 13 12:22:01 2020
From: bugzilla-daemon@bugs.koha-community.org
To: koha-bugs@lists.koha-community.org
Subject: [Koha-bugs] [Bug 24305] Batch Item modification via item number in
reports does not work with CONCAT in report
Date: Mon, 13 Jan 2020 11:22:00 +0000
Message-ID:
In-Reply-To:
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="===============8743407705105559393=="
--===============8743407705105559393==
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: quoted-printable
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=3D24305
--- Comment #4 from Jonathan Druart =
---
Created attachment 97302
-->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=3D97302&action=3D=
edit
Bug 24305: Remove previous declaration of batch_biblionumbers
We should not init batch_biblionumbers before.
Also this patch deals with batch_cardnumbers.
--=20
You are receiving this mail because:
You are watching all bug changes.
--===============8743407705105559393==--
From bugzilla-daemon@bugs.koha-community.org Thu Jan 23 17:27:39 2020
From: bugzilla-daemon@bugs.koha-community.org
To: koha-bugs@lists.koha-community.org
Subject: [Koha-bugs] [Bug 24305] Batch Item modification via item number in
reports does not work with CONCAT in report
Date: Thu, 23 Jan 2020 16:27:38 +0000
Message-ID:
In-Reply-To:
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="===============8967222875211476863=="
--===============8967222875211476863==
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: 7bit
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=24305
ByWater Sandboxes changed:
What |Removed |Added
----------------------------------------------------------------------------
Attachment #97302|0 |1
is obsolete| |
--- Comment #5 from ByWater Sandboxes ---
Created attachment 97829
-->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=97829&action=edit
Bug 24305: Remove previous declaration of batch_biblionumbers
We should not init batch_biblionumbers before.
Also this patch deals with batch_cardnumbers.
Signed-off-by: Holly Cooper
--
You are receiving this mail because:
You are watching all bug changes.
--===============8967222875211476863==--
From bugzilla-daemon@bugs.koha-community.org Thu Jan 23 17:28:04 2020
From: bugzilla-daemon@bugs.koha-community.org
To: koha-bugs@lists.koha-community.org
Subject: [Koha-bugs] [Bug 24305] Batch Item modification via item number in
reports does not work with CONCAT in report
Date: Thu, 23 Jan 2020 16:28:03 +0000
Message-ID:
In-Reply-To:
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="===============6091519677486073604=="
--===============6091519677486073604==
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: 7bit
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=24305
Holly changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|Needs Signoff |Signed Off
--
You are receiving this mail because:
You are watching all bug changes.
--===============6091519677486073604==--
From bugzilla-daemon@bugs.koha-community.org Fri Jan 24 08:29:40 2020
From: bugzilla-daemon@bugs.koha-community.org
To: koha-bugs@lists.koha-community.org
Subject: [Koha-bugs] [Bug 24305] Batch Item modification via item number in
reports does not work with CONCAT in report
Date: Fri, 24 Jan 2020 07:29:39 +0000
Message-ID:
In-Reply-To:
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="===============4311921809437573312=="
--===============4311921809437573312==
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: 7bit
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=24305
Marcel de Rooy changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|Signed Off |Patch doesn't apply
--
You are receiving this mail because:
You are watching all bug changes.
--===============4311921809437573312==--
From bugzilla-daemon@bugs.koha-community.org Fri Jan 24 09:52:24 2020
From: bugzilla-daemon@bugs.koha-community.org
To: koha-bugs@lists.koha-community.org
Subject: [Koha-bugs] [Bug 24305] Batch Item modification via item number in
reports does not work with CONCAT in report
Date: Fri, 24 Jan 2020 08:52:23 +0000
Message-ID:
In-Reply-To:
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="===============5856703482751457165=="
--===============5856703482751457165==
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: quoted-printable
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=3D24305
Jonathan Druart changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|Patch doesn't apply |Signed Off
--- Comment #6 from Jonathan Druart =
---
Marcel, they apply correctly for me, please try again.
--=20
You are receiving this mail because:
You are watching all bug changes.
--===============5856703482751457165==--
From bugzilla-daemon@bugs.koha-community.org Fri Jan 24 10:10:25 2020
From: bugzilla-daemon@bugs.koha-community.org
To: koha-bugs@lists.koha-community.org
Subject: [Koha-bugs] [Bug 24305] Batch Item modification via item number in
reports does not work with CONCAT in report
Date: Fri, 24 Jan 2020 09:10:24 +0000
Message-ID:
In-Reply-To:
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="===============7068741157255474219=="
--===============7068741157255474219==
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: 7bit
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=24305
Marcel de Rooy changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|Signed Off |BLOCKED
--- Comment #7 from Marcel de Rooy ---
(In reply to Jonathan Druart from comment #6)
> Marcel, they apply correctly for me, please try again.
And yes, they apply! Not sure what happened here.
Looking here now for QA
--
You are receiving this mail because:
You are watching all bug changes.
--===============7068741157255474219==--
From bugzilla-daemon@bugs.koha-community.org Fri Jan 24 12:26:40 2020
From: bugzilla-daemon@bugs.koha-community.org
To: koha-bugs@lists.koha-community.org
Subject: [Koha-bugs] [Bug 24305] Batch Item modification via item number in
reports does not work with CONCAT in report
Date: Fri, 24 Jan 2020 11:26:39 +0000
Message-ID:
In-Reply-To:
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="===============5773544627070891175=="
--===============5773544627070891175==
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: quoted-printable
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=3D24305
--- Comment #8 from Marcel de Rooy ---
Figured out how you should use the square brackets in a SQL query in Reportin=
g.
Well documented?
You can do:
SELECT [[items.biblionumber|bieb]]
This becomes SELECT items.biblionumber AS bieb
Not sure why we need it if using "AS" is just as easy but anyway.
Adding a few comment lines in the code with a follow-up.
Using this construct does not work with the =3D=3D 'biblionumber' test. Addin=
g one
extra line in get_prepped_report for that as well. This is consistent with the
headers filled by $sth->{NAME}.
--=20
You are receiving this mail because:
You are watching all bug changes.
--===============5773544627070891175==--
From bugzilla-daemon@bugs.koha-community.org Fri Jan 24 12:27:21 2020
From: bugzilla-daemon@bugs.koha-community.org
To: koha-bugs@lists.koha-community.org
Subject: [Koha-bugs] [Bug 24305] Batch Item modification via item number in
reports does not work with CONCAT in report
Date: Fri, 24 Jan 2020 11:27:20 +0000
Message-ID:
In-Reply-To:
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="===============4672716846263006080=="
--===============4672716846263006080==
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: 7bit
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=24305
Marcel de Rooy changed:
What |Removed |Added
----------------------------------------------------------------------------
Patch complexity|--- |Small patch
Status|BLOCKED |Passed QA
--
You are receiving this mail because:
You are watching all bug changes.
--===============4672716846263006080==--
From bugzilla-daemon@bugs.koha-community.org Fri Jan 24 12:27:31 2020
From: bugzilla-daemon@bugs.koha-community.org
To: koha-bugs@lists.koha-community.org
Subject: [Koha-bugs] [Bug 24305] Batch Item modification via item number in
reports does not work with CONCAT in report
Date: Fri, 24 Jan 2020 11:27:23 +0000
Message-ID:
In-Reply-To:
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="===============6944522784009587948=="
--===============6944522784009587948==
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: 7bit
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=24305
--- Comment #9 from Marcel de Rooy ---
Created attachment 97866
-->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=97866&action=edit
Bug 24305: (QA follow-up) Strip table name in [[table.field|alias]]
When you would use the construct, you wont have batch features unless
we strip the table name. This is consistent with the $sth->{NAME} used
to fill the headers by default.
Test plan:
Use [[items.biblionumber|bibno]] instead of items.biblionumber in a
reporting query.
Signed-off-by: Marcel de Rooy
--
You are receiving this mail because:
You are watching all bug changes.
--===============6944522784009587948==--
From bugzilla-daemon@bugs.koha-community.org Fri Jan 24 12:27:42 2020
From: bugzilla-daemon@bugs.koha-community.org
To: koha-bugs@lists.koha-community.org
Subject: [Koha-bugs] [Bug 24305] Batch Item modification via item number in
reports does not work with CONCAT in report
Date: Fri, 24 Jan 2020 11:27:42 +0000
Message-ID:
In-Reply-To:
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="===============4337686700903499027=="
--===============4337686700903499027==
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: 7bit
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=24305
Marcel de Rooy changed:
What |Removed |Added
----------------------------------------------------------------------------
Attachment #96629|0 |1
is obsolete| |
--- Comment #10 from Marcel de Rooy ---
Created attachment 97867
-->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=97867&action=edit
Bug 24305: Fix links to batch tools when report's columns do not contain
integers
If report's columns do not only contain integers, we should not point to
batch tools.
For instance, if the value is a link, the batch tools will not work as
they will not retrieve the id (itemnnumber or biblionumber) properly
Test plan:
Create a report like:
SELECT CONCAT('', itemnumber,
'' ) AS itemnumber
FROM items
LIMIT 10;
Execute it
=> There is not link to the batch tools
Edit the report like:
SELECT itemnumber
FROM items
LIMIT 10;
Execute it
=> There is a link to the batch tools
Edit the report like
SELECT itemnumber, CONCAT('', itemnumber,
'' ) AS itemnumber
FROM items
LIMIT 10;
Execute it
=> There is link to the batch tools
Try other combinations with biblionumber.
Signed-off-by: Marcel de Rooy
--
You are receiving this mail because:
You are watching all bug changes.
--===============4337686700903499027==--
From bugzilla-daemon@bugs.koha-community.org Fri Jan 24 12:27:53 2020
From: bugzilla-daemon@bugs.koha-community.org
To: koha-bugs@lists.koha-community.org
Subject: [Koha-bugs] [Bug 24305] Batch Item modification via item number in
reports does not work with CONCAT in report
Date: Fri, 24 Jan 2020 11:27:46 +0000
Message-ID:
In-Reply-To:
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="===============5237950544271498611=="
--===============5237950544271498611==
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: 7bit
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=24305
Marcel de Rooy changed:
What |Removed |Added
----------------------------------------------------------------------------
Attachment #97829|0 |1
is obsolete| |
--- Comment #11 from Marcel de Rooy ---
Created attachment 97868
-->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=97868&action=edit
Bug 24305: Remove previous declaration of batch_biblionumbers
We should not init batch_biblionumbers before.
Also this patch deals with batch_cardnumbers.
Signed-off-by: Holly Cooper
Signed-off-by: Marcel de Rooy
--
You are receiving this mail because:
You are watching all bug changes.
--===============5237950544271498611==--
From bugzilla-daemon@bugs.koha-community.org Fri Jan 24 12:28:03 2020
From: bugzilla-daemon@bugs.koha-community.org
To: koha-bugs@lists.koha-community.org
Subject: [Koha-bugs] [Bug 24305] Batch Item modification via item number in
reports does not work with CONCAT in report
Date: Fri, 24 Jan 2020 11:27:50 +0000
Message-ID:
In-Reply-To:
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="===============2279503677047904457=="
--===============2279503677047904457==
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: 7bit
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=24305
--- Comment #12 from Marcel de Rooy ---
Created attachment 97869
-->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=97869&action=edit
Bug 24305: (follow-up) Add small comment for square brackets in
get_prepped_report
Signed-off-by: Marcel de Rooy
--
You are receiving this mail because:
You are watching all bug changes.
--===============2279503677047904457==--
From bugzilla-daemon@bugs.koha-community.org Fri Jan 24 12:28:14 2020
From: bugzilla-daemon@bugs.koha-community.org
To: koha-bugs@lists.koha-community.org
Subject: [Koha-bugs] [Bug 24305] Batch Item modification via item number in
reports does not work with CONCAT in report
Date: Fri, 24 Jan 2020 11:27:54 +0000
Message-ID:
In-Reply-To:
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="===============1276865143023165649=="
--===============1276865143023165649==
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: 7bit
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=24305
Marcel de Rooy changed:
What |Removed |Added
----------------------------------------------------------------------------
Attachment #97866|0 |1
is obsolete| |
--- Comment #13 from Marcel de Rooy ---
Created attachment 97870
-->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=97870&action=edit
Bug 24305: (QA follow-up) Strip table name in [[table.field|alias]]
When you would use the construct, you wont have batch features unless
we strip the table name. This is consistent with the $sth->{NAME} used
to fill the headers by default.
Test plan:
Use [[items.biblionumber|bibno]] instead of items.biblionumber in a
reporting query.
Signed-off-by: Marcel de Rooy
--
You are receiving this mail because:
You are watching all bug changes.
--===============1276865143023165649==--
From bugzilla-daemon@bugs.koha-community.org Fri Jan 24 12:28:24 2020
From: bugzilla-daemon@bugs.koha-community.org
To: koha-bugs@lists.koha-community.org
Subject: [Koha-bugs] [Bug 24305] Batch Item modification via item number in
reports does not work with CONCAT in report
Date: Fri, 24 Jan 2020 11:28:20 +0000
Message-ID:
In-Reply-To:
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="===============8284010752196770062=="
--===============8284010752196770062==
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: 7bit
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=24305
Marcel de Rooy changed:
What |Removed |Added
----------------------------------------------------------------------------
QA Contact|testopia@bugs.koha-communit |m.de.rooy@rijksmuseum.nl
|y.org |
--
You are receiving this mail because:
You are watching all bug changes.
--===============8284010752196770062==--
From bugzilla-daemon@bugs.koha-community.org Fri Jan 24 12:29:25 2020
From: bugzilla-daemon@bugs.koha-community.org
To: koha-bugs@lists.koha-community.org
Subject: [Koha-bugs] [Bug 24305] Batch Item modification via item number in
reports does not work with CONCAT in report
Date: Fri, 24 Jan 2020 11:29:25 +0000
Message-ID:
In-Reply-To:
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="===============9028249184838529428=="
--===============9028249184838529428==
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: 7bit
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=24305
--- Comment #14 from Marcel de Rooy ---
Still one question remaining. No blocker for me.
+