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

68 lines
1.7 KiB
PHP
Raw Normal View History

2015-03-16 22:45:25 +01:00
@extends('header')
@section('content')
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',
'amount' => 'required',
2015-04-01 17:44:55 +02:00
)) !!}
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
2015-04-01 17:44:55 +02:00
{!! Former::select('client')->addOption('', '')->addGroupClass('client-select') !!}
{!! Former::text('amount') !!}
{!! Former::text('credit_date')->data_date_format(Session::get(SESSION_DATE_PICKER_FORMAT, DEFAULT_DATE_PICKER_FORMAT))->append('<i class="glyphicon glyphicon-calendar"></i>') !!}
{!! 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-04-01 17:44:55 +02:00
{!! Button::success(trans('texts.save'))->submit()->large()->appendIcon(Icon::create('floppy-disk')) !!}
2015-05-19 21:14:00 +02:00
{!! Button::normal(trans('texts.cancel'))->large()->asLinkTo(URL::to('/credits'))->appendIcon(Icon::create('remove-circle')) !!}
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">
2015-04-01 17:44:55 +02:00
var clients = {!! $clients !!};
2015-03-16 22:45:25 +01:00
$(function() {
var $clientSelect = $('select#client');
for (var i=0; i<clients.length; i++) {
var client = clients[i];
$clientSelect.append(new Option(getClientDisplayName(client), client.public_id));
}
if ({{ $clientPublicId ? 'true' : 'false' }}) {
$clientSelect.val({{ $clientPublicId }});
}
$clientSelect.combobox();
$('#currency_id').combobox();
$('#credit_date').datepicker('update', new Date());
2015-05-09 20:25:16 +02:00
@if (!$clientPublicId)
$('.client-select input.form-control').focus();
@else
$('#amount').focus();
@endif
2015-03-16 22:45:25 +01:00
});
</script>
2015-05-09 20:25:16 +02:00
@stop