@@ -, +, @@ DBIC changes --- Koha/Schema/Result/Aqorder.pm | 44 +++++++++++++++++++++++++++++++++++++------ 1 file changed, 38 insertions(+), 6 deletions(-) --- a/Koha/Schema/Result/Aqorder.pm +++ a/Koha/Schema/Result/Aqorder.pm @@ -181,13 +181,37 @@ __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 @@ -341,9 +365,17 @@ __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] }, @@ -547,8 +579,8 @@ Composing rels: L -> borrowernumber __PACKAGE__->many_to_many("borrowernumbers", "aqorderusers", "borrowernumber"); -# Created by DBIx::Class::Schema::Loader v0.07041 @ 2014-11-14 12:17:07 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:WtLVCrU9/7hf5AenldifDw +# Created by DBIx::Class::Schema::Loader v0.07041 @ 2014-11-24 17:21:48 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:DSG4zEgH74kjwg3OaNM+fA # You can replace this text with custom content, and it will be preserved on regeneration --