WellCommerce\Bundle\OrderBundle\Entity\OrderTotal::recalculate PHP Method

recalculate() public method

public recalculate ( )
    public function recalculate()
    {
        $this->netAmount = TaxHelper::calculateNetPrice($this->grossAmount, $this->taxRate);
        $this->taxAmount = $this->grossAmount - $this->netAmount;
    }