[Koha-bugs] [Bug 33415] fix failing tests, force Crypt::CBC and Auth::GoogleAuth pkgs

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33415

Mason James  changed:

   What|Removed |Added

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

--- Comment #2 from Mason James  ---
oops, invalid bug is now fixed

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://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 33414] Dates displayed in ISO format in orders by fund

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33414

Jonathan Druart  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
https://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 33414] Dates displayed in ISO format in orders by fund

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33414

Jonathan Druart  changed:

   What|Removed |Added

 Attachment #149154|0   |1
is obsolete||

--- Comment #2 from Jonathan Druart  ---
Created attachment 149156
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=149156&action=edit
Bug 33414: Fix dates display in orders by fund

Since Bug 30718, dates are displayed in ISO format in orders by fund.
It removed dates formating in perl, this must be added in template.

Test plan :
1) Create some fresh orders on a fund F1
2) Go to Acquisitions > Orders by fund
3) Select fund F1 and 'To screen into the browser'
4) Submit
5) Check you see a formatted date in 'Entry date' column
6) Recieve some order from fund F1
Repeat 2 to 4
7) Check you see formatted date in 'Date received' column

Signed-off-by: Jonathan Druart 

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://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 33414] Dates displayed in ISO format in orders by fund

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33414

--- Comment #3 from Jonathan Druart  ---
Created attachment 149157
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=149157&action=edit
Bug 33414: Add the data-order class

Signed-off-by: Jonathan Druart 

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://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 33066] We need a KohaTable Vue component

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33066

--- Comment #70 from Jonathan Druart  ---
Added your signed-off-by lines to the remote branch, thanks a lot!

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://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 33066] We need a KohaTable Vue component

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33066

--- Comment #71 from Jonathan Druart  ---
Created attachment 149158
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=149158&action=edit
Bug 33066: Introduce a KohaTable Vue component

The way we deal with DataTables in Vue component is not nice, especially when
we
need to add buttons/link in the cell and interact with the rest of the Vue app
from
there.

When I started to work on Vue last year there was no good solution from
DataTables,
now there is a Vue component. It is not perfect, you still cannot add Vue
component
in the DT component, but it brings something to follow. Agustin implemented
something
on theke/import_source_vue, but he went too far, and it will need to rewrite
the
whole ERM module. Additionally he didn't provide a solution that has the same
features
as what we have now.

The goal of this patch is to not duplicate the code in datatables.js, we
don't want to maintain two version of this code (one is enough already!)
We split the huge function in datatables.js in small ones to make them
reusable from the Vue component.

This is quite ugly, and it needs to lot more addition, but it's a first
start!

Help, ideas, and feedback welcome (and needed!)

Bug 33066: Fix agreement name in delete confirmation dialog

Signed-off-by: Pedro Amorim 

Signed-off-by: Agustín Moyano 

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://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 33066] We need a KohaTable Vue component

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33066

--- Comment #72 from Jonathan Druart  ---
Created attachment 149159
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=149159&action=edit
Bug 33066: Fix dt - no need to reselect

Bug 33066: (follow-up) Fix dt - no need to reselect

Patron search result table was not displayed correctly
Uncaught TypeError: this.on is not a function

Signed-off-by: Pedro Amorim 

Signed-off-by: Agustín Moyano 

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://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 33066] We need a KohaTable Vue component

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33066

--- Comment #73 from Jonathan Druart  ---
Created attachment 149160
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=149160&action=edit
Bug 33066: Add colvis

Signed-off-by: Pedro Amorim 

Signed-off-by: Agustín Moyano 

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://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 33066] We need a KohaTable Vue component

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33066

--- Comment #74 from Jonathan Druart  ---
Created attachment 149161
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=149161&action=edit
Bug 33066: Fix "Loading..."

Signed-off-by: Pedro Amorim 

Signed-off-by: Agustín Moyano 

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://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 33066] We need a KohaTable Vue component

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33066

--- Comment #75 from Jonathan Druart  ---
Created attachment 149162
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=149162&action=edit
Bug 33066: Reintroduce column filters

Signed-off-by: Pedro Amorim 

Signed-off-by: Agustín Moyano 

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://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 33066] We need a KohaTable Vue component

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33066

--- Comment #76 from Jonathan Druart  ---
Created attachment 149163
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=149163&action=edit
Bug 33066: Fix name display

Signed-off-by: Pedro Amorim 

Signed-off-by: Agustín Moyano 

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://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 33066] We need a KohaTable Vue component

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33066

--- Comment #77 from Jonathan Druart  ---
Created attachment 149164
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=149164&action=edit
Bug 33066: Remove build_datatable

Signed-off-by: Pedro Amorim 

Signed-off-by: Agustín Moyano 

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://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 33066] We need a KohaTable Vue component

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33066

--- Comment #78 from Jonathan Druart  ---
Created attachment 149165
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=149165&action=edit
Bug 33066: Embed vendor and retrieve vendor name from the request

Bug 33066: (follow-up) Embed vendor and retrieve vendor name from the request

It needs "Bug 32923: Allow to embed user_roles for agreements"

Signed-off-by: Pedro Amorim 

Signed-off-by: Agustín Moyano 

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://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 33066] We need a KohaTable Vue component

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33066

--- Comment #79 from Jonathan Druart  ---
Created attachment 149166
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=149166&action=edit
Bug 33066: Remove duplicate 'Actions' column

Signed-off-by: Pedro Amorim 

Signed-off-by: Agustín Moyano 

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://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 33066] We need a KohaTable Vue component

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33066

--- Comment #80 from Jonathan Druart  ---
Created attachment 149167
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=149167&action=edit
Bug 33066: Fix default_search

Signed-off-by: Pedro Amorim 

Signed-off-by: Agustín Moyano 

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://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 33066] We need a KohaTable Vue component

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33066

--- Comment #81 from Jonathan Druart  ---
Created attachment 149168
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=149168&action=edit
Bug 33066: Fix default_filters

Will need to be tested when EHoldingsEBSCOTitlesList.vue will be
adjusted

Signed-off-by: Pedro Amorim 

Signed-off-by: Agustín Moyano 

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://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 33066] We need a KohaTable Vue component

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33066

--- Comment #82 from Jonathan Druart  ---
Created attachment 149169
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=149169&action=edit
Bug 33066: Fix ColVis

The filter (header) was not removed alongwith the column

Signed-off-by: Pedro Amorim 

Signed-off-by: Agustín Moyano 

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://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 33066] We need a KohaTable Vue component

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33066

--- Comment #83 from Jonathan Druart  ---
Created attachment 149170
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=149170&action=edit
Bug 33066: Fix width after ColVis change

This fixes the width to 100%, otherwise it is not recalculated correctly

Signed-off-by: Pedro Amorim 

Signed-off-by: Agustín Moyano 

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://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 33066] We need a KohaTable Vue component

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33066

--- Comment #84 from Jonathan Druart  ---
Created attachment 149171
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=149171&action=edit
Bug 33066: Use KohaTable for LicensesList

Bug 33066: (follow-up) Use KohaTable for LicensesList

There was a mismatch, we can embed the whole vendor object info.

Signed-off-by: Pedro Amorim 

Signed-off-by: Agustín Moyano 

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://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 33066] We need a KohaTable Vue component

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33066

--- Comment #85 from Jonathan Druart  ---
Created attachment 149172
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=149172&action=edit
Bug 33066: Restore HTML escaping

And we add a render function that will escape by default

Signed-off-by: Pedro Amorim 

Signed-off-by: Agustín Moyano 

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://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 33066] We need a KohaTable Vue component

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33066

--- Comment #86 from Jonathan Druart  ---
Created attachment 149173
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=149173&action=edit
Bug 33066: Restore filter by mine

Signed-off-by: Pedro Amorim 

Signed-off-by: Agustín Moyano 

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://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 33066] We need a KohaTable Vue component

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33066

--- Comment #87 from Jonathan Druart  ---
Created attachment 149174
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=149174&action=edit
Bug 33066: Use KohaTable for EHoldingsLocalPackagesList

Bug 33066: (follow-up) Use KohaTable for EHoldingsLocalTitlePackagesList

Signed-off-by: Pedro Amorim 

Signed-off-by: Agustín Moyano 

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://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 33066] We need a KohaTable Vue component

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33066

--- Comment #88 from Jonathan Druart  ---
Created attachment 149175
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=149175&action=edit
Bug 33066: Use KohaTable for EHoldingsLocalPackageTitlesList

Signed-off-by: Pedro Amorim 

Signed-off-by: Agustín Moyano 

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://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 33066] We need a KohaTable Vue component

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33066

--- Comment #89 from Jonathan Druart  ---
Created attachment 149176
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=149176&action=edit
Bug 33066: Use KohaTable for EHoldingsLocalTitlesList

Signed-off-by: Pedro Amorim 

Signed-off-by: Agustín Moyano 

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://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 33066] We need a KohaTable Vue component

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33066

--- Comment #90 from Jonathan Druart  ---
Created attachment 149177
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=149177&action=edit
Bug 33066: Use KohaTable for EHoldingsEBSCOPackagesList

Signed-off-by: Pedro Amorim 

Signed-off-by: Agustín Moyano 

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://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 33066] We need a KohaTable Vue component

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33066

--- Comment #91 from Jonathan Druart  ---
Created attachment 149178
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=149178&action=edit
Bug 33066: Restore '(#id)' to lists

Signed-off-by: Pedro Amorim 

Signed-off-by: Agustín Moyano 

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://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 33066] We need a KohaTable Vue component

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33066

--- Comment #92 from Jonathan Druart  ---
Created attachment 149179
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=149179&action=edit
Bug 33066: Use KohaTable for EHoldingsEBSCOPackageTitlesList

Signed-off-by: Pedro Amorim 

Signed-off-by: Agustín Moyano 

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://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 33066] We need a KohaTable Vue component

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33066

--- Comment #93 from Jonathan Druart  ---
Created attachment 149180
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=149180&action=edit
Bug 33066: Use KohaTable for EHoldingsEBSCOTitlesList

Signed-off-by: Pedro Amorim 

Signed-off-by: Agustín Moyano 

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://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 33066] We need a KohaTable Vue component

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33066

--- Comment #94 from Jonathan Druart  ---
Created attachment 149181
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=149181&action=edit
Bug 33066: Remove useless use of useDataTable

Signed-off-by: Pedro Amorim 

Signed-off-by: Agustín Moyano 

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://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 33066] We need a KohaTable Vue component

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33066

--- Comment #95 from Jonathan Druart  ---
Created attachment 149182
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=149182&action=edit
Bug 33066: Fix cypress tests

Signed-off-by: Pedro Amorim 

Signed-off-by: Agustín Moyano 

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://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 33066] We need a KohaTable Vue component

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33066

--- Comment #96 from Jonathan Druart  ---
Created attachment 149183
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=149183&action=edit
Bug 33066: Fix table style

Move table rendering outside  to prevent unintended style in _forms.scss
from being applied and causing table to not be full width
Remove unecessary table styling

JD: following commit has been squashed. Patch from Pedro is fixing the
FIXME
"""
Bug 33066: Fix style - FIXME

This is not working, see /cgi-bin/koha/erm/eholdings/local/packages/1
The table is not taking width: 100%
I fixed it previously with the display: table in the style block, but
here it's not applied.

There is also the "green tick" (fa-check-square-o) that is not on the
same line https://snipboard.io/jma923.jpg
"""

Signed-off-by: Pedro Amorim 

Signed-off-by: Agustín Moyano 

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://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 33408] Fetch sysprefs from svc/config/systempreferences

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33408

Jonathan Druart  changed:

   What|Removed |Added

 Attachment #149133|0   |1
is obsolete||

--- Comment #5 from Jonathan Druart  ---
Created attachment 149184
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=149184&action=edit
Bug 33408: Fetch sysprefs from svc/config/systempreferences

It will be easier to mock/set them from cypress tests.

Sponsored-by: BULAC - http://www.bulac.fr/

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://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 33408] Fetch sysprefs from svc/config/systempreferences

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33408

Jonathan Druart  changed:

   What|Removed |Added

 Attachment #149134|0   |1
is obsolete||

--- Comment #6 from Jonathan Druart  ---
Created attachment 149185
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=149185&action=edit
Bug 33408: Mock ERM sysprefs from cypress tests

Sponsored-by: BULAC - http://www.bulac.fr/

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://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 33370] Cypress tests are failing randomly

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33370

Jonathan Druart  changed:

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #17 from Jonathan Druart  ---
(In reply to Jonathan Druart from comment #16)
> Wondering if this actually needed if we have bug 33408, and specifically
> this change in Main.vue:
> 
> -
> +

Giving this one a try and closing this one for now.

*** This bug has been marked as a duplicate of bug 33408 ***

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://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 33408] Fetch sysprefs from svc/config/systempreferences

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33408

--- Comment #7 from Jonathan Druart  ---
*** Bug 33370 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://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 33402] ERM Cypress tests needs to be moved to their own directory

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33402
Bug 33402 depends on bug 33370, which changed state.

Bug 33370 Summary: Cypress tests are failing randomly
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33370

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 Resolution|--- |DUPLICATE

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://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 33408] Fetch sysprefs from svc/config/systempreferences

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33408

--- Comment #8 from Jonathan Druart  ---
Created attachment 149186
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=149186&action=edit
Bug 33408: Extend defaultCommandTimeout for cypress

Sometimes the initial page load takes more than 4 seconds.

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://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 33416] New: Agreements.ts is failing

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33416

Bug ID: 33416
   Summary: Agreements.ts is failing
 Change sponsored?: ---
   Product: Koha
   Version: unspecified
  Hardware: All
OS: All
Status: ASSIGNED
  Severity: normal
  Priority: P5 - low
 Component: Test Suite
  Assignee: jonathan.druart+k...@gmail.com
  Reporter: jonathan.druart+k...@gmail.com
QA Contact: testo...@bugs.koha-community.org


[Koha-bugs] [Bug 33416] Agreements.ts is failing

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33416

Jonathan Druart  changed:

   What|Removed |Added

 Depends on||33408

--- Comment #1 from Jonathan Druart  ---
Not sure where it's coming from, but on top of bug 33408 it is failing
consistently.


Referenced Bugs:

https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33408
[Bug 33408] Fetch sysprefs from svc/config/systempreferences
-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://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 33408] Fetch sysprefs from svc/config/systempreferences

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33408

Jonathan Druart  changed:

   What|Removed |Added

 Blocks||33416


Referenced Bugs:

https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33416
[Bug 33416] Agreements.ts is failing
-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://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 33416] Agreements.ts is failing

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33416

Jonathan Druart  changed:

   What|Removed |Added

 Status|ASSIGNED|Needs Signoff

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://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 33416] Agreements.ts is failing

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33416

--- Comment #2 from Jonathan Druart  ---
Created attachment 149187
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=149187&action=edit
Bug 33416: Fix Agreements.ts


[Koha-bugs] [Bug 33381] Active link in the menu is not always correctly styled

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33381

Pedro Amorim  changed:

   What|Removed |Added

 Attachment #149063|0   |1
is obsolete||

--- Comment #6 from Pedro Amorim  ---
Created attachment 149188
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=149188&action=edit
Bug 33381: Fix sidemenu active and hover styling

Change router link active class match rule. This makes it so that the route
erm/agreements/1 will also match the router-link /erm/agreements instead of the
previous exact match rule, thus adding the 'current' class
Update styling router-links to not apply 'current' styling when
.disabled

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://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 33408] Fetch sysprefs from svc/config/systempreferences

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33408

Jonathan Druart  changed:

   What|Removed |Added

 Status|ASSIGNED|Needs Signoff

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://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 33416] Agreements.ts is failing

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33416

Pedro Amorim  changed:

   What|Removed |Added

 CC||pedro.amo...@ptfs-europe.co
   ||m

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://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 33381] Active link in the menu is not always correctly styled

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33381

Pedro Amorim  changed:

   What|Removed |Added

 Attachment #149188|0   |1
is obsolete||

--- Comment #7 from Pedro Amorim  ---
Created attachment 149189
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=149189&action=edit
Bug 33381: Fix sidemenu active and hover styling

Change router link active class match rule. This makes it so that the route
erm/agreements/1 will also match the router-link /erm/agreements instead of the
previous exact match rule, thus adding the 'current' class
Update styling router-links to not apply 'current' styling when
.disabled

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://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 33381] Active link in the menu is not always correctly styled

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33381

Pedro Amorim  changed:

   What|Removed |Added

 Attachment #149189|0   |1
is obsolete||

--- Comment #8 from Pedro Amorim  ---
Created attachment 149190
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=149190&action=edit
Bug 33381: Fix sidemenu active and hover styling

Change router link active class match rule. This makes it so that the route
erm/agreements/1 will also match the router-link /erm/agreements instead of the
previous exact match rule, thus adding the 'current' class
Update styling router-links to not apply 'current' styling when
.disabled

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://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 33125] 2nd sorting level of titles in results lists should be configurable

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33125

Claes  changed:

   What|Removed |Added

 CC||claes.eriks...@vti.se

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://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 33400] Titles_spec.ts is failing because alert is not visible

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33400

Pedro Amorim  changed:

   What|Removed |Added

 CC||pedro.amo...@ptfs-europe.co
   ||m

--- Comment #5 from Pedro Amorim  ---
Without applying patch

yarn cypress run:
* 1st run: no issues
* 2nd run:
  Package CRUD operations
   Add package:
 AssertionError: Timed out retrying after 4000ms: Expected to find content:
'New package' but never did.
  at Context.eval
(http://localhost:8081/__cypress/tests?p=t/cypress/integration/Packages_spec.ts:194:12)

I don't think this is the same error, it's failing to find the "New package" on
package CRUD, instead of failing to find the dialog in titles.
* 3rd run: no issues
* 4th run: no issues
* 5th run: no issues

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://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 33400] Titles_spec.ts is failing because alert is not visible

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33400

--- Comment #6 from Jonathan Druart  ---
(In reply to Pedro Amorim from comment #5)
> * 2nd run:
>   Package CRUD operations
>Add package:
>  AssertionError: Timed out retrying after 4000ms: Expected to find
> content: 'New package' but never did.
>   at Context.eval
> (http://localhost:8081/__cypress/tests?p=t/cypress/integration/Packages_spec.
> ts:194:12)
> 
> I don't think this is the same error, it's failing to find the "New package"
> on package CRUD, instead of failing to find the dialog in titles.

Yes, that's different. I think this one will be fixed by bug 33408.

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://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 30579] When placing item level hold, some options that are not used are not disabled

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30579

--- Comment #26 from Matt Blenkinsop  ---
Hi Nick - I'm getting an alert asking me to select a pickup location when
placing a hold on next available item, even when a location is selected. Could
you check again at your end and see if you're seeing the same? Looks like the
alert is being thrown by the else block in lines 1570 - 1575

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://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 33410] Use template wrapper for breadcrumbs: Patron card creator

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33410

Matt Blenkinsop  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
https://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 33410] Use template wrapper for breadcrumbs: Patron card creator

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33410

Matt Blenkinsop  changed:

   What|Removed |Added

 Attachment #149138|0   |1
is obsolete||

--- Comment #2 from Matt Blenkinsop  ---
Created attachment 149191
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=149191&action=edit
Bug 33410: Use template wrapper for breadcrumbs: Patron card creator

This patch updates several patron card creator templates so that they
use the new WRAPPER for displaying breadcrumbs.

Unrelated minor change: I added  around a few other strings in
edit-profile.tt and edit-template.tt in order to improve
translatability.

To test, apply the patch and test each page and its variations.
Breadcrumbs should look correct, and each link should be correct.

- Tools ->
  - Patron card creator
- New ->
  - Card batch
  - Image
  - Layout
  - Card template
  - Printer profile
- Manage ->
  - Card batches
  - Images
  - Layouts
  - Card templates
  - Printer profiles

Signed-off-by: Matt Blenkinsop 

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://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 33402] ERM Cypress tests needs to be moved to their own directory

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33402

Pedro Amorim  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
https://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 33402] ERM Cypress tests needs to be moved to their own directory

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33402

Pedro Amorim  changed:

   What|Removed |Added

 Attachment #149125|0   |1
is obsolete||

--- Comment #2 from Pedro Amorim  ---
Created attachment 149192
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=149192&action=edit
Bug 33402: Move ERM Cypress tests to their own directory

We need to move the existing Cypress tests (that are ERM only,
t/cypress/integration/*.ts )
to their own subdirectory, eg t/cypress/integration/ERM

Test plan:
Confirm that the cypress tests are still passing after this change:
  perl /kohadevbox/misc4dev/run_tests.pl --run-cypress-tests-only

Signed-off-by: Pedro Amorim 

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://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 29607] addorderiso2709: The stored discount when importing an order from a file is invalid

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29607

Arthur Suzuki  changed:

   What|Removed |Added

 Version(s)|22.11.00, 22.05.03  |22.11.00, 22.05.03,
released in||21.11.19
 CC||arthur.suz...@biblibre.com

--- Comment #11 from Arthur Suzuki  ---
applied to 21.11 for 21.11.19

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://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 33417] New: Create one standard Toolbar component

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33417

Bug ID: 33417
   Summary: Create one standard Toolbar component
 Change sponsored?: ---
   Product: Koha
   Version: master
  Hardware: All
OS: All
Status: NEW
  Severity: enhancement
  Priority: P5 - low
 Component: ERM
  Assignee: jonathan.druart+k...@gmail.com
  Reporter: matt.blenkin...@ptfs-europe.com
CC: jonathan.druart+k...@gmail.com,
jonathan.fi...@ptfs-europe.com,
martin.renvo...@ptfs-europe.com,
pedro.amo...@ptfs-europe.com

We currently have multiple Toolbar components with duplicate code - this could
be standardised into one reusable component

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://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 33417] Create one standard Toolbar component

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33417

Matt Blenkinsop  changed:

   What|Removed |Added

 Depends on||32932
   Assignee|jonathan.druart+koha@gmail. |matt.blenkinsop@ptfs-europe
   |com |.com


Referenced Bugs:

https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32932
[Bug 32932] Re-structure Vue router-links to use "name" instead of urls
-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://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 32932] Re-structure Vue router-links to use "name" instead of urls

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32932

Matt Blenkinsop  changed:

   What|Removed |Added

 Blocks||33417


Referenced Bugs:

https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33417
[Bug 33417] Create one standard Toolbar component
-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://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 33417] Create one standard Toolbar component

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33417

--- Comment #1 from Matt Blenkinsop  ---
Created attachment 149193
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=149193&action=edit
Bug 33417: Create standard toolbar component

This commit introduces a standard Toolbar component that can be used
throughout ERM

Test plan:
1) Apply patch
2) Navigate to Agreements and click the "Add agreement" button - this
   should work as normal
3) Navigate to Licenses and repeat
4) Navigate to Local packages and repeat
5) Navigate to local titles - there should be two buttons, one to add and
   one to import. These should work as normal

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://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 33417] Create one standard Toolbar component

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33417

--- Comment #2 from Matt Blenkinsop  ---
Created attachment 149194
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=149194&action=edit
Bug 33417: Add toolbar imports and options

This commit amends the required files to import the toolbar and add the
correct options

Test plan as above

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://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 33417] Create one standard Toolbar component

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33417

--- Comment #3 from Matt Blenkinsop  ---
Created attachment 149195
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=149195&action=edit
Bug 33417: Remove old components

This commit deletes the old toolbar components as they are no longer
necessary

Test plan as above

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://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 33417] Create one standard Toolbar component

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33417

--- Comment #4 from Matt Blenkinsop  ---
Not ready for signoff yet as 32932 needs a rebase and some fixes

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://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 33408] Fetch sysprefs from svc/config/systempreferences

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33408

--- Comment #9 from Pedro Amorim  ---
Created attachment 149196
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=149196&action=edit
Bug 33408: Remove obsolete template sys pref code

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://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 33408] Fetch sysprefs from svc/config/systempreferences

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33408

--- Comment #10 from Pedro Amorim  ---
Created attachment 149197
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=149197&action=edit
Bug 33408: Prevent access to erm module by URL if sys pref is disabled

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://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 33408] Fetch sysprefs from svc/config/systempreferences

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33408

Pedro Amorim  changed:

   What|Removed |Added

 Attachment #149196|0   |1
is obsolete||

--- Comment #11 from Pedro Amorim  ---
Created attachment 149198
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=149198&action=edit
Bug 33408: Remove obsolete tests and template sys pref code

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://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 33416] Agreements.ts is failing

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33416

Pedro Amorim  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
https://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 33416] Agreements.ts is failing

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33416

Pedro Amorim  changed:

   What|Removed |Added

 Attachment #149187|0   |1
is obsolete||

--- Comment #3 from Pedro Amorim  ---
Created attachment 149199
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=149199&action=edit
Bug 33416: Fix Agreements.ts


[Koha-bugs] [Bug 33408] Fetch sysprefs from svc/config/systempreferences

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33408

--- Comment #12 from Jonathan Druart  ---
Created attachment 149200
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=149200&action=edit
Bug 33408: We need only one this.loaded call

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://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 33412] Problem importing records (bug 15869 follow-up) wrong use of assignment

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33412

Nick Clemens  changed:

   What|Removed |Added

 Depends on||15869
   Patch complexity|--- |Trivial patch


Referenced Bugs:

https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15869
[Bug 15869] Change framework on overlay
-- 
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
https://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 15869] Change framework on overlay

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15869

Nick Clemens  changed:

   What|Removed |Added

 Blocks||33412


Referenced Bugs:

https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33412
[Bug 33412] Problem importing records (bug 15869 follow-up) wrong use of
assignment
-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://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 33412] Problem importing records (bug 15869 follow-up) wrong use of assignment

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33412

--- Comment #1 from Nick Clemens  ---
Created attachment 149201
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=149201&action=edit
Bug 33412: Fix comparison

-- 
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
https://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 28609] Popularity sort is broken

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28609

Marcel de Rooy  changed:

   What|Removed |Added

 CC||m.de.r...@rijksmuseum.nl
 Status|NEW |RESOLVED
 Resolution|--- |FIXED

--- Comment #1 from Marcel de Rooy  ---
See bug 13976.
I also had a struggle to get it working. You need a preference or the cron job
to get the sum of issues into the biblioitems.totalissues column first.

Closing this report.

-- 
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
https://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 28609] Popularity sort is broken

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=28609

Marcel de Rooy  changed:

   What|Removed |Added

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

-- 
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
https://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 13976] Sorting search results by popularity is alphabetical

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13976

Marcel de Rooy  changed:

   What|Removed |Added

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

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://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 33412] Problem importing records (bug 15869 follow-up) wrong use of assignment

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33412

Nick Clemens  changed:

   What|Removed |Added

   Severity|enhancement |normal
   Assignee|koha-b...@lists.koha-commun |n...@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
https://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 33417] Create one standard Toolbar component

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33417

--- Comment #5 from Jonathan Druart  ---
+{{ $__(`${option.button_title}`) }}https://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 33417] Create one standard Toolbar component

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33417

--- Comment #6 from Jonathan Druart  ---
For a Vue module I am writing I need to show/hide button from the toolbar
depending on other states. Wondering how easy/hard it will be with this new
implementation.

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://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 33418] New: Allow setting overlay_framework for connexion imports

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33418

Bug ID: 33418
   Summary: Allow setting overlay_framework for connexion imports
 Change sponsored?: ---
   Product: Koha
   Version: master
  Hardware: All
OS: All
Status: NEW
  Severity: enhancement
  Priority: P5 - low
 Component: MARC Bibliographic record staging/import
  Assignee: koha-bugs@lists.koha-community.org
  Reporter: n...@bywatersolutions.com
QA Contact: testo...@bugs.koha-community.org

Bug 15869 added the ability to specify frameworks when overlaying while
importing, we should extend this to allow updating the framework for records
imported from OCLC connexion

-- 
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
https://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 33398] Show primary_contact_method when holds are triggered

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33398

ByWater Sandboxes  changed:

   What|Removed |Added

 Attachment #149136|0   |1
is obsolete||

--- Comment #4 from ByWater Sandboxes  ---
Created attachment 149202
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=149202&action=edit
Bug 33398: Add primary_contact_method to display when triggering a waiting hold

To test:
1. Apply patch, yarn build
2. Trigger a waiting hold for a patron that has a value for
primary_contact_method
3. Notice the modal now includes a line indicating the primary_contact_method.
4. Trigger a hold for a patron without a primary_contact_method. Nothing should
display.

Signed-off-by: Laura Escamilla 

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://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 33398] Show primary_contact_method when holds are triggered

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33398

Laura Escamilla  changed:

   What|Removed |Added

 CC||Laura.escamilla@bywatersolu
   ||tions.com
 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
https://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 33418] Allow setting overlay_framework for connexion imports

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33418

--- Comment #1 from Nick Clemens  ---
Created attachment 149203
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=149203&action=edit
Bug 33419: POC untested

This will require testing, and better instructions on how to match etc.

To test:
1 - Supply a value for 'framework' and 'overlay_framework' in the connxion.conf
file
2 - Setup connexion, there is some help here on testing values:
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15720
3 - Test importing bibs that match, and that don't match
4 - Confirm the framework value is used for new records
5 - Confirm if framework is blank the default framework is used for new records
6 - Confirm if framework is not supplied the default framework is used for new
records
7 - Confirm a matching record that overlays obeys the overlay_framework param
8 - Confirm overlayed record uses default framework if the param is blank
9 - Confirm the original records framework is retained if the param is not
passed

-- 
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
https://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 33408] Fetch sysprefs from svc/config/systempreferences

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33408

Pedro Amorim  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
https://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 33408] Fetch sysprefs from svc/config/systempreferences

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33408

Pedro Amorim  changed:

   What|Removed |Added

 Attachment #149184|0   |1
is obsolete||

--- Comment #13 from Pedro Amorim  ---
Created attachment 149204
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=149204&action=edit
Bug 33408: Fetch sysprefs from svc/config/systempreferences

It will be easier to mock/set them from cypress tests.

Sponsored-by: BULAC - http://www.bulac.fr/
Signed-off-by: Pedro Amorim 

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://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 33408] Fetch sysprefs from svc/config/systempreferences

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33408

Pedro Amorim  changed:

   What|Removed |Added

 Attachment #149185|0   |1
is obsolete||

--- Comment #14 from Pedro Amorim  ---
Created attachment 149205
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=149205&action=edit
Bug 33408: Mock ERM sysprefs from cypress tests

Sponsored-by: BULAC - http://www.bulac.fr/
Signed-off-by: Pedro Amorim 

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://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 33408] Fetch sysprefs from svc/config/systempreferences

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33408

Pedro Amorim  changed:

   What|Removed |Added

 Attachment #149186|0   |1
is obsolete||

--- Comment #15 from Pedro Amorim  ---
Created attachment 149206
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=149206&action=edit
Bug 33408: Extend defaultCommandTimeout for cypress

Sometimes the initial page load takes more than 4 seconds.

Signed-off-by: Pedro Amorim 

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://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 33408] Fetch sysprefs from svc/config/systempreferences

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33408

Pedro Amorim  changed:

   What|Removed |Added

 Attachment #149197|0   |1
is obsolete||

--- Comment #16 from Pedro Amorim  ---
Created attachment 149207
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=149207&action=edit
Bug 33408: Prevent access to erm module by URL if sys pref is disabled

Signed-off-by: Pedro Amorim 

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://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 33408] Fetch sysprefs from svc/config/systempreferences

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33408

Pedro Amorim  changed:

   What|Removed |Added

 Attachment #149198|0   |1
is obsolete||

--- Comment #17 from Pedro Amorim  ---
Created attachment 149208
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=149208&action=edit
Bug 33408: Remove obsolete tests and template sys pref code

Signed-off-by: Pedro Amorim 

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://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 33408] Fetch sysprefs from svc/config/systempreferences

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33408

Pedro Amorim  changed:

   What|Removed |Added

 Attachment #149200|0   |1
is obsolete||

--- Comment #18 from Pedro Amorim  ---
Created attachment 149209
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=149209&action=edit
Bug 33408: We need only one this.loaded call

Signed-off-by: Pedro Amorim 

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://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 32932] Re-structure Vue router-links to use "name" instead of urls

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32932

Agustín Moyano  changed:

   What|Removed |Added

 Status|Failed QA   |Needs Signoff

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://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 32932] Re-structure Vue router-links to use "name" instead of urls

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32932

--- Comment #32 from Agustín Moyano  ---
Created attachment 149210
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=149210&action=edit
Bug 32932: (follow-up) Fix copy/paste bug in local titles form add and fix bad
link definition in Main.vue

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://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 33418] Allow setting overlay_framework for connexion imports

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33418

Jessie Zairo  changed:

   What|Removed |Added

 CC||jza...@bywatersolutions.com

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://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 29449] Show userid on "your personal details" tab

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29449

Marcel de Rooy  changed:

   What|Removed |Added

 CC||m.de.r...@rijksmuseum.nl

--- Comment #11 from Marcel de Rooy  ---
Interesting!
I have a question: What would be the recommended way to use this in relation to
the various borrower mandatory/unwanted settings?
I applied this change on 21.11 and still did not see userid.

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://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 32256] self-checkout batch mode

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32256

Andrew Fuerste-Henry  changed:

   What|Removed |Added

 CC||andre...@dubcolib.org

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://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 33419] New: Make home branch mandatory by default

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33419

Bug ID: 33419
   Summary: Make home branch mandatory by default
 Change sponsored?: ---
   Product: Koha
   Version: master
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: P5 - low
 Component: MARC Bibliographic data support
  Assignee: koha-bugs@lists.koha-community.org
  Reporter: laura.escami...@bywatersolutions.com
QA Contact: testo...@bugs.koha-community.org

Items without a home branch can cause errors in Koha. On the bib page, items
appear without the "edit" drop-down or the selection check box. On a bulk
delete page, items without a home branch create a red error that says "Cannot
delete".

Making the home branch value mandatory can help avoid these issues.

-- 
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
https://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 33419] Make home branch mandatory by default

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33419

Laura Escamilla  changed:

   What|Removed |Added

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

-- 
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
https://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 25449] Make itemtype mandatory by default

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25449

Laura Escamilla  changed:

   What|Removed |Added

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

-- 
You are receiving this mail because:
You are watching all bug changes.
___
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://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 33420] New: Allow deletion of ILL notices ILL_PICKUP_READY and ILL_REQUEST_UNAVAIL

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33420

Bug ID: 33420
   Summary: Allow deletion of ILL notices ILL_PICKUP_READY and
ILL_REQUEST_UNAVAIL
 Change sponsored?: ---
   Product: Koha
   Version: 22.05
  Hardware: All
OS: All
Status: NEW
  Severity: enhancement
  Priority: P5 - low
 Component: Notices
  Assignee: koha-bugs@lists.koha-community.org
  Reporter: bwsdo...@gmail.com
QA Contact: testo...@bugs.koha-community.org

The notices ILL_PICKUP_READY and ILL_REQUEST_UNAVAIL cannot be deleted by
users.  Libraries that do not use the ILL module should be able to delete these
notices.  All the other ILL notices are able to be deleted.

-- 
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
https://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 33419] Make home branch mandatory by default

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33419

--- Comment #1 from Laura Escamilla  ---
Created attachment 149211
  -->
https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=149211&action=edit
Bug 33419: Set home library mandatory by default

-- 
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
https://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 33419] Make home branch mandatory by default

2023-04-05 Thread bugzilla-daemon
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33419

Laura Escamilla  changed:

   What|Removed |Added

   Assignee|koha-b...@lists.koha-commun |Laura.escamilla@bywatersolu
   |ity.org |tions.com

-- 
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
https://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/


  1   2   >