143 lines
10 KiB
PHP
Raw Normal View History

2018-10-27 17:57:40 +03:00
@extends('layouts.admin')
@section('title', trans('general.title.edit', ['type' => trans_choice('general.reconciliations', 1)]))
@section('content')
2020-09-07 16:55:01 +03:00
<div id="reconciliations-table" class="card">
2019-11-16 10:21:14 +03:00
{!! Form::model($reconciliation, [
2020-02-18 17:14:06 +03:00
'id' => 'reconciliation',
2020-02-03 11:58:05 +03:00
'method' => 'PATCH',
'route' => ['reconciliations.update', $reconciliation->id],
2020-02-18 17:14:06 +03:00
'@submit.prevent' => 'onSubmit',
'@keydown' => 'form.errors.clear($event.target.name)',
2020-02-03 11:58:05 +03:00
'role' => 'form',
2020-02-18 17:14:06 +03:00
'class' => 'form-loading-button mb-0',
'novalidate' => true
2019-11-16 10:21:14 +03:00
]) !!}
<div class="card-header border-0">
<h3 class="box-title">{{ trans_choice('general.transactions', 2) }}</h3>
</div>
2018-10-27 17:57:40 +03:00
{{ Form::hidden('account_id', $account->id) }}
{{ Form::hidden('currency_code', $currency->code, ['id' => 'currency_code']) }}
{{ Form::hidden('opening_balance', $opening_balance, ['id' => 'opening_balance']) }}
{{ Form::hidden('closing_balance', $reconciliation->closing_balance, ['id' => 'closing_balance']) }}
{{ Form::hidden('started_at', $reconciliation->started_at) }}
{{ Form::hidden('ended_at', $reconciliation->ended_at) }}
{{ Form::hidden('reconcile', $reconciliation->reconcile, ['id' => 'hidden-reconcile']) }}
2019-11-16 10:21:14 +03:00
<div class="table-responsive">
2020-02-18 17:14:06 +03:00
<table class="table table-flush table-hover">
2019-11-16 10:21:14 +03:00
<thead class="thead-light">
2020-02-18 17:14:06 +03:00
<tr class="row table-head-line">
<th class="col-xs-4 col-sm-3 col-md-2 long-texts">{{ trans('general.date') }}</th>
2019-12-16 17:03:53 +03:00
<th class="col-md-2 text-center d-none d-md-block">{{ trans('general.description') }}</th>
<th class="col-md-2 col-sm-3 col-md-3 d-none d-sm-block">{{ trans_choice('general.contacts', 1) }}</th>
2019-11-16 10:21:14 +03:00
<th class="col-xs-4 col-sm-3 col-md-2 text-right">{{ trans('reconciliations.deposit') }}</th>
2019-11-27 11:16:17 +03:00
<th class="col-xs-4 col-sm-3 col-md-2 text-right long-texts">{{ trans('reconciliations.withdrawal') }}</th>
2019-12-16 17:03:53 +03:00
<th class="col-md-1 text-right d-none d-md-block">{{ trans('general.clear') }}</th>
2019-11-16 10:21:14 +03:00
</tr>
2018-10-27 17:57:40 +03:00
</thead>
2019-11-16 10:21:14 +03:00
2018-10-27 17:57:40 +03:00
<tbody>
2019-11-16 10:21:14 +03:00
@foreach($transactions as $item)
2020-02-18 17:14:06 +03:00
<tr class="row align-items-center border-top-1">
2019-11-27 11:16:17 +03:00
<td class="col-xs-4 col-sm-3 col-md-2 long-texts">@date($item->paid_at)</td>
2019-12-16 17:03:53 +03:00
<td class="col-md-2 text-center d-none d-md-block">{{ $item->description }}</td>
2020-02-18 17:14:06 +03:00
<td class="col-md-2 col-sm-3 col-md-3 d-none d-sm-block">{{ $item->contact->name }}</td>
2019-11-16 10:21:14 +03:00
@if ($item->type == 'income')
<td class="col-xs-4 col-sm-3 col-md-2 text-right">@money($item->amount, $item->currency_code, true)</td>
2020-02-18 17:14:06 +03:00
<td class="col-xs-4 col-sm-3 col-md-2 text-right">N/A</td>
2019-11-16 10:21:14 +03:00
@else
2020-02-18 17:14:06 +03:00
<td class="col-xs-4 col-sm-3 col-md-2 text-right">N/A</td>
2019-11-16 10:21:14 +03:00
<td class="col-xs-4 col-sm-3 col-md-2 text-right">@money($item->amount, $item->currency_code, true)</td>
@endif
2020-02-18 17:14:06 +03:00
<td class="col-md-1 text-right d-none d-md-block">
<div class="custom-control custom-checkbox">
{{ Form::checkbox($item->type . '_' . $item->id, $item->amount_for_account, $item->reconciled, [
2020-02-18 17:14:06 +03:00
'data-field' => 'transactions',
'v-model' => 'form.transactions.' . $item->type . '_' . $item->id,
'id' => 'transaction-' . $item->id . '-'. $item->type,
'class' => 'custom-control-input',
'@change' => 'onCalculate'
]) }}
<label class="custom-control-label" for="transaction-{{ $item->id . '-'. $item->type }}"></label>
</div>
</td>
2019-11-16 10:21:14 +03:00
</tr>
@endforeach
2018-10-27 17:57:40 +03:00
</tbody>
</table>
@if ($transactions->count())
<table class="table">
<tbody>
<tr class="row">
<th class="col-md-9 col-lg-11 text-right d-none d-md-block">{{ trans('reconciliations.opening_balance') }}:</th>
<td id="closing-balance" class="col-md-3 col-lg-1 text-right d-none d-md-block">
<span>@money($opening_balance, $account->currency_code, true)</span>
</td>
</tr>
<tr class="row">
<th class="col-md-9 col-lg-11 text-right d-none d-md-block">{{ trans('reconciliations.closing_balance') }}:</th>
<td id="closing-balance" class="col-md-3 col-lg-1 text-right d-none d-md-block">
{{ Form::moneyGroup('closing_balance_total', '', '', ['disabled' => true, 'required' => 'required', 'v-model' => 'totals.closing_balance', 'currency' => $currency, 'masked' => 'true'], $reconciliation->closing_balance, 'text-right d-none') }}
<span id="closing-balance-total" v-if="totals.closing_balance" v-html="totals.closing_balance"></span>
<span v-else>@money($reconciliation->closing_balance, $account->currency_code, true)</span>
</td>
</tr>
<tr class="row">
<th class="col-md-9 col-lg-11 text-right d-none d-md-block">{{ trans('reconciliations.cleared_amount') }}:</th>
<td id="cleared-amount" class="col-md-3 col-lg-1 text-right d-none d-md-block">
{{ Form::moneyGroup('cleared_amount_total', '', '', ['disabled' => true, 'required' => 'required', 'v-model' => 'totals.cleared_amount', 'currency' => $currency, 'masked' => 'true'], 0.00, 'text-right d-none') }}
<span id="cleared-amount-total" v-if="totals.cleared_amount" v-html="totals.cleared_amount"></span>
<span v-else>@money(0, $account->currency_code, true)</span>
</td>
</tr>
<tr :class="difference" class="row">
<th class="col-md-9 col-lg-11 text-right d-none d-md-block">{{ trans('general.difference') }}:</th>
<td id="difference" class="col-md-3 col-lg-1 text-right d-none d-md-block">
{{ Form::moneyGroup('difference_total', '', '', ['disabled' => true, 'required' => 'required', 'v-model' => 'totals.difference', 'currency' => $currency, 'masked' => 'true'], 0.00, 'text-right d-none') }}
<span id="difference-total" v-if="totals.difference" v-html="totals.difference"></span>
<span v-else>@money(0, $account->currency_code, true)</span>
</td>
</tr>
</tbody>
</table>
2018-10-27 17:57:40 +03:00
@endif
</div>
2019-11-16 10:21:14 +03:00
2020-02-18 17:14:06 +03:00
@permission('update-banking-reconciliations')
<div class="card-footer">
<div class="row">
<div class="col-md-12">
@if ($transactions->count())
<div class="float-right">
2020-10-22 15:42:02 +03:00
<a href="{{ route('reconciliations.index') }}" class="btn btn-outline-secondary header-button-top"><span class="fa fa-times"></span> &nbsp;{{ trans('general.cancel') }}</a>
2019-11-29 16:40:19 +03:00
2020-02-18 17:14:06 +03:00
{!! Form::button(
2020-10-22 15:42:02 +03:00
'<div v-if="form.loading" class="aka-loader-frame"><div class="aka-loader"></div></div> <span :class="[{\'opacity-10\': reconcile}]" v-if="!form.loading" class="btn-inner--icon"><i class="fas fa-check"></i></span>' . '<span :class="[{\'opacity-10\': reconcile}]" class="btn-inner--text"> ' . trans('reconciliations.reconcile') . '</span>',
2020-02-18 17:14:06 +03:00
[':disabled' => 'reconcile || form.loading', '@click' => 'onReconcileSubmit', 'type' => 'button', 'class' => 'btn btn-icon btn-info header-button-top', 'data-loading-text' => trans('general.loading')]) !!}
{!! Form::button(
2020-10-22 15:42:02 +03:00
'<div v-if="form.loading" class="aka-loader-frame"><div class="aka-loader"></div></div> <span v-if="!form.loading" class="btn-inner--icon"><i class="fas fa-save"></i></span>' . '<span v-if="!form.loading" class="btn-inner--text"> ' . trans('general.save') . '</span>',
[':disabled' => 'form.loading', 'type' => 'submit', 'class' => 'btn btn-icon btn-success header-button-top', 'data-loading-text' => trans('general.loading')]) !!}
2020-02-18 17:14:06 +03:00
</div>
@else
<div class="text-sm text-muted" id="datatable-basic_info" role="status" aria-live="polite">
<small>{{ trans('general.no_records') }}</small>
</div>
@endif
</div>
</div>
2018-10-27 17:57:40 +03:00
</div>
2020-02-18 17:14:06 +03:00
@endpermission
2018-10-27 17:57:40 +03:00
{!! Form::close() !!}
</div>
@endsection
2019-11-16 10:21:14 +03:00
@push('scripts_start')
<script src="{{ asset('public/js/banking/reconciliations.js?v=' . version('short')) }}"></script>
2018-10-27 17:57:40 +03:00
@endpush