GLN: neue Spalte bei customer, vendor und shipto; DB-Upgrade-Skript u. Rose
authorBernd Bleßmann <bernd@kivitendo-premium.de>
Thu, 11 Feb 2016 21:56:03 +0000 (22:56 +0100)
committerBernd Bleßmann <bernd@kivitendo-premium.de>
Fri, 12 Feb 2016 16:16:31 +0000 (17:16 +0100)
SL/DB/MetaSetup/Customer.pm
SL/DB/MetaSetup/Shipto.pm
SL/DB/MetaSetup/Vendor.pm
SL/DB/Shipto.pm

index 173cb75..aca5874 100644 (file)
@@ -31,6 +31,7 @@ __PACKAGE__->meta->columns(
   discount                  => { type => 'float', scale => 4 },
   email                     => { type => 'text' },
   fax                       => { type => 'text' },
+  gln                       => { type => 'text' },
   greeting                  => { type => 'text' },
   homepage                  => { type => 'text' },
   hourly_rate               => { type => 'numeric', precision => 8, scale => 2 },
index beab032..57b4971 100644 (file)
@@ -21,6 +21,7 @@ __PACKAGE__->meta->columns(
   shiptodepartment_2 => { type => 'text' },
   shiptoemail        => { type => 'text' },
   shiptofax          => { type => 'text' },
+  shiptogln          => { type => 'text' },
   shiptoname         => { type => 'text' },
   shiptophone        => { type => 'text' },
   shiptostreet       => { type => 'text' },
index 54e9d07..e3a1b93 100644 (file)
@@ -29,6 +29,7 @@ __PACKAGE__->meta->columns(
   discount         => { type => 'float', scale => 4 },
   email            => { type => 'text' },
   fax              => { type => 'text' },
+  gln              => { type => 'text' },
   greeting         => { type => 'text' },
   homepage         => { type => 'text' },
   iban             => { type => 'text' },
index b8868ab..c83fcec 100644 (file)
@@ -6,7 +6,7 @@ use SL::DB::MetaSetup::Shipto;
 use SL::DB::Manager::Shipto;
 use Rose::DB::Object::Helpers qw(clone_and_reset clone);
 
-our @SHIPTO_VARIABLES = qw(shiptoname shiptostreet shiptozipcode shiptocity shiptocountry shiptocontact
+our @SHIPTO_VARIABLES = qw(shiptoname shiptostreet shiptozipcode shiptocity shiptocountry shiptogln shiptocontact
                            shiptophone shiptofax shiptoemail shiptodepartment_1 shiptodepartment_2);
 
 __PACKAGE__->meta->initialize;