View | Details | Raw Unified | Return to bug 13323
Collapse All | Expand All

(-)a/Koha/Schema/Result/Aqorder.pm (-7 / +38 lines)
Lines 181-193 __PACKAGE__->table("aqorders"); Link Here
181
  is_nullable: 1
181
  is_nullable: 1
182
  size: [28,6]
182
  size: [28,6]
183
183
184
=head2 tax_rate
184
=head2 tax_rate_bak
185
185
186
  data_type: 'decimal'
186
  data_type: 'decimal'
187
  is_nullable: 1
187
  is_nullable: 1
188
  size: [6,4]
188
  size: [6,4]
189
189
190
=head2 tax_value
190
=head2 tax_rate_on_ordering
191
192
  data_type: 'decimal'
193
  is_nullable: 1
194
  size: [6,4]
195
196
=head2 tax_rate_on_receiving
197
198
  data_type: 'decimal'
199
  is_nullable: 1
200
  size: [6,4]
201
202
=head2 tax_value_bak
203
204
  data_type: 'decimal'
205
  is_nullable: 1
206
  size: [28,6]
207
208
=head2 tax_value_on_ordering
209
210
  data_type: 'decimal'
211
  is_nullable: 1
212
  size: [28,6]
213
214
=head2 tax_value_on_receiving
191
215
192
  data_type: 'decimal'
216
  data_type: 'decimal'
193
  is_nullable: 1
217
  is_nullable: 1
Lines 341-349 __PACKAGE__->add_columns( Link Here
341
  { data_type => "decimal", is_nullable => 1, size => [28, 6] },
365
  { data_type => "decimal", is_nullable => 1, size => [28, 6] },
342
  "ecost_tax_included",
366
  "ecost_tax_included",
343
  { data_type => "decimal", is_nullable => 1, size => [28, 6] },
367
  { data_type => "decimal", is_nullable => 1, size => [28, 6] },
344
  "tax_rate",
368
  "tax_rate_bak",
369
  { data_type => "decimal", is_nullable => 1, size => [6, 4] },
370
  "tax_rate_on_ordering",
345
  { data_type => "decimal", is_nullable => 1, size => [6, 4] },
371
  { data_type => "decimal", is_nullable => 1, size => [6, 4] },
346
  "tax_value",
372
  "tax_rate_on_receiving",
373
  { data_type => "decimal", is_nullable => 1, size => [6, 4] },
374
  "tax_value_bak",
375
  { data_type => "decimal", is_nullable => 1, size => [28, 6] },
376
  "tax_value_on_ordering",
377
  { data_type => "decimal", is_nullable => 1, size => [28, 6] },
378
  "tax_value_on_receiving",
347
  { data_type => "decimal", is_nullable => 1, size => [28, 6] },
379
  { data_type => "decimal", is_nullable => 1, size => [28, 6] },
348
  "discount",
380
  "discount",
349
  { data_type => "float", is_nullable => 1, size => [6, 4] },
381
  { data_type => "float", is_nullable => 1, size => [6, 4] },
Lines 547-554 Composing rels: L</aqorderusers> -> borrowernumber Link Here
547
__PACKAGE__->many_to_many("borrowernumbers", "aqorderusers", "borrowernumber");
579
__PACKAGE__->many_to_many("borrowernumbers", "aqorderusers", "borrowernumber");
548
580
549
581
550
# Created by DBIx::Class::Schema::Loader v0.07041 @ 2014-11-14 12:17:07
582
# Created by DBIx::Class::Schema::Loader v0.07041 @ 2014-11-24 17:21:48
551
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:WtLVCrU9/7hf5AenldifDw
583
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:DSG4zEgH74kjwg3OaNM+fA
552
584
553
585
554
# You can replace this text with custom content, and it will be preserved on regeneration
586
# You can replace this text with custom content, and it will be preserved on regeneration
555
- 

Return to bug 13323