1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-22 09:21:34 +02:00
invoiceninja/resources/views/credits/edit.blade.php

93 lines
2.4 KiB
PHP
Raw Normal View History

2015-03-16 22:45:25 +01:00
@extends('header')
@section('content')
2016-07-13 11:03:39 +02:00
2015-04-01 17:44:55 +02:00
{!! Former::open($url)->addClass('col-md-10 col-md-offset-1 warn-on-exit')->method($method)->rules(array(
2015-03-16 22:45:25 +01:00
'client' => 'required',
2016-07-13 11:03:39 +02:00
'amount' => 'required',
2015-04-01 17:44:55 +02:00
)) !!}
2016-07-13 11:03:39 +02:00
2016-11-30 19:21:50 +01:00
@if ($credit)
{!! Former::populate($credit) !!}
<div style="display:none">
{!! Former::text('public_id') !!}
</div>
@endif
2015-03-16 22:45:25 +01:00
<div class="row">
2015-04-22 21:21:04 +02:00
<div class="col-md-10 col-md-offset-1">
2015-04-20 16:34:23 +02:00
<div class="panel panel-default">
<div class="panel-body">
2015-03-16 22:45:25 +01:00
2016-12-04 11:24:48 +01:00
@if ($credit)
2016-12-15 16:11:35 +01:00
{!! Former::plaintext()->label('client')->value($client->getDisplayName()) !!}
2016-12-04 11:24:48 +01:00
@else
{!! Former::select('client')->addOption('', '')->addGroupClass('client-select') !!}
@endif
2015-04-01 17:44:55 +02:00
{!! Former::text('amount') !!}
2015-09-07 11:07:55 +02: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>') !!}
2015-04-01 17:44:55 +02:00
{!! Former::textarea('private_notes') !!}
2015-03-16 22:45:25 +01:00
2015-04-20 16:34:23 +02:00
</div>
</div>
</div>
</div>
2015-03-16 22:45:25 +01:00
<center class="buttons">
2015-05-19 21:14:00 +02:00
{!! Button::normal(trans('texts.cancel'))->large()->asLinkTo(URL::to('/credits'))->appendIcon(Icon::create('remove-circle')) !!}
2015-06-04 22:53:58 +02:00
{!! Button::success(trans('texts.save'))->submit()->large()->appendIcon(Icon::create('floppy-disk')) !!}
2015-03-16 22:45:25 +01:00
</center>
2015-04-01 17:44:55 +02:00
{!! Former::close() !!}
2015-03-16 22:45:25 +01:00
<script type="text/javascript">
2016-07-13 11:03:39 +02:00
2016-12-04 11:24:48 +01:00
var clients = {!! $clients ?: 'false' !!};
2015-03-16 22:45:25 +01:00
$(function() {
2016-12-04 11:24:48 +01:00
@if ( ! $credit)
var $clientSelect = $('select#client');
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();
@endif
2016-07-13 11:03:39 +02:00
2015-03-16 22:45:25 +01:00
$('#currency_id').combobox();
2016-11-30 19:21:50 +01:00
$('#credit_date').datepicker('update', '{{ $credit ? $credit->credit_date : 'new Date()' }}');
2015-03-16 22:45:25 +01:00
2015-05-09 20:25:16 +02:00
@if (!$clientPublicId)
$('.client-select input.form-control').focus();
@else
$('#amount').focus();
@endif
2015-09-07 11:07:55 +02:00
$('.credit_date .input-group-addon').click(function() {
toggleDatePicker('credit_date');
});
2015-03-16 22:45:25 +01:00
});
</script>
2016-07-13 11:03:39 +02:00
@stop