Eccube\Entity\Order::isPriceChange PHP Method

isPriceChange() public method

isPriceChange
public isPriceChange ( ) : boolean
return boolean
    public function isPriceChange()
    {
        foreach ($this->getOrderDetails() as $OrderDetail) {
            if ($OrderDetail->isPriceChange()) {
                return true;
            }
        }
        return false;
    }