close #716 Fixed: Positions are not shown on Report

This commit is contained in:
cuneytsenturk 2019-02-01 10:42:06 +03:00
parent e3ce4af113
commit 941989d746
5 changed files with 9 additions and 5 deletions

View File

@ -27,8 +27,8 @@ trait DateTime
{
$year = request('year', Date::now()->year);
$start = Date::parse($year . '-01-01')->format('Y-m-d');
$end = Date::parse($year . '-12-31')->format('Y-m-d');
$start = Date::parse($year . '-01-01')->startOfDay()->format('Y-m-d H:i:s');
$end = Date::parse($year . '-12-31')->endOfDay()->format('Y-m-d H:i:s');
// check if financial year has been customized
$financial_start = $this->getFinancialStart();

4
public/css/app.css vendored
View File

@ -929,3 +929,7 @@ input[type="number"] {
.box-footer .app-price-suffix {
font-size: 70%;
}
.table-report {
overflow-x: auto !important;
}

View File

@ -3,7 +3,7 @@
<hr>
<div class="table table-responsive">
<div class="table table-responsive table-report">
<table class="table table-bordered table-striped table-hover" id="tbl-report-expenses">
<thead>
<tr>

View File

@ -3,7 +3,7 @@
<hr>
<div class="table table-responsive">
<div class="table table-responsive table-report">
<table class="table table-bordered table-striped table-hover" id="tbl-payments">
<thead>
<tr>

View File

@ -3,7 +3,7 @@
<hr>
<div class="table table-responsive">
<div class="table table-responsive table-report">
<table class="table table-bordered table-striped table-hover" id="tbl-report-incomes">
<thead>
<tr>