Re: [Koha] How to calculate the fines in koha 2.2.8
Dear All, How to calculate the fines in koha 2.2.8 Regards T.Venkat Narayana M.A.,M.L.I.Sc.;PGDLAN, Assistant Librarian, Sri Venkateswara Engineering College, SURYAPET - A.P. INDIA --- On Thu, 4/9/08, koha-request@lists.katipo.co.nz <koha-request@lists.katipo.co.nz> wrote: From: koha-request@lists.katipo.co.nz <koha-request@lists.katipo.co.nz> Subject: Koha Digest, Vol 35, Issue 10 To: koha@lists.katipo.co.nz Date: Thursday, 4 September, 2008, 4:27 AM Send Koha mailing list submissions to koha@lists.katipo.co.nz To subscribe or unsubscribe via the World Wide Web, visit http://lists.katipo.co.nz/mailman/listinfo/koha or, via email, send a message with subject or body 'help' to koha-request@lists.katipo.co.nz You can reach the person managing the list at koha-owner@lists.katipo.co.nz When replying, please edit your Subject line so it is more specific than "Re: Contents of Koha digest..." Today's Topics: 1. Re: Barcode not being generated in new MARC records (Bruce Raymond) 2. Re: PDF error when producing more than 6 - 10 barcode labels (Bruce Raymond) 3. Guided Reports - HTML output to the screen - download error (Bruce Raymond) 4. Re: Guided Reports - HTML output to the screen - download error (Cab Vinton) 5. Re: Guided Reports - HTML output to the screen - download error (Bruce Raymond) 6. Re: bulkmarcimport.pl (thandu venkat narayana) ---------------------------------------------------------------------- Message: 1 Date: Wed, 3 Sep 2008 19:37:17 -0600 From: "Bruce Raymond" <braymond@regisjesuit.com> Subject: Re: [Koha] Barcode not being generated in new MARC records To: "Joe Atzberger" <ohiocore@gmail.com> Cc: koha@lists.katipo.co.nz Message-ID: <A59F0F5F9A16C943AFDB7F5FC59BCE620246C63F@exchange03a.RJHS.com> Content-Type: text/plain; charset="us-ascii" Thanks Joe. This addressed the problem by changing the barcode autogeneration to incremental. It also fixed a label printing problem I was having. The pdf generator was generating errors because of the home branch style barcodes. I would really prefer to use the branch style though, so I hope that functionality will be restored in the future. In the meantime it should probably be removed as a choice since it is unreliable. From: Joe Atzberger [mailto:ohiocore@gmail.com] Subject: Re: [Koha] Barcode not being generated in new MARC records Bruce -- All forms of barcode autogeneration except incremental are problematic. I strongly recommend against using them. "Home branch" or "hbyymmincr" style barcodes, in particular, are not implemented in a widely applicable way. It should not be used by multi-branch libraries, or libraries with more than 9999 items, or libraries with non-4-character branch codes, or libraries with digits or underscores in their branch codes... or basically anyone. The query that obtains the next valid barcode for hbyymmincr is: $query = "SELECT MAX(CAST(SUBSTRING(barcode,7,4) AS signed)) FROM items WHERE barcode REGEXP ?"; my $sth=$dbh->prepare($query); $sth->execute("^[a-zA-Z]{1,}$year"); In this case, year would be "08", but you can see the flaws in this query result in the extreme limitations above. You can print the branch and year directly on the barcode stickers and spine labels you generate. That info does not need to be part of the barcode itself. --Joe Atzberger, LibLime On Mon, Sep 1, 2008 at 11:31 PM, Bruce Raymond <braymond@regisjesuit.com> wrote: Installation details: Koha 3.0 stable. Setting details: Automatic barcode generation using the home branch method is turned on. The automatic barcode generating has been working ok until a few days ago. Now no barcode is being generated. The automatic setting is still set on. Any suggestion about how to troubleshoot this problem? -- View this message in context: http://www.nabble.com/Barcode-not-being-generated-in-new-MARC-records-tp 19263641p19263641.html
participants (1)
-
thandu venkat narayana