mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
89 lines
2.9 KiB
PHP
89 lines
2.9 KiB
PHP
@extends('header')
|
|
|
|
@section('content')
|
|
@parent
|
|
|
|
@include('accounts.nav', ['selected' => ACCOUNT_TAX_RATES])
|
|
|
|
{!! Former::open()->addClass('warn-on-exit') !!}
|
|
{{ Former::populate($account) }}
|
|
{{ Former::populateField('invoice_taxes', intval($account->invoice_taxes)) }}
|
|
{{ Former::populateField('invoice_item_taxes', intval($account->invoice_item_taxes)) }}
|
|
{{ Former::populateField('show_item_taxes', intval($account->show_item_taxes)) }}
|
|
{{ Former::populateField('enable_second_tax_rate', intval($account->enable_second_tax_rate)) }}
|
|
{{ Former::populateField('include_item_taxes_inline', intval($account->include_item_taxes_inline)) }}
|
|
|
|
|
|
<div class="panel panel-default">
|
|
<div class="panel-heading">
|
|
<h3 class="panel-title">{!! trans('texts.tax_settings') !!}</h3>
|
|
</div>
|
|
<div class="panel-body">
|
|
|
|
{!! Former::checkbox('invoice_taxes')
|
|
->text(trans('texts.enable_invoice_tax'))
|
|
->label(' ')
|
|
->value(1) !!}
|
|
|
|
{!! Former::checkbox('invoice_item_taxes')
|
|
->text(trans('texts.enable_line_item_tax'))
|
|
->label(' ')
|
|
->value(1) !!}
|
|
|
|
{!! Former::checkbox('show_item_taxes')
|
|
->text(trans('texts.show_line_item_tax'))
|
|
->label(' ')
|
|
->value(1) !!}
|
|
|
|
{!! Former::checkbox('include_item_taxes_inline')
|
|
->text(trans('texts.include_item_taxes_inline'))
|
|
->label(' ')
|
|
->value(1) !!}
|
|
|
|
{!! Former::checkbox('enable_second_tax_rate')
|
|
->text(trans('texts.enable_second_tax_rate'))
|
|
->label(' ')
|
|
->value(1) !!}
|
|
|
|
|
|
|
|
{!! Former::select('default_tax_rate_id')
|
|
->style('max-width: 250px')
|
|
->addOption('', '')
|
|
->fromQuery($taxRates, function($model) { return $model->name . ': ' . $model->rate . '%'; }, 'id') !!}
|
|
|
|
|
|
|
|
{!! Former::actions( Button::success(trans('texts.save'))->submit()->appendIcon(Icon::create('floppy-disk')) ) !!}
|
|
{!! Former::close() !!}
|
|
</div>
|
|
</div>
|
|
|
|
{!! Button::primary(trans('texts.create_tax_rate'))
|
|
->asLinkTo(URL::to('/tax_rates/create'))
|
|
->withAttributes(['class' => 'pull-right'])
|
|
->appendIcon(Icon::create('plus-sign')) !!}
|
|
|
|
@include('partials.bulk_form', ['entityType' => ENTITY_TAX_RATE])
|
|
|
|
{!! Datatable::table()
|
|
->addColumn(
|
|
trans('texts.name'),
|
|
trans('texts.rate'),
|
|
trans('texts.type'),
|
|
trans('texts.action'))
|
|
->setUrl(url('api/tax_rates/'))
|
|
->setOptions('sPaginationType', 'bootstrap')
|
|
->setOptions('bFilter', false)
|
|
->setOptions('bAutoWidth', false)
|
|
->setOptions('aoColumns', [[ "sWidth"=> "25%" ], [ "sWidth"=> "25%" ], ["sWidth"=> "25%"], ["sWidth"=> "25%"]])
|
|
->setOptions('aoColumnDefs', [['bSortable'=>false, 'aTargets'=>[2]]])
|
|
->render('datatable') !!}
|
|
|
|
<script>
|
|
window.onDatatableReady = actionListHandler;
|
|
</script>
|
|
|
|
|
|
@stop
|