Skip to content

Commit

Permalink
fixed #169
Browse files Browse the repository at this point in the history
  • Loading branch information
denisdulici committed Dec 26, 2017
1 parent 8ff9cdf commit 04ec2af
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 48 deletions.
96 changes: 50 additions & 46 deletions app/Http/Controllers/Banking/Transactions.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,17 @@
use App\Http\Controllers\Controller;
use App\Models\Banking\Account;
use App\Models\Banking\Transaction;
use App\Models\Expense\BillPayment;
use App\Models\Expense\Payment;
use App\Models\Income\InvoicePayment;
use App\Models\Income\Revenue;
use App\Models\Setting\Category;

class Transactions extends Controller
{

public $transactions = [];

/**
* Display a listing of the resource.
*
Expand All @@ -21,8 +25,6 @@ public function index()
{
$request = request();

$transactions = array();

$accounts = collect(Account::enabled()->pluck('name', 'id'))
->prepend(trans('general.all_type', ['type' => trans_choice('general.accounts', 2)]), '');

Expand All @@ -35,62 +37,64 @@ public function index()
$type = $request->get('type');

if ($type != 'income') {
$payments = Payment::collect('paid_at');

foreach ($payments as $payment) {
$transactions[] = (object)[
'paid_at' => $payment->paid_at,
'account_name' => $payment->account->name,
'type' => trans_choice('general.expenses', 1),
'category_name' => $payment->category->name,
'description' => $payment->description,
'amount' => $payment->amount,
'currency_code' => $payment->currency_code,
];
}
$this->addTransactions(Payment::collect('paid_at'), trans_choice('general.expenses', 1));
$this->addTransactions(BillPayment::collect('paid_at'), trans_choice('general.expenses', 1), trans_choice('general.bills', 1));
}

if ($type != 'expense') {
$revenues = Revenue::collect('paid_at');

foreach ($revenues as $revenue) {
$transactions[] = (object)[
'paid_at' => $revenue->paid_at,
'account_name' => $revenue->account->name,
'type' => trans_choice('general.incomes', 1),
'category_name' => $revenue->category->name,
'description' => $revenue->description,
'amount' => $revenue->amount,
'currency_code' => $revenue->currency_code,
];
}
$this->addTransactions(Revenue::collect('paid_at'), trans_choice('general.incomes', 1));
$this->addTransactions(InvoicePayment::collect('paid_at'), trans_choice('general.incomes', 1), trans_choice('general.invoices', 1));
}

$special_key = array(
'account.name' => 'account_name',
'category.name' => 'category_name',
);
$transactions = $this->getTransactions($request);

if (isset($request['sort']) && array_key_exists($request['sort'], $special_key)) {
$sort_order = array();
return view('banking.transactions.index', compact('transactions', 'accounts', 'types', 'categories'));
}

foreach ($transactions as $key => $value) {
$sort = $request['sort'];
/**
* Add items to transactions array.
*
* @param $items
* @param $type
* @param $category
*/
protected function addTransactions($items, $type, $category = null)
{
foreach ($items as $item) {
$data = [
'paid_at' => $item->paid_at,
'account_name' => $item->account->name,
'type' => $type,
'description' => $item->description,
'amount' => $item->amount,
'currency_code' => $item->currency_code,
];

if (!is_null($category)) {
$data['category_name'] = $category;
} else {
$data['category_name'] = $item->category->name;
}

if (array_key_exists($request['sort'], $special_key)) {
$sort = $special_key[$request['sort']];
}
$this->transactions[] = (object) $data;
}
}

$sort_order[$key] = $value->{$sort};
protected function getTransactions($request)
{
// Sort items
if (isset($request['sort'])) {
if ($request['order'] == 'asc') {
$f = 'sortBy';
} else {
$f = 'sortByDesc';
}

$sort_type = (isset($request['order']) && $request['order'] == 'asc') ? SORT_ASC : SORT_DESC;

array_multisort($sort_order, $sort_type, $transactions);
$transactions = collect($this->transactions)->$f($request['sort']);
} else {
$transactions = collect($this->transactions)->sortByDesc('paid_at');
}

$transactions = (object) $transactions;

return view('banking.transactions.index', compact('transactions', 'accounts', 'types', 'categories'));
return $transactions;
}
}
4 changes: 2 additions & 2 deletions resources/views/banking/transactions/index.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@
<thead>
<tr>
<th class="col-md-2">@sortablelink('paid_at', trans('general.date'))</th>
<th class="col-md-2">@sortablelink('account.name', trans('accounts.account_name'))</th>
<th class="col-md-2">@sortablelink('account_name', trans('accounts.account_name'))</th>
<th class="col-md-2">@sortablelink('type', trans_choice('general.types', 1))</th>
<th class="col-md-2">@sortablelink('category.name', trans_choice('general.categories', 1))</th>
<th class="col-md-2">@sortablelink('category_name', trans_choice('general.categories', 1))</th>
<th class="col-md-2">@sortablelink('description', trans('general.description'))</th>
<th class="col-md-2">@sortablelink('amount', trans('general.amount'))</th>
</tr>
Expand Down

0 comments on commit 04ec2af

Please sign in to comment.