https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=41861 --- Comment #2 from David Nind <david@davidnind.com> --- Created attachment 193366 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=193366&action=edit Bug 41861: Update how cost and price_paid show 1) Enabled ILLModule 2) Create a new ILL request, set a title, '42' for cardnumber and any library: <staff_url>/cgi-bin/koha/ill/ill-requests.pl?method=create&backend=Standard 3) (k-t-d required, cost is not editable in UI, but backends may set it) Run the following query: koha-mysql kohadev update illrequests set cost = 1; 4) Notice cost shows, now run the same but set to 0: update illrequests set cost = 1; 5) Notice it doesn't show. 6) Apply patch. Refresh. Notice is shows '0' now. -- You are receiving this mail because: You are watching all bug changes.