From 1bff217bbe42e76d23402eb98c68ab2297db8db3 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jean-Andr=C3=A9=20Santoni?= Date: Sun, 1 Nov 2009 14:03:09 +0100 Subject: [PATCH] [3.2.x](bug #3624) Per-basketgroup delivery place Librarian are now able to select a different delivery place for each basketgroup. They can choose one from the branch list or manualy using a textarea. Database schema and PDF generation have been modified to reflect these changes. --- installer/data/mysql/updatedatabase.pl | 2 +- kohaversion.pl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index 137169e8f0..54100eb39f 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -3157,7 +3157,7 @@ if (C4::Context->preference("Version") < TransformToNum($DBversion)) { SetVersion ($DBversion); } -$DBversion = "3.01.00.122"; +$DBversion = "3.01.00.124"; if (C4::Context->preference("Version") < TransformToNum($DBversion)) { $dbh->do(qq{ ALTER TABLE aqbasketgroups ADD deliveryplace VARCHAR(10), deliverycomment VARCHAR(255); diff --git a/kohaversion.pl b/kohaversion.pl index 4238fa09b9..a27131ccb4 100644 --- a/kohaversion.pl +++ b/kohaversion.pl @@ -10,7 +10,7 @@ use strict; sub kohaversion { - our $VERSION = '3.01.00.123'; + our $VERSION = '3.01.00.124'; # version needs to be set this way # so that it can be picked up by Makefile.PL # during install -- 2.39.5