mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 02:36:28 +00:00 
			
		
		
		
	fix: replace deprecated package
This commit is contained in:
		| @@ -88,7 +88,6 @@ | ||||
|         var iAmOwed = '{{ 'i_am_owed_amount'|_|escape('js') }}'; | ||||
|         var iOwe = '{{ 'i_owe_amount'|_|escape('js') }}'; | ||||
|     </script> | ||||
|     <script src="v1/lib/leaflet/leaflet.js?v={{ FF_VERSION }}" nonce="{{ JS_NONCE }}"></script> | ||||
|     <script type="text/javascript" src="v1/js/lib/modernizr-custom.js?v={{ FF_VERSION }}" | ||||
|             nonce="{{ JS_NONCE }}"></script> | ||||
|     <script type="text/javascript" src="v1/js/lib/jquery-ui.min.js?v={{ FF_VERSION }}" nonce="{{ JS_NONCE }}"></script> | ||||
| @@ -100,5 +99,4 @@ | ||||
|           media="all" nonce="{{ JS_NONCE }}"> | ||||
|     <link href="v1/css/jquery-ui/jquery-ui.theme.min.css?v={{ FF_VERSION }}" type="text/css" rel="stylesheet" | ||||
|           media="all" nonce="{{ JS_NONCE }}"> | ||||
|     <link rel="stylesheet" href="v1/lib/leaflet/leaflet.css?v={{ FF_VERSION }}" nonce="{{ JS_NONCE }}"> | ||||
| {% endblock %} | ||||
|   | ||||
| @@ -6,7 +6,8 @@ | ||||
|  | ||||
| {% block content %} | ||||
|  | ||||
|     <form method="POST" action="{{ route('accounts.destroy',account.id) }}" accept-charset="UTF-8" class="form-horizontal" id="destroy"> | ||||
|     <form method="POST" action="{{ route('accounts.destroy',account.id) }}" accept-charset="UTF-8" | ||||
|           class="form-horizontal" id="destroy"> | ||||
|         <input name="_token" type="hidden" value="{{ csrf_token() }}"> | ||||
|         <div class="row"> | ||||
|             <div class="col-lg-6 col-lg-offset-3 col-md-12 col-sm-12"> | ||||
| @@ -39,7 +40,7 @@ | ||||
|                             </p> | ||||
|  | ||||
|                             <p> | ||||
|                                 {{ Form.select('move_account_before_delete', accountList, null, {class: 'form-control'}) }} | ||||
|                                 {{ Html.select('move_account_before_delete', accountList, null).class('form-control') }} | ||||
|                             </p> | ||||
|                         {% else %} | ||||
|                             <input type="hidden" name="move_account_before_delete" value="0"/> | ||||
| @@ -47,7 +48,8 @@ | ||||
|  | ||||
|                     </div> | ||||
|                     <div class="box-footer"> | ||||
|                         <input type="submit" name="submit" value="{{ trans('form.deletePermanently') }}" class="btn pull-right btn-danger"/> | ||||
|                         <input type="submit" name="submit" value="{{ trans('form.deletePermanently') }}" | ||||
|                                class="btn pull-right btn-danger"/> | ||||
|                         <a href="{{ URL.previous() }}" class="btn-default btn">{{ trans('form.cancel') }}</a> | ||||
|                     </div> | ||||
|                 </div> | ||||
|   | ||||
| @@ -117,7 +117,6 @@ | ||||
|         var iAmOwed = '{{ 'i_am_owed_amount'|_|escape('js') }}'; | ||||
|         var iOwe = '{{ 'i_owe_amount'|_|escape('js') }}'; | ||||
|     </script> | ||||
|     <script src="v1/lib/leaflet/leaflet.js?v={{ FF_VERSION }}" nonce="{{ JS_NONCE }}"></script> | ||||
|     <script type="text/javascript" src="v1/js/lib/modernizr-custom.js?v={{ FF_VERSION }}" | ||||
|             nonce="{{ JS_NONCE }}"></script> | ||||
|     <script type="text/javascript" src="v1/js/lib/jquery-ui.min.js?v={{ FF_VERSION }}" nonce="{{ JS_NONCE }}"></script> | ||||
| @@ -129,5 +128,4 @@ | ||||
|           media="all" nonce="{{ JS_NONCE }}"> | ||||
|     <link href="v1/css/jquery-ui/jquery-ui.theme.min.css?v={{ FF_VERSION }}" type="text/css" rel="stylesheet" | ||||
|           media="all" nonce="{{ JS_NONCE }}"> | ||||
|     <link rel="stylesheet" href="v1/lib/leaflet/leaflet.css?v={{ FF_VERSION }}" nonce="{{ JS_NONCE }}"> | ||||
| {% endblock %} | ||||
|   | ||||
| @@ -1,119 +1 @@ | ||||
| {% extends './layout/default' %} | ||||
|  | ||||
| {% block breadcrumbs %} | ||||
|     {{ Breadcrumbs.render(Route.getCurrentRoute.getName, journal) }} | ||||
| {% endblock %} | ||||
|  | ||||
| {% block content %} | ||||
|     <form method="POST" action="{{ route('accounts.reconcile.update',journal.id) }}" accept-charset="UTF-8" class="form-horizontal" id="update" | ||||
|           enctype="multipart/form-data"> | ||||
|  | ||||
|         <input name="_token" type="hidden" value="{{ csrf_token() }}"> | ||||
|         <input type="hidden" name="id" value="{{ journal.id }}"/> | ||||
|  | ||||
|         {% if errors.all|length > 0 %} | ||||
|             <div class="row"> | ||||
|                 <div class="col-lg-12"> | ||||
|                     <h3 class="text-danger">{{ 'errors'|_ }}</h3> | ||||
|                     <ul> | ||||
|                         {% for err in errors.all %} | ||||
|                             <li class="text-danger">{{ err }}</li> | ||||
|                         {% endfor %} | ||||
|                     </ul> | ||||
|                 </div> | ||||
|             </div> | ||||
|         {% endif %} | ||||
|  | ||||
|  | ||||
|         <div class="row"> | ||||
|             <div class="col-lg-6 col-md-6 col-sm-12 col-xs-12"> | ||||
|                 <div class="box box-primary"> | ||||
|                     <div class="box-header with-border"> | ||||
|                         <h3 class="box-title">{{ 'mandatoryFields'|_ }}</h3> | ||||
|                     </div> | ||||
|                     <div class="box-body"> | ||||
|                         {# ALWAYS AVAILABLE #} | ||||
|                         {{ ExpandedForm.staticText('description',journal.description) }} | ||||
|  | ||||
|                         {# ALWAYS SHOW AMOUNT #} | ||||
|                         {{ ExpandedForm.nonSelectableAmount('amount',data.amount, {'currency' : data.currency}) }} | ||||
|  | ||||
|                         {# ALWAYS SHOW DATE #} | ||||
|                         {{ ExpandedForm.staticText('date',journal.date.isoFormat(monthAndDayFormat)) }} | ||||
|                     </div> | ||||
|                 </div> | ||||
|  | ||||
|             </div> | ||||
|             <div class="col-lg-6 col-md-6 col-sm-12 col-xs-12"> | ||||
|                 <div class="box"> | ||||
|                     <div class="box-header with-border"> | ||||
|                         <h3 class="box-title">{{ 'optionalFields'|_ }}</h3> | ||||
|                     </div> | ||||
|                     <div class="box-body"> | ||||
|                         {# category always #} | ||||
|                         {{ ExpandedForm.text('category',data.category) }} | ||||
|  | ||||
|                         {# tags #} | ||||
|                         {{ ExpandedForm.text('tags') }} | ||||
|                     </div> | ||||
|                 </div> | ||||
|  | ||||
|                 {# box for attachments #} | ||||
|                 {% if optionalFields.attachments %} | ||||
|                     <div class="box"> | ||||
|                         <div class="box-header with-border"> | ||||
|                             <h3 class="box-title">{{ 'optional_field_attachments'|_ }}</h3> | ||||
|                         </div> | ||||
|                         <div class="box-body"> | ||||
|                             {% if optionalFields.attachments %} | ||||
|                                 {# attachments #} | ||||
|                                 {{ ExpandedForm.file('attachments[]', {'multiple': 'multiple','helpText': trans('firefly.upload_max_file_size', {'size': uploadSize|filesize}) }) }} | ||||
|                             {% endif %} | ||||
|                         </div> | ||||
|                     </div> | ||||
|                 {% endif %} | ||||
|             </div> | ||||
|         </div> | ||||
|         <div class="row"> | ||||
|             <div class="col-lg-6 col-md-6 col-sm-12"> | ||||
|                 {# panel for options #} | ||||
|                 <div class="box"> | ||||
|                     <div class="box-header with-border"> | ||||
|                         <h3 class="box-title">{{ 'options'|_ }}</h3> | ||||
|                     </div> | ||||
|                     <div class="box-body"> | ||||
|                         {{ ExpandedForm.optionsList('update','transaction') }} | ||||
|                     </div> | ||||
|                     <div class="box-footer"> | ||||
|                         <button type="submit" class="pull-right btn btn-success">{{ ('update_reconciliation')|_ }}</button> | ||||
|                     </div> | ||||
|                 </div> | ||||
|             </div> | ||||
|         </div> | ||||
|  | ||||
|     </form> | ||||
|  | ||||
|  | ||||
| {% endblock %} | ||||
| {% block scripts %} | ||||
|     <script type="text/javascript" nonce="{{ JS_NONCE }}"> | ||||
|         var what = "{{ what }}"; | ||||
|     </script> | ||||
|     <script type="text/javascript" src="v1/js/lib/typeahead/typeahead.bundle.min.js?v={{ FF_VERSION }}" nonce="{{ JS_NONCE }}"></script> | ||||
|     <script type="text/javascript" src="v1/js/ff/common/autocomplete.js?v={{ FF_VERSION }}" nonce="{{ JS_NONCE }}"></script> | ||||
|     <script type="text/javascript" src="v1/js/lib/bootstrap-tagsinput.min.js?v={{ FF_VERSION }}" nonce="{{ JS_NONCE }}"></script> | ||||
|     <script type="text/javascript" src="v1/js/lib/jquery-ui.min.js?v={{ FF_VERSION }}" nonce="{{ JS_NONCE }}"></script> | ||||
|     <script type="text/javascript" src="v1/js/lib/modernizr-custom.js?v={{ FF_VERSION }}" nonce="{{ JS_NONCE }}"></script> | ||||
|     <script type="text/javascript" src="v1/jscript/accounts?ext=.js&v={{ FF_VERSION }}" nonce="{{ JS_NONCE }}"></script> | ||||
|     <script type="text/javascript" src="v1/jscript/currencies?ext=.js&v={{ FF_VERSION }}" nonce="{{ JS_NONCE }}"></script> | ||||
|     <script type="text/javascript"> | ||||
|         var journal = {{ journal.toArray()|json_encode|raw }}; | ||||
|         var journalData = {{ data|json_encode|raw }}; | ||||
|     </script> | ||||
|     <script type="text/javascript" src="v1/js/ff/accounts/edit-reconciliation.js?v={{ FF_VERSION }}" nonce="{{ JS_NONCE }}"></script> | ||||
| {% endblock %} | ||||
| {% block styles %} | ||||
|     <link href="v1/css/bootstrap-tagsinput.css?v={{ FF_VERSION }}" type="text/css" rel="stylesheet"  media="all" nonce="{{ JS_NONCE }}"> | ||||
|     <link href="v1/css/jquery-ui/jquery-ui.structure.min.css?v={{ FF_VERSION }}" type="text/css" rel="stylesheet"  media="all" nonce="{{ JS_NONCE }}"> | ||||
|     <link href="v1/css/jquery-ui/jquery-ui.theme.min.css?v={{ FF_VERSION }}" type="text/css" rel="stylesheet"  media="all" nonce="{{ JS_NONCE }}"> | ||||
| {% endblock %} | ||||
| TODO REMOVE ME | ||||
|   | ||||
| @@ -17,10 +17,13 @@ | ||||
|                     </h3> | ||||
|                     <div class="box-tools pull-right"> | ||||
|                         <div class="btn-group"> | ||||
|                             <button class="btn btn-box-tool dropdown-toggle" data-toggle="dropdown"><span class="fa fa-ellipsis-v"></span></button> | ||||
|                             <button class="btn btn-box-tool dropdown-toggle" data-toggle="dropdown"><span | ||||
|                                         class="fa fa-ellipsis-v"></span></button> | ||||
|                             <ul class="dropdown-menu" role="menu"> | ||||
|                                 <li><a href="{{ route('accounts.edit', account.id) }}"><span class="fa fa-pencil fa-fw"></span> {{ 'edit'|_ }}</a></li> | ||||
|                                 <li><a href="{{ route('accounts.delete', account.id) }}"><span class="fa fa-trash fa-fw"></span> {{ 'delete'|_ }}</a></li> | ||||
|                                 <li><a href="{{ route('accounts.edit', account.id) }}"><span | ||||
|                                                 class="fa fa-pencil fa-fw"></span> {{ 'edit'|_ }}</a></li> | ||||
|                                 <li><a href="{{ route('accounts.delete', account.id) }}"><span | ||||
|                                                 class="fa fa-trash fa-fw"></span> {{ 'delete'|_ }}</a></li> | ||||
|                             </ul> | ||||
|                         </div> | ||||
|                     </div> | ||||
| @@ -104,16 +107,16 @@ | ||||
|  | ||||
|     <div class="row"> | ||||
|         {% if(location) %} | ||||
|         <div class="col-lg-6"> | ||||
|             <div class="box"> | ||||
|                 <div class="box-header with-border"> | ||||
|                     <h3 class="box-title">{{ 'location'|_ }}</h3> | ||||
|                 </div> | ||||
|                 <div class="box-body"> | ||||
|                     <div id="location_map" style="width:100%;height:300px;"></div> | ||||
|             <div class="col-lg-6"> | ||||
|                 <div class="box"> | ||||
|                     <div class="box-header with-border"> | ||||
|                         <h3 class="box-title">{{ 'location'|_ }}</h3> | ||||
|                     </div> | ||||
|                     <div class="box-body"> | ||||
|                         <div id="location_map" style="width:100%;height:300px;"></div> | ||||
|                     </div> | ||||
|                 </div> | ||||
|             </div> | ||||
|         </div> | ||||
|         {% endif %} | ||||
|         {% if account.notes.count() == 1 %} | ||||
|             <div class="col-lg-6"> | ||||
| @@ -133,7 +136,8 @@ | ||||
|         <div class="{% if periods|length > 0 %}col-lg-10 col-md-8 col-sm-12{% else %}col-lg-12 col-md-12 col-sm-12{% endif %}"> | ||||
|             <div class="box"> | ||||
|                 <div class="box-header with-border"> | ||||
|                     <h3 class="box-title">{{ 'transactions'|_ }} ({{ formatAmountBySymbol(balance, currency.symbol, currency.decimal_places, true)|raw }})</h3> | ||||
|                     <h3 class="box-title">{{ 'transactions'|_ }} | ||||
|                         ({{ formatAmountBySymbol(balance, currency.symbol, currency.decimal_places, true)|raw }})</h3> | ||||
|                 </div> | ||||
|                 <div class="box-body"> | ||||
|                     {% if account.accountType.type == 'Asset account' %} | ||||
| @@ -168,15 +172,11 @@ | ||||
|  | ||||
| {% block scripts %} | ||||
|     <script type="text/javascript" nonce="{{ JS_NONCE }}"> | ||||
|         var doPlaceMarker = false; | ||||
|         // location stuff | ||||
|         {% if location %} | ||||
|             var latitude = {{ location.latitude|default("52.3167") }}; | ||||
|             var longitude = {{ location.longitude|default("5.5500") }}; | ||||
|             var zoomLevel = {{ location.zoom_level|default("6") }}; | ||||
|             doPlaceMarker = true; | ||||
|             // token for Mapbox: | ||||
|             var mapboxToken = "{{ config('firefly.mapbox_api_key') }}"; | ||||
|         var latitude = {{ location.latitude|default("52.3167") }}; | ||||
|         var longitude = {{ location.longitude|default("5.5500") }}; | ||||
|         var zoomLevel = {{ location.zoom_level|default("6") }}; | ||||
|         {% endif %} | ||||
|  | ||||
|         var showAll = true; | ||||
| @@ -207,13 +207,16 @@ | ||||
|     {% if location %} | ||||
|         <script src="v1/lib/leaflet/leaflet.js?v={{ FF_VERSION }}" nonce="{{ JS_NONCE }}"></script> | ||||
|     {% endif %} | ||||
|     <script type="text/javascript" src="v1/js/lib/Chart.bundle.min.js?v={{ FF_VERSION }}" nonce="{{ JS_NONCE }}"></script> | ||||
|     <script type="text/javascript" src="v1/js/lib/chartjs-plugin-annotation.min.js?v={{ FF_VERSION }}" nonce="{{ JS_NONCE }}"></script> | ||||
|     <script type="text/javascript" src="v1/js/lib/Chart.bundle.min.js?v={{ FF_VERSION }}" | ||||
|             nonce="{{ JS_NONCE }}"></script> | ||||
|     <script type="text/javascript" src="v1/js/lib/chartjs-plugin-annotation.min.js?v={{ FF_VERSION }}" | ||||
|             nonce="{{ JS_NONCE }}"></script> | ||||
|     <script type="text/javascript" src="v1/js/ff/charts.defaults.js?v={{ FF_VERSION }}" nonce="{{ JS_NONCE }}"></script> | ||||
|     <script type="text/javascript" src="v1/js/ff/charts.js?v={{ FF_VERSION }}" nonce="{{ JS_NONCE }}"></script> | ||||
|  | ||||
|     <script src="v1/js/lib/jquery-ui.min.js?v={{ FF_VERSION }}" type="text/javascript" nonce="{{ JS_NONCE }}"></script> | ||||
|     <script src="v1/js/lib/jquery.color-2.1.2.min.js?v={{ FF_VERSION }}" type="text/javascript" nonce="{{ JS_NONCE }}"></script> | ||||
|     <script src="v1/js/lib/jquery.color-2.1.2.min.js?v={{ FF_VERSION }}" type="text/javascript" | ||||
|             nonce="{{ JS_NONCE }}"></script> | ||||
|     <script src="v1/js/ff/accounts/show.js?v={{ FF_VERSION }}" type="text/javascript" nonce="{{ JS_NONCE }}"></script> | ||||
|     {# required for groups.twig #} | ||||
|     <script type="text/javascript" src="v1/js/ff/list/groups.js?v={{ FF_VERSION }}" nonce="{{ JS_NONCE }}"></script> | ||||
| @@ -221,6 +224,6 @@ | ||||
|  | ||||
| {% block styles %} | ||||
|     {% if location %} | ||||
|         <link rel="stylesheet" href="v1/lib/leaflet/leaflet.css?v={{ FF_VERSION }}"  nonce="{{ JS_NONCE }}"> | ||||
|         <link rel="stylesheet" href="v1/lib/leaflet/leaflet.css?v={{ FF_VERSION }}" nonce="{{ JS_NONCE }}"> | ||||
|     {% endif %} | ||||
| {% endblock %} | ||||
|   | ||||
| @@ -6,7 +6,8 @@ | ||||
|  | ||||
| {% block content %} | ||||
|  | ||||
|     <form method="POST" action="{{ route('admin.links.destroy',linkType.id) }}" accept-charset="UTF-8" class="form-horizontal" id="destroy"> | ||||
|     <form method="POST" action="{{ route('admin.links.destroy',linkType.id) }}" accept-charset="UTF-8" | ||||
|           class="form-horizontal" id="destroy"> | ||||
|         <input name="_token" type="hidden" value="{{ csrf_token() }}"> | ||||
|         <div class="row"> | ||||
|             <div class="col-lg-6 col-lg-offset-3 col-md-12 col-sm-12"> | ||||
| @@ -34,7 +35,7 @@ | ||||
|                             </p> | ||||
|  | ||||
|                             <p> | ||||
|                                 {{ Form.select('move_link_type_before_delete', moveTo, null, {class: 'form-control'}) }} | ||||
|                                 {{ Html.select('move_link_type_before_delete', moveTo).class('form-control') }} | ||||
|                             </p> | ||||
|                         {% else %} | ||||
|                             <input type="hidden" name="move_link_type_before_delete" value="0"/> | ||||
| @@ -42,7 +43,8 @@ | ||||
|  | ||||
|                     </div> | ||||
|                     <div class="box-footer"> | ||||
|                         <input type="submit" name="submit" value="{{ trans('form.deletePermanently') }}" class="btn pull-right btn-danger"/> | ||||
|                         <input type="submit" name="submit" value="{{ trans('form.deletePermanently') }}" | ||||
|                                class="btn pull-right btn-danger"/> | ||||
|                         <a href="{{ URL.previous() }}" class="btn-default btn">{{ trans('form.cancel') }}</a> | ||||
|                     </div> | ||||
|                 </div> | ||||
|   | ||||
| @@ -1,7 +1,7 @@ | ||||
| <div class="{{ classes }}" id="{{ name }}_holder"> | ||||
|     <label for="{{ options.id }}" class="col-sm-4 control-label">{{ label }}</label> | ||||
|     <div class="col-sm-8"> | ||||
|         {{ Html.input('number', name, value).class('form-control').attribute('step','any').attribute('autocomplete','off').attribute('spellcheck','false') }} | ||||
|         {{ Html.input('number', name, value).class('form-control').attribute('step','any').attribute('autocomplete','off').attribute('spellcheck','false').attribute('placeholder',options.placeholder) }} | ||||
|         {% include 'form.help' %} | ||||
|         {% include 'form.feedback' %} | ||||
|     </div> | ||||
|   | ||||
| @@ -10,7 +10,7 @@ | ||||
|                         {% if account in selected or (selected|length == 0 and options.select_all == true) %} | ||||
|                             {{ Html.checkbox(name~'[]',true).id(id) }} | ||||
|                         {% else %} | ||||
|                             {{ Form.checkbox(name~'[]',false).id(id) }} | ||||
|                             {{ Html.checkbox(name~'[]',false).id(id) }} | ||||
|                         {% endif %} | ||||
|                         {{ account|escape }} | ||||
|                     </label> | ||||
|   | ||||
| @@ -1 +1,34 @@ | ||||
| TODO REMOVE ME | ||||
| <div class="{{ classes }}" id="{{ name }}_holder"> | ||||
|     <label for="{{ options.id }}" class="col-sm-4 control-label">{{ label }}</label> | ||||
|  | ||||
|     <div class="col-sm-8"> | ||||
|         <div class="input-group"> | ||||
|             <div class="input-group-btn"> | ||||
|                 <button type="button" | ||||
|                         class="btn btn-default dropdown-toggle currency-dropdown" id="currency_dropdown_{{ name }}" | ||||
|                         data-toggle="dropdown" | ||||
|                         aria-expanded="false"> | ||||
|                     <span id="currency_select_symbol_{{ name }}">{{ defaultCurrency.symbol|raw }}</span> <span | ||||
|                             class="caret"></span> | ||||
|                 </button> | ||||
|                 <ul class="dropdown-menu currency-dropdown-menu" role="menu"> | ||||
|                     {% for currency in currencies %} | ||||
|                         <li> | ||||
|                             <a href="#" | ||||
|                                class="currency-option" | ||||
|                                data-id="{{ currency.id }}" | ||||
|                                data-name="{{ name }}" | ||||
|                                data-currency="{{ currency.code }}" | ||||
|                                data-symbol="{{ currency.symbol|raw }}">{{ currency.name }}</a></li> | ||||
|                     {% endfor %} | ||||
|                 </ul> | ||||
|             </div> | ||||
|             {{ Html.input('number', name, value).class('form-control').attribute('step','any') }} | ||||
|  | ||||
|         </div> | ||||
|  | ||||
|         {% include 'form.feedback' %} | ||||
|     </div> | ||||
|  | ||||
|     <input type="hidden" name="amount_currency_id_{{ name }}" value="{{ defaultCurrency.id }}"/> | ||||
| </div> | ||||
|   | ||||
| @@ -2,7 +2,7 @@ | ||||
|     <label for="{{ options.id }}" class="col-sm-4 control-label">{{ label }}</label> | ||||
|  | ||||
|     <div class="col-sm-8"> | ||||
|         {{ Html.input('number', name, value).attribute('step',options.step).attribute('autocomplete','off').attribute('spellcheck', 'false').class('form-control') }} | ||||
|         {{ Html.input('number', name, value).attribute('step',options.step).attribute('autocomplete','off').attribute('spellcheck', 'false').class('form-control').attribute('placeholder',options.placeholder) }} | ||||
|         {% include 'form.help' %} | ||||
|         {% include 'form.feedback' %} | ||||
|     </div> | ||||
|   | ||||
| @@ -1 +1 @@ | ||||
| TODO REMOVE ME | ||||
| TODO REMOVE ME 3 | ||||
|   | ||||
| @@ -1,11 +1 @@ | ||||
| <div class="{{ classes }}" id="{{ name }}_holder"> | ||||
|     <label for="{{ options.id }}" class="col-sm-4 control-label">{{ label }}</label> | ||||
|  | ||||
|     <div class="col-sm-8"> | ||||
|         <div class="input-group"> | ||||
|             <span class="input-group-addon non-selectable-currency-symbol">{{ selectedCurrency.symbol }}</span> | ||||
|             {{ Form.input('number', name, value, options) }} | ||||
|         </div> | ||||
|         {% include 'form.feedback' %} | ||||
|     </div> | ||||
| </div> | ||||
| TODO REMOVE ME 1 | ||||
|   | ||||
| @@ -1,9 +1 @@ | ||||
| <div class="{{ classes }}" id="{{ name }}_holder"> | ||||
|     <label for="{{ options.id }}" class="col-sm-4 control-label">{{ label }}</label> | ||||
|  | ||||
|     <div class="col-sm-8"> | ||||
|         {{ Form.input('number', name, value, options) }} | ||||
|         {% include 'form.help' %} | ||||
|         {% include 'form.feedback' %} | ||||
|     </div> | ||||
| </div> | ||||
| TODO REMOVE ME | ||||
|   | ||||
| @@ -2,7 +2,7 @@ | ||||
|     <label for="{{ options.id }}" class="col-sm-4 control-label">{{ label }}</label> | ||||
|  | ||||
|     <div class="col-sm-8"> | ||||
|         {{ Form.input('text', name, value, options) }} | ||||
|         {{ Html.input('text', name, value).class('form-control').attribute('autocomplete','off').attribute('spellcheck','false').attribute('placeholder',options.placeholder) }} | ||||
|         {% include 'form.help' %} | ||||
|         {% include 'form.feedback' %} | ||||
|     </div> | ||||
|   | ||||
| @@ -7,7 +7,7 @@ | ||||
|         <div class="col-sm-8"> | ||||
|             <div class="checkbox"> | ||||
|                 <label> | ||||
|                     {{ Form.checkbox('create_another', '1', false, {'id': name ~ '_return_to_form'}) }} | ||||
|                     {{ Html.checkbox('create_another', false).id(name ~ '_return_to_form') }} | ||||
|                     {{ trans('form.returnHereExplanation') }} | ||||
|  | ||||
|                 </label> | ||||
| @@ -24,7 +24,7 @@ | ||||
|  | ||||
|         <div class="col-sm-8"> | ||||
|             <div class="checkbox"><label> | ||||
|                     {{ Form.checkbox('return_to_edit', '1', null, {'id': name ~ '_return_to_edit'}) }} | ||||
|                     {{ Html.checkbox('return_to_edit', null).id(name ~ '_return_to_edit') }} | ||||
|                     {{ trans('form.returnHereUpdateExplanation') }} | ||||
|                 </label> | ||||
|             </div> | ||||
|   | ||||
| @@ -2,7 +2,7 @@ | ||||
|     <label for="{{ options.id }}" class="col-sm-4 control-label">{{ label }}</label> | ||||
|  | ||||
|     <div class="col-sm-8"> | ||||
|         {{ Form.input('password', name, value, options) }} | ||||
|         {{ Html.input('password', name, value).class('form-control').attribute('placeholder',options.placeholder).attribute('autocomplete','off').attribute('spellcheck','false') }} | ||||
|         {% include 'form.help' %} | ||||
|         {% include 'form.feedback' %} | ||||
|     </div> | ||||
|   | ||||
| @@ -3,7 +3,7 @@ | ||||
|  | ||||
|     <div class="col-sm-8"> | ||||
|         <div class="input-group"> | ||||
|             {{ Form.input('number', name, value, options) }} | ||||
|             {{ Html.input('number', name, value).attribute('step',options.step).attribute('autocomplete','off').attribute('spellcheck', 'false').class('form-control').attribute('placeholder',options.placeholder) }} | ||||
|             <div class="input-group-addon">%</div> | ||||
|         </div> | ||||
|         {% include 'form.help' %} | ||||
|   | ||||
| @@ -2,7 +2,7 @@ | ||||
|     <label for="{{ options.id }}" class="col-sm-4 control-label">{{ label }}</label> | ||||
|  | ||||
|     <div class="col-sm-8"> | ||||
|         {{ Form.select(name, list, selected , options ) }} | ||||
|         {{ Html.select(name, list, selected).class('form-control').attribute('autocomplete','off').attribute('spellcheck','false').attribute('placeholder',options.placeholder) }} | ||||
|         {% include 'form.help' %} | ||||
|         {% include 'form.feedback' %} | ||||
|  | ||||
|   | ||||
| @@ -1,8 +1 @@ | ||||
| <div class="{{ classes }}" id="{{ name }}_holder"> | ||||
|     <label for="{{ options.id }}" class="col-sm-4 control-label">{{ label }}</label> | ||||
|  | ||||
|     <div class="col-sm-8"> | ||||
|         {{ Form.input('text', name, value, options) }} | ||||
|         {% include 'form.feedback' %} | ||||
|     </div> | ||||
| </div> | ||||
| TODO REMOVE ME | ||||
|   | ||||
| @@ -2,7 +2,7 @@ | ||||
|     <label for="{{ options.id }}" class="col-sm-4 control-label">{{ label }}</label> | ||||
|  | ||||
|     <div class="col-sm-8"> | ||||
|         {{ Form.input('text', name, value, options) }} | ||||
|         {{ Html.input('text', name, value).class('form-control').attribute('autocomplete','off').attribute('spellcheck','false').attribute('placeholder',options.placeholder) }} | ||||
|         {% include 'form.help' %} | ||||
|         {% include 'form.feedback' %} | ||||
|     </div> | ||||
|   | ||||
| @@ -2,7 +2,7 @@ | ||||
|     <label for="{{ options.id }}" class="col-sm-4 control-label">{{ label }}</label> | ||||
|  | ||||
|     <div class="col-sm-8"> | ||||
|         {{ Form.textarea(name, value, options) }} | ||||
|         {{ Html.textarea(name, value).attribute('rows', options.rows).class('form-control').attribute('autocomplete','off').attribute('spellcheck','false').attribute('placeholder',options.placeholder) }} | ||||
|         {% include 'form.help' %} | ||||
|         {% include 'form.feedback' %} | ||||
|     </div> | ||||
|   | ||||
| @@ -34,19 +34,21 @@ | ||||
|                             {{ 'savings_balance_text'|_ }} | ||||
|                         </p> | ||||
|  | ||||
|                         {{ ExpandedForm.number('savings_balance',0) }} | ||||
|                         {{ ExpandedForm.integer('savings_balance',0, {"step": "any"}) }} | ||||
|  | ||||
|                         <p> | ||||
|                             {{ 'set_preferred_language'|_ }} | ||||
|                         </p> | ||||
|                         <div id="language_holder" class="form-group"> | ||||
|                             <label for="language_holder_select" class="col-sm-4 control-label">{{ 'language'|_ }}</label> | ||||
|                             <label for="language_holder_select" | ||||
|                                    class="col-sm-4 control-label">{{ 'language'|_ }}</label> | ||||
|                             <div class="col-sm-8"> | ||||
|                                 <select class="form-control" id="lang_holder" name="language"> | ||||
|                                     {% for key, lang in Config.get('firefly.languages') %} | ||||
|                                         <option {% if language == key %} | ||||
|                                             selected | ||||
|                                         {% endif %} value="{{ key }}">{{ lang.name_locale }} ({{ lang.name_english }})</option> | ||||
|                                         {% endif %} value="{{ key }}">{{ lang.name_locale }} ({{ lang.name_english }}) | ||||
|                                         </option> | ||||
|  | ||||
|                                     {% endfor %} | ||||
|                                 </select> | ||||
|   | ||||
| @@ -4,7 +4,8 @@ | ||||
| {% endblock %} | ||||
| {% block content %} | ||||
|  | ||||
|     <form action="{{ route('recurring.store') }}" method="post" id="store" class="form-horizontal" enctype="multipart/form-data"> | ||||
|     <form action="{{ route('recurring.store') }}" method="post" id="store" class="form-horizontal" | ||||
|           enctype="multipart/form-data"> | ||||
|         <input type="hidden" name="_token" value="{{ csrf_token() }}"/> | ||||
|         {# row with recurrence information #} | ||||
|         <div class="row"> | ||||
| @@ -20,15 +21,16 @@ | ||||
|                         {{ preFilled.first_date.format('Y-m-d') }} | ||||
|                         {{ ExpandedForm.date('first_date',null, {helpText: trans('firefly.help_first_date'), min: preFilled.first_date}) }} | ||||
|                         {{ ExpandedForm.select('repetition_type', [], null, {helpText: trans('firefly.change_date_other_options')}) }} | ||||
|                         {{ ExpandedForm.number('skip', 0) }} | ||||
|                         {{ ExpandedForm.integer('skip',0) }} | ||||
|                         {{ ExpandedForm.select('weekend', weekendResponses, null, {helpText: trans('firefly.help_weekend')}) }} | ||||
|                         {{ ExpandedForm.select('repetition_end', repetitionEnds) }} | ||||
|                         {{ ExpandedForm.date('repeat_until',null) }} | ||||
|                         {{ ExpandedForm.number('repetitions',null) }} | ||||
|                         {{ ExpandedForm.integer('repetitions',null) }} | ||||
|  | ||||
|                         {# calendar in popup #} | ||||
|                         <div class="form-group" id="calendar_holder"> | ||||
|                             <label for="ffInput_calendar" class="col-sm-4 control-label">{{ trans('form.calendar') }}</label> | ||||
|                             <label for="ffInput_calendar" | ||||
|                                    class="col-sm-4 control-label">{{ trans('form.calendar') }}</label> | ||||
|  | ||||
|                             <div class="col-sm-8"> | ||||
|                                 <p class="form-control-static" id="ffInput_calendar"> | ||||
| @@ -67,7 +69,7 @@ | ||||
|                     </div> | ||||
|                     <div class="box-body"> | ||||
|                         <p><em>{{ 'mandatory_fields_for_tranaction'|_ }}</em></p> | ||||
|                         {# three buttons to distinguish type of transaction#} | ||||
|                         {# three buttons to distinguish type of transaction #} | ||||
|                         <div class="form-group" id="name_holder"> | ||||
|                             <label for="ffInput_type" class="col-sm-4 control-label"> | ||||
|                                 {{ trans('form.transaction_type') }} | ||||
| @@ -75,14 +77,17 @@ | ||||
|  | ||||
|                             <div class="col-sm-8"> | ||||
|                                 <div class="btn-group btn-group-sm"> | ||||
|                                     <a href="#" class="btn btn-default switch-button" data-value="withdrawal">{{ 'withdrawal'|_ }}</a> | ||||
|                                     <a href="#" class="btn btn-default switch-button" data-value="deposit">{{ 'deposit'|_ }}</a> | ||||
|                                     <a href="#" class="btn btn-default switch-button" data-value="transfer">{{ 'transfer'|_ }}</a> | ||||
|                                     <a href="#" class="btn btn-default switch-button" | ||||
|                                        data-value="withdrawal">{{ 'withdrawal'|_ }}</a> | ||||
|                                     <a href="#" class="btn btn-default switch-button" | ||||
|                                        data-value="deposit">{{ 'deposit'|_ }}</a> | ||||
|                                     <a href="#" class="btn btn-default switch-button" | ||||
|                                        data-value="transfer">{{ 'transfer'|_ }}</a> | ||||
|                                 </div> | ||||
|                             </div> | ||||
|                         </div> | ||||
|                         <input type="hidden" name="transaction_type" value=""> | ||||
|                         {# end of three buttons#} | ||||
|                         {# end of three buttons #} | ||||
|  | ||||
|                         {{ ExpandedForm.text('transaction_description') }} | ||||
|                         {# transaction information (mandatory) #} | ||||
| @@ -99,7 +104,7 @@ | ||||
|                         {{ AccountForm.longAccountList('destination_id', null, {label: trans('form.asset_destination_account')} ) }} | ||||
|  | ||||
|                         {# destination account name for withdrawals #} | ||||
|                         {#{{ ExpandedForm.text('destination_name', null, {label: trans('form.expense_account')}) }} #} | ||||
|                         {# {{ ExpandedForm.text('destination_name', null, {label: trans('form.expense_account')}) }} #} | ||||
|  | ||||
|                         {# NEW for withdrawals, also a drop down with expense accounts, loans, debts, mortgages or (cash). #} | ||||
|                         {{ AccountForm.activeWithdrawalDestinations('withdrawal_destination_id', null, {label: trans('form.withdrawal_destination_id')}) }} | ||||
| @@ -164,60 +169,70 @@ | ||||
|             </div> | ||||
|         </div> | ||||
|         {# | ||||
|             <div class="row"> | ||||
|                 <div class="box box-primary"> | ||||
|                     <div class="box-header with-border"> | ||||
|                         <h3 class="box-title">{{ 'expected_repetitions'|_ }}</h3> | ||||
|                     </div> | ||||
|                     <div class="box-body"> | ||||
|                         Here. | ||||
|                     </div> | ||||
|         <div class="row"> | ||||
|             <div class="box box-primary"> | ||||
|                 <div class="box-header with-border"> | ||||
|                     <h3 class="box-title">{{ 'expected_repetitions'|_ }}</h3> | ||||
|                 </div> | ||||
|                 <div class="box-body"> | ||||
|                     Here. | ||||
|                 </div> | ||||
|             </div> | ||||
|         </div> | ||||
|         </div> | ||||
|     </div> | ||||
|     </div> | ||||
|         #} | ||||
|     </form> | ||||
|  | ||||
|     {# calendar modal #} | ||||
|     <div class="modal fade" id="calendarModal" tabindex="-1" role="dialog"> | ||||
|     <div class="modal-dialog modal-lg"> | ||||
|         <div class="modal-content"> | ||||
|             <div class="modal-header"> | ||||
|                 <h4 class="modal-title">{{ 'recurring_calendar_view'|_ }}</h4> | ||||
|             </div> | ||||
|             <div class="modal-body"> | ||||
|                 <div id="recurring_calendar" style="max-width: 400px;margin: 0 auto;"> | ||||
|         <div class="modal-dialog modal-lg"> | ||||
|             <div class="modal-content"> | ||||
|                 <div class="modal-header"> | ||||
|                     <h4 class="modal-title">{{ 'recurring_calendar_view'|_ }}</h4> | ||||
|                 </div> | ||||
|                 <div class="modal-body"> | ||||
|                     <div id="recurring_calendar" style="max-width: 400px;margin: 0 auto;"> | ||||
|  | ||||
|                     </div> | ||||
|  | ||||
|                 </div> | ||||
|  | ||||
|             </div> | ||||
|             <div class="modal-footer"> | ||||
|                 <button type="button" class="btn btn-default" data-dismiss="modal">Close</button> | ||||
|                 <div class="modal-footer"> | ||||
|                     <button type="button" class="btn btn-default" data-dismiss="modal">Close</button> | ||||
|                 </div> | ||||
|             </div> | ||||
|         </div> | ||||
|     </div> | ||||
|     </div> | ||||
| {% endblock %} | ||||
| {% block scripts %} | ||||
|     <script type="text/javascript" src="v1/js/lib/modernizr-custom.js?v={{ FF_VERSION }}" nonce="{{ JS_NONCE }}"></script> | ||||
|     <script type="text/javascript" src="v1/js/lib/typeahead/typeahead.bundle.min.js?v={{ FF_VERSION }}" nonce="{{ JS_NONCE }}"></script> | ||||
|     <script type="text/javascript" src="v1/js/ff/common/autocomplete.js?v={{ FF_VERSION }}" nonce="{{ JS_NONCE }}"></script> | ||||
|     <script type="text/javascript" src="v1/js/lib/bootstrap-tagsinput.min.js?v={{ FF_VERSION }}" nonce="{{ JS_NONCE }}"></script> | ||||
|     <script type="text/javascript" src="v1/js/lib/modernizr-custom.js?v={{ FF_VERSION }}" | ||||
|             nonce="{{ JS_NONCE }}"></script> | ||||
|     <script type="text/javascript" src="v1/js/lib/typeahead/typeahead.bundle.min.js?v={{ FF_VERSION }}" | ||||
|             nonce="{{ JS_NONCE }}"></script> | ||||
|     <script type="text/javascript" src="v1/js/ff/common/autocomplete.js?v={{ FF_VERSION }}" | ||||
|             nonce="{{ JS_NONCE }}"></script> | ||||
|     <script type="text/javascript" src="v1/js/lib/bootstrap-tagsinput.min.js?v={{ FF_VERSION }}" | ||||
|             nonce="{{ JS_NONCE }}"></script> | ||||
|     <script type="text/javascript" src="v1/js/lib/jquery-ui.min.js?v={{ FF_VERSION }}" nonce="{{ JS_NONCE }}"></script> | ||||
|     <script type="text/javascript" src="v1/lib/fc/fullcalendar.min.js?v={{ FF_VERSION }}" nonce="{{ JS_NONCE }}"></script> | ||||
|     <script type="text/javascript" src="v1/lib/fc/fullcalendar.min.js?v={{ FF_VERSION }}" | ||||
|             nonce="{{ JS_NONCE }}"></script> | ||||
|     <script type="text/javascript" nonce="{{ JS_NONCE }}"> | ||||
|         var transactionType = "{{ preFilled.transaction_type }}"; | ||||
|         var suggestUrl = "{{ route('recurring.suggest') }}"; | ||||
|         var eventsUrl = "{{ route('recurring.events') }}"; | ||||
|         var oldRepetitionType= "{{ oldRepetitionType }}"; | ||||
|         var oldRepetitionType = "{{ oldRepetitionType }}"; | ||||
|     </script> | ||||
|     <script type="text/javascript" src="v1/js/ff/recurring/create.js?v={{ FF_VERSION }}" nonce="{{ JS_NONCE }}"></script> | ||||
|     <script type="text/javascript" src="v1/js/ff/recurring/create.js?v={{ FF_VERSION }}" | ||||
|             nonce="{{ JS_NONCE }}"></script> | ||||
| {% endblock %} | ||||
|  | ||||
| {% block styles %} | ||||
|     <link href="v1/css/bootstrap-tagsinput.css?v={{ FF_VERSION }}" type="text/css" rel="stylesheet"  media="all" nonce="{{ JS_NONCE }}"> | ||||
|     <link href="v1/css/jquery-ui/jquery-ui.structure.min.css?v={{ FF_VERSION }}" type="text/css" rel="stylesheet"  media="all" nonce="{{ JS_NONCE }}"> | ||||
|     <link href="v1/css/jquery-ui/jquery-ui.theme.min.css?v={{ FF_VERSION }}" type="text/css" rel="stylesheet"  media="all" nonce="{{ JS_NONCE }}"> | ||||
|     <link href="v1/lib/fc/fullcalendar.min.css?v={{ FF_VERSION }}" type="text/css" rel="stylesheet"  media="all" nonce="{{ JS_NONCE }}"> | ||||
|     <link href="v1/css/bootstrap-tagsinput.css?v={{ FF_VERSION }}" type="text/css" rel="stylesheet" media="all" | ||||
|           nonce="{{ JS_NONCE }}"> | ||||
|     <link href="v1/css/jquery-ui/jquery-ui.structure.min.css?v={{ FF_VERSION }}" type="text/css" rel="stylesheet" | ||||
|           media="all" nonce="{{ JS_NONCE }}"> | ||||
|     <link href="v1/css/jquery-ui/jquery-ui.theme.min.css?v={{ FF_VERSION }}" type="text/css" rel="stylesheet" | ||||
|           media="all" nonce="{{ JS_NONCE }}"> | ||||
|     <link href="v1/lib/fc/fullcalendar.min.css?v={{ FF_VERSION }}" type="text/css" rel="stylesheet" media="all" | ||||
|           nonce="{{ JS_NONCE }}"> | ||||
| {% endblock %} | ||||
|   | ||||
| @@ -23,11 +23,11 @@ | ||||
|                         {{ ExpandedForm.text('title') }} | ||||
|                         {{ ExpandedForm.date('first_date',array.first_date, {helpText: trans('firefly.help_first_date_no_past')}) }} | ||||
|                         {{ ExpandedForm.select('repetition_type', [], null, {helpText: trans('firefly.change_date_other_options')}) }} | ||||
|                         {{ ExpandedForm.number('skip', array.repetitions[0].skip) }} | ||||
|                         {{ ExpandedForm.integer('skip', array.repetitions[0].skip) }} | ||||
|                         {{ ExpandedForm.select('weekend', weekendResponses, array.repetitions[0].weekend, {helpText: trans('firefly.help_weekend')}) }} | ||||
|                         {{ ExpandedForm.select('repetition_end', repetitionEnds, repetitionEnd) }} | ||||
|                         {{ ExpandedForm.date('repeat_until',array.repeat_until) }} | ||||
|                         {{ ExpandedForm.number('repetitions', array.nr_of_repetitions) }} | ||||
|                         {{ ExpandedForm.integer('repetitions', array.nr_of_repetitions) }} | ||||
|  | ||||
|                         {# calendar in popup #} | ||||
|                         <div class="form-group" id="calendar_holder"> | ||||
|   | ||||
| @@ -61,14 +61,12 @@ | ||||
|     </form> | ||||
| {% endblock %} | ||||
| {% block scripts %} | ||||
|     <script src="v1/lib/leaflet/leaflet.js?v={{ FF_VERSION }}" nonce="{{ JS_NONCE }}"></script> | ||||
|     <script type="text/javascript" src="v1/js/lib/modernizr-custom.js?v={{ FF_VERSION }}" | ||||
|             nonce="{{ JS_NONCE }}"></script> | ||||
|     <script type="text/javascript" src="v1/js/lib/jquery-ui.min.js?v={{ FF_VERSION }}" nonce="{{ JS_NONCE }}"></script> | ||||
|     <script src="v1/js/ff/tags/create-edit.js?v={{ FF_VERSION }}" nonce="{{ JS_NONCE }}"></script> | ||||
| {% endblock %} | ||||
| {% block styles %} | ||||
|     <link rel="stylesheet" href="v1/lib/leaflet/leaflet.css?v={{ FF_VERSION }}"/> | ||||
|     <link href="v1/css/jquery-ui/jquery-ui.structure.min.css?v={{ FF_VERSION }}" type="text/css" rel="stylesheet" | ||||
|           media="all" nonce="{{ JS_NONCE }}"> | ||||
|     <link href="v1/css/jquery-ui/jquery-ui.theme.min.css?v={{ FF_VERSION }}" type="text/css" rel="stylesheet" | ||||
|   | ||||
| @@ -67,14 +67,12 @@ | ||||
|  | ||||
| {% endblock %} | ||||
| {% block scripts %} | ||||
|     <script src="v1/lib/leaflet/leaflet.js?v={{ FF_VERSION }}" nonce="{{ JS_NONCE }}"></script> | ||||
|     <script type="text/javascript" src="v1/js/lib/modernizr-custom.js?v={{ FF_VERSION }}" | ||||
|             nonce="{{ JS_NONCE }}"></script> | ||||
|     <script type="text/javascript" src="v1/js/lib/jquery-ui.min.js?v={{ FF_VERSION }}" nonce="{{ JS_NONCE }}"></script> | ||||
|     <script src="v1/js/ff/tags/create-edit.js?v={{ FF_VERSION }}" nonce="{{ JS_NONCE }}"></script> | ||||
| {% endblock %} | ||||
| {% block styles %} | ||||
|     <link rel="stylesheet" href="v1/lib/leaflet/leaflet.css?v={{ FF_VERSION }}"/> | ||||
|     <link href="v1/css/jquery-ui/jquery-ui.structure.min.css?v={{ FF_VERSION }}" type="text/css" rel="stylesheet" | ||||
|           media="all" nonce="{{ JS_NONCE }}"> | ||||
|     <link href="v1/css/jquery-ui/jquery-ui.theme.min.css?v={{ FF_VERSION }}" type="text/css" rel="stylesheet" | ||||
|   | ||||
| @@ -297,9 +297,6 @@ | ||||
|         var latitude = {{ location.latitude|default("52.3167") }}; | ||||
|         var longitude = {{ location.longitude|default("5.5500") }}; | ||||
|         var zoomLevel = {{ location.zoom_level|default("6") }}; | ||||
|         var doPlaceMarker = true; | ||||
|         // token for Mapbox: | ||||
|         var mapboxToken = "{{ config('firefly.mapbox_api_key') }}"; | ||||
|         {% endif %} | ||||
|     </script> | ||||
|     <script src="v1/lib/leaflet/leaflet.js?v={{ FF_VERSION }}" nonce="{{ JS_NONCE }}"></script> | ||||
|   | ||||
| @@ -5,7 +5,8 @@ | ||||
| {% endblock %} | ||||
|  | ||||
| {% block content %} | ||||
|     <form method="POST" action="{{ route('transactions.convert.index.post', [destinationType.type|lower, group.id]) }}" accept-charset="UTF-8" | ||||
|     <form method="POST" action="{{ route('transactions.convert.index.post', [destinationType.type|lower, group.id]) }}" | ||||
|           accept-charset="UTF-8" | ||||
|           class="form-horizontal" | ||||
|           enctype="multipart/form-data"> | ||||
|         <input name="_token" type="hidden" value="{{ csrf_token() }}"> | ||||
| @@ -35,7 +36,7 @@ | ||||
|                                 {{ trans_choice('firefly.convert_select_destinations', groupArray.transactions|length) }} | ||||
|                             {% endif %} | ||||
|  | ||||
|                             {# FOUR: DEPOSIT TO TRANSFER#} | ||||
|                             {# FOUR: DEPOSIT TO TRANSFER #} | ||||
|                             {% if sourceType.type == 'Deposit' and destinationType.type == 'Transfer' %} | ||||
|                                 {{ trans_choice('firefly.convert_expl_d_t', groupArray.transactions|length) }} | ||||
|                                 {{ trans_choice('firefly.convert_select_sources', groupArray.transactions|length) }} | ||||
| @@ -71,7 +72,7 @@ | ||||
|                                         {% if sourceType.type == 'Withdrawal' and destinationType.type == 'Deposit' %} | ||||
|                                             {# NEW DESTINATION = Asset, SOURCE MUST BE [Revenue, Cash, Loan, Debt, Mortgage] #} | ||||
|                                             {% if transaction.source_type == 'Asset account' %} | ||||
|                                                 {{ Form.select('source_id['~transaction.transaction_journal_id~']', validDepositSources, null, {class: 'form-control'}) }} | ||||
|                                                 {{ Html.select('source_id['~transaction.transaction_journal_id~']', validDepositSources).class('form-control') }} | ||||
|                                             {% endif %} | ||||
|  | ||||
|                                             {# NEW DESTINATION = [Loan, Debt, Mortgage], SOURCE MUST BE [Revenue] #} | ||||
| @@ -96,7 +97,9 @@ | ||||
|                                             <a href="{{ route('accounts.show', [transaction.source_id]) }}" | ||||
|                                                title="{{ transaction.source_iban|default(transaction.source_name) }}">{{ transaction.source_name }}</a> | ||||
|                                             {# hide source in hidden input #} | ||||
|                                             <input type="hidden" name="source_id[{{ transaction.transaction_journal_id }}]" value="{{ transaction.source_id }}"> | ||||
|                                             <input type="hidden" | ||||
|                                                    name="source_id[{{ transaction.transaction_journal_id }}]" | ||||
|                                                    value="{{ transaction.source_id }}"> | ||||
|                                         {% endif %} | ||||
|  | ||||
|                                         {# THREE: DEPOSIT TO WITHDRAWAL #} | ||||
| @@ -105,22 +108,24 @@ | ||||
|                                                title="{{ transaction.destination_iban|default(transaction.destination_name) }}">{{ transaction.destination_name }}</a> | ||||
|  | ||||
|                                             {# hide new source in hidden input #} | ||||
|                                             <input type="hidden" name="source_id[{{ transaction.transaction_journal_id }}]" value="{{ transaction.destination_id }}"> | ||||
|                                             <input type="hidden" | ||||
|                                                    name="source_id[{{ transaction.transaction_journal_id }}]" | ||||
|                                                    value="{{ transaction.destination_id }}"> | ||||
|                                         {% endif %} | ||||
|  | ||||
|                                         {# FOUR: DEPOSIT TO TRANSFER#} | ||||
|                                         {# FOUR: DEPOSIT TO TRANSFER #} | ||||
|                                         {% if sourceType.type == 'Deposit' and destinationType.type == 'Transfer' %} | ||||
|                                             {# if new destination is asset, then asset#} | ||||
|                                             {# if new destination is asset, then asset #} | ||||
|                                             {% if transaction.destination_type == 'Asset account' %} | ||||
|                                                 {{ Form.select('source_id['~transaction.transaction_journal_id~']', assets,null, {class: 'form-control'}) }} | ||||
|                                                 {{ Html.select('source_id['~transaction.transaction_journal_id~']', assets).class('form-control') }} | ||||
|                                             {% endif %} | ||||
|                                             {% if transaction.destination_type == 'Loan' or | ||||
|                                                 transaction.destination_type == 'Debt' or | ||||
|                                                 transaction.destination_type == 'Mortgage' %} | ||||
|                                                 {{ Form.select('source_id['~transaction.transaction_journal_id~']', liabilities,null, {class: 'form-control'}) }} | ||||
|                                                 {{ Html.select('source_id['~transaction.transaction_journal_id~']', liabilities).class('form-control') }} | ||||
|                                             {% endif %} | ||||
|  | ||||
|                                             {# if new destination liability, then liability.#} | ||||
|                                             {# if new destination liability, then liability. #} | ||||
|  | ||||
|                                         {% endif %} | ||||
|  | ||||
| @@ -130,7 +135,9 @@ | ||||
|                                                title="{{ transaction.source_iban|default(transaction.source_name) }}">{{ transaction.source_name }}</a> | ||||
|  | ||||
|                                             {# hide source in hidden input #} | ||||
|                                             <input type="hidden" name="source_id[{{ transaction.transaction_journal_id }}]" value="{{ transaction.source_id }}"> | ||||
|                                             <input type="hidden" | ||||
|                                                    name="source_id[{{ transaction.transaction_journal_id }}]" | ||||
|                                                    value="{{ transaction.source_id }}"> | ||||
|                                         {% endif %} | ||||
|  | ||||
|                                         {# SIX: TRANSFER TO DEPOSIT #} | ||||
| @@ -138,7 +145,7 @@ | ||||
|                                             {# NEW DESTINATION = Asset, SOURCE MUST BE [Revenue, Cash, Loan, Debt, Mortgage] #} | ||||
|                                             {% if | ||||
|                                                 transaction.source_type == 'Asset account' %} | ||||
|                                                 {{ Form.select('source_id['~transaction.transaction_journal_id~']', validDepositSources, null, {class: 'form-control'}) }} | ||||
|                                                 {{ Html.select('source_id['~transaction.transaction_journal_id~']', validDepositSources).class('form-control') }} | ||||
|                                             {% endif %} | ||||
|                                             {# NEW DESTINATION = [Debt, Mortgage, Load], SOURCE MUST BE [Revenue] #} | ||||
|                                             {% if | ||||
| @@ -165,22 +172,24 @@ | ||||
|                                                title="{{ transaction.source_iban|default(transaction.source_name) }}">{{ transaction.source_name }}</a> | ||||
|  | ||||
|                                             {# hide destination in hidden input #} | ||||
|                                             <input type="hidden" name="destination_id[{{ transaction.transaction_journal_id }}]" value="{{ transaction.source_id }}"> | ||||
|                                             <input type="hidden" | ||||
|                                                    name="destination_id[{{ transaction.transaction_journal_id }}]" | ||||
|                                                    value="{{ transaction.source_id }}"> | ||||
|                                         {% endif %} | ||||
|  | ||||
|                                         {# TWO: WITHDRAWAL TO TRANSFER #} | ||||
|                                         {% if sourceType.type == 'Withdrawal' and destinationType.type == 'Transfer' %} | ||||
|                                             {#if the source is a liability, destination must also be a liability.#} | ||||
|                                             {# if the source is a liability, destination must also be a liability. #} | ||||
|                                             {% if | ||||
|                                                 transaction.source_type == 'Loan' or | ||||
|                                                 transaction.source_type == 'Debt' or | ||||
|                                                 transaction.source_type == 'Mortgage' %} | ||||
|                                                 {{ Form.select('destination_id['~transaction.transaction_journal_id~']', liabilities, null, {class: 'form-control'}) }} | ||||
|                                                 {{ Html.select('destination_id['~transaction.transaction_journal_id~']', liabilities).class('form-control') }} | ||||
|                                             {% endif %} | ||||
|  | ||||
|                                             {# if the source is an asset, destination can only be an asset. #} | ||||
|                                             {% if transaction.source_type == 'Asset account' %} | ||||
|                                                 {{ Form.select('destination_id['~transaction.transaction_journal_id~']', assets, null, {class: 'form-control'}) }} | ||||
|                                                 {{ Html.select('destination_id['~transaction.transaction_journal_id~']', assets).class('form-control') }} | ||||
|                                             {% endif %} | ||||
|                                         {% endif %} | ||||
|  | ||||
| @@ -189,7 +198,7 @@ | ||||
|  | ||||
|                                             {# if new source is Asset, destination must be [Expense, Loan, Debt or Mortgage] #} | ||||
|                                             {% if transaction.destination_type == 'Asset account' %} | ||||
|                                                 {{ Form.select('destination_id['~transaction.transaction_journal_id~']', validWithdrawalDests, null, {class: 'form-control'}) }} | ||||
|                                                 {{ Html.select('destination_id['~transaction.transaction_journal_id~']', validWithdrawalDests).class('form-control') }} | ||||
|                                             {% endif %} | ||||
|                                             {% if transaction.destination_type == 'Loan' or | ||||
|                                                 transaction.destination_type == 'Debt' or | ||||
| @@ -207,20 +216,22 @@ | ||||
|                                             {% endif %} | ||||
|                                         {% endif %} | ||||
|  | ||||
|                                         {# FOUR: DEPOSIT TO TRANSFER#} | ||||
|                                         {# FOUR: DEPOSIT TO TRANSFER #} | ||||
|                                         {% if sourceType.type == 'Deposit' and destinationType.type == 'Transfer' %} | ||||
|                                             <a href="{{ route('accounts.show', [transaction.destination_id]) }}" | ||||
|                                                title="{{ transaction.destination_iban|default(transaction.destination_name) }}">{{ transaction.destination_name }}</a> | ||||
|  | ||||
|                                             {# hide destination in hidden input #} | ||||
|                                             <input type="hidden" name="destination_id[{{ transaction.transaction_journal_id }}]" value="{{ transaction.destination_id }}"> | ||||
|                                             <input type="hidden" | ||||
|                                                    name="destination_id[{{ transaction.transaction_journal_id }}]" | ||||
|                                                    value="{{ transaction.destination_id }}"> | ||||
|                                         {% endif %} | ||||
|  | ||||
|                                         {# FIVE: TRANSFER TO WITHDRAWAL #} | ||||
|                                         {% if sourceType.type == 'Transfer' and destinationType.type == 'Withdrawal' %} | ||||
|  | ||||
|                                             {% if transaction.source_type == 'Asset account' %} | ||||
|                                                 {{ Form.select('destination_id['~transaction.transaction_journal_id~']', validWithdrawalDests, null, {class: 'form-control'}) }} | ||||
|                                                 {{ Html.select('destination_id['~transaction.transaction_journal_id~']', validWithdrawalDests).class('form-control') }} | ||||
|                                             {% endif %} | ||||
|                                             {% if transaction.source_type == 'Loan' or | ||||
|                                                 transaction.source_type == 'Debt' or | ||||
| @@ -242,7 +253,9 @@ | ||||
|                                                title="{{ transaction.destination_iban|default(transaction.destination_name) }}">{{ transaction.destination_name }}</a> | ||||
|  | ||||
|                                             {# hide destination in hidden input #} | ||||
|                                             <input type="hidden" name="destination_id[{{ transaction.transaction_journal_id }}]" value="{{ transaction.destination_id }}"> | ||||
|                                             <input type="hidden" | ||||
|                                                    name="destination_id[{{ transaction.transaction_journal_id }}]" | ||||
|                                                    value="{{ transaction.destination_id }}"> | ||||
|                                         {% endif %} | ||||
|                                     </td> | ||||
|                                     <td> | ||||
| @@ -280,6 +293,8 @@ | ||||
|  | ||||
| {% endblock %} | ||||
| {% block scripts %} | ||||
|     <script type="text/javascript" src="v1/js/lib/typeahead/typeahead.bundle.min.js?v={{ FF_VERSION }}" nonce="{{ JS_NONCE }}"></script> | ||||
|     <script type="text/javascript" src="v1/js/ff/transactions/convert.js?v={{ FF_VERSION }}" nonce="{{ JS_NONCE }}"></script> | ||||
|     <script type="text/javascript" src="v1/js/lib/typeahead/typeahead.bundle.min.js?v={{ FF_VERSION }}" | ||||
|             nonce="{{ JS_NONCE }}"></script> | ||||
|     <script type="text/javascript" src="v1/js/ff/transactions/convert.js?v={{ FF_VERSION }}" | ||||
|             nonce="{{ JS_NONCE }}"></script> | ||||
| {% endblock %} | ||||
|   | ||||
		Reference in New Issue
	
	Block a user