Details
Description
In case a Replace/Cancel request is rejected then the OriginalOrdID (tag 41) of the order should be preserved and not be overwritten with new OrdID (tag 11).
The following fix is suggested
replace line 307
orderTableModel.updateOrder(order, order.getID());
in (BanzaiApplication.java :: cancelReject) with this line
orderTableModel.updateOrder(order, message.getField(new OrigClOrdID()).getValue());