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

(-)a/Koha/Schema/Result/Aqorder.pm (-1 / +8 lines)
Lines 152-157 __PACKAGE__->table("aqorders"); Link Here
152
  is_nullable: 1
152
  is_nullable: 1
153
  size: [13,2]
153
  size: [13,2]
154
154
155
=head2 replacementprice
156
157
  data_type: 'decimal'
158
  is_nullable: 1
159
  size: [28,6]
160
155
=head2 rrp_tax_excluded
161
=head2 rrp_tax_excluded
156
162
157
  data_type: 'decimal'
163
  data_type: 'decimal'
Lines 370-375 __PACKAGE__->add_columns( Link Here
370
  },
376
  },
371
  "rrp",
377
  "rrp",
372
  { data_type => "decimal", is_nullable => 1, size => [13, 2] },
378
  { data_type => "decimal", is_nullable => 1, size => [13, 2] },
379
  "replacementprice",
380
  { data_type => "decimal", is_nullable => 1, size => [28, 6] },
373
  "rrp_tax_excluded",
381
  "rrp_tax_excluded",
374
  { data_type => "decimal", is_nullable => 1, size => [28, 6] },
382
  { data_type => "decimal", is_nullable => 1, size => [28, 6] },
375
  "rrp_tax_included",
383
  "rrp_tax_included",
376
- 

Return to bug 18639