Supported Versions: PHP 4, PHP 5, PHP 7, PHP 8
Absolute value
<?php abs(int|float $num): int|float
<?php $typeKey = $eclsType->value ?? '';
$previousAmount = $this->incomeClassifications[$categoryKey][$typeKey] ?? 0;
$newAmount = $previousAmount + abs($icls->getAmount());
$this->incomeClassifications[$categoryKey][$typeKey] = $newAmount;
}
<?php $previousAmount = $this->getSummarizedExpensesClassification($ecls, 'amount');
$previousVatAmount = $this->getSummarizedExpensesClassification($ecls, 'vatAmount');
$newAmount = $previousAmount + abs($ecls->getAmount() ?? 0);
$newVatAmount = $previousVatAmount + abs($ecls->getVatAmount() ?? 0);
$this->expensesClassifications[$eclsCategory->value ?? '']
<?php $previousVatAmount = $this->getSummarizedExpensesClassification($ecls, 'vatAmount');
$newAmount = $previousAmount + abs($ecls->getAmount() ?? 0);
$newVatAmount = $previousVatAmount + abs($ecls->getVatAmount() ?? 0);
$this->expensesClassifications[$eclsCategory->value ?? '']
[$eclsType->value ?? '']
<?php }
foreach ($rows as $row) {
$this->totalNetValue += abs($row->getNetValue() ?? 0);
$this->totalVatAmount += abs($row->getVatAmount() ?? 0);
$this->addTaxesFromInvoiceRow($row);
<?php foreach ($rows as $row) {
$this->totalNetValue += abs($row->getNetValue() ?? 0);
$this->totalVatAmount += abs($row->getVatAmount() ?? 0);
$this->addTaxesFromInvoiceRow($row);
}
<?php protected function addTaxesFromInvoiceRow(InvoiceDetails $row): void
{
$this->totalWithheldAmount += abs($row->getWithheldAmount() ?? 0);
$this->totalFeesAmount += abs($row->getFeesAmount() ?? 0);
$this->totalStampDutyAmount += abs($row->getStampDutyAmount() ?? 0);
$this->totalOtherTaxesAmount += abs($row->getOtherTaxesAmount() ?? 0);
<?php protected function addTaxesFromInvoiceRow(InvoiceDetails $row): void
{
$this->totalWithheldAmount += abs($row->getWithheldAmount() ?? 0);
$this->totalFeesAmount += abs($row->getFeesAmount() ?? 0);
$this->totalStampDutyAmount += abs($row->getStampDutyAmount() ?? 0);
$this->totalOtherTaxesAmount += abs($row->getOtherTaxesAmount() ?? 0);
$this->totalDeductionsAmount += abs($row->getDeductionsAmount() ?? 0);
<?php {
$this->totalWithheldAmount += abs($row->getWithheldAmount() ?? 0);
$this->totalFeesAmount += abs($row->getFeesAmount() ?? 0);
$this->totalStampDutyAmount += abs($row->getStampDutyAmount() ?? 0);
$this->totalOtherTaxesAmount += abs($row->getOtherTaxesAmount() ?? 0);
$this->totalDeductionsAmount += abs($row->getDeductionsAmount() ?? 0);
<?php $this->totalWithheldAmount += abs($row->getWithheldAmount() ?? 0);
$this->totalFeesAmount += abs($row->getFeesAmount() ?? 0);
$this->totalStampDutyAmount += abs($row->getStampDutyAmount() ?? 0);
$this->totalOtherTaxesAmount += abs($row->getOtherTaxesAmount() ?? 0);
$this->totalDeductionsAmount += abs($row->getDeductionsAmount() ?? 0);
$withheldCategory = $row->getWithheldPercentCategory();
<?php $this->totalFeesAmount += abs($row->getFeesAmount() ?? 0);
$this->totalStampDutyAmount += abs($row->getStampDutyAmount() ?? 0);
$this->totalOtherTaxesAmount += abs($row->getOtherTaxesAmount() ?? 0);
$this->totalDeductionsAmount += abs($row->getDeductionsAmount() ?? 0);
$withheldCategory = $row->getWithheldPercentCategory();
if ($withheldCategory !== null && !$withheldCategory->affectsTotalGrossValue()) {
<?php $withheldCategory = $row->getWithheldPercentCategory();
if ($withheldCategory !== null && !$withheldCategory->affectsTotalGrossValue()) {
$this->totalInformationalTaxAmount += abs($row->getWithheldAmount() ?? 0);
}
}
<?php protected function addTaxesFromTaxTotals(TaxTotals $tax): void
{
$amount = abs($tax->getTaxAmount());
match ($tax->getTaxType()) {
TaxType::TYPE_1 => $this->totalWithheldAmount += $amount,