https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36620 --- Comment #10 from David Cook <dcook@prosentient.com.au> --- Comment on attachment 166757 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=166757 Bug 36620: Broken order management for suggestions with quantity Review of attachment 166757: --> (https://bugs.koha-community.org/bugzilla3/page.cgi?id=splinter.html&bug=36620&attachment=166757) ----------------------------------------------------------------- ::: acqui/neworderempty.pl @@ +206,5 @@
# otherwise, retrieve suggestion information. elsif ($suggestionid) { $data = GetSuggestion($suggestionid); + $data->{quantitysugg} = $data->{quantity}; + undef $data->{quantity};
It's too late now, but this probably could've been "$data->{quantitysugg} = delete $data->{quantity}" instead. Not a big deal. Just sharing for next time. -- You are receiving this mail because: You are watching all bug changes.