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

(-)a/Koha/Schema/Result/CheckoutRenewal.pm (-3 / +2 lines)
Lines 140-146 Related object: L<Koha::Schema::Result::Issue> Link Here
140
__PACKAGE__->belongs_to(
140
__PACKAGE__->belongs_to(
141
    "checkout",
141
    "checkout",
142
    "Koha::Schema::Result::Issue",
142
    "Koha::Schema::Result::Issue",
143
    { issue_id => "checkout_id" },
143
    { "foreign.issue_id" => "self.checkout_id" },
144
    {
144
    {
145
        is_deferrable => 1,
145
        is_deferrable => 1,
146
        join_type     => "LEFT",
146
        join_type     => "LEFT",
Lines 158-164 Related object: L<Koha::Schema::Result::OldIssue> Link Here
158
__PACKAGE__->belongs_to(
158
__PACKAGE__->belongs_to(
159
    "old_checkout",
159
    "old_checkout",
160
    "Koha::Schema::Result::OldIssue",
160
    "Koha::Schema::Result::OldIssue",
161
    { issue_id => "checkout_id" },
161
    { "foreign.issue_id" => "self.checkout_id" },
162
    {
162
    {
163
        is_deferrable => 1,
163
        is_deferrable => 1,
164
        join_type     => "LEFT",
164
        join_type     => "LEFT",
165
- 

Return to bug 30275