https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=19315

--- Comment #8 from Nick Clemens <[email protected]> ---
(In reply to Marcel de Rooy from comment #7)
> Nick: Isnt there anything to be done on the GetSubscription output? Whats
> the use of the 'wrong' biblionumber ?

Technically yes, the 'wrong' biblionumber can't reliably be used for anything,
it's more convenience as you can't get 'all columns but one'

Right now we have:
SELECT  subscription.*,
        subscriptionhistory.*,

And to fix we would have to list every field individually:
SELECT  subscription.subscriptionid,subscription.biblionumber AS
sbiblionumber,librarian, startdate...
        subscriptionhistory.biblionumber AS shbiblionumber,histstartdatem
histenddate,missinglist...

-- 
You are receiving this mail because:
You are watching all bug changes.
_______________________________________________
Koha-bugs mailing list
[email protected]
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/

Reply via email to