[Koha-bugs] [Bug 14560] New: Rameau authorities

2015-07-17 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14560

Bug ID: 14560
   Summary: Rameau authorities
 Change sponsored?: ---
   Product: Koha
   Version: master
  Hardware: All
OS: All
Status: NEW
  Severity: enhancement
  Priority: P5 - low
 Component: MARC Authority data support
  Assignee: gmcha...@gmail.com
  Reporter: matthias.meusbur...@biblibre.com
QA Contact: testo...@bugs.koha-community.org

The purpose of this patch is to give a clean support of the composed Rameau
authorities.

This has been discussed a lot in Bug 8304, and led to a Failed QA (deserved,
imho).

I've rewritten this from scratch, while keeping in mind to separate as much as
possible the Rameau code from the legacy koha code.

What are Rameau authorities?


Rameau authorities are composed authorities that look like this:

606_311954119
   _aGuerillas
   _311943195
   _yBolivie
   _311976947
   _z1945-1970

The purpose of this patch is to allow to add the koha internal links ($9) when
merging the authority, while preserving the subfield order, which is
meaningful.

If processed correctly (with this patch), the result after merge should be:

606_311954119
   _926311
   _aGuerillas
   _311943195
   _926312
   _yBolivie
   _311976947
   _926313
   _z1945-1970
   _2rameau


How does it work?
-

A new package has been introduced, C4/AuthoritiesRameau.pm, which is used only
if the useRameau syspref is enabled.

Unit tests are here : t/db_dependent/AuthoritiesRameau.t

There are only 3 changes to the original merge code:

 1) Adds a new parameter to be able to specify if we want to merge to a
specific biblio.
 2) Skip the legacy code if useRameau is enabled and there are multiple $9 in
the field.
 3) use C4/AuthoritiesRameau.pm if useRameau is enabled.


Test plan
-

It might be a little problematic for you to test this, because Rameau
authorities are only used in France, so you may have to forge authorities if
you don't have data with Rameau authorities. (or someone from France could test
it ? :))

Anyway, make a call to the merge function like this:

merge($mergefrom,$MARCfrom,$mergeto,$MARCto, $biblionumber);

With $mergefrom and $mergeto being the same koha authid, and $MARCfrom and
$MARCto being the result of GetAuthority($authid), and $biblionumber the biblio
you want to merge the authority in.

I'm not sure there is a way to do this in the interface, if anyone knows...

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 14560] Rameau authorities

2015-07-17 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14560

--- Comment #1 from Matthias Meusburger matthias.meusbur...@biblibre.com ---
Created attachment 41072
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=41072action=edit
Bug 14560: Rameau authorities

The purpose of this patch is to give a clean support for merging composed
Rameau authorities.

Rameau authorities are composed authorities that look like this:

606_311954119
   _aGuerillas
   _311943195
   _yBolivie
   _311976947
   _z1945-1970

If processed correctly, the result after merge should be:

606_311954119
   _926311
   _aGuerillas
   _311943195
   _926312
   _yBolivie
   _311976947
   _926313
   _z1945-1970
   _2rameau

Test plan
-

Make a call to the merge function like this:

merge($mergefrom,$MARCfrom,$mergeto,$MARCto, $biblionumber);

With $mergefrom and $mergeto being the same koha authid, $MARCfrom and $MARCto
being the result of GetAuthority($authid), and $biblionumber the biblio you
want to merge the authority in.

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 14557] Add holds count to holds tab

2015-07-17 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14557

Kyle M Hall k...@bywatersolutions.com changed:

   What|Removed |Added

   Patch complexity|--- |Small patch
 Status|NEW |Needs Signoff

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 14557] Add holds count to holds tab

2015-07-17 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14557

--- Comment #2 from Kyle M Hall k...@bywatersolutions.com ---
Created attachment 41060
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=41060action=edit
Bug 14557 - Clean up biblio-view-menu.inc

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 14557] Add holds count to holds tab

2015-07-17 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14557

--- Comment #3 from Kyle M Hall k...@bywatersolutions.com ---
Created attachment 41061
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=41061action=edit
Bug 14557 - Add holds count to holds tab

Some librarians have expressed that it would be helpful if the holds tab
displayed the count of holds for a record.

Test Plan:
1) Apply this patch
2) Note the Holds tab for a record now displays the number of holds for that
record

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 10276] Extend IndependentBranches to support groups of libraries

2015-07-17 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10276

Kyle M Hall k...@bywatersolutions.com changed:

   What|Removed |Added

  Attachment #36028|0   |1
is obsolete||
  Attachment #36029|0   |1
is obsolete||
  Attachment #36030|0   |1
is obsolete||
  Attachment #36031|0   |1
is obsolete||
  Attachment #36032|0   |1
is obsolete||

--- Comment #75 from Kyle M Hall k...@bywatersolutions.com ---
Created attachment 41064
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=41064action=edit
Bug 10276 - Extend IndependentBranches to support groups of libraries

This patch adds the ability to have independent library groups. To
enable this feature, enable the IndependentBranches system preference.
If no libraries are in any independent library groups,
IndependentBranches will behave as it always have. If a library is
part of an independent library group with one or more libraries, that
library will be able to access and modify patrons and items from any
library in that group.

Let's say we have 3 groups:
Group1:
  LibA
  LibB
  LibC
Group1:
  LibD
  LibE
  LibF
Group3:
  LibG
  LibH
  LibA

Note how LibA is in two groups ( Group1 and Group3 ). With this
configuration, if IndependentBranches is enabled, libraries will be able
to access and edit patrons and items in the following configuration:
LibA = LibB, LibC, LibG, LibH
LibB = LibA, LibC
LibC = LibA, LibB
LibD = LibE, LibF
LibF = LibD, LibE
LibG = LibH, LibA
LibH = LibG, LibA

Furthermore, let us assume there is a library LibI, which does not
belong to any group. That library will only be able to view and edit
patrons and items from it's own library.

Imagine a library consortium consisting of multiple library systems.
This feature would allow a consortium to group libraries by system such
that those systems could work independently from one another on a single
installation.

Test Plan:
1) Apply this patch
2) Run updatedatabase.pl
3) Enable IndependentBranches
4) Test independent branches, no changes should be noted
5) Navigate to admin/branches.pl
6) Create a new Independent library group
7) Add your library and some other libraries to that group
8) Re-test IndependentBranches, everything should work as previously,
   but instead of being limited to just your library, you should have
   access to everything within your library group.
   Example: Try to edit an item. If the item is owned by a library in
your group, you should be able to edit it.

Signed-off-by:  Joel Sasse jsa...@plumcreeklibrary.net
Signed-off-by: Mark Tompsett mtomp...@hotmail.com

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 10276] Extend IndependentBranches to support groups of libraries

2015-07-17 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10276

Kyle M Hall k...@bywatersolutions.com changed:

   What|Removed |Added

 Status|Patch doesn't apply |Signed Off

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 10276] Extend IndependentBranches to support groups of libraries

2015-07-17 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10276

Kyle M Hall k...@bywatersolutions.com changed:

   What|Removed |Added

  Attachment #41064|0   |1
is obsolete||

--- Comment #76 from Kyle M Hall k...@bywatersolutions.com ---
Created attachment 41065
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=41065action=edit
Bug 10276 - Extend IndependentBranches to support groups of libraries

This patch adds the ability to have independent library groups. To
enable this feature, enable the IndependentBranches system preference.
If no libraries are in any independent library groups,
IndependentBranches will behave as it always have. If a library is
part of an independent library group with one or more libraries, that
library will be able to access and modify patrons and items from any
library in that group.

Let's say we have 3 groups:
Group1:
  LibA
  LibB
  LibC
Group1:
  LibD
  LibE
  LibF
Group3:
  LibG
  LibH
  LibA

Note how LibA is in two groups ( Group1 and Group3 ). With this
configuration, if IndependentBranches is enabled, libraries will be able
to access and edit patrons and items in the following configuration:
LibA = LibB, LibC, LibG, LibH
LibB = LibA, LibC
LibC = LibA, LibB
LibD = LibE, LibF
LibF = LibD, LibE
LibG = LibH, LibA
LibH = LibG, LibA

Furthermore, let us assume there is a library LibI, which does not
belong to any group. That library will only be able to view and edit
patrons and items from it's own library.

Imagine a library consortium consisting of multiple library systems.
This feature would allow a consortium to group libraries by system such
that those systems could work independently from one another on a single
installation.

Test Plan:
1) Apply this patch
2) Run updatedatabase.pl
3) Enable IndependentBranches
4) Test independent branches, no changes should be noted
5) Navigate to admin/branches.pl
6) Create a new Independent library group
7) Add your library and some other libraries to that group
8) Re-test IndependentBranches, everything should work as previously,
   but instead of being limited to just your library, you should have
   access to everything within your library group.
   Example: Try to edit an item. If the item is owned by a library in
your group, you should be able to edit it.

Signed-off-by:  Joel Sasse jsa...@plumcreeklibrary.net
Signed-off-by: Mark Tompsett mtomp...@hotmail.com

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 10276] Extend IndependentBranches to support groups of libraries

2015-07-17 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10276

--- Comment #79 from Kyle M Hall k...@bywatersolutions.com ---
Created attachment 41068
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=41068action=edit
Bug 10276 [QA Followup 2] - Remove stringify, use placeholders for db queries

Signed-off-by: Mark Tompsett mtomp...@hotmail.com

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 10276] Extend IndependentBranches to support groups of libraries

2015-07-17 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10276

--- Comment #81 from Kyle M Hall k...@bywatersolutions.com ---
Created attachment 41070
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=41070action=edit
Bug 10276 [QA Followup 4] - Fix edit links on catalogue/detail.pl

Bug 11746 has been pushed to master, which is good. However, this means
that the links displayed in the catalogue/details.pl page are displaying
Edit on items which the user should not have edit links for.

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 14557] Add holds count to holds tab

2015-07-17 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14557

Kyle M Hall k...@bywatersolutions.com changed:

   What|Removed |Added

 Depends on|13517   |13851


Referenced Bugs:

http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13517
[Bug 13517] Show waiting date on reserve/request.pl
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13851
[Bug 13851] Replace waiting holds logic in circulation.pl with Koha Objects
-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 13517] Show waiting date on reserve/request.pl

2015-07-17 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13517

Kyle M Hall k...@bywatersolutions.com changed:

   What|Removed |Added

 Blocks|14557   |


Referenced Bugs:

http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14557
[Bug 14557] Add holds count to holds tab
-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 13851] Replace waiting holds logic in circulation.pl with Koha Objects

2015-07-17 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13851

Kyle M Hall k...@bywatersolutions.com changed:

   What|Removed |Added

 Blocks||14557


Referenced Bugs:

http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14557
[Bug 14557] Add holds count to holds tab
-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 10276] Extend IndependentBranches to support groups of libraries

2015-07-17 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10276

--- Comment #80 from Kyle M Hall k...@bywatersolutions.com ---
Created attachment 41069
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=41069action=edit
Bug 10276 [QA Followup 3] - Fix inability to change patron's branch

Signed-off-by: Mark Tompsett mtomp...@hotmail.com

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 10276] Extend IndependentBranches to support groups of libraries

2015-07-17 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10276

Kyle M Hall k...@bywatersolutions.com changed:

   What|Removed |Added

  Attachment #41065|0   |1
is obsolete||

--- Comment #77 from Kyle M Hall k...@bywatersolutions.com ---
Created attachment 41066
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=41066action=edit
Bug 10276 - Extend IndependentBranches to support groups of libraries

This patch adds the ability to have independent library groups. To
enable this feature, enable the IndependentBranches system preference.
If no libraries are in any independent library groups,
IndependentBranches will behave as it always have. If a library is
part of an independent library group with one or more libraries, that
library will be able to access and modify patrons and items from any
library in that group.

Let's say we have 3 groups:
Group1:
  LibA
  LibB
  LibC
Group1:
  LibD
  LibE
  LibF
Group3:
  LibG
  LibH
  LibA

Note how LibA is in two groups ( Group1 and Group3 ). With this
configuration, if IndependentBranches is enabled, libraries will be able
to access and edit patrons and items in the following configuration:
LibA = LibB, LibC, LibG, LibH
LibB = LibA, LibC
LibC = LibA, LibB
LibD = LibE, LibF
LibF = LibD, LibE
LibG = LibH, LibA
LibH = LibG, LibA

Furthermore, let us assume there is a library LibI, which does not
belong to any group. That library will only be able to view and edit
patrons and items from it's own library.

Imagine a library consortium consisting of multiple library systems.
This feature would allow a consortium to group libraries by system such
that those systems could work independently from one another on a single
installation.

Test Plan:
1) Apply this patch
2) Run updatedatabase.pl
3) Enable IndependentBranches
4) Test independent branches, no changes should be noted
5) Navigate to admin/branches.pl
6) Create a new Independent library group
7) Add your library and some other libraries to that group
8) Re-test IndependentBranches, everything should work as previously,
   but instead of being limited to just your library, you should have
   access to everything within your library group.
   Example: Try to edit an item. If the item is owned by a library in
your group, you should be able to edit it.

Signed-off-by:  Joel Sasse jsa...@plumcreeklibrary.net
Signed-off-by: Mark Tompsett mtomp...@hotmail.com

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 10276] Extend IndependentBranches to support groups of libraries

2015-07-17 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10276

--- Comment #78 from Kyle M Hall k...@bywatersolutions.com ---
Created attachment 41067
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=41067action=edit
Bug 10276 [QA Followup] - Extend IndependentBranches to support groups of
libraries

Signed-off-by: Mark Tompsett mtomp...@hotmail.com

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 14540] Move member-flags.pl to PermissionsManager to better manage permissions for testing.

2015-07-17 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14540

Olli-Antti Kivilahti olli-antti.kivila...@jns.fi changed:

   What|Removed |Added

  Attachment #41059|0   |1
is obsolete||

--- Comment #6 from Olli-Antti Kivilahti olli-antti.kivila...@jns.fi ---
Created attachment 41062
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=41062action=edit
Bug 14540 - Move member-flags.pl to PermissionsManager to better manage
permissions for testing.

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 14539] Introduction to castToObject(), aka. make a Koha::Object from various input types

2015-07-17 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14539

Olli-Antti Kivilahti olli-antti.kivila...@jns.fi changed:

   What|Removed |Added

  Attachment #41025|0   |1
is obsolete||

--- Comment #2 from Olli-Antti Kivilahti olli-antti.kivila...@jns.fi ---
Created attachment 41063
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=41063action=edit
Bug 14539 - Introduction to castToObject(), aka. make a Koha::Object from
various input types

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 14540] Move member-flags.pl to PermissionsManager to better manage permissions for testing.

2015-07-17 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14540

Olli-Antti Kivilahti olli-antti.kivila...@jns.fi changed:

   What|Removed |Added

  Attachment #41062|0   |1
is obsolete||

--- Comment #7 from Olli-Antti Kivilahti olli-antti.kivila...@jns.fi ---
Created attachment 41071
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=41071action=edit
Bug 14540 - Move member-flags.pl to PermissionsManager to better manage
permissions for testing.

Fixed the updatedatabase.pl
Added tests for superuser login.

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 14558] New: combine routing lists to save paper

2015-07-17 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14558

Bug ID: 14558
   Summary: combine routing lists to save paper
 Change sponsored?: ---
   Product: Koha
   Version: master
  Hardware: All
OS: All
Status: NEW
  Severity: enhancement
  Priority: P5 - low
 Component: Serials
  Assignee: koha-bugs@lists.koha-community.org
  Reporter: neng...@gmail.com
QA Contact: testo...@bugs.koha-community.org
CC: colin.campb...@ptfs-europe.com

It would be nice if there was a way to print a bulk of routing lists on one
page to save paper. Often you're printing to a full sheet and only using a 1/4
of it for the routing list.

-- 
You are receiving this mail because:
You are watching all bug changes.
You are the assignee for the bug.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 14559] New: Add fields to routing list

2015-07-17 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14559

Bug ID: 14559
   Summary: Add fields to routing list
 Change sponsored?: ---
   Product: Koha
   Version: master
  Hardware: All
OS: All
Status: NEW
  Severity: enhancement
  Priority: P5 - low
 Component: Serials
  Assignee: koha-bugs@lists.koha-community.org
  Reporter: neng...@gmail.com
QA Contact: testo...@bugs.koha-community.org
CC: colin.campb...@ptfs-europe.com

Allow people to choose other patron fields to include on routing lists. Often
organizations store department or office information on the patron record that
would be helpful on the routing list but there is no way to customize it to
show these fields.

-- 
You are receiving this mail because:
You are watching all bug changes.
You are the assignee for the bug.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 9021] Add SMS via email as an alternative to SMS services via SMS::Send drivers

2015-07-17 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=9021

--- Comment #40 from Kyle M Hall k...@bywatersolutions.com ---
From IRC: library and groups, item types, AV new category, AV new AV, Patron
attribute types, (strangely) library transfer limits, cities and towns, ... -
cancel link.
I could keep going, but the whole cancel link idea seems there.

I don't think I'm getting it. However, I have no problem with you adding a
followup to add the link.

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 14560] Rameau authorities

2015-07-17 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14560

Matthias Meusburger matthias.meusbur...@biblibre.com changed:

   What|Removed |Added

   Assignee|gmcha...@gmail.com  |matthias.meusburger@biblibr
   ||e.com
 Status|NEW |Needs Signoff

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 11620] Add dissertation-information index for non-UNIMARC installations

2015-07-17 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=11620

Kyle M Hall k...@bywatersolutions.com changed:

   What|Removed |Added

  Attachment #40317|0   |1
is obsolete||

--- Comment #7 from Kyle M Hall k...@bywatersolutions.com ---
Created attachment 41073
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=41073action=edit
[PASSED QA] Bug 11620: Add dissertation-information index for MARC21 (502)

Bug 11202 introduced a new index 'dissertation-information' for
UNIMARC. This patch adds the index also for MARC21 installations.

http://www.loc.gov/marc/bibliographic/bd502.html

To test:
- Apply patch
- Copy files in etc/zebradb changed by this patch to your
  corresponding directory (koha-dev..)
- Make sure you have records with 502
- Reindex
- Verify you can search the field contents with
  dissertation-information= and
  diss=

Signed-off-by: Bernardo Gonzalez Kriegel bgkrie...@gmail.com
Can find by dissertation-information,
No errors

Signed-off-by: Kyle M Hall k...@bywatersolutions.com

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 11620] Add dissertation-information index for non-UNIMARC installations

2015-07-17 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=11620

Kyle M Hall k...@bywatersolutions.com changed:

   What|Removed |Added

 Status|Signed Off  |Passed QA

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 10762] Not able to adjust size of barcode numbers

2015-07-17 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10762

Rajeshwari Nair rajeshwari.n...@gmail.com changed:

   What|Removed |Added

 CC||rajeshwari.n...@gmail.com

--- Comment #4 from Rajeshwari Nair rajeshwari.n...@gmail.com ---
Hi,

It is true that the options to change the size of the barcode is non
functional. 

However, while exporting the batch if you choose 'spine label' in the
'Template' option and Barcode in the 'layout' option the size of the barcode
increases. But this disturbs the printing set up if you are using specific
labels for printing the barcodes. 

-Rajeshwari

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 14556] New: Improve translatability of strings including links

2015-07-17 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14556

Bug ID: 14556
   Summary: Improve translatability of strings including links
 Change sponsored?: ---
   Product: Koha
   Version: master
  Hardware: All
OS: All
Status: NEW
  Severity: enhancement
  Priority: P5 - low
 Component: I18N/L10N
  Assignee: koha-bugs@lists.koha-community.org
  Reporter: katrin.fisc...@bsz-bw.de
QA Contact: testo...@bugs.koha-community.org
CC: frede...@tamil.fr

If there is a linked word in a sentence or string the link text, the words
before and after the link all appear as separate strings in the translation
scripts. This is very annoying as it often makes it hard to create a
grammatically correct sentence and a lot of translation errors are introduced
by not knowing how the other parts of the string are looking like.

Example: opac-authoritiesdetail 
Used in x records
Verwendet in 4 Titel

Used in and x records are separate strings.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 14540] Move member-flags.pl to PermissionsManager to better manage permissions for testing.

2015-07-17 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14540

Olli-Antti Kivilahti olli-antti.kivila...@jns.fi changed:

   What|Removed |Added

  Attachment #41030|0   |1
is obsolete||

--- Comment #2 from Olli-Antti Kivilahti olli-antti.kivila...@jns.fi ---
Created attachment 41051
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=41051action=edit
Bug 14540 - Move member-flags.pl to PermissionsManager to better manage
permissions for testing.

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 14395] Two different ways to calculate 'No renewal before' (days or hours)

2015-07-17 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14395

Holger Meißner h.meissner...@web.de changed:

   What|Removed |Added

  Attachment #41027|0   |1
is obsolete||

--- Comment #6 from Holger Meißner h.meissner...@web.de ---
Created attachment 41053
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=41053action=edit
Bug 14395: Add new syspref NoRenewalBeforePrecision

Currently the 'NoRenwalBefore' setting is always based on the exact
DateTime of the due date. This patch introduces a new global syspref for
choosing if 'NoRenewalBefore' should instead be calculated based on date
only. This is only relevant for loans caluclated in days. Hourly loans
are not affected.

To test:

1) Apply bug 14101, then apply this patch.

2) Run installer/data/mysql/updatedatabase.pl

3) Confirm that a new syspref NoRenewalBeforePrecision is available
   in administration. It should let you choose between 'date' (default)
   and 'exact time'.

Sponsored-by: Hochschule für Gesundheit (hsg), Germany

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/

[Koha-bugs] [Bug 14395] Two different ways to calculate 'No renewal before' (days or hours)

2015-07-17 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14395

Holger Meißner h.meissner...@web.de changed:

   What|Removed |Added

  Attachment #41029|0   |1
is obsolete||

--- Comment #7 from Holger Meißner h.meissner...@web.de ---
Created attachment 41054
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=41054action=edit
Bug 14395: Code changes

This patch updates the calculation of 'No renewal before' to include the
new syspref NoRenewalBeforePrecision.

To test:

1) Check out an hour-based loan with 'No renewal before' set to 1.
   Switch syspref NoRenewalBeforePrecision between 'date' and 'exact
   time'. Confirm that with both settings the item cannot be renewed
   until exactly one hour before due.

2) Check out a day-based loan with 'No renewal before' set to 1 day.
   Confirm that:
   * with NoRenewalBeforePrecision set to 'date', renewal is possible
 at 12:00 AM on the day before due.
   * with NoRenewalBeforePrecision set to 'exact time', renewal is
 possible at 11:59 PM on the day before due.

Sponsored-by: Hochschule für Gesundheit (hsg), Germany

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/

[Koha-bugs] [Bug 14540] Move member-flags.pl to PermissionsManager to better manage permissions for testing.

2015-07-17 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14540

Olli-Antti Kivilahti olli-antti.kivila...@jns.fi changed:

   What|Removed |Added

 Status|NEW |Needs Signoff

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 14395] Two different ways to calculate 'No renewal before' (days or hours)

2015-07-17 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14395

Holger Meißner h.meissner...@web.de changed:

   What|Removed |Added

 Status|Needs Signoff   |ASSIGNED

--- Comment #5 from Holger Meißner h.meissner...@web.de ---
On second thought, it's kind of pointless to have hourly loans with date-based
'No renewal before'. I'll change it, so that the syspref is only relevant for
loans calculated in days. Setting back to ASSIGNED.

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/

[Koha-bugs] [Bug 14536] PageObject-pattern base implementation

2015-07-17 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14536

Olli-Antti Kivilahti olli-antti.kivila...@jns.fi changed:

   What|Removed |Added

  Attachment #41023|0   |1
is obsolete||

--- Comment #2 from Olli-Antti Kivilahti olli-antti.kivila...@jns.fi ---
Created attachment 41052
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=41052action=edit
Bug 14536 - PageObject-pattern base implementation

This patch introduces:

-PageObject base class and example tests,
-a interactive debug script to drive PageObjects more easily.

--
PageObjects are used to make robust and reusable integration test components to
test various front-end features. PageObjects load a Selenium::Remote::Driver
implementation, phantomjs by default and use this to do scripted user actions
in the browser,
eg. clicking HTML-elements, accepting popup dialogs, entering text to input
fields.

PageObjects encapsulate those very low-level operations into clear and easily
usable actions or services, like doPasswordLogin().
PageObjects also seamlessly deal with navigation from one page to another, eg.
my $mainpage = t::lib::Page::Mainpage-new();
$mainpage-doPasswordLogin('admin', '1234')-gotoPatrons()-
   searchPatrons({keywordSearch = Jane Doe});

PageObjects make doing integration tests so great!
You can google for the specifics of PageObject patterns and there are a ton of
great tutorials explaining their function.

Now PageObjects also have a debugging system where you can get the server
response in a title+cookies+html-dump and a screenshot of the browser session.
see t::lib::Page for more info!

-
Interactive debugger at misc/devel/interactiveWebDriverShell.pl loads the
desired PageObject with the needed parameters to the debugger context and makes
dynamic UserAgent scripting easy and fun!

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 14395] Two different ways to calculate 'No renewal before' (days or hours)

2015-07-17 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14395

Holger Meißner h.meissner...@web.de changed:

   What|Removed |Added

 Status|ASSIGNED|Needs Signoff

--- Comment #8 from Holger Meißner h.meissner...@web.de ---
Note: With 'date' setting both OPAC user account and staff client display
soonest possible renewal including time. With 'exact time' setting the staff
client only displays the date. But OPAC shows the time. I couldn't figure out
why yet.

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/

[Koha-bugs] [Bug 14395] Two different ways to calculate 'No renewal before' (days or hours)

2015-07-17 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14395

--- Comment #9 from bondiurbano cost...@gmail.com ---
(In reply to Holger Meißner from comment #5)
 On second thought, it's kind of pointless to have hourly loans with
 date-based 'No renewal before'. I'll change it, so that the syspref is only
 relevant for loans calculated in days. Setting back to ASSIGNED.

I think so...

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/

[Koha-bugs] [Bug 14395] Two different ways to calculate 'No renewal before' (days or hours)

2015-07-17 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14395

--- Comment #11 from bondiurbano cost...@gmail.com ---
Holger!

Great job! I have tested all cases in a local virtual machine under Debian
Jessie and Koha 3.20.1. All seem to work perfectly!

I have tested both 14101 bug and 14395 bug together.

I think it is ready for signoff.

Thank you so much Holger!!

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 14540] Move member-flags.pl to PermissionsManager to better manage permissions for testing.

2015-07-17 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14540

Olli-Antti Kivilahti olli-antti.kivila...@jns.fi changed:

   What|Removed |Added

  Attachment #41051|0   |1
is obsolete||

--- Comment #3 from Olli-Antti Kivilahti olli-antti.kivila...@jns.fi ---
Created attachment 41055
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=41055action=edit
Bug 14540 - Move member-flags.pl to PermissionsManager to better manage
permissions for testing.

Documentation improvements.

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 12598] New misc/import_borrowers.pl command line tool

2015-07-17 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12598

--- Comment #47 from Kyle M Hall k...@bywatersolutions.com ---
(In reply to Jonathan Druart from comment #46)
 (In reply to Kyle M Hall from comment #45)
  I have no problem if you want to change the namespace.
 
 Do you agree with my thought or you just said that to make me happy? :)

Lol! Why not both? I have no strong opinion on the matter so if you think a
different namespace would be better I'm fine with that. If you submit a patch
to change the namespace I'd be more than happy to sign it off!

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 14557] New: Add holds count to holds tab

2015-07-17 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14557

Bug ID: 14557
   Summary: Add holds count to holds tab
 Change sponsored?: ---
   Product: Koha
   Version: unspecified
  Hardware: All
OS: All
Status: NEW
  Severity: enhancement
  Priority: P5 - low
 Component: Hold requests
  Assignee: koha-bugs@lists.koha-community.org
  Reporter: k...@bywatersolutions.com
QA Contact: testo...@bugs.koha-community.org
CC: gmcha...@gmail.com

Some librarians have expressed that it would be helpful if the holds tab
displayed the count of holds for a record.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 14557] Add holds count to holds tab

2015-07-17 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14557

Kyle M Hall k...@bywatersolutions.com changed:

   What|Removed |Added

   Assignee|koha-b...@lists.koha-commun |k...@bywatersolutions.com
   |ity.org |

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 14557] Add holds count to holds tab

2015-07-17 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14557

--- Comment #1 from Kyle M Hall k...@bywatersolutions.com ---
Created attachment 41058
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=41058action=edit
Example illustration of holds tab with count

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 14540] Move member-flags.pl to PermissionsManager to better manage permissions for testing.

2015-07-17 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14540

Olli-Antti Kivilahti olli-antti.kivila...@jns.fi changed:

   What|Removed |Added

  Attachment #41055|0   |1
is obsolete||

--- Comment #5 from Olli-Antti Kivilahti olli-antti.kivila...@jns.fi ---
Created attachment 41059
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=41059action=edit
Bug 14540 - Move member-flags.pl to PermissionsManager to better manage
permissions for testing.

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 14536] PageObject-pattern base implementation

2015-07-17 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14536

--- Comment #3 from Olli-Antti Kivilahti olli-antti.kivila...@jns.fi ---
Created attachment 41057
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=41057action=edit
PageObject-pattern schematic and usage example sketch

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 14437] Refactor C4::Auth::haspermission() to Koha::Object and return better errors.

2015-07-17 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14437

Olli-Antti Kivilahti olli-antti.kivila...@jns.fi changed:

   What|Removed |Added

 Resolution|--- |INVALID
 Status|Needs Signoff   |RESOLVED

--- Comment #6 from Olli-Antti Kivilahti olli-antti.kivila...@jns.fi ---
This Bug is deprecated because of Bug 14540.

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 13920] API authentication system - proposal

2015-07-17 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13920
Bug 13920 depends on bug 14437, which changed state.

Bug 14437 Summary: Refactor C4::Auth::haspermission() to Koha::Object and 
return better errors.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14437

   What|Removed |Added

 Status|Needs Signoff   |RESOLVED
 Resolution|--- |INVALID

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 7174] Authentication rewriting

2015-07-17 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7174
Bug 7174 depends on bug 14437, which changed state.

Bug 14437 Summary: Refactor C4::Auth::haspermission() to Koha::Object and 
return better errors.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14437

   What|Removed |Added

 Status|Needs Signoff   |RESOLVED
 Resolution|--- |INVALID

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 14557] Add holds count to holds tab

2015-07-17 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14557

Kyle M Hall k...@bywatersolutions.com changed:

   What|Removed |Added

 Depends on||13517


Referenced Bugs:

http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13517
[Bug 13517] Show waiting date on reserve/request.pl
-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 13517] Show waiting date on reserve/request.pl

2015-07-17 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13517

Kyle M Hall k...@bywatersolutions.com changed:

   What|Removed |Added

 Blocks||14557


Referenced Bugs:

http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14557
[Bug 14557] Add holds count to holds tab
-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 12478] Elasticsearch support for Koha

2015-07-17 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12478

--- Comment #69 from Katrin Fischer katrin.fisc...@bsz-bw.de ---
Hi Robin,

thx for updating! Some things I tried/found/wondered about, mostly about
facetting as I am getting a lot of feedback on our current implementation:

1) Can you show the number of results behind the facets? There is currently a
preference for this, but I couldn't turn it on/chefk if it turned on.
2) Can facets be sorted by most used to less used in a result list? 

3) Can you show all entries for a big result list? How does it limit which
facets to show?

4) If you search for () it explodes rather spectacularly.

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 14540] Move member-flags.pl to PermissionsManager to better manage permissions for testing.

2015-07-17 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14540

--- Comment #4 from Olli-Antti Kivilahti olli-antti.kivila...@jns.fi ---
Created attachment 41056
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=41056action=edit
A sketch of the permissions improvements.

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 9021] Add SMS via email as an alternative to SMS services via SMS::Send drivers

2015-07-17 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=9021

--- Comment #39 from Kyle M Hall k...@bywatersolutions.com ---
(In reply to M. Tompsett from comment #38)
 Could we get a back button that goes back to the administration screen from
 the SMS Provider entry screen?

I can, but I'm looking at all the administration areas and a not of them has
such a link, so it seems like it would be breaking ui consistency to do so.
There is a 'administration' link in the breadcrumbs that will take you back to
the administration screen. Is that sufficient?

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 14495] WebDriver/WebTester Factory for easy generation of Web testing UserAgents.

2015-07-17 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14495

--- Comment #6 from Olli-Antti Kivilahti olli-antti.kivila...@jns.fi ---
You need phantomjs version 1.9 or bigger to run browser testing headlessly in a
testing server.

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 14402] Add --fees option to cleanup_database.pl to purge all 0 balance fees and payments older than the given number of days

2015-07-17 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14402

Kyle M Hall k...@bywatersolutions.com changed:

   What|Removed |Added

 CC||k...@bywatersolutions.com

--- Comment #3 from Kyle M Hall k...@bywatersolutions.com ---
(In reply to Katrin Fischer from comment #1)
 Hm, this would need good testing. I think you also need to make sure there
 is no problem with the way credits work. But it would be good to have!

Credits have a negative amount and amountoutstanding, so the query would
definitely not affect credits.

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 14361] koha-restart-zebra fails and probably breaks upgrade

2015-07-17 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14361

Agnes Rivers-Moore a...@hanover.ca changed:

   What|Removed |Added

 CC||a...@hanover.ca

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 14395] Two different ways to calculate 'No renewal before' (days or hours)

2015-07-17 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14395

--- Comment #10 from bondiurbano cost...@gmail.com ---
(In reply to Holger Meißner from comment #8)
 Note: With 'date' setting both OPAC user account and staff client display
 soonest possible renewal including time. With 'exact time' setting the staff
 client only displays the date. But OPAC shows the time. I couldn't figure
 out why yet.

I think this is not relevant for now...

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/

[Koha-bugs] [Bug 14561] Bengali searching is not working

2015-07-17 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14561

--- Comment #1 from suzon das suzonduisl...@gmail.com ---
Bengali Searching is okay from OPAC.

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 14545] Typo in help file for 3.20 (stage-marc-import.tt)

2015-07-17 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14545

--- Comment #3 from Héctor Eduardo Castro Avalos hector.hecax...@gmail.com ---
(In reply to Aleisha Amohia from comment #2)
 That entire line appears to be deleted from the page when I apply this patch?

Yes, you're right, I will fix this!

Regards

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/

[Koha-bugs] [Bug 14149] Labels: Make barcode width and height scaling editable

2015-07-17 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14149

Marc Véron ve...@veron.ch changed:

   What|Removed |Added

   See Also||http://bugs.koha-community.
   ||org/bugzilla3/show_bug.cgi?
   ||id=10762

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/

[Koha-bugs] [Bug 14561] New: Bengali searching is not working

2015-07-17 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14561

Bug ID: 14561
   Summary: Bengali searching is not working
 Change sponsored?: ---
   Product: Koha
   Version: 3.20
  Hardware: All
OS: All
Status: NEW
  Severity: critical
  Priority: P5 - low
 Component: Searching
  Assignee: gmcha...@gmail.com
  Reporter: suzonduisl...@gmail.com
QA Contact: testo...@bugs.koha-community.org

I recently installed koha 3.20 in Debian Jessie. Everything is running okay.
But when search any Bengali term from Intranet it shows - 
---
Software error:

Cannot decode string with wide characters at
/usr/lib/x86_64-linux-gnu/perl/5.20/Encode.pm line 215.

For help, please send mail to the webmaster ([no address given]), giving this
error message and the time and date of the error. 

Though I added 

# UTF-8 Defaults for Koha 
init-connect='SET NAMES utf8' 
character-set-server=utf8 
collation-server=utf8_general_ci  

in /etc/mysql/my.cnf  file. and 

AddCharset UTF-8 .utf8
AddDefaultCharset UTF-8

in  /etc/apache2/conf-available/charset.conf

Any help ?

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 10762] Not able to adjust size of barcode numbers

2015-07-17 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10762

Marc Véron ve...@veron.ch changed:

   What|Removed |Added

   See Also||http://bugs.koha-community.
   ||org/bugzilla3/show_bug.cgi?
   ||id=14149

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/

[Koha-bugs] [Bug 14545] Typo in help file for 3.20 (stage-marc-import.tt)

2015-07-17 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14545

--- Comment #4 from Héctor Eduardo Castro Avalos hector.hecax...@gmail.com ---
Something happened when editing the file:

This is the screen when looking for differences

diff --git
a/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/stage-marc-impor
index 422501b..327230f 100644
--- a/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/stage-marc-import.tt
+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/stage-marc-import.tt
@@ -25,7 +25,7 @@
liFinally choose what to do with records that are unique/li
liNext you can choose whether or not to import the item data found in the 
 ul
-   liFrom here you can choose to always add items regardless of matching
stat
+   liFrom here you can choose to always add items regardless of matching
stat
 /ul
 /li
liClick 'Stage for import'/li
@@ -37,4 +37,4 @@

 pstrongSee the full documentation for the MARC Import in the a
href=http:

-[% INCLUDE 'help-bottom.inc' %]
\ No newline at end of file
+[% INCLUDE 'help-bottom.inc' %]

I didn't edit the INCLUDE declaration

I will send the commit again

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/

[Koha-bugs] [Bug 14545] Typo in help file for 3.20 (stage-marc-import.tt)

2015-07-17 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14545

Héctor Eduardo Castro Avalos hector.hecax...@gmail.com changed:

   What|Removed |Added

  Attachment #41044|0   |1
is obsolete||

--- Comment #5 from Héctor Eduardo Castro Avalos hector.hecax...@gmail.com ---
Created attachment 41074
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=41074action=edit
Bug 14545 - Typo in help file (stage-marc-import.tt)

Typo found in stage-marc-import.tt file for Koha help in 3.20

Test plan:
1) Go to url
'koha-tmpl/intranet-tmpl/prog/en/modules/help/tools/stage-marc-import.tt:28'
and check the typo precendence or go to Tools  Stage MARC records for import
and open up the help
2) Apply the patch
3) Repeat step 1 and check if the typo is fixed.

Sponsored-by: Universidad de El Salvador

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/

[Koha-bugs] [Bug 14545] Typo in help file for 3.20 (stage-marc-import.tt)

2015-07-17 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14545

--- Comment #6 from Héctor Eduardo Castro Avalos hector.hecax...@gmail.com ---
(In reply to Héctor Eduardo Castro Avalos from comment #5)
 Created attachment 41074 [details] [review]
 Bug 14545 - Typo in help file (stage-marc-import.tt)

Hi, Aleisha

I applied this new patch and works for me.

Regards

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/

[Koha-bugs] [Bug 14141] Changing the Library for a notice duplicates the notice instead of updating it

2015-07-17 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14141

Amit Gupta amitddng...@gmail.com changed:

   What|Removed |Added

  Attachment #40987|0   |1
is obsolete||
  Attachment #41076|0   |1
is obsolete||

--- Comment #3 from Amit Gupta amitddng...@gmail.com ---
Created attachment 41077
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=41077action=edit
Bug 14141: Do not let edit the branch when updating/copying  notice

Works ok.

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 14141] Changing the Library for a notice duplicates the notice instead of updating it

2015-07-17 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14141

--- Comment #2 from Amit Gupta amitddng...@gmail.com ---
Created attachment 41076
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=41076action=edit
Bug 14141: Do not let edit the branch when updating/copying  notice

Works ok.

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 14141] Changing the Library for a notice duplicates the notice instead of updating it

2015-07-17 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14141

Amit Gupta amitddng...@gmail.com changed:

   What|Removed |Added

 Status|Needs Signoff   |Signed Off

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 14541] Tax rate should not be forced to an arbitrary precision

2015-07-17 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14541

Amit Gupta amitddng...@gmail.com changed:

   What|Removed |Added

  Attachment #41031|0   |1
is obsolete||
 CC||amitddng...@gmail.com

--- Comment #4 from Amit Gupta amitddng...@gmail.com ---
Created attachment 41075
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=41075action=edit
Bug 14541 - Tax rate should not be forced to an arbitrary  precision

Work without error.

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 9021] Add SMS via email as an alternative to SMS services via SMS::Send drivers

2015-07-17 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=9021

--- Comment #41 from M. Tompsett mtomp...@hotmail.com ---
Sorry, I was unclear. This UI is not consistent with other UIs already in Koha
and was initially confusing to me.

For example, the library and groups page is a data table with edit/delete on
the rows, and a new library button which goes to a different template page to
enter. That secondary page has a cancel link which goes back.

Again, apologies for being half awake when trying to explain my issues. :)

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/


[Koha-bugs] [Bug 14562] New: Patron with empty card number will be only result returned by patron datatables search

2015-07-17 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14562

Bug ID: 14562
   Summary: Patron with empty card number will be only result
returned by patron datatables search
 Change sponsored?: ---
   Product: Koha
   Version: master
  Hardware: All
OS: All
Status: NEW
  Severity: minor
  Priority: P5 - low
 Component: Patrons
  Assignee: jonathan.dru...@bugs.koha-community.org
  Reporter: jwea...@bywatersolutions.com
QA Contact: testo...@bugs.koha-community.org
CC: gmcha...@gmail.com, kyle.m.h...@gmail.com

Due to the fact that the if statement wrapping the single-patron search does
not check that a cardnumber was passed, svc/members/search will attempt to
search for a patron with an empty cardnumber. This should normally fail, but if
such a patron exists (a possibility after importing/migrating) it will always
succeed and prevent normal searching.

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/