@@ -, +, @@ an order for a subscription a Vendor and associated Basket if you don't already have them. Then, under Serials, add a new Subscription using the Vendor you've just created. then click on 'Add to basket' and select 'From a subscription'. Notice how there is no 'Vendor' column in the results table. a 'Vendor' column which displays the vendor name. --- C4/Serials.pm | 1 + koha-tmpl/intranet-tmpl/prog/en/modules/acqui/newordersubscription.tt | 4 ++++ 2 files changed, 5 insertions(+) --- a/C4/Serials.pm +++ a/C4/Serials.pm @@ -553,6 +553,7 @@ sub SearchSubscriptions { biblio.title, biblio.author, biblio.biblionumber, + aqbooksellers.name AS vendorname, biblioitems.issn FROM subscription LEFT JOIN subscriptionhistory USING(subscriptionid) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/newordersubscription.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/newordersubscription.tt @@ -60,6 +60,7 @@ ISSN Title Notes + Vendor Library Call number Expiration date @@ -78,6 +79,9 @@ [% IF (sub.internalnotes) %]([% sub.internalnotes %])[% END %] + [% IF (sub.vendorname) %][% sub.vendorname %][% END %] + + [% IF (sub.branchcode) %][% Branches.GetName( sub.branchcode ) %][% END %] --