@@ -, +, @@ --- Koha/Schema/Result/Borrower.pm | 64 ++++++++++++++++++++++++++++++++-- Koha/Schema/Result/Issue.pm | 34 ++++++++++++++++-- Koha/Schema/Result/Item.pm | 19 ++++++++-- 3 files changed, 111 insertions(+), 6 deletions(-) --- a/Koha/Schema/Result/Borrower.pm +++ a/Koha/Schema/Result/Borrower.pm @@ -1334,6 +1334,66 @@ __PACKAGE__->has_many( { cascade_copy => 0, cascade_delete => 0 }, ); +=head2 return_claims_borrowernumbers + +Type: has_many + +Related object: L + +=cut + +__PACKAGE__->has_many( + "return_claims_borrowernumbers", + "Koha::Schema::Result::ReturnClaim", + { "foreign.borrowernumber" => "self.borrowernumber" }, + { cascade_copy => 0, cascade_delete => 0 }, +); + +=head2 return_claims_created_by + +Type: has_many + +Related object: L + +=cut + +__PACKAGE__->has_many( + "return_claims_created_by", + "Koha::Schema::Result::ReturnClaim", + { "foreign.created_by" => "self.borrowernumber" }, + { cascade_copy => 0, cascade_delete => 0 }, +); + +=head2 return_claims_resolved_by + +Type: has_many + +Related object: L + +=cut + +__PACKAGE__->has_many( + "return_claims_resolved_by", + "Koha::Schema::Result::ReturnClaim", + { "foreign.resolved_by" => "self.borrowernumber" }, + { cascade_copy => 0, cascade_delete => 0 }, +); + +=head2 return_claims_updated_by + +Type: has_many + +Related object: L + +=cut + +__PACKAGE__->has_many( + "return_claims_updated_by", + "Koha::Schema::Result::ReturnClaim", + { "foreign.updated_by" => "self.borrowernumber" }, + { cascade_copy => 0, cascade_delete => 0 }, +); + =head2 reviews Type: has_many @@ -1575,8 +1635,8 @@ Composing rels: L -> ordernumber __PACKAGE__->many_to_many("ordernumbers", "aqorder_users", "ordernumber"); -# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-10-01 07:08:47 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:FRyurgV8tVN4EBduIM8tGA +# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-10-10 14:31:00 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:GjJLIOViIFRm185Yjl9vYA __PACKAGE__->add_columns( '+anonymized' => { is_boolean => 1 }, --- a/Koha/Schema/Result/Issue.pm +++ a/Koha/Schema/Result/Issue.pm @@ -248,9 +248,39 @@ __PACKAGE__->belongs_to( }, ); +=head2 return_claims_issues -# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-04-10 19:55:44 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:PUF5X7X9K44BC0d43Rat7w +Type: has_many + +Related object: L + +=cut + +__PACKAGE__->has_many( + "return_claims_issues", + "Koha::Schema::Result::ReturnClaim", + { "foreign.issue_id" => "self.issue_id" }, + { cascade_copy => 0, cascade_delete => 0 }, +); + +=head2 return_claims_old_issues + +Type: has_many + +Related object: L + +=cut + +__PACKAGE__->has_many( + "return_claims_old_issues", + "Koha::Schema::Result::ReturnClaim", + { "foreign.old_issue_id" => "self.issue_id" }, + { cascade_copy => 0, cascade_delete => 0 }, +); + + +# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-10-10 14:31:00 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:jJCS32Th6SuV2eJ6cLkVeA __PACKAGE__->add_columns( '+auto_renew' => { is_boolean => 1 }, --- a/Koha/Schema/Result/Item.pm +++ a/Koha/Schema/Result/Item.pm @@ -686,6 +686,21 @@ __PACKAGE__->has_many( { cascade_copy => 0, cascade_delete => 0 }, ); +=head2 return_claims + +Type: has_many + +Related object: L + +=cut + +__PACKAGE__->has_many( + "return_claims", + "Koha::Schema::Result::ReturnClaim", + { "foreign.itemnumber" => "self.itemnumber" }, + { cascade_copy => 0, cascade_delete => 0 }, +); + =head2 serialitem Type: might_have @@ -732,8 +747,8 @@ __PACKAGE__->has_many( ); -# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-10-01 07:08:47 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:n/X6k+IwU4pkLS+PjKWVWA +# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-10-10 14:31:00 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:dqUjo9pJysKKBhF8PM5KnA __PACKAGE__->belongs_to( biblioitem => "Koha::Schema::Result::Biblioitem", "biblioitemnumber" ); --