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

79 lines
2.1 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
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') !!}
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
2015-04-01 17:44:55 +02:00
var clients = {!! $clients !!};
2015-03-16 22:45:25 +01:00
$(function() {
2016-07-13 11:03:39 +02:00
var $clientSelect = $('select#client');
2015-03-16 22:45:25 +01:00
for (var i=0; i<clients.length; i++) {
var client = clients[i];
2016-07-13 11:03:39 +02:00
var clientName = getClientDisplayName(client);
if (!clientName) {
continue;
}
$clientSelect.append(new Option(clientName, client.public_id));
}
2015-03-16 22:45:25 +01:00
if ({{ $clientPublicId ? 'true' : 'false' }}) {
$clientSelect.val({{ $clientPublicId }});
}
$clientSelect.combobox();
2016-07-13 11:03:39 +02:00
2015-03-16 22:45:25 +01:00
$('#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-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