OrderItem::calculatetotal PHP Method

calculatetotal() protected method

Generally called by onBeforeWrite
protected calculatetotal ( )
    protected function calculatetotal()
    {
        $total = $this->UnitPrice() * $this->Quantity;
        $this->extend('updateTotal', $total);
        $this->CalculatedTotal = $total;
        return $total;
    }