I just have time to test this problem again and found that in "ShipmentForm.php", this line:
in_array($order_item->id(), $already_on_shipment, TRUE)) {
cause the problem in this issue. I can either remove "TRUE" or convert a value to be the same type. I decided to convert it. So, the code will change to
in_array(intval($order_item->id()), $already_on_shipment, TRUE)) {
Tested and work but since I don't know how to program, patch, etc. So, I hope, I did this correctly.
Thanks,
- Status changed to Needs review
over 1 year ago 12:04pm 9 June 2023 - last update
over 1 year ago 149 pass - @abx opened merge request.
- last update
about 1 year ago 140 pass, 2 fail - last update
about 1 year ago 149 pass