Reputation: 196
What is the best way to handle OOTB model's removed attribute?
In hybris version 6.6, there is bundleNo
attribute in AbstractOrderEntryModel
, then we're upgrading our hybris version, and we found out that on 1905, bundleNo attribute is no longer there. So do we have to re-add bundleNo attribute to AbstractOrderEntryModel
or should we use another OOTB attribute that's available, considering in 6.6 we have some data using that attribute?
Thanks
Upvotes: 1
Views: 471
Reputation: 1936
Indeed bundleNo
attribute is deprecated since the 6.4 version, entryGroupNumbers
should be used instead for the recent versions, it supports a set of ids now :
Upvotes: 1