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

(-)a/acqui/newordersuggestion.pl (-14 lines)
Lines 75-89 is the biblionumber to put to the new suggestion. Link Here
75
75
76
the id of the suggestion to select.
76
the id of the suggestion to select.
77
77
78
=item op
79
80
can be equal to
81
    * connectDuplicate :
82
        then call to the function : ConnectSuggestionAndBiblio.
83
        i.e set the biblionumber of this suggestion.
84
    * else :
85
        is the default value.
86
87
=back
78
=back
88
79
89
=cut
80
=cut
Lines 124-133 my ( $template, $borrowernumber, $cookie ) = get_template_and_user( Link Here
124
    }
115
    }
125
);
116
);
126
117
127
if ( $op eq 'connectDuplicate' ) {
128
    ConnectSuggestionAndBiblio( $suggestionid, $duplicateNumber );
129
}
130
131
my $suggestions = [
118
my $suggestions = [
132
    Koha::Suggestions->search_limited(
119
    Koha::Suggestions->search_limited(
133
        {
120
        {
134
- 

Return to bug 39726