first commit
This commit is contained in:
		
							
								
								
									
										265
									
								
								resources/views/incomes/invoices/create.blade.php
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										265
									
								
								resources/views/incomes/invoices/create.blade.php
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,265 @@
 | 
			
		||||
@extends('layouts.admin')
 | 
			
		||||
 | 
			
		||||
@section('title', trans('general.title.new', ['type' => trans_choice('general.invoices', 1)]))
 | 
			
		||||
 | 
			
		||||
@section('content')
 | 
			
		||||
<!-- Default box -->
 | 
			
		||||
<div class="box box-success">
 | 
			
		||||
    {!! Form::open(['url' => 'incomes/invoices', 'files' => true, 'role' => 'form']) !!}
 | 
			
		||||
 | 
			
		||||
    <div class="box-body">
 | 
			
		||||
        {{ Form::selectGroup('customer_id', trans_choice('general.customers', 1), 'user', $customers) }}
 | 
			
		||||
 | 
			
		||||
        {{ Form::selectGroup('currency_code', trans_choice('general.currencies', 1), 'exchange', $currencies, setting('general.default_currency')) }}
 | 
			
		||||
 | 
			
		||||
        {{ Form::textGroup('invoiced_at', trans('invoices.invoice_date'), 'calendar',['id' => 'invoiced_at', 'class' => 'form-control', 'required' => 'required', 'data-inputmask' => '\'alias\': \'yyyy/mm/dd\'', 'data-mask' => ''], Date::now()->toDateString()) }}
 | 
			
		||||
 | 
			
		||||
        {{ Form::textGroup('due_at', trans('invoices.due_date'), 'calendar',['id' => 'due_at', 'class' => 'form-control', 'required' => 'required', 'data-inputmask' => '\'alias\': \'yyyy/mm/dd\'', 'data-mask' => '']) }}
 | 
			
		||||
 | 
			
		||||
        {{ Form::textGroup('invoice_number', trans('invoices.invoice_number'), 'file-text-o') }}
 | 
			
		||||
 | 
			
		||||
        {{ Form::textGroup('order_number', trans('invoices.order_number'), 'shopping-cart',[]) }}
 | 
			
		||||
 | 
			
		||||
        <div class="form-group col-md-12">
 | 
			
		||||
            {!! Form::label('items', 'Items', ['class' => 'control-label']) !!}
 | 
			
		||||
            <div class="table-responsive">
 | 
			
		||||
                <table class="table table-bordered" id="items">
 | 
			
		||||
                    <thead>
 | 
			
		||||
                        <tr style="background-color: #f9f9f9;">
 | 
			
		||||
                            <th width="5%"  class="text-center">{{ trans('general.actions') }}</th>
 | 
			
		||||
                            <th width="40%" class="text-left">{{ trans('general.name') }}</th>
 | 
			
		||||
                            <th width="5%" class="text-center">{{ trans('invoices.quantity') }}</th>
 | 
			
		||||
                            <th width="10%" class="text-right">{{ trans('invoices.price') }}</th>
 | 
			
		||||
                            <th width="15%" class="text-right">{{ trans_choice('general.taxes', 1) }}</th>
 | 
			
		||||
                            <th width="10%" class="text-right">{{ trans('invoices.total') }}</th>
 | 
			
		||||
                        </tr>
 | 
			
		||||
                    </thead>
 | 
			
		||||
                    <tbody>
 | 
			
		||||
                        <?php $item_row = 0; ?>
 | 
			
		||||
                        <tr id="item-row-{{ $item_row }}">
 | 
			
		||||
                            <td class="text-center" style="vertical-align: middle;">
 | 
			
		||||
                                <button type="button" onclick="$(this).tooltip('destroy'); $('#item-row-{{ $item_row }}').remove(); totalItem();" data-toggle="tooltip" title="{{ trans('general.delete') }}" class="btn btn-xs btn-danger"><i class="fa fa-trash"></i></button>
 | 
			
		||||
                            </td>
 | 
			
		||||
                            <td>
 | 
			
		||||
                                <input class="form-control typeahead" required="required" placeholder="{{ trans('general.form.enter', ['field' => trans_choice('invoices.item_name', 1)]) }}" name="item[{{ $item_row }}][name]" type="text" id="item-name-{{ $item_row }}">
 | 
			
		||||
                                <input name="item[{{ $item_row }}][item_id]" type="hidden" id="item-id-{{ $item_row }}">
 | 
			
		||||
                            </td>
 | 
			
		||||
                            <td>
 | 
			
		||||
                                <input class="form-control text-center" required="required" name="item[{{ $item_row }}][quantity]" type="text" id="item-quantity-{{ $item_row }}">
 | 
			
		||||
                            </td>
 | 
			
		||||
                            <td>
 | 
			
		||||
                                <input class="form-control text-right" required="required" name="item[{{ $item_row }}][price]" type="text" id="item-price-{{ $item_row }}">
 | 
			
		||||
                            </td>
 | 
			
		||||
                            <td>
 | 
			
		||||
                                {!! Form::select('item[' . $item_row . '][tax]', $taxes, setting('general.default_tax'), ['id'=> 'item-tax-'. $item_row, 'class' => 'form-control select2', 'placeholder' => trans('general.form.select.field', ['field' => trans_choice('general.taxes', 1)])]) !!}
 | 
			
		||||
                            </td>
 | 
			
		||||
                            <td class="text-right" style="vertical-align: middle;">
 | 
			
		||||
                                <span id="item-total-{{ $item_row }}">0</span>
 | 
			
		||||
                            </td>
 | 
			
		||||
                        </tr>
 | 
			
		||||
                        <?php $item_row++; ?>
 | 
			
		||||
                        <tr id="addItem">
 | 
			
		||||
                            <td class="text-center"><button type="button" onclick="addItem();" data-toggle="tooltip" title="{{ trans('general.add') }}" class="btn btn-xs btn-primary" data-original-title="{{ trans('general.add') }}"><i class="fa fa-plus"></i></button></td>
 | 
			
		||||
                            <td class="text-right" colspan="5"></td>
 | 
			
		||||
                        </tr>
 | 
			
		||||
                        <tr>
 | 
			
		||||
                            <td class="text-right" colspan="5"><strong>{{ trans('invoices.sub_total') }}</strong></td>
 | 
			
		||||
                            <td class="text-right"><span id="sub-total">0</span></td>
 | 
			
		||||
                        </tr>
 | 
			
		||||
                        <tr>
 | 
			
		||||
                            <td class="text-right" colspan="5"><strong>{{ trans_choice('general.taxes', 1) }}</strong></td>
 | 
			
		||||
                            <td class="text-right"><span id="tax-total">0</span></td>
 | 
			
		||||
                        </tr>
 | 
			
		||||
                        <tr>
 | 
			
		||||
                            <td class="text-right" colspan="5"><strong>{{ trans('invoices.total') }}</strong></td>
 | 
			
		||||
                            <td class="text-right"><span id="grand-total">0</span></td>
 | 
			
		||||
                        </tr>
 | 
			
		||||
                    </tbody>
 | 
			
		||||
                </table>
 | 
			
		||||
            </div>
 | 
			
		||||
        </div>
 | 
			
		||||
        {{ Form::textareaGroup('label',trans_choice('general.notes', 2)) }}
 | 
			
		||||
 | 
			
		||||
        {{ Form::fileGroup('attachment', trans('general.attachment')) }}
 | 
			
		||||
    </div>
 | 
			
		||||
    <!-- /.box-body -->
 | 
			
		||||
 | 
			
		||||
    <div class="box-footer">
 | 
			
		||||
        {{ Form::saveButtons('incomes/invoices') }}
 | 
			
		||||
    </div>
 | 
			
		||||
    <!-- /.box-footer -->
 | 
			
		||||
 | 
			
		||||
    {!! Form::close() !!}
 | 
			
		||||
</div>
 | 
			
		||||
@endsection
 | 
			
		||||
 | 
			
		||||
@section('js')
 | 
			
		||||
    <script src="{{ asset('vendor/almasaeed2010/adminlte/plugins/datepicker/bootstrap-datepicker.js') }}"></script>
 | 
			
		||||
    <script src="{{ asset('public/js/bootstrap-fancyfile.js') }}"></script>
 | 
			
		||||
    <script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-3-typeahead/4.0.1/bootstrap3-typeahead.min.js"></script>
 | 
			
		||||
@endsection
 | 
			
		||||
 | 
			
		||||
@section('css')
 | 
			
		||||
    <link rel="stylesheet" href="{{ asset('vendor/almasaeed2010/adminlte/plugins/datepicker/datepicker3.css') }}">
 | 
			
		||||
    <link rel="stylesheet" href="{{ asset('public/css/bootstrap-fancyfile.css') }}">
 | 
			
		||||
@endsection
 | 
			
		||||
 | 
			
		||||
@section('scripts')
 | 
			
		||||
    <script type="text/javascript">
 | 
			
		||||
        var item_row = '{{ $item_row }}';
 | 
			
		||||
 | 
			
		||||
        function addItem() {
 | 
			
		||||
            html  = '<tr id="item-row-' + item_row + '">';
 | 
			
		||||
            html += '  <td class="text-center" style="vertical-align: middle;">';
 | 
			
		||||
            html += '      <button type="button" onclick="$(this).tooltip(\'destroy\'); $(\'#item-row-' + item_row + '\').remove(); totalItem();" data-toggle="tooltip" title="{{ trans('general.delete') }}" class="btn btn-xs btn-danger"><i class="fa fa-trash"></i></button>';
 | 
			
		||||
            html += '  </td>';
 | 
			
		||||
            html += '  <td>';
 | 
			
		||||
            html += '      <input class="form-control typeahead" required="required" placeholder="{{ trans('general.form.enter', ['field' => trans_choice('invoices.item_name', 1)]) }}" name="item[' + item_row + '][name]" type="text" id="item-name-' + item_row + '">';
 | 
			
		||||
            html += '      <input name="item[' + item_row + '][item_id]" type="hidden" id="item-id-' + item_row + '">';
 | 
			
		||||
            html += '  </td>';
 | 
			
		||||
            html += '  <td>';
 | 
			
		||||
            html += '      <input class="form-control text-center" required="required" name="item[' + item_row + '][quantity]" type="text" id="item-quantity-' + item_row + '">';
 | 
			
		||||
            html += '  </td>';
 | 
			
		||||
            html += '  <td>';
 | 
			
		||||
            html += '      <input class="form-control text-right" required="required" name="item[' + item_row + '][price]" type="text" id="item-price-' + item_row + '">';
 | 
			
		||||
            html += '  </td>';
 | 
			
		||||
            html += '  <td>';
 | 
			
		||||
            html += '      <select class="form-control select2" name="item[' + item_row + '][tax]" id="item-tax-' + item_row + '">';
 | 
			
		||||
            html += '         <option selected="selected" value="">{{ trans('general.form.select.field', ['field' => trans_choice('general.taxes', 1)]) }}</option>';
 | 
			
		||||
            @foreach($taxes as $tax_key => $tax_value)
 | 
			
		||||
            html += '         <option value="{{ $tax_key }}">{{ $tax_value }}</option>';
 | 
			
		||||
            @endforeach
 | 
			
		||||
            html += '      </select>';
 | 
			
		||||
            html += '  </td>';
 | 
			
		||||
            html += '  <td class="text-right" style="vertical-align: middle;">';
 | 
			
		||||
            html += '      <span id="item-total-' + item_row + '">0</span>';
 | 
			
		||||
            html += '  </td>';
 | 
			
		||||
 | 
			
		||||
            $('#items tbody #addItem').before(html);
 | 
			
		||||
            //$('[rel=tooltip]').tooltip();
 | 
			
		||||
 | 
			
		||||
            $('[data-toggle="tooltip"]').tooltip('hide');
 | 
			
		||||
 | 
			
		||||
            $('#item-row-' + item_row + ' .select2').select2({
 | 
			
		||||
                placeholder: "{{ trans('general.form.select.field', ['field' => trans_choice('general.taxes', 1)]) }}"
 | 
			
		||||
            });
 | 
			
		||||
 | 
			
		||||
            item_row++;
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        $(document).ready(function(){
 | 
			
		||||
            //Date picker
 | 
			
		||||
            $('#invoiced_at').datepicker({
 | 
			
		||||
                format: 'yyyy-mm-dd',
 | 
			
		||||
                autoclose: true
 | 
			
		||||
            });
 | 
			
		||||
 | 
			
		||||
            //Date picker
 | 
			
		||||
            $('#due_at').datepicker({
 | 
			
		||||
                format: 'yyyy-mm-dd',
 | 
			
		||||
                autoclose: true
 | 
			
		||||
            });
 | 
			
		||||
 | 
			
		||||
            $(".select2").select2({
 | 
			
		||||
                placeholder: "{{ trans('general.form.select.field', ['field' => trans_choice('general.taxes', 1)]) }}"
 | 
			
		||||
            });
 | 
			
		||||
 | 
			
		||||
            $("#customer_id").select2({
 | 
			
		||||
                placeholder: "{{ trans('general.form.select.field', ['field' => trans_choice('general.customers', 1)]) }}"
 | 
			
		||||
            });
 | 
			
		||||
 | 
			
		||||
            $("#currency_code").select2({
 | 
			
		||||
                placeholder: "{{ trans('general.form.select.field', ['field' => trans_choice('general.currencies', 1)]) }}"
 | 
			
		||||
            });
 | 
			
		||||
 | 
			
		||||
            $('#attachment').fancyfile({
 | 
			
		||||
                text  : '{{ trans('general.form.select.file') }}',
 | 
			
		||||
                style : 'btn-default',
 | 
			
		||||
                placeholder : '{{ trans('general.form.no_file_selected') }}'
 | 
			
		||||
            });
 | 
			
		||||
 | 
			
		||||
            var autocomplete_path = "{{ url('items/items/autocomplete') }}";
 | 
			
		||||
 | 
			
		||||
            $(document).on('click', '.form-control.typeahead', function() {
 | 
			
		||||
                input_id = $(this).attr('id').split('-');
 | 
			
		||||
 | 
			
		||||
                item_id = parseInt(input_id[input_id.length-1]);
 | 
			
		||||
 | 
			
		||||
                $(this).typeahead({
 | 
			
		||||
                    minLength: 3,
 | 
			
		||||
                    displayText:function (data) {
 | 
			
		||||
                        return data.name;
 | 
			
		||||
                    },
 | 
			
		||||
                    source: function (query, process) {
 | 
			
		||||
                        $.ajax({
 | 
			
		||||
                            url: autocomplete_path,
 | 
			
		||||
                            type: 'GET',
 | 
			
		||||
                            dataType: 'JSON',
 | 
			
		||||
                            data: 'query=' + query + '&type=invoice¤cy_code=' + $('#currency_code').val(),
 | 
			
		||||
                            success: function(data) {
 | 
			
		||||
                                return process(data);
 | 
			
		||||
                            }
 | 
			
		||||
                        });
 | 
			
		||||
                    },
 | 
			
		||||
                    afterSelect: function (data) {
 | 
			
		||||
                        $('#item-id-' + item_id).val(data.item_id);
 | 
			
		||||
                        $('#item-quantity-' + item_id).val('1');
 | 
			
		||||
                        $('#item-price-' + item_id).val(data.sale_price);
 | 
			
		||||
                        $('#item-tax-' + item_id).val(data.tax_id);
 | 
			
		||||
 | 
			
		||||
                        // This event Select2 Stylesheet
 | 
			
		||||
                        $('#item-tax-' + item_id).trigger('change');
 | 
			
		||||
 | 
			
		||||
                        $('#item-total-' + item_id).html(data.total);
 | 
			
		||||
 | 
			
		||||
                        totalItem();
 | 
			
		||||
                    }
 | 
			
		||||
                });
 | 
			
		||||
            });
 | 
			
		||||
 | 
			
		||||
            $(document).on('change', '#currency_code, #items tbody select', function(){
 | 
			
		||||
                totalItem();
 | 
			
		||||
            });
 | 
			
		||||
 | 
			
		||||
            $(document).on('keyup', '#items tbody .form-control', function(){
 | 
			
		||||
                totalItem();
 | 
			
		||||
            });
 | 
			
		||||
 | 
			
		||||
            $(document).on('change', '#customer_id', function (e) {
 | 
			
		||||
                $.ajax({
 | 
			
		||||
                    url: '{{ url("incomes/customers/currency") }}',
 | 
			
		||||
                    type: 'GET',
 | 
			
		||||
                    dataType: 'JSON',
 | 
			
		||||
                    data: 'customer_id=' + $(this).val(),
 | 
			
		||||
                    success: function(data) {
 | 
			
		||||
                        $('#currency_code').val(data.currency_code);
 | 
			
		||||
 | 
			
		||||
                        // This event Select2 Stylesheet
 | 
			
		||||
                        $('#currency_code').trigger('change');
 | 
			
		||||
                    }
 | 
			
		||||
                });
 | 
			
		||||
            });
 | 
			
		||||
        });
 | 
			
		||||
 | 
			
		||||
        function totalItem() {
 | 
			
		||||
            $.ajax({
 | 
			
		||||
                url: '{{ url("items/items/totalItem") }}',
 | 
			
		||||
                type: 'POST',
 | 
			
		||||
                dataType: 'JSON',
 | 
			
		||||
                data: $('#currency_code, #items input[type=\'text\'],#items input[type=\'hidden\'], #items textarea, #items select'),
 | 
			
		||||
                headers: { 'X-CSRF-TOKEN': '{{ csrf_token() }}' },
 | 
			
		||||
                success: function(data) {
 | 
			
		||||
                    if (data) {
 | 
			
		||||
                        $.each( data.items, function( key, value ) {
 | 
			
		||||
                            $('#item-total-' + key).html(value);
 | 
			
		||||
                        });
 | 
			
		||||
 | 
			
		||||
                        $('#sub-total').html(data.sub_total);
 | 
			
		||||
                        $('#tax-total').html(data.tax_total);
 | 
			
		||||
                        $('#grand-total').html(data.grand_total);
 | 
			
		||||
                    }
 | 
			
		||||
                }
 | 
			
		||||
            });
 | 
			
		||||
        }
 | 
			
		||||
    </script>
 | 
			
		||||
@endsection
 | 
			
		||||
							
								
								
									
										293
									
								
								resources/views/incomes/invoices/edit.blade.php
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										293
									
								
								resources/views/incomes/invoices/edit.blade.php
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,293 @@
 | 
			
		||||
@extends('layouts.admin')
 | 
			
		||||
 | 
			
		||||
@section('title', trans('general.title.edit', ['type' => trans_choice('general.invoices', 1)]))
 | 
			
		||||
 | 
			
		||||
@section('content')
 | 
			
		||||
    <!-- Default box -->
 | 
			
		||||
    <div class="box box-success">
 | 
			
		||||
        {!! Form::model($invoice, ['method' => 'PATCH', 'files' => true, 'url' => ['incomes/invoices', $invoice->id], 'role' => 'form']) !!}
 | 
			
		||||
 | 
			
		||||
        <div class="box-body">
 | 
			
		||||
            {{ Form::selectGroup('customer_id', trans_choice('general.customers', 1), 'user', $customers, config('general.customers')) }}
 | 
			
		||||
 | 
			
		||||
            {{ Form::selectGroup('currency_code', trans_choice('general.currencies', 1), 'exchange', $currencies) }}
 | 
			
		||||
 | 
			
		||||
            {{ Form::textGroup('invoiced_at', trans('invoices.invoice_date'), 'calendar',['id' => 'invoiced_at', 'class' => 'form-control', 'required' => 'required', 'data-inputmask' => '\'alias\': \'yyyy/mm/dd\'', 'data-mask' => ''], Date::now()->toDateString()) }}
 | 
			
		||||
 | 
			
		||||
            {{ Form::textGroup('due_at', trans('invoices.due_date'), 'calendar',['id' => 'due_at', 'class' => 'form-control', 'required' => 'required', 'data-inputmask' => '\'alias\': \'yyyy/mm/dd\'', 'data-mask' => '']) }}
 | 
			
		||||
 | 
			
		||||
            {{ Form::textGroup('invoice_number', trans('invoices.invoice_number'), 'file-text-o') }}
 | 
			
		||||
 | 
			
		||||
            {{ Form::textGroup('order_number', trans('invoices.order_number'), 'shopping-cart',[]) }}
 | 
			
		||||
            <div class="form-group col-md-12">
 | 
			
		||||
                {!! Form::label('items', 'Items', ['class' => 'control-label']) !!}
 | 
			
		||||
                <div class="table-responsive">
 | 
			
		||||
                    <table class="table table-bordered" id="items">
 | 
			
		||||
                        <thead>
 | 
			
		||||
                            <tr style="background-color: #f9f9f9;">
 | 
			
		||||
                                <th width="5%"  class="text-center">{{ trans('general.actions') }}</th>
 | 
			
		||||
                                <th width="40%" class="text-left">{{ trans('general.name') }}</th>
 | 
			
		||||
                                <th width="5%" class="text-center">{{ trans('invoices.quantity') }}</th>
 | 
			
		||||
                                <th width="10%" class="text-right">{{ trans('invoices.price') }}</th>
 | 
			
		||||
                                <th width="15%" class="text-right">{{ trans_choice('general.taxes', 1) }}</th>
 | 
			
		||||
                                <th width="10%" class="text-right">{{ trans('invoices.total') }}</th>
 | 
			
		||||
                            </tr>
 | 
			
		||||
                        </thead>
 | 
			
		||||
                        <tbody>
 | 
			
		||||
                        <?php $item_row = 0; ?>
 | 
			
		||||
                        @foreach($invoice->items as $item)
 | 
			
		||||
                            <tr id="item-row-{{ $item_row }}">
 | 
			
		||||
                                <td class="text-center" style="vertical-align: middle;">
 | 
			
		||||
                                    <button type="button" onclick="$(this).tooltip('destroy'); $('#item-row-{{ $item_row }}').remove(); totalItem();" data-toggle="tooltip" title="{{ trans('general.delete') }}" class="btn btn-xs btn-danger"><i class="fa fa-trash"></i></button>
 | 
			
		||||
                                </td>
 | 
			
		||||
                                <td>
 | 
			
		||||
                                    <input value="{{ $item->name }}" class="form-control typeahead" required="required" placeholder="{{ trans('general.form.enter', ['field' => trans_choice('invoices.item_name', 1)]) }}" name="item[{{ $item_row }}][name]" type="text" id="item-name-{{ $item_row }}">
 | 
			
		||||
                                    <input value="{{ $item->item_id }}" name="item[{{ $item_row }}][item_id]" type="hidden" id="item-id-{{ $item_row }}">
 | 
			
		||||
                                </td>
 | 
			
		||||
                                <td>
 | 
			
		||||
                                    <input value="{{ $item->quantity }}" class="form-control text-center" required="required" name="item[{{ $item_row }}][quantity]" type="text" id="item-quantity-{{ $item_row }}">
 | 
			
		||||
                                </td>
 | 
			
		||||
                                <td>
 | 
			
		||||
                                    <input value="{{ $item->price }}" class="form-control text-right" required="required" name="item[{{ $item_row }}][price]" type="text" id="item-price-{{ $item_row }}">
 | 
			
		||||
                                </td>
 | 
			
		||||
                                <td>
 | 
			
		||||
                                    {!! Form::select('item[' . $item_row . '][tax]', $taxes, $item->tax_id, ['id'=> 'item-tax-'. $item_row, 'class' => 'form-control select2', 'placeholder' => trans('general.form.enter', ['field' => trans_choice('general.taxes', 1)])]) !!}
 | 
			
		||||
                                </td>
 | 
			
		||||
                                <td class="text-right" style="vertical-align: middle;">
 | 
			
		||||
                                    <span id="item-total-{{ $item_row }}">@money($item->total, $invoice->currency_code, true)</span>
 | 
			
		||||
                                </td>
 | 
			
		||||
                            </tr>
 | 
			
		||||
                            <?php $item_row++; ?>
 | 
			
		||||
                        @endforeach
 | 
			
		||||
                        @if (empty($invoice->items))
 | 
			
		||||
                            <tr id="item-row-{{ $item_row }}">
 | 
			
		||||
                                <td class="text-center" style="vertical-align: middle;">
 | 
			
		||||
                                    <button type="button" onclick="$(this).tooltip('destroy'); $('#item-row-{{ $item_row }}').remove(); totalItem();" data-toggle="tooltip" title="{{ trans('general.delete') }}" class="btn btn-xs btn-danger"><i class="fa fa-trash"></i></button>
 | 
			
		||||
                                </td>
 | 
			
		||||
                                <td>
 | 
			
		||||
                                    <input class="form-control typeahead" required="required" placeholder="{{ trans('general.form.enter', ['field' => trans_choice('invoices.item_name', 1)]) }}" name="item[{{ $item_row }}][name]" type="text" id="item-name-{{ $item_row }}">
 | 
			
		||||
                                    <input name="item[{{ $item_row }}][item_id]" type="hidden" id="item-id-{{ $item_row }}">
 | 
			
		||||
                                </td>
 | 
			
		||||
                                <td>
 | 
			
		||||
                                    <input class="form-control text-center" required="required" name="item[{{ $item_row }}][quantity]" type="text" id="item-quantity-{{ $item_row }}">
 | 
			
		||||
                                </td>
 | 
			
		||||
                                <td>
 | 
			
		||||
                                    <input class="form-control text-right" required="required" name="item[{{ $item_row }}][price]" type="text" id="item-price-{{ $item_row }}">
 | 
			
		||||
                                </td>
 | 
			
		||||
                                <td>
 | 
			
		||||
                                    {!! Form::select('item[' . $item_row . '][tax]', $taxes, null, ['id'=> 'item-tax-'. $item_row, 'class' => 'form-control select2', 'placeholder' => trans('general.form.select.field', ['field' => trans_choice('general.taxes', 1)])]) !!}
 | 
			
		||||
                                </td>
 | 
			
		||||
                                <td class="text-right" style="vertical-align: middle;">
 | 
			
		||||
                                    <span id="item-total-{{ $item_row }}">0</span>
 | 
			
		||||
                                </td>
 | 
			
		||||
                            </tr>
 | 
			
		||||
                        @endif
 | 
			
		||||
                            <?php $item_row++; ?>
 | 
			
		||||
                            <tr id="addItem">
 | 
			
		||||
                                <td class="text-center"><button type="button" onclick="addItem();" data-toggle="tooltip" title="{{ trans('general.add') }}" class="btn btn-xs btn-primary" data-original-title="{{ trans('general.add') }}"><i class="fa fa-plus"></i></button></td>
 | 
			
		||||
                                <td class="text-right" colspan="5"></td>
 | 
			
		||||
                            </tr>
 | 
			
		||||
                            <tr>
 | 
			
		||||
                                <td class="text-right" colspan="5"><strong>{{ trans('invoices.sub_total') }}</strong></td>
 | 
			
		||||
                                <td class="text-right"><span id="sub-total">0</span></td>
 | 
			
		||||
                            </tr>
 | 
			
		||||
                            <tr>
 | 
			
		||||
                                <td class="text-right" colspan="5"><strong>{{ trans_choice('general.taxes', 1) }}</strong></td>
 | 
			
		||||
                                <td class="text-right"><span id="tax-total">0</span></td>
 | 
			
		||||
                            </tr>
 | 
			
		||||
                            <tr>
 | 
			
		||||
                                <td class="text-right" colspan="5"><strong>{{ trans('invoices.total') }}</strong></td>
 | 
			
		||||
                                <td class="text-right"><span id="grand-total">0</span></td>
 | 
			
		||||
                            </tr>
 | 
			
		||||
                        </tbody>
 | 
			
		||||
                    </table>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
            {{ Form::textareaGroup('label',trans_choice('general.notes', 2)) }}
 | 
			
		||||
 | 
			
		||||
            {{ Form::fileGroup('attachment', trans('general.attachment')) }}
 | 
			
		||||
        </div>
 | 
			
		||||
        <!-- /.box-body -->
 | 
			
		||||
 | 
			
		||||
        @permission('update-incomes-invoices')
 | 
			
		||||
        <div class="box-footer">
 | 
			
		||||
            {{ Form::saveButtons('incomes/invoices') }}
 | 
			
		||||
        </div>
 | 
			
		||||
        <!-- /.box-footer -->
 | 
			
		||||
        @endpermission
 | 
			
		||||
        {!! Form::close() !!}
 | 
			
		||||
    </div>
 | 
			
		||||
@endsection
 | 
			
		||||
 | 
			
		||||
@section('js')
 | 
			
		||||
    <script src="{{ asset('vendor/almasaeed2010/adminlte/plugins/datepicker/bootstrap-datepicker.js') }}"></script>
 | 
			
		||||
    <script src="{{ asset('public/js/bootstrap-fancyfile.js') }}"></script>
 | 
			
		||||
    <script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-3-typeahead/4.0.1/bootstrap3-typeahead.min.js"></script>
 | 
			
		||||
@endsection
 | 
			
		||||
 | 
			
		||||
@section('css')
 | 
			
		||||
    <link rel="stylesheet" href="{{ asset('vendor/almasaeed2010/adminlte/plugins/datepicker/datepicker3.css') }}">
 | 
			
		||||
    <link rel="stylesheet" href="{{ asset('public/css/bootstrap-fancyfile.css') }}">
 | 
			
		||||
@endsection
 | 
			
		||||
 | 
			
		||||
@section('scripts')
 | 
			
		||||
    <script type="text/javascript">
 | 
			
		||||
        var item_row = '{{ $item_row }}';
 | 
			
		||||
 | 
			
		||||
        function addItem() {
 | 
			
		||||
            html  = '<tr id="item-row-' + item_row + '">';
 | 
			
		||||
            html += '  <td class="text-center" style="vertical-align: middle;">';
 | 
			
		||||
            html += '      <button type="button" onclick="$(this).tooltip(\'destroy\'); $(\'#item-row-' + item_row + '\').remove(); totalItem();" data-toggle="tooltip" title="{{ trans('general.delete') }}" class="btn btn-xs btn-danger"><i class="fa fa-trash"></i></button>';
 | 
			
		||||
            html += '  </td>';
 | 
			
		||||
            html += '  <td>';
 | 
			
		||||
            html += '      <input class="form-control typeahead" required="required" placeholder="{{ trans('general.form.enter', ['field' => trans_choice('invoices.item_name', 1)]) }}" name="item[' + item_row + '][name]" type="text" id="item-name-' + item_row + '">';
 | 
			
		||||
            html += '      <input name="item[' + item_row + '][item_id]" type="hidden" id="item-id-' + item_row + '">';
 | 
			
		||||
            html += '  </td>';
 | 
			
		||||
            html += '  <td>';
 | 
			
		||||
            html += '      <input class="form-control text-center" required="required" name="item[' + item_row + '][quantity]" type="text" id="item-quantity-' + item_row + '">';
 | 
			
		||||
            html += '  </td>';
 | 
			
		||||
            html += '  <td>';
 | 
			
		||||
            html += '      <input class="form-control text-right" required="required" name="item[' + item_row + '][price]" type="text" id="item-price-' + item_row + '">';
 | 
			
		||||
            html += '  </td>';
 | 
			
		||||
            html += '  <td>';
 | 
			
		||||
            html += '      <select class="form-control select2" name="item[' + item_row + '][tax]" id="item-tax-' + item_row + '">';
 | 
			
		||||
            html += '         <option selected="selected" value="">{{ trans('general.form.select.field', ['field' => trans_choice('general.taxes', 1)]) }}</option>';
 | 
			
		||||
            @foreach($taxes as $tax_key => $tax_value)
 | 
			
		||||
            html += '         <option value="{{ $tax_key }}">{{ $tax_value }}</option>';
 | 
			
		||||
            @endforeach
 | 
			
		||||
            html += '      </select>';
 | 
			
		||||
            html += '  </td>';
 | 
			
		||||
            html += '  <td class="text-right" style="vertical-align: middle;">';
 | 
			
		||||
            html += '      <span id="item-total-' + item_row + '">0</span>';
 | 
			
		||||
            html += '  </td>';
 | 
			
		||||
 | 
			
		||||
            $('#items tbody #addItem').before(html);
 | 
			
		||||
            //$('[rel=tooltip]').tooltip();
 | 
			
		||||
 | 
			
		||||
            $('[data-toggle="tooltip"]').tooltip('hide');
 | 
			
		||||
 | 
			
		||||
            $('#item-row-' + item_row + ' .select2').select2({
 | 
			
		||||
                placeholder: "{{ trans('general.form.select.field', ['field' => trans_choice('general.taxes', 1)]) }}"
 | 
			
		||||
            });
 | 
			
		||||
 | 
			
		||||
            item_row++;
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        $(document).ready(function(){
 | 
			
		||||
            totalItem();
 | 
			
		||||
 | 
			
		||||
            //Date picker
 | 
			
		||||
            $('#invoiced_at').datepicker({
 | 
			
		||||
                format: 'yyyy-mm-dd',
 | 
			
		||||
                autoclose: true
 | 
			
		||||
            });
 | 
			
		||||
 | 
			
		||||
            //Date picker
 | 
			
		||||
            $('#due_at').datepicker({
 | 
			
		||||
                format: 'yyyy-mm-dd',
 | 
			
		||||
                autoclose: true
 | 
			
		||||
            });
 | 
			
		||||
 | 
			
		||||
            $(".select2").select2({
 | 
			
		||||
                placeholder: "{{ trans('general.form.select.field', ['field' => trans_choice('general.taxes', 1)]) }}"
 | 
			
		||||
            });
 | 
			
		||||
 | 
			
		||||
            $("#customer_id").select2({
 | 
			
		||||
                placeholder: "{{ trans('general.form.select.field', ['field' => trans_choice('general.customers', 1)]) }}"
 | 
			
		||||
            });
 | 
			
		||||
 | 
			
		||||
            $("#currency_code").select2({
 | 
			
		||||
                placeholder: "{{ trans('general.form.select.field', ['field' => trans_choice('general.currencies', 1)]) }}"
 | 
			
		||||
            });
 | 
			
		||||
 | 
			
		||||
            $('#attachment').fancyfile({
 | 
			
		||||
                text  : '{{ trans('general.form.select.file') }}',
 | 
			
		||||
                style : 'btn-default',
 | 
			
		||||
                placeholder : '<?php echo $invoice->attachment; ?>'
 | 
			
		||||
            });
 | 
			
		||||
 | 
			
		||||
            var autocomplete_path = "{{ url('items/items/autocomplete') }}";
 | 
			
		||||
 | 
			
		||||
            $(document).on('click', '.form-control.typeahead', function() {
 | 
			
		||||
                input_id = $(this).attr('id').split('-');
 | 
			
		||||
 | 
			
		||||
                item_id = parseInt(input_id[input_id.length-1]);
 | 
			
		||||
 | 
			
		||||
                $(this).typeahead({
 | 
			
		||||
                    minLength: 3,
 | 
			
		||||
                    displayText:function (data) {
 | 
			
		||||
                        return data.name;
 | 
			
		||||
                    },
 | 
			
		||||
                    source: function (query, process) {
 | 
			
		||||
                        $.ajax({
 | 
			
		||||
                            url: autocomplete_path,
 | 
			
		||||
                            type: 'GET',
 | 
			
		||||
                            dataType: 'JSON',
 | 
			
		||||
                            data: 'query=' + query + '&type=invoice¤cy_code=' + $('#currency_code').val(),
 | 
			
		||||
                            success: function(data) {
 | 
			
		||||
                                return process(data);
 | 
			
		||||
                            }
 | 
			
		||||
                        });
 | 
			
		||||
                    },
 | 
			
		||||
                    afterSelect: function (data) {
 | 
			
		||||
                        $('#item-id-' + item_id).val(data.item_id);
 | 
			
		||||
                        $('#item-quantity-' + item_id).val('1');
 | 
			
		||||
                        $('#item-price-' + item_id).val(data.sale_price);
 | 
			
		||||
                        $('#item-tax-' + item_id).val(data.tax_id);
 | 
			
		||||
 | 
			
		||||
                        // This event Select2 Stylesheet
 | 
			
		||||
                        $('#item-tax-' + item_id).trigger('change');
 | 
			
		||||
 | 
			
		||||
                        $('#item-total-' + item_id).html(data.total);
 | 
			
		||||
 | 
			
		||||
                        totalItem();
 | 
			
		||||
                    }
 | 
			
		||||
                });
 | 
			
		||||
            });
 | 
			
		||||
 | 
			
		||||
            $(document).on('change', '#currency_code, #items tbody select', function(){
 | 
			
		||||
                totalItem();
 | 
			
		||||
            });
 | 
			
		||||
 | 
			
		||||
            $(document).on('keyup', '#items tbody .form-control', function(){
 | 
			
		||||
                totalItem();
 | 
			
		||||
            });
 | 
			
		||||
 | 
			
		||||
            $(document).on('change', '#customer_id', function (e) {
 | 
			
		||||
                $.ajax({
 | 
			
		||||
                    url: '{{ url("incomes/customers/currency") }}',
 | 
			
		||||
                    type: 'GET',
 | 
			
		||||
                    dataType: 'JSON',
 | 
			
		||||
                    data: 'customer_id=' + $(this).val(),
 | 
			
		||||
                    success: function(data) {
 | 
			
		||||
                        $('#currency_code').val(data.currency_code);
 | 
			
		||||
 | 
			
		||||
                        // This event Select2 Stylesheet
 | 
			
		||||
                        $('#currency_code').trigger('change');
 | 
			
		||||
                    }
 | 
			
		||||
                });
 | 
			
		||||
            });
 | 
			
		||||
        });
 | 
			
		||||
 | 
			
		||||
        function totalItem() {
 | 
			
		||||
            $.ajax({
 | 
			
		||||
                url: '{{ url("items/items/totalItem") }}',
 | 
			
		||||
                type: 'POST',
 | 
			
		||||
                dataType: 'JSON',
 | 
			
		||||
                data: $('#currency_code, #items input[type=\'text\'],#items input[type=\'hidden\'], #items textarea, #items select'),
 | 
			
		||||
                headers: { 'X-CSRF-TOKEN': '{{ csrf_token() }}' },
 | 
			
		||||
                success: function(data) {
 | 
			
		||||
                    if (data) {
 | 
			
		||||
                        $.each( data.items, function( key, value ) {
 | 
			
		||||
                            $('#item-total-' + key).html(value);
 | 
			
		||||
                        });
 | 
			
		||||
 | 
			
		||||
                        $('#sub-total').html(data.sub_total);
 | 
			
		||||
                        $('#tax-total').html(data.tax_total);
 | 
			
		||||
                        $('#grand-total').html(data.grand_total);
 | 
			
		||||
                    }
 | 
			
		||||
                }
 | 
			
		||||
            });
 | 
			
		||||
        }
 | 
			
		||||
    </script>
 | 
			
		||||
@endsection
 | 
			
		||||
							
								
								
									
										74
									
								
								resources/views/incomes/invoices/index.blade.php
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										74
									
								
								resources/views/incomes/invoices/index.blade.php
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,74 @@
 | 
			
		||||
@extends('layouts.admin')
 | 
			
		||||
 | 
			
		||||
@section('title', trans_choice('general.invoices', 2))
 | 
			
		||||
 | 
			
		||||
@permission('create-incomes-invoices')
 | 
			
		||||
@section('new_button')
 | 
			
		||||
<span class="new-button"><a href="{{ url('incomes/invoices/create') }}" class="btn btn-success btn-sm"><span class="fa fa-plus"></span>  {{ trans('general.add_new') }}</a></span>
 | 
			
		||||
@endsection
 | 
			
		||||
@endpermission
 | 
			
		||||
 | 
			
		||||
@section('content')
 | 
			
		||||
<!-- Default box -->
 | 
			
		||||
<div class="box box-success">
 | 
			
		||||
    <div class="box-header">
 | 
			
		||||
        {!! Form::open(['url' => 'incomes/invoices', 'role' => 'form', 'method' => 'GET']) !!}
 | 
			
		||||
        <div class="pull-left">
 | 
			
		||||
            <span class="title-filter">{{ trans('general.search') }}:</span>
 | 
			
		||||
            {!! Form::text('search', request('search'), ['class' => 'form-control input-filter input-sm', 'placeholder' => trans('general.search_placeholder')]) !!}
 | 
			
		||||
            {!! Form::select('status', $status, request('status'), ['class' => 'form-control input-filter input-sm', 'placeholder' => trans('status.all')]) !!}
 | 
			
		||||
            {!! Form::button('<span class="fa fa-filter"></span>  ' . trans('general.filter'), ['type' => 'submit', 'class' => 'btn btn-sm btn-default btn-filter']) !!}
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="pull-right">
 | 
			
		||||
            <span class="title-filter">{{ trans('general.show') }}:</span>
 | 
			
		||||
            {!! Form::select('limit', $limits, request('limit', setting('general.list_limit', '25')), ['class' => 'form-control input-filter input-sm', 'onchange' => 'this.form.submit()']) !!}
 | 
			
		||||
        </div>
 | 
			
		||||
        {!! Form::close() !!}
 | 
			
		||||
    </div>
 | 
			
		||||
    <!-- /.box-header -->
 | 
			
		||||
    <div class="box-body">
 | 
			
		||||
        <div class="table table-responsive">
 | 
			
		||||
            <table class="table table-bordered table-striped table-hover" id="tbl-invoices">
 | 
			
		||||
                <thead>
 | 
			
		||||
                    <tr>
 | 
			
		||||
                        <th class="col-md-1">@sortablelink('invoice_number', trans_choice('general.numbers', 1))</th>
 | 
			
		||||
                        <th class="col-md-3">@sortablelink('customer_name', trans_choice('general.customers', 1))</th>
 | 
			
		||||
                        <th class="col-md-1">@sortablelink('amount', trans('general.amount'))</th>
 | 
			
		||||
                        <th class="col-md-1">@sortablelink('status.name', trans('general.status'))</th>
 | 
			
		||||
                        <th>@sortablelink('invoiced_at', trans('invoices.invoice_date'))</th>
 | 
			
		||||
                        <th>@sortablelink('due_at', trans('invoices.due_date'))</th>
 | 
			
		||||
                        <th class="col-md-3">{{ trans('general.actions') }}</th>
 | 
			
		||||
                    </tr>
 | 
			
		||||
                </thead>
 | 
			
		||||
                <tbody>
 | 
			
		||||
                @foreach($invoices as $item)
 | 
			
		||||
                    <tr>
 | 
			
		||||
                        <td><a href="{{ url('incomes/invoices/' . $item->id . ' ') }}">{{ $item->invoice_number }}</a></td>
 | 
			
		||||
                        <td>{{ $item->customer_name }}</td>
 | 
			
		||||
                        <td>@money($item->amount, $item->currency_code, true)</td>
 | 
			
		||||
                        <td>{{ $item->status->name }}</td>
 | 
			
		||||
                        <td>{{ Date::parse($item->invoiced_at)->format($date_format) }}</td>
 | 
			
		||||
                        <td>{{ Date::parse($item->due_at)->format($date_format) }}</td>
 | 
			
		||||
                        <td>
 | 
			
		||||
                            <a href="{{ url('incomes/invoices/' . $item->id) }}" class="btn btn-info btn-xs"><i class="fa fa-eye" aria-hidden="true"></i> {{ trans('general.show') }}</a>
 | 
			
		||||
                            <a href="{{ url('incomes/invoices/' . $item->id . '/edit') }}" class="btn btn-primary btn-xs"><i class="fa fa-pencil-square-o" aria-hidden="true"></i> {{ trans('general.edit') }}</a>
 | 
			
		||||
                            @permission('delete-incomes-invoices')
 | 
			
		||||
                            {!! Form::deleteButton($item, 'incomes/invoices') !!}
 | 
			
		||||
                            @endpermission
 | 
			
		||||
                        </td>
 | 
			
		||||
                    </tr>
 | 
			
		||||
                @endforeach
 | 
			
		||||
                </tbody>
 | 
			
		||||
            </table>
 | 
			
		||||
        </div>
 | 
			
		||||
    </div>
 | 
			
		||||
    <!-- /.box-body -->
 | 
			
		||||
 | 
			
		||||
    <div class="box-footer">
 | 
			
		||||
        @include('partials.admin.pagination', ['items' => $invoices, 'type' => 'invoices'])
 | 
			
		||||
    </div>
 | 
			
		||||
    <!-- /.box-footer -->
 | 
			
		||||
</div>
 | 
			
		||||
<!-- /.box -->
 | 
			
		||||
@endsection
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										141
									
								
								resources/views/incomes/invoices/invoice.blade.php
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										141
									
								
								resources/views/incomes/invoices/invoice.blade.php
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,141 @@
 | 
			
		||||
@extends('layouts.invoice')
 | 
			
		||||
 | 
			
		||||
@section('title', trans_choice('general.invoices', 1) . ': ' . $invoice->invoice_number)
 | 
			
		||||
 | 
			
		||||
@section('content')
 | 
			
		||||
    <section class="invoice">
 | 
			
		||||
        <div class="row invoice-header">
 | 
			
		||||
            <div class="col-xs-7">
 | 
			
		||||
                @if (setting('general.invoice_logo'))
 | 
			
		||||
                <img src="{{ asset(setting('general.invoice_logo')) }}" class="invoice-logo" />
 | 
			
		||||
                @else
 | 
			
		||||
                <img src="{{ asset(setting('general.company_logo')) }}" class="invoice-logo" />
 | 
			
		||||
                @endif
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="col-xs-5 invoice-company">
 | 
			
		||||
                <address>
 | 
			
		||||
                    <strong>{{ setting('general.company_name') }}</strong><br>
 | 
			
		||||
                    {{ setting('general.company_address') }}<br>
 | 
			
		||||
                    @if (setting('general.company_tax_number'))
 | 
			
		||||
                        {{ trans('general.tax_number') }}: {{ setting('general.company_tax_number') }}<br>
 | 
			
		||||
                    @endif
 | 
			
		||||
                    <br>
 | 
			
		||||
                    @if (setting('general.company_phone'))
 | 
			
		||||
                        {{ setting('general.company_phone') }}<br>
 | 
			
		||||
                    @endif
 | 
			
		||||
                    {{ setting('general.company_email') }}
 | 
			
		||||
                </address>
 | 
			
		||||
            </div>
 | 
			
		||||
        </div>
 | 
			
		||||
 | 
			
		||||
        <div class="row">
 | 
			
		||||
            <div class="col-xs-7">
 | 
			
		||||
                {{ trans('invoices.bill_to') }}
 | 
			
		||||
                <address>
 | 
			
		||||
                    <strong>{{ $invoice->customer_name }}</strong><br>
 | 
			
		||||
                    {{ $invoice->customer_address }}<br>
 | 
			
		||||
                    @if ($invoice->customer_tax_number)
 | 
			
		||||
                        {{ trans('general.tax_number') }}: {{ $invoice->customer_tax_number }}<br>
 | 
			
		||||
                    @endif
 | 
			
		||||
                    <br>
 | 
			
		||||
                    @if ($invoice->customer_phone)
 | 
			
		||||
                        {{ $invoice->customer_phone }}<br>
 | 
			
		||||
                    @endif
 | 
			
		||||
                    {{ $invoice->customer_email }}
 | 
			
		||||
                </address>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="col-xs-5">
 | 
			
		||||
                <div class="table-responsive">
 | 
			
		||||
                    <table class="table no-border">
 | 
			
		||||
                        <tbody>
 | 
			
		||||
                        <tr>
 | 
			
		||||
                            <th>{{ trans('invoices.invoice_number') }}:</th>
 | 
			
		||||
                            <td class="text-right">{{ $invoice->invoice_number }}</td>
 | 
			
		||||
                        </tr>
 | 
			
		||||
                        @if ($invoice->order_number)
 | 
			
		||||
                        <tr>
 | 
			
		||||
                            <th>{{ trans('invoices.order_number') }}:</th>
 | 
			
		||||
                            <td class="text-right">{{ $invoice->order_number }}</td>
 | 
			
		||||
                        </tr>
 | 
			
		||||
                        @endif
 | 
			
		||||
                        <tr>
 | 
			
		||||
                            <th>{{ trans('invoices.invoice_date') }}:</th>
 | 
			
		||||
                            <td class="text-right">{{ Date::parse($invoice->invoiced_at)->format($date_format) }}</td>
 | 
			
		||||
                        </tr>
 | 
			
		||||
                        <tr>
 | 
			
		||||
                            <th>{{ trans('invoices.payment_due') }}:</th>
 | 
			
		||||
                            <td class="text-right">{{ Date::parse($invoice->due_at)->format($date_format) }}</td>
 | 
			
		||||
                        </tr>
 | 
			
		||||
                        </tbody>
 | 
			
		||||
                    </table>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
        </div>
 | 
			
		||||
 | 
			
		||||
        <div class="row">
 | 
			
		||||
            <div class="col-xs-12 table-responsive">
 | 
			
		||||
                <table class="table table-striped">
 | 
			
		||||
                    <tbody>
 | 
			
		||||
                        <tr>
 | 
			
		||||
                            <th>{{ trans_choice('general.items', 1) }}</th>
 | 
			
		||||
                            <th class="text-center">{{ trans('invoices.quantity') }}</th>
 | 
			
		||||
                            <th class="text-right">{{ trans('invoices.price') }}</th>
 | 
			
		||||
                            <th class="text-right">{{ trans('invoices.total') }}</th>
 | 
			
		||||
                        </tr>
 | 
			
		||||
                    @foreach($invoice->items as $item)
 | 
			
		||||
                        <tr>
 | 
			
		||||
                            <td>
 | 
			
		||||
                                {{ $item->name }}
 | 
			
		||||
                                @if ($item->sku)
 | 
			
		||||
                                    <br><small>{{ trans('items.sku') }}: {{ $item->sku }}</small>
 | 
			
		||||
                                @endif
 | 
			
		||||
                            </td>
 | 
			
		||||
                            <td class="text-center">{{ $item->quantity }}</td>
 | 
			
		||||
                            <td class="text-right">@money($item->price, $invoice->currency_code, true)</td>
 | 
			
		||||
                            <td class="text-right">@money($item->total - $item->tax, $invoice->currency_code, true)</td>
 | 
			
		||||
                        </tr>
 | 
			
		||||
                    @endforeach
 | 
			
		||||
                    </tbody>
 | 
			
		||||
                </table>
 | 
			
		||||
            </div>
 | 
			
		||||
        </div>
 | 
			
		||||
 | 
			
		||||
        <div class="row">
 | 
			
		||||
            <div class="col-xs-7">
 | 
			
		||||
                @if ($invoice->notes)
 | 
			
		||||
                    <p class="lead">{{ trans_choice('general.notes', 2) }}</p>
 | 
			
		||||
 | 
			
		||||
                    <p class="text-muted well well-sm no-shadow" style="margin-top: 10px;">
 | 
			
		||||
                        {{ $invoice->notes }}
 | 
			
		||||
                    </p>
 | 
			
		||||
                @endif
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="col-xs-5">
 | 
			
		||||
                <div class="table-responsive">
 | 
			
		||||
                    <table class="table">
 | 
			
		||||
                        <tbody>
 | 
			
		||||
                        <tr>
 | 
			
		||||
                            <th style="max-width: 214px">{{ trans('invoices.sub_total') }}:</th>
 | 
			
		||||
                            <td class="text-right">@money($invoice->sub_total, $invoice->currency_code, true)</td>
 | 
			
		||||
                        </tr>
 | 
			
		||||
                        <tr>
 | 
			
		||||
                            <th>{{ trans('invoices.tax_total') }}:</th>
 | 
			
		||||
                            <td class="text-right">@money($invoice->tax_total, $invoice->currency_code, true)</td>
 | 
			
		||||
                        </tr>
 | 
			
		||||
                        @if($invoice->paid)
 | 
			
		||||
                            <tr>
 | 
			
		||||
                                <th>{{ trans('invoices.paid') }}:</th>
 | 
			
		||||
                                <td class="text-right">@money('-' . $invoice->paid, $invoice->currency_code, true)</td>
 | 
			
		||||
                            </tr>
 | 
			
		||||
                        @endif
 | 
			
		||||
                        <tr>
 | 
			
		||||
                            <th>{{ trans('invoices.total') }}:</th>
 | 
			
		||||
                            <td class="text-right">@money($invoice->grand_total, $invoice->currency_code, true)</td>
 | 
			
		||||
                        </tr>
 | 
			
		||||
                        </tbody>
 | 
			
		||||
                    </table>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
        </div>
 | 
			
		||||
    </section>
 | 
			
		||||
@endsection
 | 
			
		||||
							
								
								
									
										452
									
								
								resources/views/incomes/invoices/show.blade.php
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										452
									
								
								resources/views/incomes/invoices/show.blade.php
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,452 @@
 | 
			
		||||
@extends('layouts.admin')
 | 
			
		||||
 | 
			
		||||
@section('title', trans_choice('general.invoices', 1) . ': ' . $invoice->invoice_number)
 | 
			
		||||
 | 
			
		||||
@section('content')
 | 
			
		||||
    <div class="box box-success">
 | 
			
		||||
        <section class="invoice">
 | 
			
		||||
            <span class="badge bg-aqua">{{ $invoice->status->name }}</span>
 | 
			
		||||
 | 
			
		||||
            <div class="row invoice-header">
 | 
			
		||||
                <div class="col-xs-7">
 | 
			
		||||
                    @if (setting('general.invoice_logo'))
 | 
			
		||||
                    <img src="{{ asset(setting('general.invoice_logo')) }}" class="invoice-logo" />
 | 
			
		||||
                    @else
 | 
			
		||||
                    <img src="{{ asset(setting('general.company_logo')) }}" class="invoice-logo" />
 | 
			
		||||
                    @endif
 | 
			
		||||
                </div>
 | 
			
		||||
                <div class="col-xs-5 invoice-company">
 | 
			
		||||
                    <address>
 | 
			
		||||
                        <strong>{{ setting('general.company_name') }}</strong><br>
 | 
			
		||||
                        {{ setting('general.company_address') }}<br>
 | 
			
		||||
                        @if (setting('general.company_tax_number'))
 | 
			
		||||
                        {{ trans('general.tax_number') }}: {{ setting('general.company_tax_number') }}<br>
 | 
			
		||||
                        @endif
 | 
			
		||||
                        <br>
 | 
			
		||||
                        @if (setting('general.company_phone'))
 | 
			
		||||
                        {{ setting('general.company_phone') }}<br>
 | 
			
		||||
                        @endif
 | 
			
		||||
                        {{ setting('general.company_email') }}
 | 
			
		||||
                    </address>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
 | 
			
		||||
            <div class="row">
 | 
			
		||||
                <div class="col-xs-7">
 | 
			
		||||
                    {{ trans('invoices.bill_to') }}
 | 
			
		||||
                    <address>
 | 
			
		||||
                        <strong>{{ $invoice->customer_name }}</strong><br>
 | 
			
		||||
                        {{ $invoice->customer_address }}<br>
 | 
			
		||||
                        @if ($invoice->customer_tax_number)
 | 
			
		||||
                        {{ trans('general.tax_number') }}: {{ $invoice->customer_tax_number }}<br>
 | 
			
		||||
                        @endif
 | 
			
		||||
                        <br>
 | 
			
		||||
                        @if ($invoice->customer_phone)
 | 
			
		||||
                        {{ $invoice->customer_phone }}<br>
 | 
			
		||||
                        @endif
 | 
			
		||||
                        {{ $invoice->customer_email }}
 | 
			
		||||
                    </address>
 | 
			
		||||
                </div>
 | 
			
		||||
                <div class="col-xs-5">
 | 
			
		||||
                    <div class="table-responsive">
 | 
			
		||||
                        <table class="table no-border">
 | 
			
		||||
                            <tbody>
 | 
			
		||||
                                <tr>
 | 
			
		||||
                                    <th>{{ trans('invoices.invoice_number') }}:</th>
 | 
			
		||||
                                    <td class="text-right">{{ $invoice->invoice_number }}</td>
 | 
			
		||||
                                </tr>
 | 
			
		||||
                                @if ($invoice->order_number)
 | 
			
		||||
                                <tr>
 | 
			
		||||
                                    <th>{{ trans('invoices.order_number') }}:</th>
 | 
			
		||||
                                    <td class="text-right">{{ $invoice->order_number }}</td>
 | 
			
		||||
                                </tr>
 | 
			
		||||
                                @endif
 | 
			
		||||
                                <tr>
 | 
			
		||||
                                    <th>{{ trans('invoices.invoice_date') }}:</th>
 | 
			
		||||
                                    <td class="text-right">{{ Date::parse($invoice->invoiced_at)->format($date_format) }}</td>
 | 
			
		||||
                                </tr>
 | 
			
		||||
                                <tr>
 | 
			
		||||
                                    <th>{{ trans('invoices.payment_due') }}:</th>
 | 
			
		||||
                                    <td class="text-right">{{ Date::parse($invoice->due_at)->format($date_format) }}</td>
 | 
			
		||||
                                </tr>
 | 
			
		||||
                            </tbody>
 | 
			
		||||
                        </table>
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
 | 
			
		||||
            <div class="row">
 | 
			
		||||
                <div class="col-xs-12 table-responsive">
 | 
			
		||||
                    <table class="table table-striped">
 | 
			
		||||
                        <tbody>
 | 
			
		||||
                            <tr>
 | 
			
		||||
                                <th>{{ trans_choice('general.items', 1) }}</th>
 | 
			
		||||
                                <th class="text-center">{{ trans('invoices.quantity') }}</th>
 | 
			
		||||
                                <th class="text-right">{{ trans('invoices.price') }}</th>
 | 
			
		||||
                                <th class="text-right">{{ trans('invoices.total') }}</th>
 | 
			
		||||
                            </tr>
 | 
			
		||||
                            @foreach($invoice->items as $item)
 | 
			
		||||
                            <tr>
 | 
			
		||||
                                <td>
 | 
			
		||||
                                    {{ $item->name }}
 | 
			
		||||
                                    @if ($item->sku)
 | 
			
		||||
                                        <br><small>{{ trans('items.sku') }}: {{ $item->sku }}</small>
 | 
			
		||||
                                    @endif
 | 
			
		||||
                                </td>
 | 
			
		||||
                                <td class="text-center">{{ $item->quantity }}</td>
 | 
			
		||||
                                <td class="text-right">@money($item->price, $invoice->currency_code, true)</td>
 | 
			
		||||
                                <td class="text-right">@money($item->total - $item->tax, $invoice->currency_code, true)</td>
 | 
			
		||||
                            </tr>
 | 
			
		||||
                            @endforeach
 | 
			
		||||
                        </tbody>
 | 
			
		||||
                    </table>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
 | 
			
		||||
            <div class="row">
 | 
			
		||||
                <div class="col-xs-7">
 | 
			
		||||
                @if ($invoice->notes)
 | 
			
		||||
                    <p class="lead">{{ trans_choice('general.notes', 2) }}</p>
 | 
			
		||||
 | 
			
		||||
                    <p class="text-muted well well-sm no-shadow" style="margin-top: 10px;">
 | 
			
		||||
                        {{ $invoice->notes }}
 | 
			
		||||
                    </p>
 | 
			
		||||
                @endif
 | 
			
		||||
                </div>
 | 
			
		||||
                <div class="col-xs-5">
 | 
			
		||||
                    <div class="table-responsive">
 | 
			
		||||
                        <table class="table">
 | 
			
		||||
                            <tbody>
 | 
			
		||||
                                <tr>
 | 
			
		||||
                                    <th>{{ trans('invoices.sub_total') }}:</th>
 | 
			
		||||
                                    <td class="text-right">@money($invoice->sub_total, $invoice->currency_code, true)</td>
 | 
			
		||||
                                </tr>
 | 
			
		||||
                                <tr>
 | 
			
		||||
                                    <th>{{ trans('invoices.tax_total') }}:</th>
 | 
			
		||||
                                    <td class="text-right">@money($invoice->tax_total, $invoice->currency_code, true)</td>
 | 
			
		||||
                                </tr>
 | 
			
		||||
                                @if ($invoice->paid)
 | 
			
		||||
                                <tr>
 | 
			
		||||
                                    <th>{{ trans('invoices.paid') }}:</th>
 | 
			
		||||
                                    <td class="text-right">@money('-' . $invoice->paid, $invoice->currency_code, true)</td>
 | 
			
		||||
                                </tr>
 | 
			
		||||
                                @endif
 | 
			
		||||
                                <tr>
 | 
			
		||||
                                    <th>{{ trans('invoices.total') }}:</th>
 | 
			
		||||
                                    <td class="text-right">@money($invoice->grand_total, $invoice->currency_code, true)</td>
 | 
			
		||||
                                </tr>
 | 
			
		||||
                            </tbody>
 | 
			
		||||
                        </table>
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
 | 
			
		||||
            <div class="box-footer row no-print">
 | 
			
		||||
                <div class="col-md-12">
 | 
			
		||||
                    <a href="{{ url('incomes/invoices/' . $invoice->id . '/edit') }}" class="btn btn-primary">
 | 
			
		||||
                        <i class="fa fa-pencil-square-o"></i>  {{ trans('general.edit') }}
 | 
			
		||||
                    </a>
 | 
			
		||||
                    <a href="{{ url('incomes/invoices/' . $invoice->id . '/print') }}" target="_blank" class="btn btn-default">
 | 
			
		||||
                        <i class="fa fa-print"></i>  {{ trans('general.print') }}
 | 
			
		||||
                    </a>
 | 
			
		||||
                    <button type="button" id="button-email" class="btn btn-default" data-toggle="tooltip" title="{{ trans('invoices.send_mail') }}">
 | 
			
		||||
                        <i class="fa fa-envelope-o"></i>  {{ trans('general.send') }}
 | 
			
		||||
                    </button>
 | 
			
		||||
                    <button type="button" id="button-pdf" class="btn btn-default" data-toggle="tooltip" title="{{ trans('invoices.download_pdf') }}">
 | 
			
		||||
                        <i class="fa fa-file-pdf-o"></i>  {{ trans('general.download') }}
 | 
			
		||||
                    </button>
 | 
			
		||||
                    <button type="button" id="button-payment" class="btn btn-success">
 | 
			
		||||
                        <i class="fa fa-credit-card"></i>  {{ trans('invoices.add_payment') }}
 | 
			
		||||
                    </button>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
        </section>
 | 
			
		||||
    </div>
 | 
			
		||||
 | 
			
		||||
    <div class="col-xs-6 no-padding-left">
 | 
			
		||||
        <div class="box box-default collapsed-box">
 | 
			
		||||
            <div class="box-header with-border">
 | 
			
		||||
                <h3 class="box-title">{{ trans('invoices.histories') }}</h3>
 | 
			
		||||
 | 
			
		||||
                <div class="box-tools pull-right">
 | 
			
		||||
                    <button type="button" class="btn btn-box-tool" data-widget="collapse"><i class="fa fa-plus"></i></button>
 | 
			
		||||
                </div>
 | 
			
		||||
                <!-- /.box-tools -->
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="box-body">
 | 
			
		||||
                <div class="table-responsive">
 | 
			
		||||
                    <table class="table">
 | 
			
		||||
                        <thead>
 | 
			
		||||
                        <tr>
 | 
			
		||||
                            <th>{{ trans('general.date') }}</th>
 | 
			
		||||
                            <th>{{ trans('general.status') }}</th>
 | 
			
		||||
                            <th>{{ trans('general.description') }}</th>
 | 
			
		||||
                        </tr>
 | 
			
		||||
                        </thead>
 | 
			
		||||
                        <tbody>
 | 
			
		||||
                        @foreach($invoice->histories as $history)
 | 
			
		||||
                            <tr>
 | 
			
		||||
                                <td>{{ Date::parse($history->created_at)->format($date_format) }}</td>
 | 
			
		||||
                                <td>{{ $history->status->name }}</td>
 | 
			
		||||
                                <td>{{ $history->description }}</td>
 | 
			
		||||
                            </tr>
 | 
			
		||||
                        @endforeach
 | 
			
		||||
                        </tbody>
 | 
			
		||||
                    </table>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
        </div>
 | 
			
		||||
    </div>
 | 
			
		||||
 | 
			
		||||
    <div class="col-xs-6 no-padding-right">
 | 
			
		||||
        <div class="box box-default collapsed-box">
 | 
			
		||||
            <div class="box-header with-border">
 | 
			
		||||
                <h3 class="box-title">{{ trans('invoices.payments') }}</h3>
 | 
			
		||||
 | 
			
		||||
                <div class="box-tools pull-right">
 | 
			
		||||
                    <button type="button" class="btn btn-box-tool" data-widget="collapse"><i class="fa fa-plus"></i></button>
 | 
			
		||||
                </div>
 | 
			
		||||
                <!-- /.box-tools -->
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="box-body">
 | 
			
		||||
                <div class="table-responsive">
 | 
			
		||||
                    <table class="table">
 | 
			
		||||
                        <thead>
 | 
			
		||||
                        <tr>
 | 
			
		||||
                            <th>{{ trans('general.date') }}</th>
 | 
			
		||||
                            <th>{{ trans('general.amount') }}</th>
 | 
			
		||||
                            <th>{{ trans_choice('general.accounts', 1) }}</th>
 | 
			
		||||
                            <th style="width: 15%;">{{ trans('general.actions') }}</th>
 | 
			
		||||
                        </tr>
 | 
			
		||||
                        </thead>
 | 
			
		||||
                        <tbody>
 | 
			
		||||
                        @foreach($invoice->payments as $payment)
 | 
			
		||||
                            <tr>
 | 
			
		||||
                                <td>{{ Date::parse($payment->paid_at)->format($date_format) }}</td>
 | 
			
		||||
                                <td>@money($payment->amount, $payment->currency_code, true)</td>
 | 
			
		||||
                                <td>{{ $payment->account->name }}</td>
 | 
			
		||||
                                <td>
 | 
			
		||||
                                    <a href="{{ url('incomes/invoices/' . $payment->id . '') }}" class="btn btn-info btn-xs hidden"><i class="fa fa-eye" aria-hidden="true"></i> {{ trans('general.show') }}</a>
 | 
			
		||||
                                    <a href="{{ url('incomes/revenues/' . $payment->id . '/edit') }}" class="btn btn-primary btn-xs  hidden"><i class="fa fa-pencil-square-o" aria-hidden="true"></i> {{ trans('general.edit') }}</a>
 | 
			
		||||
                                    {!! Form::open([
 | 
			
		||||
                                        'id' => 'invoice-payment-' . $payment->id,
 | 
			
		||||
                                        'method' => 'DELETE',
 | 
			
		||||
                                        'url' => ['incomes/invoices/paymentDestroy', $payment->id],
 | 
			
		||||
                                        'style' => 'display:inline'
 | 
			
		||||
                                    ]) !!}
 | 
			
		||||
                                    {!! Form::button('<i class="fa fa-trash-o" aria-hidden="true"></i> ' . trans('general.delete'), array(
 | 
			
		||||
                                        'type'    => 'button',
 | 
			
		||||
                                        'class'   => 'btn btn-danger btn-xs',
 | 
			
		||||
                                        'title'   => trans('general.delete'),
 | 
			
		||||
                                        'onclick' => 'confirmDelete("' . '#invoice-payment-' . $payment->id . '", "' . trans_choice('general.payments', 2) . '", "' . trans('general.delete_confirm', ['name' => '<strong>' . Date::parse($payment->paid_at)->format($date_format) . ' - ' . money($payment->amount, $payment->currency_code, true) . ' - ' . $payment->account->name . '</strong>', 'type' => strtolower(trans_choice('general.revenues', 1))]) . '", "' . trans('general.cancel') . '", "' . trans('general.delete') . '")'
 | 
			
		||||
                                    )) !!}
 | 
			
		||||
                                    {!! Form::close() !!}
 | 
			
		||||
                                </td>
 | 
			
		||||
                            </tr>
 | 
			
		||||
                        @endforeach
 | 
			
		||||
                        </tbody>
 | 
			
		||||
                    </table>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
        </div>
 | 
			
		||||
    </div>
 | 
			
		||||
@endsection
 | 
			
		||||
 | 
			
		||||
@section('js')
 | 
			
		||||
    <script src="{{ asset('vendor/almasaeed2010/adminlte/plugins/datepicker/bootstrap-datepicker.js') }}"></script>
 | 
			
		||||
    <script src="{{ asset('public/js/bootstrap-fancyfile.js') }}"></script>
 | 
			
		||||
@endsection
 | 
			
		||||
 | 
			
		||||
@section('css')
 | 
			
		||||
    <link rel="stylesheet" href="{{ asset('vendor/almasaeed2010/adminlte/plugins/datepicker/datepicker3.css') }}">
 | 
			
		||||
    <link rel="stylesheet" href="{{ asset('public/css/bootstrap-fancyfile.css') }}">
 | 
			
		||||
@endsection
 | 
			
		||||
 | 
			
		||||
@section('scripts')
 | 
			
		||||
    <script type="text/javascript">
 | 
			
		||||
        $(document).ready(function(){
 | 
			
		||||
            $(document).on('click', '#button-payment', function (e) {
 | 
			
		||||
                $('#payment-modal').remove();
 | 
			
		||||
 | 
			
		||||
                var html = '';
 | 
			
		||||
 | 
			
		||||
                html += '<div class="modal fade" id="payment-modal" tabindex="-1" role="dialog" aria-labelledby="paymentModalLabel">';
 | 
			
		||||
                html += '   <div class="modal-dialog" role="document">';
 | 
			
		||||
                html += '       <div class="modal-content box box-success">';
 | 
			
		||||
                html += '           <div class="modal-header">';
 | 
			
		||||
                html += '               <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>';
 | 
			
		||||
                html += '               <h4 class="modal-title" id="paymentModalLabel">{{ trans('invoices.add_payment') }}</h4>';
 | 
			
		||||
                html += '           </div>';
 | 
			
		||||
                html += '           <div class="modal-body box-body">';
 | 
			
		||||
                html += '               <div class="form-group col-md-6 required">';
 | 
			
		||||
                html += '                   {!! Form::label('paid_at', trans('general.date'), ['class' => 'control-label']) !!}';
 | 
			
		||||
                html += '                   <div class="input-group">';
 | 
			
		||||
                html += '                       <div class="input-group-addon"><i class="fa fa-calendar"></i></div>';
 | 
			
		||||
                html += '                       {!! Form::text('paid_at', \Carbon\Carbon::now()->toDateString(), ['id' => 'paid_at', 'class' => 'form-control', 'required' => 'required', 'data-inputmask' => '\'alias\': \'yyyy-mm-dd\'', 'data-mask' => '']) !!}';
 | 
			
		||||
                html += '                   </div>';
 | 
			
		||||
                html += '               </div>';
 | 
			
		||||
                html += '               <div class="form-group col-md-6 required">';
 | 
			
		||||
                html += '                   {!! Form::label('amount', trans('general.amount'), ['class' => 'control-label']) !!}';
 | 
			
		||||
                html += '                   <div class="input-group">';
 | 
			
		||||
                html += '                       <div class="input-group-addon"><i class="fa fa-money"></i></div>';
 | 
			
		||||
                html += '                       {!! Form::text('amount', $invoice->grand_total, ['class' => 'form-control', 'required' => 'required', 'placeholder' => trans('general.form.enter', ['field' => trans('general.amount')])]) !!}';
 | 
			
		||||
                html += '                   </div>';
 | 
			
		||||
                html += '               </div>';
 | 
			
		||||
                html += '               <div class="form-group col-md-6 required">';
 | 
			
		||||
                html += '                   {!! Form::label('account_id', trans_choice('general.accounts', 1), ['class' => 'control-label']) !!}';
 | 
			
		||||
                html += '                   <div class="input-group">';
 | 
			
		||||
                html += '                       <div class="input-group-addon"><i class="fa fa-university"></i></div>';
 | 
			
		||||
                html += '                       {!! Form::select('account_id', $accounts, setting('general.default_account'), ['class' => 'form-control', 'required' => 'required', 'placeholder' => trans('general.form.select.field', ['field' => trans_choice('general.accounts', 1)])]) !!}';
 | 
			
		||||
                html += '                   </div>';
 | 
			
		||||
                html += '               </div>';
 | 
			
		||||
                html += '               <div class="form-group col-md-6 required">';
 | 
			
		||||
                html += '                   {!! Form::label('currency_code', trans_choice('general.currencies', 1), ['class' => 'control-label']) !!}';
 | 
			
		||||
                html += '                   <div class="input-group">';
 | 
			
		||||
                html += '                       <div class="input-group-addon"><i class="fa fa-exchange"></i></div>';
 | 
			
		||||
                html += '                       {!! Form::text('currency', $currencies[$account_currency_code], ['id' => 'currency', 'class' => 'form-control', 'required' => 'required', 'disabled' => 'disabled']) !!}';
 | 
			
		||||
                html += '                       {!! Form::hidden('currency_code', $account_currency_code, ['id' => 'currency_code', 'class' => 'form-control', 'required' => 'required']) !!}';
 | 
			
		||||
                html += '                   </div>';
 | 
			
		||||
                html += '               </div>';
 | 
			
		||||
                html += '               <div class="form-group col-md-12">';
 | 
			
		||||
                html += '                   {!! Form::label('description', trans('general.description'), ['class' => 'control-label']) !!}';
 | 
			
		||||
                html += '                   {!! Form::textarea('description', null, ['class' => 'form-control', 'rows' => '3', 'placeholder' => trans('general.form.enter', ['field' => trans('general.description')])]) !!}';
 | 
			
		||||
                html += '               </div>';
 | 
			
		||||
                html += '               <div class="form-group col-md-6 required">';
 | 
			
		||||
                html += '                   {!! Form::label('payment_method', trans_choice('general.payment_methods', 1), ['class' => 'control-label']) !!}';
 | 
			
		||||
                html += '                   <div class="input-group">';
 | 
			
		||||
                html += '                       <div class="input-group-addon"><i class="fa fa-folder-open-o"></i></div>';
 | 
			
		||||
                html += '                       {!! Form::select('payment_method', $payment_methods, setting('general.default_payment_method'), ['class' => 'form-control', 'required' => 'required', 'placeholder' => trans('general.form.select.field', ['field' => trans_choice('general.payment_methods', 1)])]) !!}';
 | 
			
		||||
                html += '                   </div>';
 | 
			
		||||
                html += '               </div>';
 | 
			
		||||
                html += '               <div class="form-group col-md-6">';
 | 
			
		||||
                html += '                   {!! Form::label('reference', trans('general.reference'), ['class' => 'control-label']) !!}';
 | 
			
		||||
                html += '                   <div class="input-group">';
 | 
			
		||||
                html += '                       <div class="input-group-addon"><i class="fa fa-file-text-o"></i></div>';
 | 
			
		||||
                html += '                       {!! Form::text('reference', null, ['class' => 'form-control', 'placeholder' => trans('general.form.enter', ['field' => trans('general.reference')])]) !!}';
 | 
			
		||||
                html += '                   </div>';
 | 
			
		||||
                html += '               </div>';
 | 
			
		||||
                html += '               {!! Form::hidden('invoice_id', $invoice->id, ['id' => 'invoice_id', 'class' => 'form-control', 'required' => 'required']) !!}';
 | 
			
		||||
                html += '           </div>';
 | 
			
		||||
                html += '           <div class="modal-footer">';
 | 
			
		||||
                html += '               <button type="button" class="btn btn-default" data-dismiss="modal">{{ trans('general.cancel') }}</button>';
 | 
			
		||||
                html += '               <button type="button" onclick="addPayment();" class="btn btn-success">{{ trans('general.save') }}</button>';
 | 
			
		||||
                html += '           </div>';
 | 
			
		||||
                html += '       </div>';
 | 
			
		||||
                html += '   </div>';
 | 
			
		||||
                html += '</div>';
 | 
			
		||||
 | 
			
		||||
                $('body').append(html);
 | 
			
		||||
 | 
			
		||||
                $('#paid_at').datepicker({
 | 
			
		||||
                    format: 'yyyy-mm-dd',
 | 
			
		||||
                    autoclose: true
 | 
			
		||||
                });
 | 
			
		||||
 | 
			
		||||
                $("#account_id").select2({
 | 
			
		||||
                    placeholder: "{{ trans('general.form.select.field', ['field' => trans_choice('general.accounts', 1)]) }}"
 | 
			
		||||
                });
 | 
			
		||||
 | 
			
		||||
                $("#payment_method").select2({
 | 
			
		||||
                    placeholder: "{{ trans('general.form.select.field', ['field' => trans_choice('general.payment_methods', 1)]) }}"
 | 
			
		||||
                });
 | 
			
		||||
 | 
			
		||||
                $('#payment-modal').modal('show');
 | 
			
		||||
            });
 | 
			
		||||
 | 
			
		||||
            $(document).on('change', '#account_id', function (e) {
 | 
			
		||||
                $.ajax({
 | 
			
		||||
                    url: '{{ url("settings/currencies/currency") }}',
 | 
			
		||||
                    type: 'GET',
 | 
			
		||||
                    dataType: 'JSON',
 | 
			
		||||
                    data: 'account_id=' + $(this).val(),
 | 
			
		||||
                    success: function(data) {
 | 
			
		||||
                        $('#currency').val(data.currency_name);
 | 
			
		||||
                        $('#currency_code').val(data.currency_code);
 | 
			
		||||
                    }
 | 
			
		||||
                });
 | 
			
		||||
            });
 | 
			
		||||
 | 
			
		||||
            $(document).on('click', '#button-pdf', function (e) {
 | 
			
		||||
                location.href = "{{ url('incomes/invoices/' . $invoice->id . '/pdf') }}";
 | 
			
		||||
            });
 | 
			
		||||
 | 
			
		||||
            $(document).on('click', '#button-email', function (e) {
 | 
			
		||||
                $('#email-modal').remove();
 | 
			
		||||
 | 
			
		||||
                var html = '<div class="modal fade" id="email-modal" tabindex="-1" role="dialog" aria-labelledby="emailModalLabel">';
 | 
			
		||||
                html += '   <div class="modal-dialog" role="document">';
 | 
			
		||||
                html += '       <div class="modal-content">';
 | 
			
		||||
                html += '           <div class="modal-header">';
 | 
			
		||||
                html += '               <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>';
 | 
			
		||||
                html += '               <h4 class="modal-title" id="emailModalLabel">Overflowing text</h4>';
 | 
			
		||||
                html += '           </div>';
 | 
			
		||||
                html += '           <div class="modal-body">';
 | 
			
		||||
                html += '              N/A';
 | 
			
		||||
                html += '           </div>';
 | 
			
		||||
                html += '           <div class="modal-footer">';
 | 
			
		||||
                html += '               <button type="button" class="btn btn-default" data-dismiss="modal">{{ trans('general.cancel') }}</button>';
 | 
			
		||||
                html += '               <button type="button" class="btn btn-success">Save changes</button>';
 | 
			
		||||
                html += '           </div>';
 | 
			
		||||
                html += '       </div>';
 | 
			
		||||
                html += '   </div>';
 | 
			
		||||
                html += '</div>';
 | 
			
		||||
 | 
			
		||||
                $('body').append(html);
 | 
			
		||||
 | 
			
		||||
                $('#email-modal').modal('show');
 | 
			
		||||
            });
 | 
			
		||||
        });
 | 
			
		||||
 | 
			
		||||
        function addPayment() {
 | 
			
		||||
            $('.help-block').remove();
 | 
			
		||||
 | 
			
		||||
            $.ajax({
 | 
			
		||||
                url: '{{ url("incomes/invoices/payment") }}',
 | 
			
		||||
                type: 'POST',
 | 
			
		||||
                dataType: 'JSON',
 | 
			
		||||
                data: $('#payment-modal input[type=\'text\'], #payment-modal input[type=\'hidden\'], #payment-modal textarea, #payment-modal select'),
 | 
			
		||||
                headers: { 'X-CSRF-TOKEN': '{{ csrf_token() }}' },
 | 
			
		||||
                beforeSend: function() {
 | 
			
		||||
                    $('#payment-modal .modal-content').append('<div id="loading" class="text-center"><i class="fa fa-spinner fa-spin fa-5x checkout-spin"></i></div>');
 | 
			
		||||
                },
 | 
			
		||||
                complete: function() {
 | 
			
		||||
                    $('#loading').remove();
 | 
			
		||||
                },
 | 
			
		||||
                success: function(data) {
 | 
			
		||||
                    $("#payment-modal").modal('hide');
 | 
			
		||||
 | 
			
		||||
                    location.reload();
 | 
			
		||||
                },
 | 
			
		||||
                error: function(data){
 | 
			
		||||
                    var errors = data.responseJSON;
 | 
			
		||||
 | 
			
		||||
                    if (typeof errors !== 'undefined') {
 | 
			
		||||
                        if (errors.paid_at) {
 | 
			
		||||
                            $('#payment-modal #paid_at').parent().after('<p class="help-block">' + errors.paid_at + '</p>');
 | 
			
		||||
                        }
 | 
			
		||||
 | 
			
		||||
                        if (errors.amount) {
 | 
			
		||||
                            $('#payment-modal #amount').parent().after('<p class="help-block">' + errors.amount + '</p>');
 | 
			
		||||
                        }
 | 
			
		||||
 | 
			
		||||
                        if (errors.account_id) {
 | 
			
		||||
                            $('#payment-modal #account_id').parent().after('<p class="help-block">' + errors.account_id + '</p>');
 | 
			
		||||
                        }
 | 
			
		||||
 | 
			
		||||
                        if (errors.currency_code) {
 | 
			
		||||
                            $('#payment-modal #currency_code').parent().after('<p class="help-block">' + errors.currency_code + '</p>');
 | 
			
		||||
                        }
 | 
			
		||||
 | 
			
		||||
                        if (errors.category_id) {
 | 
			
		||||
                            $('#payment-modal #category_id').parent().after('<p class="help-block">' + errors.category_id + '</p>');
 | 
			
		||||
                        }
 | 
			
		||||
 | 
			
		||||
                        if (errors.payment_method) {
 | 
			
		||||
                            $('#payment-modal #payment_method').parent().after('<p class="help-block">' + errors.payment_method + '</p>');
 | 
			
		||||
                        }
 | 
			
		||||
                    }
 | 
			
		||||
                }
 | 
			
		||||
            });
 | 
			
		||||
        }
 | 
			
		||||
    </script>
 | 
			
		||||
@endsection
 | 
			
		||||
		Reference in New Issue
	
	Block a user