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

(-)a/Koha/ILL/Requests.pm (-1 / +7 lines)
Lines 135-141 sub _build_extended_attributes_relations { Link Here
135
                    "$args->{foreign_alias}.type"          => { '=', $type },
135
                    "$args->{foreign_alias}.type"          => { '=', $type },
136
                };
136
                };
137
            },
137
            },
138
            { cascade_copy => 0, cascade_delete => 0 },
138
            {
139
                accessor       => 'multi',
140
                join_type      => 'LEFT',
141
                cascade_copy   => 0,
142
                cascade_delete => 0,
143
                is_depends_on  => 0
144
            },
139
        );
145
        );
140
146
141
    }
147
    }
(-)a/Koha/REST/Plugin/Query.pm (-2 / +1 lines)
Lines 183-189 Generates the DBIC join attribute based on extended_attributes query entries, an Link Here
183
183
184
                # Calling our private method to build the extended attributes relations
184
                # Calling our private method to build the extended attributes relations
185
                my @joins = $result_set->_build_extended_attributes_relations(\@array);
185
                my @joins = $result_set->_build_extended_attributes_relations(\@array);
186
                push @{$ attributes->{join} }, @joins;
186
                push @{ $attributes->{join} }, @joins;
187
187
188
            }
188
            }
189
        }
189
        }
190
- 

Return to bug 37389