close #716 Fixed: Positions are not shown on Report
This commit is contained in:
parent
e3ce4af113
commit
941989d746
@ -27,8 +27,8 @@ trait DateTime
|
|||||||
{
|
{
|
||||||
$year = request('year', Date::now()->year);
|
$year = request('year', Date::now()->year);
|
||||||
|
|
||||||
$start = Date::parse($year . '-01-01')->format('Y-m-d');
|
$start = Date::parse($year . '-01-01')->startOfDay()->format('Y-m-d H:i:s');
|
||||||
$end = Date::parse($year . '-12-31')->format('Y-m-d');
|
$end = Date::parse($year . '-12-31')->endOfDay()->format('Y-m-d H:i:s');
|
||||||
|
|
||||||
// check if financial year has been customized
|
// check if financial year has been customized
|
||||||
$financial_start = $this->getFinancialStart();
|
$financial_start = $this->getFinancialStart();
|
||||||
|
4
public/css/app.css
vendored
4
public/css/app.css
vendored
@ -929,3 +929,7 @@ input[type="number"] {
|
|||||||
.box-footer .app-price-suffix {
|
.box-footer .app-price-suffix {
|
||||||
font-size: 70%;
|
font-size: 70%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.table-report {
|
||||||
|
overflow-x: auto !important;
|
||||||
|
}
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
|
|
||||||
<hr>
|
<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">
|
<table class="table table-bordered table-striped table-hover" id="tbl-report-expenses">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
|
|
||||||
<hr>
|
<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">
|
<table class="table table-bordered table-striped table-hover" id="tbl-payments">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
|
|
||||||
<hr>
|
<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">
|
<table class="table table-bordered table-striped table-hover" id="tbl-report-incomes">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user