Stephen Hedges | 1 Jun 2004 01:45

Re: branch restrictions

Hi, Robb -

The short and simple answer to your question is "no, it's not possible
with the current Koha code," and that probably indicates that no one else
has felt a burning need for this restriction.  However, if other people
have an itch for such a feature, perhaps we should scratch it!

Stephen

Smylie, Robb said:
> Hello,
>
> I am a new user to Koha and have been very impressed with the software so
> far. I have a question about the possibilities around restricting which
> books staff members can issue to users. I would like to have it so that
> staff members would not be able to issue books the borrowers if that book
> does not reside at that staff members specified branch. Is this possible
> at all? Has anyone else run into a need for this?
>
> Thanks in advance for your help.
>
> Robb Smylie
> Director of Systems and Software Development
> Teach For America

--

-- 
Stephen Hedges
Skemotah Solutions, USA
www.skemotah.com  --  shedges@...
(Continue reading)

Stephen Hedges | 1 Jun 2004 02:18

Re: All I want from Santa (or possibly the great Paul Poulain ;)

>> What I want to be able to
>> generate is a raw number of
>> records for a certain type of material.
>
> Right now?  Query MySQL directly!  In the meantime, submit an enhancement
> bug
> for the kind of report you'd like to see.  Perhaps in the meantime some
> other
> folks can chime in on how they get the reports they need.

Here are some of the SQL statements I use to prepare the Nelsonville
Library reports:

SELECT biblioitems.itemtype, COUNT(biblioitems.itemtype) AS count FROM
items,biblioitems WHERE YEAR(items.dateaccessioned)=2004 AND
MONTH(items.dateaccessioned)=4 AND
biblioitems.biblioitemnumber=items.biblioitemnumber GROUP BY
biblioitems.itemtype;

This one produces a count of items, subdivided by item type, that were
added to the catalog in any given month.  (In the example above, the month
would be April 2004.)  If you want a count of all items by item type, just
leave out the YEAR and MONTH conditionals.

SELECT itemtype, COUNT(itemtype) AS count FROM statistics WHERE
YEAR(datetime)=2004 AND MONTH(datetime)=4 AND branch='APL' AND
type='issue' GROUP BY itemtype;

This one produces a count of books issued by a particular branch in a
particular month.  Note that this _does not_ count renewals.  I use
(Continue reading)

Eric G. Salayon | 1 Jun 2004 06:42
Picon

Perl version

hi,

   what is the minimum version of perl KOHA will work? TIA!

eric
MJ Ray | 1 Jun 2004 11:10

Re: Perl version

On 2004-06-01 05:42:35 +0100 Eric G. Salayon <esalayon@...> 
wrote:

>    what is the minimum version of perl KOHA will work? TIA!

5.6.1, as far as I know, if I recall correctly.

--

-- 
MJR/slef
My Opinion Only and possibly not of any group I know.
http://www.ttllp.co.uk/ for creative copyleft computing
Help hack the EuroParl! http://mjr.towers.org.uk/proj/eurovote/
MJ Ray | 1 Jun 2004 11:49

Re: BarCode Printing

On 2004-05-30 12:42:45 +0100 H S Rai <hsrai@...> wrote:

> For the timing, I would like to know how to print barcode. Is it
> possible through Koha or some other program.

In addition to those mentioned by others, "barcodes on the fly" can be 
a nice companion to koha. You can find it via oss4lib.org, I think.

--

-- 
MJR/slef
My Opinion Only and possibly not of any group I know.
http://www.ttllp.co.uk/ for creative copyleft computing
Help hack the EuroParl! http://mjr.towers.org.uk/proj/eurovote/
H S Rai | 1 Jun 2004 18:18
Picon
Picon

Re: BarCode Printing

I am thank ful to Zeki CELIKBAS, Stephen Hedges and Ray for their
wonderful support.

Today at 10:49am +0100 MJ Ray wrote:

>   In addition to those mentioned by others, "barcodes on the fly" can be 
>   a nice companion to koha. You can find it via oss4lib.org, I think.

Are you referring any one of following or something else.

I colud find php script at following link:

	http://www.weberdev.com/get_example.php3/184
	
and one at:

	http://search.cpan.org/dist/GD-Barcode/Barcode/QRcode.pm
	
and something at:
	
	http://svana.org/kleptog/misc/auspost.html	

Thanks once again.

--

-- 
H. S. Rai 
_____________________________________________________________________
http://www.grex.org/~hsrai | Alternate E-mail: hsraidce@...
___________________________|_________________________________________

(Continue reading)

MJ Ray | 1 Jun 2004 19:17

Re: BarCode Printing

On 2004-06-01 17:18:44 +0100 H S Rai <hsrai@...> wrote:

> Today at 10:49am +0100 MJ Ray wrote:
>>    In addition to those mentioned by others, "barcodes on the fly" 
>> can be 
>> a nice companion to koha. You can find it via oss4lib.org, I think.
> Are you referring any one of following or something else.

Barcodes-on-the-fly helper is currently maintained by its first author,
<a href="http://www.vaxer.net/~sylvar/">Ben Ostrowsky</a> 
ostrowb@...,
a member of the <a href="http://www.tblc.org/">Tampa Bay Library 
Consortium</a>
staff.

SOURCE

Available <a 
href="http://bernie.tblc.org/~ostrowb/bofh-0.2.tar.gz">here</a>.

--

-- 
MJR/slef
My Opinion Only and possibly not of any group I know.
http://www.ttllp.co.uk/ for creative copyleft computing
Help hack the EuroParl! http://mjr.towers.org.uk/proj/eurovote/
MJ Ray | 3 Jun 2004 14:25

Re: All I want from Santa (or possibly the great Paul Poulain ;)

On 2004-05-29 17:22:59 +0100 M Brooke Helman 
<mhelman@...> wrote:

> I also am not sure whether I'm noticing bugs,
> or asking for large or small features, so I'll put my requests here.

You can put them in http://bugs.koha.org/ anyway and someone will mark 
them as bugs or enhancement requests. I've done this one described 
below, but I'll let the MARC-wise specify the other bugs, as I'm not 
100% how to split them:

> [...] In my dreams, I would love for Koha to be
> able to generate a report that tells me how much each item type
> circulates.

Added to http://bugs.koha.org/cgi-bin/bugzilla/show_bug.cgi?id=738

--

-- 
MJR/slef
My Opinion Only and possibly not of any group I know.
http://www.ttllp.co.uk/ for creative copyleft computing
Help hack the EuroParl! http://mjr.towers.org.uk/proj/eurovote/
MJ Ray | 3 Jun 2004 14:30

Re: Newbie Wiki Update and Address

On 2004-05-29 16:42:00 +0100 M Brooke Helman 
<mhelman@...> wrote:

> Salvete!

Salt-wager-ly to you too! (At least, that's what it seems to mean in 
esperanto, but it makes an odd greeting... ;-) )

> http://www.saas.nsw.edu.au/koha_wiki/index.php?page=NewbieGuide

This is a great help, thank you. May I include it in the 2.0.1 release?

--

-- 
MJR/slef
My Opinion Only and possibly not of any group I know.
http://www.ttllp.co.uk/ for creative copyleft computing
Help hack the EuroParl! http://mjr.towers.org.uk/proj/eurovote/
Paul POULAIN | 3 Jun 2004 14:58
Picon
Favicon

Online help on Koha => REQUEST FOR HELP

Hello,

I just commit on CVS a new feature, that will be available for 2.2 : 
online HELP

On each template, a "HELP" link has been added.
it opens a popup, filled with an help template.
the help template is in the help/ directory.
The help.pl files builds the online help using the name of the caller 
page (referer).

If the user clic on "help" when on page "admin/itemtypes.pl", the 
"help/admin/itemtypes.tmpl" is opened.
If the "help/admin/itemtypes.tmpl" does not exists, a default "sorry, no 
help on this topic" page is shown.

Works fine, but now, the big work has to be done : create the online 
help pages...

So, we need candidate to create the "help files".
The help file can be a simple text file, only with cariage returns. If 
there are some candidate here, please say here which file or part of 
Koha you can do, and send me the help files.
I'll include them in the official release, with HTML code added where 
needed.

This task should not be done by a developper, but by librarians.

Anyone sending me files will have it's name added to the contributor 
list, in "about" page of Koha. His name will be reminded forever by ppl 
(Continue reading)


Gmane