invoiceninja/resources/views/credits/edit.blade.php

103 lines
2.7 KiB
PHP
Raw Permalink Normal View History

2015-03-17 07:45:25 +10:00
@extends('header')
@section('content')
2016-07-13 12:03:39 +03:00
2017-11-30 21:17:50 +02:00
{!! Former::open($url)->addClass('col-lg-10 col-lg-offset-1 warn-on-exit')->method($method)->rules(array(
2017-05-30 13:56:51 +03:00
'client_id' => 'required',
2016-07-13 12:03:39 +03:00
'amount' => 'required',
2015-04-01 18:44:55 +03:00
)) !!}
2016-07-13 12:03:39 +03:00
2016-11-30 20:21:50 +02:00
@if ($credit)
{!! Former::populate($credit) !!}
<div style="display:none">
{!! Former::text('public_id') !!}
</div>
@endif
2015-03-17 07:45:25 +10:00
<div class="row">
2017-11-30 21:17:50 +02:00
<div class="col-lg-10 col-lg-offset-1">
2015-04-20 17:34:23 +03:00
<div class="panel panel-default">
<div class="panel-body">
2015-03-17 07:45:25 +10:00
2016-12-04 12:24:48 +02:00
@if ($credit)
2017-05-30 13:56:51 +03:00
{!! Former::plaintext()->label('client')->value($client->present()->link) !!}
2016-12-04 12:24:48 +02:00
@else
2017-06-04 22:31:19 +03:00
{!! Former::select('client_id')
->label('client')
->addOption('', '')
->addGroupClass('client-select') !!}
2016-12-04 12:24:48 +02:00
@endif
2015-04-01 18:44:55 +03:00
{!! Former::text('amount') !!}
2017-02-26 20:29:45 +02:00
@if ($credit)
{!! Former::text('balance') !!}
@endif
2015-09-07 12:07:55 +03:00
{!! Former::text('credit_date')
->data_date_format(Session::get(SESSION_DATE_PICKER_FORMAT, DEFAULT_DATE_PICKER_FORMAT))
->addGroupClass('credit_date')
->append('<i class="glyphicon glyphicon-calendar"></i>') !!}
2017-03-30 11:46:52 +03:00
{!! Former::textarea('public_notes')->rows(4) !!}
{!! Former::textarea('private_notes')->rows(4) !!}
2015-03-17 07:45:25 +10:00
2015-04-20 17:34:23 +03:00
</div>
</div>
</div>
</div>
@if(Auth::user()->canCreateOrEdit(ENTITY_CREDIT, $credit))
2015-03-17 07:45:25 +10:00
<center class="buttons">
2017-06-13 15:42:41 +03:00
{!! Button::normal(trans('texts.cancel'))->large()->asLinkTo(HTMLUtils::previousUrl('/credits'))->appendIcon(Icon::create('remove-circle')) !!}
2015-06-04 23:53:58 +03:00
{!! Button::success(trans('texts.save'))->submit()->large()->appendIcon(Icon::create('floppy-disk')) !!}
2015-03-17 07:45:25 +10:00
</center>
@endif
2015-04-01 18:44:55 +03:00
{!! Former::close() !!}
2015-03-17 07:45:25 +10:00
<script type="text/javascript">
2016-07-13 12:03:39 +03:00
2017-05-08 22:10:39 +03:00
var clients = {!! $clients ?: 'false' !!};
2015-03-17 07:45:25 +10:00
$(function() {
2016-12-04 12:24:48 +02:00
@if ( ! $credit)
2017-05-30 13:56:51 +03:00
var $clientSelect = $('select#client_id');
2016-12-04 12:24:48 +02:00
for (var i=0; i<clients.length; i++) {
var client = clients[i];
var clientName = getClientDisplayName(client);
if (!clientName) {
continue;
}
$clientSelect.append(new Option(clientName, client.public_id));
}
if ({{ $clientPublicId ? 'true' : 'false' }}) {
$clientSelect.val({{ $clientPublicId }});
}
$clientSelect.combobox({highlighter: comboboxHighlighter});
2016-12-04 12:24:48 +02:00
@endif
2016-07-13 12:03:39 +03:00
2015-03-17 07:45:25 +10:00
$('#currency_id').combobox();
2016-11-30 20:21:50 +02:00
$('#credit_date').datepicker('update', '{{ $credit ? $credit->credit_date : 'new Date()' }}');
2015-03-17 07:45:25 +10:00
2015-05-09 21:25:16 +03:00
@if (!$clientPublicId)
$('.client-select input.form-control').focus();
@else
$('#amount').focus();
@endif
2015-09-07 12:07:55 +03:00
$('.credit_date .input-group-addon').click(function() {
toggleDatePicker('credit_date');
});
2015-03-17 07:45:25 +10:00
});
</script>
2016-07-13 12:03:39 +03:00
@stop