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

(-)a/Koha/Schema/Result/Deleteditem.pm (+1 lines)
Lines 545-550 __PACKAGE__->add_columns( Link Here
545
    '+restricted'                        => { is_boolean => 0 },
545
    '+restricted'                        => { is_boolean => 0 },
546
    '+stack'                             => { is_boolean => 0 },
546
    '+stack'                             => { is_boolean => 0 },
547
    '+withdrawn'                         => { is_boolean => 0 },
547
    '+withdrawn'                         => { is_boolean => 0 },
548
    '+is_closed_stack'                   => { is_boolean => 1 },
548
);
549
);
549
550
550
=head2 koha_objects_class
551
=head2 koha_objects_class
(-)a/Koha/Schema/Result/Item.pm (+1 lines)
Lines 1038-1043 __PACKAGE__->add_columns( Link Here
1038
    '+restricted'                        => { is_boolean => 0 },
1038
    '+restricted'                        => { is_boolean => 0 },
1039
    '+stack'                             => { is_boolean => 0 },
1039
    '+stack'                             => { is_boolean => 0 },
1040
    '+withdrawn'                         => { is_boolean => 0 },
1040
    '+withdrawn'                         => { is_boolean => 0 },
1041
    '+is_closed_stack'                   => { is_boolean => 1 },
1041
);
1042
);
1042
1043
1043
# Relationship with orders via the aqorders_item table that not have foreign keys
1044
# Relationship with orders via the aqorders_item table that not have foreign keys
(-)a/Koha/Schema/Result/OldReserve.pm (-4 / +5 lines)
Lines 527-536 __PACKAGE__->belongs_to( Link Here
527
);
527
);
528
528
529
__PACKAGE__->add_columns(
529
__PACKAGE__->add_columns(
530
    '+item_level_hold' => { is_boolean => 1 },
530
    '+item_level_hold'                   => { is_boolean => 1 },
531
    '+lowestPriority'  => { is_boolean => 1 },
531
    '+lowestPriority'                    => { is_boolean => 1 },
532
    '+suspend'         => { is_boolean => 1 },
532
    '+suspend'                           => { is_boolean => 1 },
533
    '+non_priority'    => { is_boolean => 1 }
533
    '+non_priority'                      => { is_boolean => 1 },
534
    '+closed_stack_request_slip_printed' => { is_boolean => 1 },
534
);
535
);
535
536
536
=head2 koha_object_class
537
=head2 koha_object_class
(-)a/Koha/Schema/Result/Reserve.pm (-5 / +5 lines)
Lines 538-547 __PACKAGE__->belongs_to( Link Here
538
);
538
);
539
539
540
__PACKAGE__->add_columns(
540
__PACKAGE__->add_columns(
541
    '+item_level_hold' => { is_boolean => 1 },
541
    '+item_level_hold'                   => { is_boolean => 1 },
542
    '+lowestPriority'  => { is_boolean => 1 },
542
    '+lowestPriority'                    => { is_boolean => 1 },
543
    '+suspend'         => { is_boolean => 1 },
543
    '+suspend'                           => { is_boolean => 1 },
544
    '+non_priority'    => { is_boolean => 1 }
544
    '+non_priority'                      => { is_boolean => 1 },
545
    '+closed_stack_request_slip_printed' => { is_boolean => 1 },
545
);
546
);
546
547
547
=head2 koha_object_class
548
=head2 koha_object_class
548
- 

Return to bug 38666