Conditionals play a vital role in code for performing business decisions. These conditionals should be easy to read.
If conditionals are complex then it might hamper readability. You would end up introducing more bugs if failed to understand its intent. Every time you visit this code, you will need to debug it to understand the intent.
Complex conditionals:

Look at above conditionals in if clause. It is clear that it is performing too many checks related to the package of the items. Please note that this package was ordered from an online e-commerce site and then performs important business decisions.
It will be difficult for the maintenance programmer to figure out each condition and know what question it tries to answer.
Let’s make the maintenance programmer’s life a little easy by writing readable code using encapsulate conditionals that have intuitive names and give the answer in yes/no format.
Better way:

An intuitive name is given that tells what it is doing.

Another complex conditional

Preferred way:
