From 0e37ad192c5b1f4262f4e9192a9e7420b2c5c03b Mon Sep 17 00:00:00 2001 From: Jacob O'Mara Date: Tue, 16 Sep 2025 17:10:38 +0100 Subject: [PATCH] Bug 4858: DO NOT PUSH - DBIC Sponsored-by: OpenFifth Signed-off-by: Jackie Usher --- Koha/Schema/Result/Category.pm | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/Koha/Schema/Result/Category.pm b/Koha/Schema/Result/Category.pm index c615395fcc2..c86d37207f0 100644 --- a/Koha/Schema/Result/Category.pm +++ b/Koha/Schema/Result/Category.pm @@ -90,6 +90,17 @@ enrollment fee for the patron are overdue notices sent to this patron category (1 for yes, 0 for no) + + +=head2 print_notice_charge + + data_type: 'decimal' + default_value: 0.000000 + is_nullable: 1 + size: [28,6] + +charge for print notices (0.00 = disabled) + =head2 hidelostitems data_type: 'tinyint' @@ -243,6 +254,13 @@ __PACKAGE__->add_columns( { data_type => "decimal", is_nullable => 1, size => [28, 6] }, "overduenoticerequired", { data_type => "tinyint", is_nullable => 1 }, + "print_notice_charge", + { + data_type => "decimal", + default_value => "0.000000", + is_nullable => 1, + size => [28, 6], + }, "hidelostitems", { data_type => "tinyint", default_value => 0, is_nullable => 0 }, "category_type", @@ -400,8 +418,8 @@ __PACKAGE__->has_many( ); -# Created by DBIx::Class::Schema::Loader v0.07051 @ 2026-02-09 19:45:59 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:MArdX4M/RMcRQT/lA/rWAA +# Created by DBIx::Class::Schema::Loader v0.07051 @ 2025-09-16 15:18:44 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:uR+KIzEJDFp0EaTlpYrVng # You can replace this text with custom code or comments, and it will be preserved on regeneration -- 2.53.0