Bug 13321 / 13323 - Update Schema
authorKyle M Hall <kyle@bywatersolutions.com>
Fri, 28 Oct 2016 15:06:47 +0000 (15:06 +0000)
committerKyle M Hall <kyle@bywatersolutions.com>
Fri, 28 Oct 2016 15:06:47 +0000 (15:06 +0000)
Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
Koha/Schema/Result/Aqorder.pm

index b96d5f9..af849d7 100644 (file)
@@ -176,18 +176,42 @@ __PACKAGE__->table("aqorders");
   is_nullable: 1
   size: [28,6]
 
-=head2 tax_rate
+=head2 tax_rate_bak
 
   data_type: 'decimal'
   is_nullable: 1
   size: [6,4]
 
-=head2 tax_value
+=head2 tax_rate_on_ordering
 
   data_type: 'decimal'
   is_nullable: 1
   size: [6,4]
 
+=head2 tax_rate_on_receiving
+
+  data_type: 'decimal'
+  is_nullable: 1
+  size: [6,4]
+
+=head2 tax_value_bak
+
+  data_type: 'decimal'
+  is_nullable: 1
+  size: [28,6]
+
+=head2 tax_value_on_ordering
+
+  data_type: 'decimal'
+  is_nullable: 1
+  size: [28,6]
+
+=head2 tax_value_on_receiving
+
+  data_type: 'decimal'
+  is_nullable: 1
+  size: [28,6]
+
 =head2 discount
 
   data_type: 'float'
@@ -348,10 +372,18 @@ __PACKAGE__->add_columns(
   { data_type => "decimal", is_nullable => 1, size => [28, 6] },
   "ecost_tax_included",
   { data_type => "decimal", is_nullable => 1, size => [28, 6] },
-  "tax_rate",
+  "tax_rate_bak",
+  { data_type => "decimal", is_nullable => 1, size => [6, 4] },
+  "tax_rate_on_ordering",
   { data_type => "decimal", is_nullable => 1, size => [6, 4] },
-  "tax_value",
+  "tax_rate_on_receiving",
   { data_type => "decimal", is_nullable => 1, size => [6, 4] },
+  "tax_value_bak",
+  { data_type => "decimal", is_nullable => 1, size => [28, 6] },
+  "tax_value_on_ordering",
+  { data_type => "decimal", is_nullable => 1, size => [28, 6] },
+  "tax_value_on_receiving",
+  { data_type => "decimal", is_nullable => 1, size => [28, 6] },
   "discount",
   { data_type => "float", is_nullable => 1, size => [6, 4] },
   "budget_id",
@@ -593,8 +625,8 @@ Composing rels: L</aqorder_users> -> borrowernumber
 __PACKAGE__->many_to_many("borrowernumbers", "aqorder_users", "borrowernumber");
 
 
-# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-09-09 13:43:30
-# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:R2a+DkXI1AaEVnpb1YKu5Q
+# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-10-28 15:05:37
+# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:FyZsBWGJ8wsPkFdYUAetmg
 
 
 # You can replace this text with custom code or comments, and it will be preserved on regeneration