reports view alignment updated

This commit is contained in:
batuhanbas
2020-01-28 15:51:36 +03:00
parent e6577b00f1
commit 7136f597d8
11 changed files with 52 additions and 15 deletions

View File

@ -16,6 +16,11 @@ class ProfitLoss extends Report
public $icon = 'fa fa-heart';
public $indents = [
'table_header' => '0px',
'table_rows' => '48px',
];
public function setViews()
{
parent::setViews();

View File

@ -21,10 +21,16 @@ class TaxSummary extends Report
public $icon = 'fa fa-percent';
public $indents = [
'table_header' => '0px',
'table_rows' => '48px',
];
public function setViews()
{
parent::setViews();
$this->views['content.header'] = 'reports.tax_summary.content.header';
$this->views['content.footer'] = 'reports.tax_summary.content.footer';
$this->views['table.header'] = 'reports.tax_summary.table.header';
$this->views['table.footer'] = 'reports.tax_summary.table.footer';
}
@ -62,6 +68,17 @@ class TaxSummary extends Report
break;
}
// TODO: move to views
foreach ($this->footer_totals as $table => $dates) {
foreach ($dates as $date => $total) {
if (!isset($this->net_profit[$date])) {
$this->net_profit[$date] = 0;
}
$this->net_profit[$date] += $total;
}
}
}
public function setTotals($items, $date_field, $check_type = false, $table = 'default')