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

80 lines
1.7 KiB
PHP
Raw Normal View History

2013-12-05 16:23:24 +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',
'amount' => 'required',
2013-12-05 16:23:24 +01:00
)); }}
@if ($credit)
{{ Former::populate($credit) }}
2013-12-30 21:17:45 +01:00
@else
2014-01-01 00:50:13 +01:00
{{ Former::populateField('credit_date', Utils::today()) }}
2013-12-05 16:23:24 +01:00
@endif
<div class="row">
<div class="col-md-8">
@if ($credit)
{{ Former::legend('Edit Credit') }}
@else
{{ Former::legend('New Credit') }}
@endif
2013-12-30 21:17:45 +01:00
{{ Former::select('client')->addOption('', '')->addGroupClass('client-select') }}
2013-12-05 16:23:24 +01:00
{{ Former::text('amount') }}
2014-01-01 00:50:13 +01:00
{{ Former::text('credit_date')->data_date_format(Session::get(SESSION_DATE_PICKER_FORMAT)) }}
2013-12-30 21:17:45 +01:00
{{ Former::select('currency_id')->addOption('','')->label('Currency')
->fromQuery($currencies, 'name', 'id')->select(Session::get(SESSION_CURRENCY, DEFAULT_CURRENCY)) }}
2013-12-05 16:23:24 +01:00
</div>
<div class="col-md-6">
</div>
</div>
<center style="margin-top:16px">
{{ Button::lg_primary_submit('Save') }} &nbsp;|&nbsp;
{{ link_to('credits/' . ($credit ? $credit->public_id : ''), 'Cancel') }}
</center>
{{ Former::close() }}
<script type="text/javascript">
2013-12-30 21:17:45 +01:00
var clients = {{ $clients }};
2013-12-05 16:23:24 +01:00
$(function() {
var $input = $('select#client');
2013-12-30 21:17:45 +01:00
for (var i=0; i<clients.length; i++) {
var client = clients[i];
$input.append(new Option(getClientDisplayName(client), client.public_id));
}
@if ($clientPublicId)
$('select#client').val({{ $clientPublicId }});
@endif
2013-12-05 16:23:24 +01:00
$input.combobox();
2013-12-30 21:17:45 +01:00
2013-12-29 18:40:11 +01:00
$('#currency_id').combobox();
2013-12-05 16:23:24 +01:00
$('#credit_date').datepicker({
autoclose: true,
2014-01-01 00:50:13 +01:00
todayHighlight: true,
keyboardNavigation: false
2013-12-05 16:23:24 +01:00
});
});
</script>
@stop