@@ -, +, @@ 1 - Create a basket with 'items created on receive' 2 - Add an order line with multiple items to it 3 - Close basket 4 - Receive shipment 5 - Add invoice information 6 - Receive through receive link in the table 7 - Check some items 8 - Click on the "Edit" link and make some change to the item 9 - Save --- koha-tmpl/intranet-tmpl/prog/en/modules/acqui/orderreceive.tt | 1 + 1 file changed, 1 insertion(+) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/orderreceive.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/orderreceive.tt @@ -499,6 +499,7 @@ url: '/api/v1/items/'+itemnumber, success: function(item) { var tr = $("#item_"+itemnumber); + item._checked = $(tr).find('input[type="checkbox"]').prop('checked'); tr.html(''); _build_item(item, tr); } --