barcode printing status in HEAD.
Hello guys, I think that,in head, the barcode management is in a poor state : the tools menu points to tools/barcode.pl, and barcodes/ is unreachable from menus. iirc, katipo wrote that part of the code. Could you have a look & fix what has to be fixed ? (I won't do it, as I don't have any customer using that feature, so I would break more than fix ;-) ) -- Paul POULAIN et Henri Damien LAURENT Consultants indépendants en logiciels libres et bibliothéconomie (http://www.koha-fr.org) Tel : 04 91 31 45 19
Ah, good, I was going to ask about this. We have a more generalized label generation module, which covers all the functionality of barcode.pl except the country code thing. I'll commit to git, removing the barcode dir and adding under 'labels'. If the country code functionality is important to anyone, we can work to integrate it. The code on this is primarily contributed by Mason. Ryan Higgins ----LibLime---------------------------------- Providing Open-Source Solutions for Libraries Migration, Training, Maintenance and Support Featuring Koha ILS : http://liblime.com/koha --------------------------------------------- ----- "Paul POULAIN" <paul.poulain@free.fr> wrote: | Hello guys, | | I think that,in head, the barcode management is in a poor state : the | | tools menu points to tools/barcode.pl, and barcodes/ is unreachable | from | menus. | | iirc, katipo wrote that part of the code. Could you have a look & fix | | what has to be fixed ? (I won't do it, as I don't have any customer | using that feature, so I would break more than fix ;-) ) | -- | Paul POULAIN et Henri Damien LAURENT | Consultants indépendants en logiciels libres et bibliothéconomie | (http://www.koha-fr.org) | Tel : 04 91 31 45 19 | | | _______________________________________________ | Koha-devel mailing list | Koha-devel@nongnu.org | http://lists.nongnu.org/mailman/listinfo/koha-devel
Ryan Higgins a écrit :
Ah, good, I was going to ask about this.
We have a more generalized label generation module, which covers all the functionality of barcode.pl except the country code thing.
I'll commit to git, removing the barcode dir and adding under 'labels'.
If the country code functionality is important to anyone, we can work to integrate it.
The code on this is primarily contributed by Mason.
thanks for the -git- commit. Just 1 thing missing : the database tables. You should create them using the KOHAVERSION stuff : updater/updatedatabase, line 2143, add : $DBversion = "3.00.00.003"; if (C4::Context->preference("Version") < TransformToNum($DBversion)) { $dbh->do("create the tables we need for label management"); } -- Paul POULAIN et Henri Damien LAURENT Consultants indépendants en logiciels libres et bibliothéconomie (http://www.koha-fr.org) Tel : 04 91 31 45 19
Ah, good, I was going to ask about this.
We have a more generalized label generation module, which covers all
Ryan Higgins a écrit : the
functionality of barcode.pl except the country code thing.
I'll commit to git, removing the barcode dir and adding under 'labels'.
If the country code functionality is important to anyone, we can work to integrate it.
The code on this is primarily contributed by Mason.
thanks for the -git- commit.
Just 1 thing missing : the database tables. You should create them using the KOHAVERSION stuff : updater/updatedatabase, line 2143, add :
$DBversion = "3.00.00.003"; if (C4::Context->preference("Version") < TransformToNum($DBversion)) { $dbh->do("create the tables we need for label management"); } Lets add this as an example for the SQL discussion this week, I'd
----- "Paul POULAIN" <paul.poulain@free.fr> wrote: like to decide on a clear set of steps for how to maintain SQL in Koha -- one thing I agree with MJ on, is that one person should maintain the SQL. Also, I think there should only be one authoritative source for the SQL structure definition (kohastructure.sql) and there should be a way to 'prove' that updatedatabase (or whatever replaces it) is identical to the official structure. Secondly, I think we need to discuss the versioning scheme that's in place a bit. For one, we've not yet released 3.0 yet, so it should be starting at 2.9. Cheers, -- Joshua Ferraro SUPPORT FOR OPEN-SOURCE SOFTWARE President, Technology migration, training, maintenance, support LibLime Featuring Koha Open-Source ILS jmf@liblime.com |Full Demos at http://liblime.com/koha |1(888)KohaILS
participants (3)
-
Joshua M. Ferraro -
Paul POULAIN -
Ryan Higgins