2013-12-04 17:20:14 +01:00
|
|
|
@extends('header')
|
|
|
|
|
|
|
|
|
|
|
|
@section('onReady')
|
|
|
|
$('input#name').focus();
|
|
|
|
@stop
|
|
|
|
|
|
|
|
@section('content')
|
|
|
|
|
|
|
|
|
|
|
|
{{ Former::open($url)->addClass('col-md-10 col-md-offset-1 main_form')->method($method)->rules(array(
|
2013-12-08 14:32:49 +01:00
|
|
|
'client' => 'required',
|
2013-12-30 21:17:45 +01:00
|
|
|
'invoice' => 'required',
|
2013-12-08 14:32:49 +01:00
|
|
|
'amount' => 'required',
|
2013-12-04 17:20:14 +01:00
|
|
|
)); }}
|
|
|
|
|
|
|
|
<div class="row">
|
2013-12-05 16:23:24 +01:00
|
|
|
<div class="col-md-8">
|
2013-12-04 17:20:14 +01:00
|
|
|
|
|
|
|
@if ($payment)
|
|
|
|
{{ Former::legend('Edit Payment') }}
|
|
|
|
@else
|
|
|
|
{{ Former::legend('New Payment') }}
|
|
|
|
@endif
|
|
|
|
|
2013-12-05 16:23:24 +01:00
|
|
|
{{ Former::select('client')->addOption('', '')->addGroupClass('client-select') }}
|
|
|
|
{{ Former::select('invoice')->addOption('', '')->addGroupClass('invoice-select') }}
|
|
|
|
{{ Former::text('amount') }}
|
2014-01-13 20:22:43 +01:00
|
|
|
{{ Former::select('payment_type_id')->addOption('','')->label('Payment type')
|
|
|
|
->fromQuery($paymentTypes, 'name', 'id') }}
|
2014-01-01 00:50:13 +01:00
|
|
|
{{ Former::text('payment_date')->data_date_format(Session::get(SESSION_DATE_PICKER_FORMAT)) }}
|
2014-01-15 15:01:24 +01:00
|
|
|
{{-- Former::select('currency_id')->addOption('','')->label('Currency')
|
|
|
|
->fromQuery($currencies, 'name', 'id')->select(Session::get(SESSION_CURRENCY, DEFAULT_CURRENCY)) --}}
|
2013-12-04 17:20:14 +01:00
|
|
|
|
|
|
|
</div>
|
|
|
|
<div class="col-md-6">
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<center style="margin-top:16px">
|
|
|
|
{{ Button::lg_primary_submit('Save') }} |
|
|
|
|
{{ link_to('payments/' . ($payment ? $payment->public_id : ''), 'Cancel') }}
|
|
|
|
</center>
|
|
|
|
|
|
|
|
{{ Former::close() }}
|
|
|
|
|
2013-12-05 16:23:24 +01:00
|
|
|
<script type="text/javascript">
|
|
|
|
|
|
|
|
var invoices = {{ $invoices }};
|
|
|
|
var clients = {{ $clients }};
|
|
|
|
|
|
|
|
$(function() {
|
|
|
|
|
2014-01-02 14:21:15 +01:00
|
|
|
populateInvoiceComboboxes({{ $clientPublicId }}, {{ $invoicePublicId }});
|
2013-12-05 16:23:24 +01:00
|
|
|
|
2013-12-29 18:40:11 +01:00
|
|
|
$('#currency_id').combobox();
|
|
|
|
|
2014-01-02 14:21:15 +01:00
|
|
|
$('#payment_date').datepicker('update', new Date({{ strtotime(Utils::today()) * 1000 }}));
|
|
|
|
|
2013-12-05 16:23:24 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
@stop
|