Blame view

resources/views/banking/transfers/create.blade.php 4.48 KB
b7c7a5f6   Alexey Boroda   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
  @extends('layouts.admin')
  
  @section('title', trans('general.title.new', ['type' => trans_choice('general.transfers', 1)]))
  
  @section('content')
      <!-- Default box -->
      <div class="box box-success">
          {!! Form::open(['url' => 'banking/transfers', 'role' => 'form']) !!}
  
          <div class="box-body">
              {{ Form::selectGroup('from_account_id', trans('transfers.from_account'), 'university', $accounts) }}
  
              {{ Form::selectGroup('to_account_id', trans('transfers.to_account'), 'university', $accounts) }}
  
              {{ Form::textGroup('amount', trans('general.amount'), 'money') }}
  
              {{ Form::textGroup('transferred_at', trans('general.date'), 'calendar',['id' => 'transferred_at', 'required' => 'required', 'data-inputmask' => '\'alias\': \'yyyy-mm-dd\'', 'data-mask' => '', 'autocomplete' => 'off'], Date::now()->toDateString()) }}
  
              {{ Form::textareaGroup('description', trans('general.description')) }}
  
              {{ Form::selectGroup('payment_method', trans_choice('general.payment_methods', 1), 'credit-card', $payment_methods, setting('general.default_payment_method')) }}
  
              {{ Form::textGroup('reference', trans('general.reference'), 'file-text-o', []) }}
  
              {!! Form::hidden('currency_code', null, ['id' => 'currency_code']) !!}
              {!! Form::hidden('currency_rate', null, ['id' => 'currency_rate']) !!}
          </div>
          <!-- /.box-body -->
  
          <div class="box-footer">
              {{ Form::saveButtons('banking/transfers') }}
          </div>
          <!-- /.box-footer -->
  
          {!! Form::close() !!}
      </div>
  @endsection
  
  @push('js')
      <script src="{{ asset('vendor/almasaeed2010/adminlte/plugins/datepicker/bootstrap-datepicker.js') }}"></script>
      <script src="{{ asset('vendor/almasaeed2010/adminlte/plugins/datepicker/locales/bootstrap-datepicker.' . language()->getShortCode() . '.js') }}"></script>
  @endpush
  
  @push('css')
      <link rel="stylesheet" href="{{ asset('vendor/almasaeed2010/adminlte/plugins/datepicker/datepicker3.css') }}">
  @endpush
  
  @push('scripts')
      <script type="text/javascript">
          $(document).ready(function(){
              $("#amount").maskMoney({
                  thousands : '{{ $currency->thousands_separator }}',
                  decimal : '{{ $currency->decimal_mark }}',
                  precision : {{ $currency->precision }},
                  allowZero : true,
                  @if($currency->symbol_first)
                  prefix : '{{ $currency->symbol }}'
                  @else
                  suffix : '{{ $currency->symbol }}'
                  @endif
              });
  
              $("#amount").focusout();
  
              //Date picker
              $('#transferred_at').datepicker({
                  format: 'yyyy-mm-dd',
                  weekStart: 1,
                  autoclose: true,
                  language: '{{ language()->getShortCode() }}'
              });
  
              $("#from_account_id").select2({
                  placeholder: "{{ trans('general.form.select.field', ['field' => trans_choice('general.accounts', 1)]) }}"
              });
  
              $("#to_account_id").select2({
                  placeholder: "{{ trans('general.form.select.field', ['field' => trans_choice('general.accounts', 1)]) }}"
              });
  
              $("#payment_method").select2({
                  placeholder: "{{ trans_choice('general.payment_methods', 1) }}"
              });
          });
  
          $(document).on('change', '#from_account_id', function (e) {
              $.ajax({
                  url: '{{ url("banking/accounts/currency") }}',
                  type: 'GET',
                  dataType: 'JSON',
                  data: 'account_id=' + $(this).val(),
                  success: function(data) {
                      $('#currency').val(data.currency_code);
  
                      $('#currency_code').val(data.currency_code);
                      $('#currency_rate').val(data.currency_rate);
  
                      amount = $('#amount').maskMoney('unmasked')[0];
  
                      $("#amount").maskMoney({
                          thousands : data.thousands_separator,
                          decimal : data.decimal_mark,
                          precision : data.precision,
                          allowZero : true,
                          prefix : (data.symbol_first) ? data.symbol : '',
                          suffix : (data.symbol_first) ? '' : data.symbol
                      });
  
                      $('#amount').val(amount);
  
                      $('#amount').trigger('focus');
                  }
              });
          });
      </script>
  @endpush