[Koha-bugs] [Bug 7180] Order from staged file improvements

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7180

Jonathan Druart jonathan.dru...@biblibre.com changed:

   What|Removed |Added

  Attachment #20900|0   |1
is obsolete||

--- Comment #103 from Jonathan Druart jonathan.dru...@biblibre.com ---
Created attachment 21462
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=21462action=edit
Bug 7180: Order from staged file improvements

This patch adds:
- 1 syspref MarcFieldsToOrder
- 1 ajax script acqui/ajax-getauthvaluedropbox.pl
- 1 routine C4::Budgets::GetBudgetByCode

Before this patch you were not able to order 1 or all the records from
your staged file. You were allowed to specify some information (Import All
and Accounting details areas) for the order.

With this patch, the previous behaviours still exist.
But now you can *select* which records you want to ordered.
For these ones you can specify independently informations (Quantity,
price, budget, sort1 and sort2).
The cherry on the cake is that you can pre-fill these information with
values

Test plan:
1. Fill the new syspref MarcFieldsToOrder with something like:
==BEGIN==
price: 947$c
quantity: 969$h
budget_code: 922$a
rrp: 010$d
discount: 969$d
sort1: 923$a
sort2: 924$a

==END==
The empty line at the end is mandatory!
The budget (corresponding to your budget_code) can be filled with
authorized value categories (statistic 1 and 2).
The sort1 and sort2 values can be filled with the an authorized value
(of the category previously selected)

2. Choose randomly one or more biblio(s) and fill fields with what is relevant.

3. Export the biblio and import it (with the Stage MARC records for
import tool).

4. Go on a basket and add an order from a staged file. Select your
staged file.

5. Well. Now you can see your biblio (or biblios if your had exported
more than one). For each one, informations should be pre-filled with the
biblio values. The budget should be selected on the budget corresponding
to the budget_code (in the field 922$a) and the planning values too
(with fields 923$a and 924$a).
You can modify these values (or not) and choose a default value for
budget and planning values (in the Accounting details area).

6. Save and check the prices values. Modify the order and check that
budget and sort* are good

Prices are calculated following some parameters:
if there is no price = listprice = 0
else =
  - the gstrate value for your order is the gstrate value of the bookseller
  - discount = if filled : the discount value / 100
   else: the discount value of the bookseller
  - if the bookseller includes tax( List item price includes tax: Yes )
if a discount exists:
ecost = price
rrp   = ecost / ( 1 - discount )
else: # a discount does not exist
ecost = price * ( 1 - discount )
rrp   = price
else # the bookseller does not include tax
if a discount exists:
ecost = price / ( 1 + gstrate )
rrp   = ecost / ( 1 - discount )
else: # a discount does not exist
rrp   = price / ( 1 + gstrate )
ecost = rrp * ( 1 - discount )
  - in all cases:
listprice = rrp / currency rate
unitprice = ecost
total = ecost * quantity

7. Retry with different parameters

8. Check the 'Import all' action still works

-- 
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 7180] Order from staged file improvements

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7180

Jonathan Druart jonathan.dru...@biblibre.com changed:

   What|Removed |Added

  Attachment #20901|0   |1
is obsolete||

--- Comment #104 from Jonathan Druart jonathan.dru...@biblibre.com ---
Created attachment 21463
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=21463action=edit
Bug 7180: FIX getAuthValueDropbox should display the selected value

If the no AV match the name/category or if no category is defined, the
input field should contain the value.

Signed-off-by: Pierre Angot tredok.pie...@gmail.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 7180] Order from staged file improvements

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7180

Jonathan Druart jonathan.dru...@biblibre.com changed:

   What|Removed |Added

  Attachment #20902|0   |1
is obsolete||

--- Comment #105 from Jonathan Druart jonathan.dru...@biblibre.com ---
Created attachment 21464
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=21464action=edit
Bug 7180: Add UT for C4::Budgets::GetBudgetByCode

-- 
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 7180] Order from staged file improvements

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7180

Jonathan Druart jonathan.dru...@biblibre.com changed:

   What|Removed |Added

  Attachment #20903|0   |1
is obsolete||
  Attachment #21004|0   |1
is obsolete||

--- Comment #106 from Jonathan Druart jonathan.dru...@biblibre.com ---
Created attachment 21465
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=21465action=edit
Bug 7180: QA followup

Ergonomic improvements:
- Remove the green color the selected record.
- Use fieldset.rows (and legend).
- Use the required css class for quantity inputs.
- Replace budget with fund.
- fix the undefined string
- Add a show MARC link
- replace no_match with a text.

-- 
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 7180] Order from staged file improvements

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7180

Jonathan Druart jonathan.dru...@biblibre.com changed:

   What|Removed |Added

  Attachment #20934|0   |1
is obsolete||

--- Comment #109 from Jonathan Druart jonathan.dru...@biblibre.com ---
Created attachment 21468
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=21468action=edit
Bug 7180: Change syspref description

- the blank line is now useless
- add an example for the syspref value

-- 
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 7180] Order from staged file improvements

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7180

Jonathan Druart jonathan.dru...@biblibre.com changed:

   What|Removed |Added

  Attachment #20904|0   |1
is obsolete||

--- Comment #107 from Jonathan Druart jonathan.dru...@biblibre.com ---
Created attachment 21466
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=21466action=edit
Bug 7180: The default quantity is 1

-- 
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 7180] Order from staged file improvements

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7180

Jonathan Druart jonathan.dru...@biblibre.com changed:

   What|Removed |Added

  Attachment #20933|0   |1
is obsolete||

--- Comment #108 from Jonathan Druart jonathan.dru...@biblibre.com ---
Created attachment 21467
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=21467action=edit
Bug 7180: Follow-up fixing minor issues

- Fixed some labels from Budget to Fund
- Added the system preference to sysprefs.sql
- Fixed some untranslatable Javascript strings

Signed-off-by: Jonathan Druart jonathan.dru...@biblibre.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 7180] Order from staged file improvements

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7180

Jonathan Druart jonathan.dru...@biblibre.com changed:

   What|Removed |Added

  Attachment #21117|0   |1
is obsolete||

--- Comment #115 from Jonathan Druart jonathan.dru...@biblibre.com ---
Created attachment 21474
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=21474action=edit
Bug 7180: Remove useless rrp variable

-- 
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 7180] Order from staged file improvements

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7180

Jonathan Druart jonathan.dru...@biblibre.com changed:

   What|Removed |Added

  Attachment #20978|0   |1
is obsolete||

--- Comment #110 from Jonathan Druart jonathan.dru...@biblibre.com ---
Created attachment 21469
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=21469action=edit
Bug 7180: Adapt neworderempty code (js function moved).

The js function fetchSortDropbox has been deleted in previous patch.
The new function is getAuthValueDropbox.

Test plan:
- link some av to some funds
- open an existing order and verify value are correctly filled in the
  sort1 and sort2 values
- create a new order and verify behavior is the same as before

Note: This patch generates 2 ajax queries (max) if the budget is linked
to 2 av categories for sort1 and sort2. This could be improved using a
template plugin for values display on load.

Signed-off-by: Jonathan Druart jonathan.dru...@biblibre.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 7180] Order from staged file improvements

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7180

Jonathan Druart jonathan.dru...@biblibre.com changed:

   What|Removed |Added

  Attachment #21014|0   |1
is obsolete||

--- Comment #113 from Jonathan Druart jonathan.dru...@biblibre.com ---
Created attachment 21472
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=21472action=edit
Bug 7180 - QA Followup - Correct minor language 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 7180] Order from staged file improvements

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7180

Jonathan Druart jonathan.dru...@biblibre.com changed:

   What|Removed |Added

  Attachment #20979|0   |1
is obsolete||

--- Comment #111 from Jonathan Druart jonathan.dru...@biblibre.com ---
Created attachment 21470
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=21470action=edit
Bug 7180: FIX License version

Signed-off-by: Jonathan Druart jonathan.dru...@biblibre.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 7180] Order from staged file improvements

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7180

--- Comment #112 from Jonathan Druart jonathan.dru...@biblibre.com ---
Created attachment 21471
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=21471action=edit
Bug 7180: QA followup

- fix unit tests (use a transaction).
- add 3 tabs on the page in order to be more understandable.
- fix a warn in logs

-- 
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 7180] Order from staged file improvements

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7180

Jonathan Druart jonathan.dru...@biblibre.com changed:

   What|Removed |Added

  Attachment #21017|0   |1
is obsolete||

--- Comment #114 from Jonathan Druart jonathan.dru...@biblibre.com ---
Created attachment 21473
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=21473action=edit
Bug 7180: Restore the Add order 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 10891] Make facets customisable (umbrella report)

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10891

--- Comment #15 from mathieu saby mathieu.s...@univ-rennes2.fr ---
Currently, coded fields are not supported.
So they probably won't be in the first version of the patch.
The perl code that uses mappings array must be improved later for that. And
we could add something like mapping:[UNIMARC:[101a0,101a2,101a3-4] for
map positions 0, 2, 3-4 of 101a.

I add an other idea : give the choice to group some facets.
For that I can add a value hierarchicallabel in each facets
For ex, for facet Author (people):

label: Author (people)
hierarchiclabel: [Author,(people)]

And add a syspref for choosing which kind of label is to be used.
So, with hierarchiclabel, you could have facets like that on OPAC or intranet:

*Location*
- Branches
...
- Shelving location
...
*Authors
- People
...
- Organizations
...


Would you like it?

Mathieu

-- 
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 7180] Order from staged file improvements

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7180

--- Comment #116 from mathieu saby mathieu.s...@univ-rennes2.fr ---
I am testing it on sandbox 3, thank you for the rebasing.

Mathieu

-- 
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 7180] Order from staged file improvements

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7180

--- Comment #117 from mathieu saby mathieu.s...@univ-rennes2.fr ---
Well, Pierre Angot is testing, I let him work on that.

But I will make 2 UX remark :
- in syspref description or example, we need to know the list of the data that
could be mapped with MARC (Not only price, budget_code and quantity as shown on
the example, but also sort1,sort2,discount)

- in the syspref description, or in the online help, we need to know too which
kind of price is supposed to be price (vendor catalog price? rrp price?).
For us who are testing it's not a big issue, but once it is pushed, it could
cause great problems if the average librarian understand it the wrong way (and
there are mny ways to misunderstand Koha price management).

M. Saby

-- 
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 7736] Edifact QUOTE and ORDER functionality

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7736

Zeno Tajoli z.taj...@cineca.it changed:

   What|Removed |Added

  Attachment #16792|0   |1
is obsolete||

--- Comment #83 from Zeno Tajoli z.taj...@cineca.it ---
Created attachment 21475
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=21475action=edit
Instructions to test the patch and how-to use the feature

-- 
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 8015] Add MARC Modifications Templates

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8015

--- Comment #132 from Jonathan Druart jonathan.dru...@biblibre.com ---
(In reply to Galen Charlton from comment #131)
 I think it would be better to drop the notion of using a string eval at all
 and just rewrite ModifyRecordWithTemplate to become a dispatcher that calls
 the modification subroutines directly.  I say just rewrite because, for
 once, I think the work can be confined to a single routine.
 
 Also, the patchset currently includes no tests that run
 ModifyRecordWithTemplate directly -- rather a lack, IMO.  Resolving that can
 go hand-in-hand with removing the eval.

I will try to do something.

-- 
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 10858] Browse selected biblios

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10858

sandbo...@biblibre.com sandbo...@biblibre.com changed:

   What|Removed |Added

 Status|Needs Signoff   |Signed Off
 CC||sandbo...@biblibre.com

--- Comment #2 from sandbo...@biblibre.com sandbo...@biblibre.com ---
Patch tested with a sandbox, by Cédric Vita cedric.v...@dracenie.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 10858] Browse selected biblios

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10858

sandbo...@biblibre.com sandbo...@biblibre.com changed:

   What|Removed |Added

  Attachment #20947|0   |1
is obsolete||

-- 
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 10858] Browse selected biblios

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10858

--- Comment #3 from sandbo...@biblibre.com sandbo...@biblibre.com ---
Created attachment 21476
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=21476action=edit
Bug 10858: Browse selected biblios

After launching a search, some people would like to browse some results
from several pages.

This patch adds, at the OPAC, a link Browse selected biblios  when
at least one biblio is checked. You can choose biblios from several
page, not the current one. In this way, checkboxes already checked
become again checked when you come back on this results page.
After clicking the link, the Browse results block is filled with
selected biblios, not (like as the current behavior) with the classic
results.

Test plan:
- Launch a search at the OPAC
- Check some biblios
- Go on another page
- Check some biblios
- Come back to the first page and check that already checked biblio is
  automatically checked.
- Click on the Browse selected biblios  link
- Check that you are able to browse results you had checked.

Signed-off-by: C

-- 
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 7180] Order from staged file improvements

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7180

--- Comment #118 from mathieu saby mathieu.s...@univ-rennes2.fr ---
Discount are not taken into account.
I put 10 in 966$d field and map it with discount in syspref.
In the table for this record in addorderiso2709.pl, I see discount: 10
I saved the form
In the resulting order, the discount is 9.0

So the standard discount for the vendor applied, instead of the discount
defined in the record.

Is it normal or not (I suppose not)?

Mathieu

-- 
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 10891] Make facets customisable (umbrella report)

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10891

Katrin Fischer katrin.fisc...@bsz-bw.de changed:

   What|Removed |Added

 CC||katrin.fisc...@bsz-bw.de

--- Comment #16 from Katrin Fischer katrin.fisc...@bsz-bw.de ---
Just a reminder that controlfields in MARC21 have no subfields :)
101a3-4 can work for UNIMARC, but the syntax is maybe not ideal for MARC21. I
think that can be solved later tho.

-- 
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 7180] Order from staged file improvements

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7180

mathieu saby mathieu.s...@univ-rennes2.fr changed:

   What|Removed |Added

 Status|Needs Signoff   |Failed QA

--- Comment #119 from mathieu saby mathieu.s...@univ-rennes2.fr ---
2 other issues (the same as when I tested some days ago)

- Koha is still adding VAT to price taken in the order, even if the vendor is
defined with list price include tax

- a unitcost is still calculated. It must not be. Everywhere in Koha unitcost
is the real cost define at receipt, never when ordering.

So I failed QA.

Mathieu

-- 
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 10891] Make facets customisable (umbrella report)

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10891

--- Comment #17 from mathieu saby mathieu.s...@univ-rennes2.fr ---
Oh yes, I know...
That's why DOM indexing was broken with Unimarc. See 
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8252

Mathieu

-- 
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 6874] File upload in MARC

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6874

--- Comment #124 from Katrin Fischer katrin.fisc...@bsz-bw.de ---
Hi Mark, could you describe a bit what you tested on the pages? The numbers
make your test plan quite cryptic to read.

-- 
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 9593] Prices not imported correctly from a staged file

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=9593

Christophe Croullebois christophe.croulleb...@biblibre.com changed:

   What|Removed |Added

  Attachment #21274|0   |1
is obsolete||

--- Comment #41 from Christophe Croullebois 
christophe.croulleb...@biblibre.com ---
Created attachment 21477
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=21477action=edit
patch 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 9811] Patrons search improvements

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=9811

cedric.v...@dracenie.com changed:

   What|Removed |Added

 CC||cedric.v...@dracenie.com

--- Comment #62 from cedric.v...@dracenie.com ---
The patch works with the note circulation in the borrower record, the note
appears. But in the note off the borrower record Add a new
message(circulation.pl?borrowernumber=XXX), the note is not displayed.

-- 
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 9811] Patrons search improvements

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=9811

--- Comment #63 from Katrin Fischer katrin.fisc...@bsz-bw.de ---
I think that is ok - the messages notes system was added later and I think it
did never show up in the table. This could go on a separate bug.

-- 
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 6554] Resolve encoding problems with corrected UTF8 handling in templates

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6554

Ketan Kulkarni ke...@carvingit.com 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
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 6554] Resolve encoding problems with corrected UTF8 handling in templates

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6554

--- Comment #133 from Ketan Kulkarni ke...@carvingit.com ---
Created attachment 21478
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=21478action=edit
Double encoding utf8 problem

Use of utf8::upgrade() instead of utf8::encode() appears to be working.
While taking inputs, they should be decoded first whereas output should always
be encoded.

-- 
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 9593] Prices not imported correctly from a staged file

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=9593

--- Comment #42 from Koha Team Lyon 3 k...@univ-lyon3.fr ---
Hey Christophe
I posted this one the same minute as yours and there was a collision !. I saw
you just signed off but here is my comment nevertheless :

I tested the string you told of ('25.5 EUR, $US32, $LD35') with symbol='$US' in
a separated perl script, and I get 32 as expected, same for $LD.
But I know that testing this import into koha may not be so easy. May be some
cache issues caused by testing in a loop or test file with encoding errors ?
For me, the important thing is that if the string is not found the returned
price must be 0. ( better not price at all than a false one)
Anyway, I could not swear it will cover whatever kind of price string but if it
can deal with main part of not too screwy ones, you are welcome to sign it off.

Oliver C.

-- 
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 9788] Improvements for calling GetReservesFromItemnumber

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=9788

--- Comment #25 from M. de Rooy m.de.r...@rijksmuseum.nl ---
Created attachment 21479
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=21479action=edit
Bug 9788: Followup removing the alldates parameter

Before bug 9788 the alldates parameter of GetReservesFromItemnumber was
actually not used in the codebase.
The first patch of bug 9788 did change that and passed true by default.

But a closer look revealed that we do not really need it.
The parameter is removed by this patch; the SQL statement is slightly
adjusted: if reservedate=now or a waitingdate is filled for the
requested itemnumber, GetReservesFromItemnumber will return the reserve.
This includes so-called future waits: a future hold that has been confirmed
ahead of time with pref ConfirmFutureHolds  0 days.

Note that future item-level holds are not really interesting to return; this
just corresponds to original behavior. Future next-available holds are not
in view at all; they do not contain an item number.

Test plan:
Actually, the test plan of the first patch is valid. But for completeness I
repeat it here:

[1] Enable future holds and set ConfirmFutureHolds to 2 days.
[2] Place a future next-available hold for 2 days ahead.
[3] Check item status on catalogue detail. Available? That is fine.
[4] Confirm the future hold by checking it in. ('future wait')
[5] Look at item status again on catalogue detail. Must be Waiting now.
[6] Switch to OPAC and login as another opac user. Goto Place a hold.
[7] Check item status with item level hold info. Is it waiting?
[8] Try to place hold in staff, check item level status again. Waiting?
[9] Make a transfer for the item. Switch branch. Check hold status on
Transfers to receive.

-- 
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 10869] can't delete order line if title deleted

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10869

Pierre Angot tredok.pie...@gmail.com changed:

   What|Removed |Added

 CC||tredok.pie...@gmail.com

--- Comment #11 from Pierre Angot tredok.pie...@gmail.com ---
Is it a duplicate of 9780 ? It seems redundant.

-- 
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 5511] Check for Change in Remote IP address for Session Security. Disable when remote ip address changes frequently.

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5511

Amit amitddng...@gmail.com changed:

   What|Removed |Added

 Status|Failed QA   |ASSIGNED
 CC||amitddng...@gmail.com
   Assignee|amit.gu...@osslabs.biz  |amitddng...@gmail.com

-- 
You are receiving this mail because:
You are the QA Contact 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 9780] Restric the right to suppress a record used in some order

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=9780

Pierre Angot tredok.pie...@gmail.com changed:

   What|Removed |Added

 CC||tredok.pie...@gmail.com

--- Comment #24 from Pierre Angot tredok.pie...@gmail.com ---
Is it a duplicate of 10869 ? It seems redundant.

-- 
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 9367] Code optimization: CheckReserves is too often called

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=9367

M. de Rooy m.de.r...@rijksmuseum.nl changed:

   What|Removed |Added

 Blocks|9788|

-- 
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 5511] Check for Change in Remote IP address for Session Security. Disable when remote ip address changes frequently.

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=5511

Amit amitddng...@gmail.com changed:

   What|Removed |Added

Version|3.4 |master

-- 
You are receiving this mail because:
You are the QA Contact 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 9761] Make it possible to confirm future hold requests at checkin time

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=9761

M. de Rooy m.de.r...@rijksmuseum.nl changed:

   What|Removed |Added

 Blocks|9788|

-- 
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 9788] Improvements for calling GetReservesFromItemnumber

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=9788

M. de Rooy m.de.r...@rijksmuseum.nl changed:

   What|Removed |Added

 Depends on|9761, 9367  |

-- 
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 9788] Improvements for calling GetReservesFromItemnumber

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=9788

M. de Rooy m.de.r...@rijksmuseum.nl changed:

   What|Removed |Added

 Status|Signed Off  |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 10869] can't delete order line if title deleted

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10869

sandbo...@biblibre.com sandbo...@biblibre.com changed:

   What|Removed |Added

 Status|Needs Signoff   |Signed Off
 CC||sandbo...@biblibre.com

--- Comment #12 from sandbo...@biblibre.com sandbo...@biblibre.com ---
Patch tested with a sandbox, by Cedric Vita cedric.v...@dracenie.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 10869] can't delete order line if title deleted

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10869

--- Comment #13 from sandbo...@biblibre.com sandbo...@biblibre.com ---
Created attachment 21480
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=21480action=edit
Bug 10869: Allow the deletion of order line if the record is deleted

This patch fixes 2 issues :
(medium issue) It is not possible to delete an order in a basket if the biblio
record is deleted.
(minor issue) There is a useless hyperlink around Deleted bibliographic
notice, and notice is a frenchism for record

I had to change the behavior of Acquisitions::DelOrder (which is used only by
addorder.pl file), a line in addorder.pl, and a few lines in template
basket.tt.

To test :
1. Fill a basket with some records (some records with items or holds, some
without items)
2. Supress one of the record
3. In the basket (refresh the screen) check that Deleted bibliographic notice
line was replaced with Deleted bibliographic record, without hyperlink
arround
4. Delete this order with the link Delete order to the right column of the
table
5. Check there is a new line in the Deleted orders table
6. Check there is no regression : felete an other order (one with no item),
then check you cannot delete an order with an item (like before patch)

Signed-off-by: Cedric Vita cedric.v...@dracenie.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 10869] can't delete order line if title deleted

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10869

sandbo...@biblibre.com sandbo...@biblibre.com changed:

   What|Removed |Added

  Attachment #21295|0   |1
is obsolete||

-- 
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 9780] Restric the right to suppress a record used in some order

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=9780

--- Comment #25 from mathieu saby mathieu.s...@univ-rennes2.fr ---
Not really
10869 fixes a bug in basket pages
9780 prevent a dangerous behavior in catalog pages

Mathieu

-- 
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 10869] can't delete order line if title deleted

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10869

--- Comment #14 from mathieu saby mathieu.s...@univ-rennes2.fr ---
Note : this patch is a bugfix, that should be applied to maintenance versions
of Koha.

But I also made an other patch with I consider as an ENH, which improves the
behavior : http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10758
(which depends on 10869, so it can't be signed off on a sandbox)

Mathieu

-- 
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 10869] can't delete order line if title deleted

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10869

--- Comment #15 from mathieu saby mathieu.s...@univ-rennes2.fr ---
And thank you Cédric!

-- 
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 10758] Show bibliographic information of deleted records in acquisitions

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10758

--- Comment #18 from mathieu saby mathieu.s...@univ-rennes2.fr ---
Note : Bug 10869 has been signed off.

Mathieu

-- 
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 9788] Improvements for calling GetReservesFromItemnumber

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=9788

--- Comment #26 from M. de Rooy m.de.r...@rijksmuseum.nl ---
Created attachment 21481
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=21481action=edit
Bug 9788: Unit tests for changed routine GetReservesFromItemnumber

Adds three tests to Reserves.t for GetReservesFromItemnumber.
We test if this routine does not return a future next available hold,
a future item level hold. And if it does return a future wait (that is:
a confirmed future hold, using ConfirmFutureHolds).

Note that Holds.t does also contains some basic tests for this routine,
but the additional tests seem to better located in the direct context of
tests for bug 9761 for ConfirmFutureHolds.

Test plan:
Run both t/db_dependent/Holds.t and t/db_dependent/Reserves.t.
Verify if both tests do not fail.

-- 
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 9761] Make it possible to confirm future hold requests at checkin time

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=9761

M. de Rooy m.de.r...@rijksmuseum.nl changed:

   What|Removed |Added

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

-- 
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 9788] Improvements for calling GetReservesFromItemnumber

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=9788

M. de Rooy m.de.r...@rijksmuseum.nl changed:

   What|Removed |Added

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

-- 
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 9788] Improvements for calling GetReservesFromItemnumber

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=9788

M. de Rooy m.de.r...@rijksmuseum.nl changed:

   What|Removed |Added

   Patch complexity|--- |Small patch
   Severity|enhancement |minor

-- 
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 9788] Improvements for calling GetReservesFromItemnumber

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=9788

--- Comment #27 from M. de Rooy m.de.r...@rijksmuseum.nl ---
With the patch for 9761 pushed, this bug should be considered as just a minor
bugfix. I have changed the severity accordingly.
I added two patches now:

One patch removes an actually superfluous alldates parameter from
GetReservesFromItemnumber. All calls have been changed likewise. Note that
behavior changes very slightly (only when using ConfirmFutureHolds) and goes
back more to original behavior since future item level holds are not reported
now (as it was).

The second patch adds three tests for this routine to Reserves.t. Running
Holds.t is recommended too.

The report was in Signed off state as from June 21 (so three months passed). I
will set it back to Needs Signoff, since the additional two patches need a
signoff. Hopefully, this gets some attention soon though.. The extra patches
should help convince QA/RM :)

-- 
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 10952] New: Store anonymous search history in session

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10952

Bug ID: 10952
   Summary: Store anonymous search history in session
 Change sponsored?: ---
   Product: Koha
   Version: master
  Hardware: All
OS: All
Status: ASSIGNED
  Severity: enhancement
  Priority: P5 - low
 Component: OPAC
  Assignee: julian.maur...@biblibre.com
  Reporter: julian.maur...@biblibre.com
QA Contact: testo...@bugs.koha-community.org

Storing search history into cookie can cause problems, due to the size
limitation of 4KB.  The solution here is to store search history into the
CGI::Session object, so there is no size limitation

-- 
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 10952] Store anonymous search history in session

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10952

--- Comment #1 from Julian Maurice julian.maur...@biblibre.com ---
Created attachment 21482
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=21482action=edit
Bug 10952: Store anonymous search history in session

Storing search history into cookie can cause problems, due to the size
limitation of 4KB.
The solution here is to store search history into the CGI::Session
object, so there is no size limitation (but anonymous search history
still remember up to 15 requests max.)

Test plan:
- Go to OPAC in anonymous mode.
- Check that the Search history link is *not* shown in the top right
  corner of the page
- Make some searches on /cgi-bin/koha/opac-search.pl
- The Search history link must appear. Click.
- Your search history must be displayed.
- Try to log in with invalid username/password
- Go back to search history, it's still there
- Now log in with valid username/password
- Your anonymous search history must be saved into your own search
  history.

-- 
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 10952] Store anonymous search history in session

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10952

Julian Maurice julian.maur...@biblibre.com 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
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 10952] Store anonymous search history in session

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10952

Julian Maurice julian.maur...@biblibre.com changed:

   What|Removed |Added

   Patch complexity|--- |Small patch

-- 
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 10857] Add facets cancellation

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10857

Julian Maurice julian.maur...@biblibre.com changed:

   What|Removed |Added

 CC||julian.maur...@biblibre.com

--- Comment #17 from Julian Maurice julian.maur...@biblibre.com ---
Hi all,

I think this bug is only due to the cookies size limitation and the way Koha
handle them (or maybe the problem comes from Apache or the web browser I don't
know), but it is not specific to this patch.

So I wrote a patch to store anonymous search history into CGI::Session instead
of cookies. Please see Bug 10952

-- 
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 6554] Resolve encoding problems with corrected UTF8 handling in templates

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6554

--- Comment #134 from Ketan Kulkarni ke...@carvingit.com ---
I have another patch ready which is an enhancement over the earlier patch I
submitted. How can I discard the older patch and add a new one?

-- 
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 6554] Resolve encoding problems with corrected UTF8 handling in templates

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6554

--- Comment #135 from M. de Rooy m.de.r...@rijksmuseum.nl ---
(In reply to Ketan Kulkarni from comment #134)
 I have another patch ready which is an enhancement over the earlier patch I
 submitted. How can I discard the older patch and add a new one?

You can obsolete a patch manually by clicking Details.
With git-bz you can do it more or less automatically..

-- 
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 10694] Allow arbitrary backdating of returns

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10694

--- Comment #8 from Kyle M Hall k...@bywatersolutions.com ---
(In reply to Jonathan Druart from comment #7)
 QA comment:
 
 It works as described but it does not deal with the debarred date.
 I don't know how to do but I think the patch should manage it.
 
 Marked as Passed QA.

Jonathan, can you please explain what you mean when you write you think this
patch should managed the debarred date? I have no idea what you might mean be
that.

-- 
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 6874] File upload in MARC

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6874

--- Comment #125 from M. Tompsett mtomp...@hotmail.com ---
Comment on attachment 21432
  -- http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=21432
[SIGNED-OFF] Bug 6874: File upload in MARC

Review of attachment 21432:
 -- 
(http://bugs.koha-community.org/bugzilla3/page.cgi?id=splinter.htmlbug=6874attachment=21432)
-

::: C4/Biblio.pm
@@ +37,4 @@
  use C4::Charset;
  use C4::Linker;
  use C4::OAI::Sets;
 +use C4::UploadedFiles;

This is C4::Biblio Change 1.

@@ +1908,4 @@
  
  =head2 GetMarcUrls
  
 +  $marcurls = GetMarcUrls($record,$marcflavour,$frameworkcode);

This is C4::Biblio Change 2.

@@ +1919,5 @@
 +my ( $record, $marcflavour, $frameworkcode ) = @_;
 +
 +my $tagslib = GetMarcStructure(1, $frameworkcode);
 +my $urltag = '856';
 +my $urlsubtag = 'u';

This block is C4::Biblio Change 3.

@@ +1924,3 @@
  
  my @marcurls;
 +for my $field ( $record-field($urltag) ) {

This is C4::Biblio Change 4.

@@ +1927,5 @@
  my @notes;
  for my $note ( $field-subfield('z') ) {
  push @notes, { note = $note };
  }
 +my @urls = $field-subfield($urlsubtag);

This is C4::Biblio Change 5.

@@ +1956,3 @@
  $marcurl-{'part'} = $s3 if ($link);
  $marcurl-{'toc'} = 1 if ( defined($s3)  $s3 =~ 
 /^[Tt]able/ );
  } else {

This begins C4::Biblio Change 6.

@@ +1956,5 @@
  $marcurl-{'part'} = $s3 if ($link);
  $marcurl-{'toc'} = 1 if ( defined($s3)  $s3 =~ 
 /^[Tt]able/ );
  } else {
 +if ($tagslib-{ $urltag }-{ $urlsubtag }-{value_builder} 
 eq upload.pl
 +  and $url =~ /id=([0-9a-f]+)/) {

Inside this IF is C4::Biblio Change 6a.

@@ +1963,5 @@
 +$marcurl-{'linktext'} = $field-subfield('2')
 +  || 
 C4::Context-preference('URLLinkText')
 +  || $file-{filename};
 +$marcurl-{'MARCURL'} = $url;
 +} else {

Inside this ELSE is C4::Biblio Change 6b.

-- 
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 6874] File upload in MARC

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6874

--- Comment #126 from M. Tompsett mtomp...@hotmail.com ---
Comment on attachment 21433
  -- http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=21433
[SIGNED-OFF] Bug 6874: QA follow-up

Review of attachment 21433:
 -- 
(http://bugs.koha-community.org/bugzilla3/page.cgi?id=splinter.htmlbug=6874attachment=21433)
-

::: C4/Biblio.pm
@@ +1446,4 @@
  =head2 GetMarcPrice
  
  return the prices in accordance with the Marc format.
 +

I ignored white space while labeling changes.

@@ +3395,5 @@
  =head2 CountBiblioInOrders
  
 +=over
 +
 +=item $count = CountBiblioInOrders( $biblionumber);

This is C4::Biblio change 7.

@@ +3419,5 @@
  =head2 GetSubscriptionsId
  
 +=over
 +
 +=item $subscriptions = GetSubscriptionsId($biblionumber);

This is C4::Biblio change 8.

@@ +3443,5 @@
  =head2 GetHolds
  
 +=over
 +
 +=item $holds = GetHolds($biblionumber);

This is C4::Biblio change 9.

-- 
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 6874] File upload in MARC

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6874

--- Comment #127 from M. Tompsett mtomp...@hotmail.com ---
I hope that clarifies the complete testing of the C4::Biblio changes that I
have done.

-- 
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 6874] File upload in MARC

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6874

--- Comment #128 from Katrin Fischer katrin.fisc...@bsz-bw.de ---
Hi Mark,
actually I was more thinking about some 'non-programmer' notes about testing
the actual functionality :)

-- 
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 2969] Report Name should be mandatory for saved reports

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=2969

Katrin Fischer katrin.fisc...@bsz-bw.de changed:

   What|Removed |Added

 CC||katrin.fisc...@bsz-bw.de

--- Comment #8 from Katrin Fischer katrin.fisc...@bsz-bw.de ---
I think client side checking is a good first step and we could open a new bug
for the server side to also fix that. I think 'not null' would make sense, I am
not so fond of the automatic 'report X' as this is another possible translation
issue.

-- 
You are receiving this mail because:
You are the QA Contact 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 10905] Author tracings incorrect when UseAuthoritiesForTracings is turned on

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10905

Tomás Cohen Arazi tomasco...@gmail.com changed:

   What|Removed |Added

  Change sponsored?|--- |Sponsored

-- 
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 10858] Browse selected biblios

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10858

--- Comment #4 from Owen Leonard oleon...@myacpl.org ---
Created attachment 21483
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=21483action=edit
Bug 10858 [Follow-up] Browse selected biblios

This follow-up adds the browse functionality to the CCSR theme and
adds some CSS for the browse link, including a new image in the image
sprite.

To test, apply the patch, clear your cache, and test the browsing
functionality again. Confirm that the browse link looks good and works
correctly in both the prog and CCSR themes.

-- 
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 10858] Browse selected biblios

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10858

Owen Leonard oleon...@myacpl.org changed:

   What|Removed |Added

 Status|Signed Off  |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 8015] Add MARC Modifications Templates

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8015

Jonathan Druart jonathan.dru...@biblibre.com changed:

   What|Removed |Added

  Attachment #21371|0   |1
is obsolete||

--- Comment #133 from Jonathan Druart jonathan.dru...@biblibre.com ---
Created attachment 21484
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=21484action=edit
Bug 8015: Get rid of the eval in ModifyRecordWithTemplate

This patch removes the use of eval in the
C4::MarcModificationTemplates::ModifyRecordWithTemplate routine.

Now this routine call the wanted modification routine with the list of
parameters.
This call is done only if the condition is respected.

-- 
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 8015] Add MARC Modifications Templates

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8015

Jonathan Druart jonathan.dru...@biblibre.com 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
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 8015] Add MARC Modifications Templates

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8015

--- Comment #134 from Jonathan Druart jonathan.dru...@biblibre.com ---
Created attachment 21485
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=21485action=edit
Bug 8015: Get rid of eval for evaluating =~ m//

Koha::SimpleMarc::field_equals uses eval in order to check if a string
matches a pattern.
Now this eval is removed and the regex variable does not contain the
regex separated character (/ or |).

Regression: Before this patch, the user was able to user a modifier. Now
it is not possible.

-- 
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 8015] Add MARC Modifications Templates

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8015

--- Comment #136 from Jonathan Druart jonathan.dru...@biblibre.com ---
Created attachment 21487
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=21487action=edit
Bug 8015: FIX ui issue

-- 
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 8015] Add MARC Modifications Templates

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8015

--- Comment #137 from Jonathan Druart jonathan.dru...@biblibre.com ---
These 4 last patches remove the eval.
All 19 patches pass qa tools.
Test plan:
- Retest *all* the feature with complex actions.
- prove t/SimpleMarc.t
- prove t/db_dependent/MarcModificationTemplates.t

Have fun and good luck!

-- 
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 10951] Make the NoLoginInstructions a customizable field through preferences

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10951

Blou philippe.blo...@inlibro.com changed:

   What|Removed |Added

   Assignee|oleon...@myacpl.org |philippe.blo...@inlibro.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 10694] Allow arbitrary backdating of returns

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10694

--- Comment #9 from Jonathan Druart jonathan.dru...@biblibre.com ---
(In reply to Kyle M Hall from comment #8)
 (In reply to Jonathan Druart from comment #7)
  QA comment:
  
  It works as described but it does not deal with the debarred date.
  I don't know how to do but I think the patch should manage it.
  
  Marked as Passed QA.
 
 Jonathan, can you please explain what you mean when you write you think this
 patch should managed the debarred date? I have no idea what you might mean
 be that.

You had rectified, it was not Passed QA, but Failed QA.

In fact it is especially for discussion, I will try to explain:
If I specify a hard due date with now - 1 day and I check in today, the patron
is debarred until now + 3 days (in the issuing rules: Suspension in days(=3) *
1).
If I specify a hard due date with now - 30 days and I specify a return date of
the day after (now - 29 days), what about the suspension delay?
Currently, the patron is suspended until now + 29*3 days.
I am not sure it is relevant.

-- 
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 10857] Add facets cancellation

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10857

Jonathan Druart jonathan.dru...@biblibre.com changed:

   What|Removed |Added

 Status|Failed QA   |Needs Signoff

--- Comment #18 from Jonathan Druart jonathan.dru...@biblibre.com ---
As Julian said, I am not sure the problem is from this patch.
I think the issue already exists in master.
Switch back to 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 10952] Store anonymous search history in session

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10952

Julian Maurice julian.maur...@biblibre.com changed:

   What|Removed |Added

   Severity|enhancement |major

--- Comment #2 from Julian Maurice julian.maur...@biblibre.com ---
Increasing severity to major as its more a bugfix than an enhancement (cf bug
10807)

-- 
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 6554] Resolve encoding problems with corrected UTF8 handling in templates

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6554

Ketan Kulkarni ke...@carvingit.com changed:

   What|Removed |Added

  Attachment #21478|0   |1
is obsolete||

-- 
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 6554] Resolve encoding problems with corrected UTF8 handling in templates

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6554

--- Comment #136 from Ketan Kulkarni ke...@carvingit.com ---
Created attachment 21488
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=21488action=edit
utf8 double encoding problem enhancement

Search, patron pages, patron search, facets need to be tested with different
languages. I have done testing on Devnagari input (Marathi).

-- 
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 4166] No way to know what keywords to use for Keyword Mapping

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=4166

MJ Ray (software.coop) m...@software.coop changed:

   What|Removed |Added

 CC||m...@software.coop

-- 
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 10694] Allow arbitrary backdating of returns

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10694

Katrin Fischer katrin.fisc...@bsz-bw.de changed:

   What|Removed |Added

 CC||katrin.fisc...@bsz-bw.de

--- Comment #10 from Katrin Fischer katrin.fisc...@bsz-bw.de ---
Hm so I think the point is that when you backdate a return, not only the fine
needs to be adjusted, but also the 'fines in days' that is how many days the
user is debarred?

-- 
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 10953] New: Missing subtitle fieldmapping unless you use ru-RU or uk-UA

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10953

Bug ID: 10953
   Summary: Missing subtitle fieldmapping unless you use ru-RU or
uk-UA
 Change sponsored?: ---
   Product: Koha
   Version: master
  Hardware: All
OS: All
Status: NEW
  Severity: minor
  Priority: P5 - low
 Component: Database
  Assignee: gmcha...@gmail.com
  Reporter: m...@software.coop
QA Contact: testo...@bugs.koha-community.org

Steps to Reproduce:

  1. View an opac-detail Normal view page

Actual Results: subtitle is not displayed.

Expected Results: subtitle should be displayed.

Additional Information:

To fix after installation for English MARC21:

  a. visit Home › Administration › Keyword to MARC mapping
  b. enter Field name subtitle, tag 245, subfield b
  c. click Submit

I suggest that this should be added to a fieldmapping.sql in marc21/optional
similar to those for ru-RU and uk-UA.

Bug 4166 is a related problem.

-- 
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 6874] File upload in MARC

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6874

--- Comment #129 from M. Tompsett mtomp...@hotmail.com ---
Fear not. :) I'll be getting to less programmer oriented testing instructions.
The programmer oriented instructions are a matter of proving that the code
changes introduced do not cause any problems by triggering all the code points.
Now, back to 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 6874] File upload in MARC

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6874

--- Comment #130 from M. Tompsett mtomp...@hotmail.com ---
Created attachment 21489
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=21489action=edit
Bug 6874 - Patch kohastructure.sql issues follow up

Two problems were discovered while doing a fresh install
of Koha. These problems in the kohastructure.sql file are
addressed with this patch.

-- 
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 10954] Payment receipt does not display the payment made

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10954

--- Comment #1 from Kyle M Hall k...@bywatersolutions.com ---
Created attachment 21491
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=21491action=edit
Post-Patch Receipt

-- 
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 10954] New: Payment receipt does not display the payment made

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10954

Bug ID: 10954
   Summary: Payment receipt does not display the payment made
 Change sponsored?: ---
   Product: Koha
   Version: master
  Hardware: All
OS: All
Status: NEW
  Severity: enhancement
  Priority: P5 - low
 Component: Circulation
  Assignee: koha-bugs@lists.koha-community.org
  Reporter: k...@bywatersolutions.com
QA Contact: testo...@bugs.koha-community.org
CC: gmcha...@gmail.com, kyle.m.h...@gmail.com

Created attachment 21490
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=21490action=edit
Pre-Patch Receipt

When printing a payment receipt, the payment does not display, only the total
currently owed.

-- 
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 10954] Payment receipt does not display the payment made

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10954

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

   What|Removed |Added

 Status|NEW |Needs Signoff

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
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 10954] Payment receipt does not display the payment made

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10954

--- Comment #2 from Kyle M Hall k...@bywatersolutions.com ---
Created attachment 21492
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=21492action=edit
Bug 10954 - Payment receipt does not display the payment made

When printing a payment receipt, the payment does not display, only the
total currently owed.

Test Plan:
1) Create a payment for a borrower
2) Print the payment with the print button to the right of the payment
3) Note the missing payment line
4) Apply this patch
5) Repeat step 2
6) Note the payment line now displays

-- 
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 10954] Payment receipt does not display the payment made

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10954

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

   What|Removed |Added

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

-- 
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 10954] Payment receipt does not display the payment made

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10954

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

   What|Removed |Added

   Patch complexity|--- |Trivial patch

-- 
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 10952] Store anonymous search history in session

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10952

Galen Charlton gmcha...@gmail.com changed:

   What|Removed |Added

 CC||gmcha...@gmail.com

--- Comment #3 from Galen Charlton gmcha...@gmail.com ---
Haven't looked at the patch in detail, but +1 to the notion of storing it in
the session.  I do wonder if there should be a limit on the number of searches
kept though -- while there is no specific limit on the amount of data that can
be stored in a session, consider the case of a public OPAC station that doesn't
get reset often.  In principle, it could end up with a session that carries
hundreds of searches, which might have a notable impact on performance.

-- 
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 10955] New: Add ability to skip deletions in zebraqueue

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10955

Bug ID: 10955
   Summary: Add ability to skip deletions in zebraqueue
 Change sponsored?: ---
   Product: Koha
   Version: master
  Hardware: All
OS: All
Status: NEW
  Severity: enhancement
  Priority: P5 - low
 Component: Command-line Utilities
  Assignee: gmcha...@gmail.com
  Reporter: k...@bywatersolutions.com
QA Contact: testo...@bugs.koha-community.org

It seems that record deletions can cause extreme slowdowns for Koha
installations with extremely large numbers of records. It would be helpful to
be able to skip record deletions when processing the zebraqueue with
rebuild_zebra.pl so the deletions can be processed with a lower frequency.

-- 
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 10955] Add ability to skip deletions in zebraqueue

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10955

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

   What|Removed |Added

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

-- 
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 10955] Add ability to skip deletions in zebraqueue

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10955

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

   What|Removed |Added

   Assignee|gmcha...@gmail.com  |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 10955] Add ability to skip deletions in zebraqueue

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10955

--- Comment #1 from Kyle M Hall k...@bywatersolutions.com ---
Created attachment 21493
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=21493action=edit
Bug 10955 - Add ability to skip deletions in zebraqueue

It seems that record deletions can cause extreme slowdowns for Koha
installations with extremely large numbers of records. It would be
helpful to be able to skip record deletions when processing the
zebraqueue with rebuild_zebra.pl so the deletions can be processed with
a lower frequency.

Test Plan:
1) Disable any zebra indexing cronjobs you may have
2) Delete a record
3) Note the operation recordDelete in the zebraqueue table having done = 0
4) Run misc/migration_tools/rebuild_zebra.pl -b -z --skip-deletes
5) Note the delete still has done = 0
6) Run misc/migration_tools/rebuild_zebra.pl -b -z
7) Note the delete now has done = 1

-- 
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 10956] New: Series of OPAC searches can cause a browser crash

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10956

Bug ID: 10956
   Summary: Series of OPAC searches can cause a browser crash
 Change sponsored?: ---
   Product: Koha
   Version: master
  Hardware: All
OS: All
Status: NEW
  Severity: major
  Priority: P5 - low
 Component: OPAC
  Assignee: oleon...@myacpl.org
  Reporter: oleon...@myacpl.org
QA Contact: testo...@bugs.koha-community.org

In my tests this series of OPAC searches will result a browser crash (Firefox)
or an endlessly loading tab (Chrome):

1. Perform a keyword search which will return a good number of results.
2. Click on a title in those results which will have a good number of 
   works by that author.
3. Click on the author link on the detail page to perform a search
   by author.
4. Click on a facet on the author search results page (I tested by 
   clicking on a library facet).
5. Click on a title in the refined search results.

I've tested this procedure with XSLT on and off, with OpacBrowseResults on and
off, and with EnableOpacSearchHistory on and off. I get the same results in
both themes.

-- 
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 10956] Series of OPAC searches can cause a browser crash

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10956

--- Comment #1 from Owen Leonard oleon...@myacpl.org ---
More info: The bug appears to affect master and 3.12.x but not 3.10.x. I
couldn't reproduce the problem in the staff client following the same steps.

-- 
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 10957] New: 710$a with 710$b (subordinate unit) present shows wrong (XSLT)

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10957

Bug ID: 10957
   Summary: 710$a with 710$b (subordinate unit) present shows
wrong (XSLT)
 Change sponsored?: ---
   Product: Koha
   Version: master
  Hardware: All
OS: All
Status: NEW
  Severity: trivial
  Priority: P5 - low
 Component: Templates
  Assignee: oleon...@myacpl.org
  Reporter: tomasco...@gmail.com
QA Contact: testo...@bugs.koha-community.org

Created attachment 21494
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=21494action=edit
sample

If both 710$a and 710$b are present they are pasted together without
punctuation or space between.

-- 
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 10240] Offline circulation using HTML5 and IndexedDB

2013-09-26 Thread bugzilla-daemon
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10240

Jared Camins-Esakov jcam...@cpbibliography.com changed:

   What|Removed |Added

  Attachment #21157|0   |1
is obsolete||

--- Comment #39 from Jared Camins-Esakov jcam...@cpbibliography.com ---
Created attachment 21495
  --
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=21495action=edit
Bug 10240: Offline circulation using HTML5 and IndexedDB

This patch adds an HTML5-based offline mode to Koha's existing
circulation module, allowing librarians to check out items using a
basically familiar interface. The feature will be implemented using
the Application Cache and IndexedDB features of the HTML5 specification,
both of which are fully supported on Firefox 10+ and Chrome 23+, with
limited support going back to Firefox 4 and Chrome 11. The basic
workflow enabled by this patch is as follows:

Part 1: While connected to the Internet
1. Enable offline functionality by turning on the
   AllowOfflineCirculation system preference.
2. Sync the offline circulation database on the computer that will be
   used for offline circulation by following the Offline circulation
   interface link on the Circulation home page, choosing Synchronize (must be
online),
   and clicking the Download records button. This process may take a while.
3. Bookmark /cgi-bin/koha/circ/offline.pl (the page you are currently
   on) for easy access when offline.

Part 2: While disconnected from the Internet
4. Navigate to /cgi-bin/koha/circ/offline.pl using the bookmark you
   created while online.
5. Start checking books in by scanning the barcode of an item that has
   been returned into the box in the Check in tab.
6. Scan the barcodes of any additional items that have been returned.
7. Start checking out books to a patron by scanning the patron's barcode
   in the box in the Check out tab.
8. Set a due date (the Remember for session box will be checked by
   default, since circulation rules are not computed during offline
   transactions and therefore a due date must be specified by the
   librarian).
9. Scan an item barcode (if you did not set a due date, it will prompt
   you) to check the item out to the patron.
10. If a patron has a fine you can see the total amount (current to when
the offline module was synced), and record a payment. Unlike when in
online mode, there will be no breakdown of what item(s) fines are
for, and you will only be able to record the payment amount and not
associate it with a particular item.

Part 3: While connected to the Internet
11. Click the Synchronize link and choose Upload transactions to
upload the transactions recorded during the offline circulation
session.
12. Navigate to /cgi-bin/koha/offline_circ/list.pl (there will be a
link from the Offline circulation page) and review the
transactions, as described in the documentation for the Firefox
Offline circulation plugin:
http://wiki.koha-community.org/wiki/Offline_circulation_firefox_plugin

Signed-off-by: Chris Cormack ch...@bigballofwax.co.nz

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


  1   2   >