Fix checking condition in OrderItem constructor
When checking if an attribute exists, when that same attribute is defined as empty, we cannot check it like
if self.attribute:
because if it exists as an empty string, this will return False anyway.
Edited by Administrator