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

(-)a/Koha/Schema/Result/Itemtype.pm (-13 / +2 lines)
Lines 96-109 controls if the hourly rental fee is calculated directly or using finesCalendar Link Here
96
96
97
default replacement cost
97
default replacement cost
98
98
99
=head2 processfee
100
101
  data_type: 'decimal'
102
  is_nullable: 1
103
  size: [28,6]
104
105
default text be recorded in the column note when the processing fee is applied
106
107
=head2 notforloan
99
=head2 notforloan
108
100
109
  data_type: 'tinyint'
101
  data_type: 'tinyint'
Lines 214-221 __PACKAGE__->add_columns( Link Here
214
  { data_type => "tinyint", default_value => 1, is_nullable => 0 },
206
  { data_type => "tinyint", default_value => 1, is_nullable => 0 },
215
  "defaultreplacecost",
207
  "defaultreplacecost",
216
  { data_type => "decimal", is_nullable => 1, size => [28, 6] },
208
  { data_type => "decimal", is_nullable => 1, size => [28, 6] },
217
  "processfee",
218
  { data_type => "decimal", is_nullable => 1, size => [28, 6] },
219
  "notforloan",
209
  "notforloan",
220
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
210
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
221
  "imageurl",
211
  "imageurl",
Lines 375-382 __PACKAGE__->has_many( Link Here
375
);
365
);
376
366
377
367
378
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2026-02-10 17:39:28
368
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2026-02-10 19:06:38
379
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:jdGLBem2+Cj1STCmWCf2Bg
369
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:KZub31ZHi+//ZVWby5F9Rw
380
370
381
__PACKAGE__->add_columns(
371
__PACKAGE__->add_columns(
382
    '+automatic_checkin'            => { is_boolean => 1 },
372
    '+automatic_checkin'            => { is_boolean => 1 },
383
- 

Return to bug 36506