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

(-)a/Koha/Schema/Result/ClubHoldsToPatronHold.pm (-4 / +4 lines)
Lines 50-56 __PACKAGE__->table("club_holds_to_patron_holds"); Link Here
50
=head2 error_code
50
=head2 error_code
51
51
52
  data_type: 'enum'
52
  data_type: 'enum'
53
  extra: {list => ["damaged","ageRestricted","itemAlreadyOnHold","tooManyHoldsForThisRecord","tooManyReservesToday","tooManyReserves","notReservable","cannotReserveFromOtherBranches","libraryNotFound","libraryNotPickupLocation","cannotBeTransferred"]}
53
  extra: {list => ["damaged","ageRestricted","itemAlreadyOnHold","tooManyHoldsForThisRecord","tooManyReservesToday","tooManyReserves","notReservable","cannotReserveFromOtherBranches","libraryNotFound","libraryNotPickupLocation","cannotBeTransferred","noReservesAllowed"]}
54
  is_nullable: 1
54
  is_nullable: 1
55
55
56
=head2 error_message
56
=head2 error_message
Lines 86-91 __PACKAGE__->add_columns( Link Here
86
        "libraryNotFound",
86
        "libraryNotFound",
87
        "libraryNotPickupLocation",
87
        "libraryNotPickupLocation",
88
        "cannotBeTransferred",
88
        "cannotBeTransferred",
89
        "noReservesAllowed",
89
      ],
90
      ],
90
    },
91
    },
91
    is_nullable => 1,
92
    is_nullable => 1,
Lines 159-166 __PACKAGE__->belongs_to( Link Here
159
);
160
);
160
161
161
162
162
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-10-01 07:08:47
163
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2020-08-04 18:43:05
163
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:/T626DfqUi7SnXOyieUzYw
164
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:KjJWzFhPwQk0SZqrHQ4Alw
164
165
165
sub koha_objects_class {
166
sub koha_objects_class {
166
    'Koha::Club::Hold::PatronHolds';
167
    'Koha::Club::Hold::PatronHolds';
167
- 

Return to bug 16787