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

(-)a/Koha/Schema/Result/Aqorder.pm (-3 / +10 lines)
Lines 146-151 __PACKAGE__->table("aqorders"); Link Here
146
  is_nullable: 1
146
  is_nullable: 1
147
  size: [13,2]
147
  size: [13,2]
148
148
149
=head2 replacementprice
150
151
  data_type: 'decimal'
152
  is_nullable: 1
153
  size: [28,6]
154
149
=head2 rrp_tax_excluded
155
=head2 rrp_tax_excluded
150
156
151
  data_type: 'decimal'
157
  data_type: 'decimal'
Lines 362-367 __PACKAGE__->add_columns( Link Here
362
  },
368
  },
363
  "rrp",
369
  "rrp",
364
  { data_type => "decimal", is_nullable => 1, size => [13, 2] },
370
  { data_type => "decimal", is_nullable => 1, size => [13, 2] },
371
  "replacementprice",
372
  { data_type => "decimal", is_nullable => 1, size => [28, 6] },
365
  "rrp_tax_excluded",
373
  "rrp_tax_excluded",
366
  { data_type => "decimal", is_nullable => 1, size => [28, 6] },
374
  { data_type => "decimal", is_nullable => 1, size => [28, 6] },
367
  "rrp_tax_included",
375
  "rrp_tax_included",
Lines 625-632 Composing rels: L</aqorder_users> -> borrowernumber Link Here
625
__PACKAGE__->many_to_many("borrowernumbers", "aqorder_users", "borrowernumber");
633
__PACKAGE__->many_to_many("borrowernumbers", "aqorder_users", "borrowernumber");
626
634
627
635
628
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-10-28 15:05:37
636
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-12-28 20:34:37
629
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:FyZsBWGJ8wsPkFdYUAetmg
637
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:QMqUDdJBpsIil8VIdqcZjQ
630
638
631
639
632
# You can replace this text with custom code or comments, and it will be preserved on regeneration
640
# You can replace this text with custom code or comments, and it will be preserved on regeneration
633
- 

Return to bug 18639