https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=43211 --- Comment #1 from Janusz Kaczmarek <januszop@gmail.com> --- Simple correction to koha-tmpl/intranet-tmpl/prog/en/modules/acqui/orderreceive.tt would probably fix the problem: @@ -462,7 +462,7 @@ const only_one_order = [% only_one_order ? 1 : 0 | html %]; Koha.addPrefs({ AcqCreateItem: [% Koha.Preference('AcqCreateItem') ? 1 : 0 | html %], - UniqueItemFields: [% Koha.Preference('UniqueItemFields') ? 1 : 0 | html %], + UniqueItemFields: [% Koha.Preference('UniqueItemFields') ? Koha.Preference('UniqueItemFields') : '' | html %], }); Koha.addPermissions({ CAN_user_acquisition: [% CAN_user_acquisition ? 1 : 0 | html %], -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug.