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

(-)a/Koha/Schema/Result/Category.pm (-3 / +18 lines)
Lines 98-103 are overdue notices sent to this patron category (1 for yes, 0 for no) Link Here
98
98
99
cost to place holds
99
cost to place holds
100
100
101
=head2 print_notice_charge
102
103
  data_type: 'decimal'
104
  default_value: 0.000000
105
  is_nullable: 1
106
  size: [28,6]
107
108
charge for print notices (0.00 = disabled)
109
101
=head2 hidelostitems
110
=head2 hidelostitems
102
111
103
  data_type: 'tinyint'
112
  data_type: 'tinyint'
Lines 253-258 __PACKAGE__->add_columns( Link Here
253
  { data_type => "tinyint", is_nullable => 1 },
262
  { data_type => "tinyint", is_nullable => 1 },
254
  "reservefee",
263
  "reservefee",
255
  { data_type => "decimal", is_nullable => 1, size => [28, 6] },
264
  { data_type => "decimal", is_nullable => 1, size => [28, 6] },
265
  "print_notice_charge",
266
  {
267
    data_type => "decimal",
268
    default_value => "0.000000",
269
    is_nullable => 1,
270
    size => [28, 6],
271
  },
256
  "hidelostitems",
272
  "hidelostitems",
257
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
273
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
258
  "category_type",
274
  "category_type",
Lines 410-417 __PACKAGE__->has_many( Link Here
410
);
426
);
411
427
412
428
413
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2025-07-10 07:11:31
429
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2025-09-16 15:18:44
414
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:ADt+iDjteg9Jb81L2FMIvg
430
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:uR+KIzEJDFp0EaTlpYrVng
415
431
416
# You can replace this text with custom code or comments, and it will be preserved on regeneration
432
# You can replace this text with custom code or comments, and it will be preserved on regeneration
417
433
418
- 

Return to bug 4858