This commit is contained in:
denisdulici 2020-02-21 18:03:23 +03:00
parent a4d27c1e52
commit 8100983b3a
2 changed files with 4 additions and 4 deletions

View File

@ -314,8 +314,8 @@ abstract class Report
if (
!isset($this->row_values[$table][$item->$id_field])
|| !isset($this->row_values[$table][$item->$id_field][$date])
|| !isset($this->footer_totals[$table][$date]))
{
|| !isset($this->footer_totals[$table][$date])
) {
continue;
}

View File

@ -95,8 +95,8 @@ class TaxSummary extends Report
if (
!isset($this->row_values[$item_total->name][$type][$date])
|| !isset($this->footer_totals[$item_total->name][$date]))
{
|| !isset($this->footer_totals[$item_total->name][$date])
) {
continue;
}