mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
343 lines
16 KiB
PHP
343 lines
16 KiB
PHP
@extends('header')
|
|
|
|
@section('head')
|
|
@parent
|
|
|
|
<style type="text/css">
|
|
.iframe_url {
|
|
display: none;
|
|
}
|
|
.input-group-addon div.checkbox {
|
|
display: inline;
|
|
}
|
|
.tab-content .pad-checkbox span.input-group-addon {
|
|
padding-right: 30px;
|
|
}
|
|
</style>
|
|
@stop
|
|
|
|
@section('content')
|
|
@parent
|
|
@include('accounts.nav', ['selected' => ACCOUNT_INVOICE_SETTINGS, 'advanced' => true])
|
|
|
|
{!! Former::open()->rules(['iframe_url' => 'url'])->addClass('warn-on-exit') !!}
|
|
{{ Former::populate($account) }}
|
|
{{ Former::populateField('auto_convert_quote', intval($account->auto_convert_quote)) }}
|
|
{{ Former::populateField('custom_invoice_taxes1', intval($account->custom_invoice_taxes1)) }}
|
|
{{ Former::populateField('custom_invoice_taxes2', intval($account->custom_invoice_taxes2)) }}
|
|
{{ Former::populateField('share_counter', intval($account->share_counter)) }}
|
|
|
|
<div class="panel panel-default">
|
|
<div class="panel-heading">
|
|
<h3 class="panel-title">{!! trans('texts.invoice_quote_number') !!}</h3>
|
|
</div>
|
|
<div class="panel-body form-padding-right">
|
|
|
|
<div role="tabpanel">
|
|
<ul class="nav nav-tabs" role="tablist" style="border: none">
|
|
<li role="presentation" class="active"><a href="#invoiceNumber" aria-controls="invoiceNumber" role="tab" data-toggle="tab">{{ trans('texts.invoice_number') }}</a></li>
|
|
<li role="presentation"><a href="#quoteNumber" aria-controls="quoteNumber" role="tab" data-toggle="tab">{{ trans('texts.quote_number') }}</a></li>
|
|
</ul>
|
|
</div>
|
|
<div class="tab-content">
|
|
<div role="tabpanel" class="tab-pane active" id="invoiceNumber">
|
|
<div class="panel-body">
|
|
{!! Former::inline_radios('invoice_number_type')
|
|
->onchange('onInvoiceNumberTypeChange()')
|
|
->label(trans('texts.type'))
|
|
->radios([
|
|
trans('texts.prefix') => ['value' => 'prefix', 'name' => 'invoice_number_type'],
|
|
trans('texts.pattern') => ['value' => 'pattern', 'name' => 'invoice_number_type'],
|
|
])->check($account->invoice_number_pattern ? 'pattern' : 'prefix') !!}
|
|
|
|
{!! Former::text('invoice_number_prefix')
|
|
->addGroupClass('invoice-prefix')
|
|
->label(' ') !!}
|
|
{!! Former::text('invoice_number_pattern')
|
|
->appendIcon('question-sign')
|
|
->addGroupClass('invoice-pattern')
|
|
->label(' ')
|
|
->addGroupClass('number-pattern') !!}
|
|
{!! Former::text('invoice_number_counter')
|
|
->label(trans('texts.counter'))
|
|
->help(trans('texts.invoice_number_help') . ' ' .
|
|
trans('texts.next_invoice_number', ['number' => $account->previewNextInvoiceNumber()])) !!}
|
|
|
|
</div>
|
|
</div>
|
|
<div role="tabpanel" class="tab-pane" id="quoteNumber">
|
|
<div class="panel-body">
|
|
{!! Former::inline_radios('quote_number_type')
|
|
->onchange('onQuoteNumberTypeChange()')
|
|
->label(trans('texts.type'))
|
|
->radios([
|
|
trans('texts.prefix') => ['value' => 'prefix', 'name' => 'quote_number_type'],
|
|
trans('texts.pattern') => ['value' => 'pattern', 'name' => 'quote_number_type'],
|
|
])->check($account->quote_number_pattern ? 'pattern' : 'prefix') !!}
|
|
|
|
{!! Former::text('quote_number_prefix')
|
|
->addGroupClass('quote-prefix')
|
|
->label(' ') !!}
|
|
{!! Former::text('quote_number_pattern')
|
|
->appendIcon('question-sign')
|
|
->addGroupClass('quote-pattern')
|
|
->addGroupClass('number-pattern')
|
|
->label(' ') !!}
|
|
{!! Former::text('quote_number_counter')
|
|
->label(trans('texts.counter'))
|
|
->addGroupClass('pad-checkbox')
|
|
->append(Former::checkbox('share_counter')->raw()
|
|
->onclick('setQuoteNumberEnabled()') . ' ' . trans('texts.share_invoice_counter'))
|
|
->help(trans('texts.quote_number_help') . ' ' .
|
|
trans('texts.next_quote_number', ['number' => $account->previewNextInvoiceNumber(ENTITY_QUOTE)])) !!}
|
|
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<div class="panel panel-default">
|
|
<div class="panel-heading">
|
|
<h3 class="panel-title">{!! trans('texts.custom_fields') !!}</h3>
|
|
</div>
|
|
<div class="panel-body form-padding-right">
|
|
|
|
<div role="tabpanel">
|
|
<ul class="nav nav-tabs" role="tablist" style="border: none">
|
|
<li role="presentation" class="active">
|
|
<a href="#clientFields" aria-controls="clientFields" role="tab" data-toggle="tab">{{ trans('texts.client_fields') }}</a>
|
|
</li>
|
|
<li role="presentation">
|
|
<a href="#companyFields" aria-controls="companyFields" role="tab" data-toggle="tab">{{ trans('texts.company_fields') }}</a>
|
|
</li>
|
|
<li role="presentation">
|
|
<a href="#invoiceFields" aria-controls="invoiceFields" role="tab" data-toggle="tab">{{ trans('texts.invoice_fields') }}</a>
|
|
</li>
|
|
<li role="presentation">
|
|
<a href="#invoiceItemFields" aria-controls="invoiceItemFields" role="tab" data-toggle="tab">{{ trans('texts.invoice_item_fields') }}</a>
|
|
</li>
|
|
<li role="presentation">
|
|
<a href="#invoiceCharges" aria-controls="invoiceCharges" role="tab" data-toggle="tab">{{ trans('texts.invoice_charges') }}</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
<div class="tab-content">
|
|
<div role="tabpanel" class="tab-pane active" id="clientFields">
|
|
<div class="panel-body">
|
|
|
|
{!! Former::text('custom_client_label1')
|
|
->label(trans('texts.field_label')) !!}
|
|
{!! Former::text('custom_client_label2')
|
|
->label(trans('texts.field_label'))
|
|
->help(trans('texts.custom_client_fields_helps')) !!}
|
|
|
|
</div>
|
|
</div>
|
|
<div role="tabpanel" class="tab-pane" id="companyFields">
|
|
<div class="panel-body">
|
|
|
|
{!! Former::text('custom_label1')
|
|
->label(trans('texts.field_label')) !!}
|
|
{!! Former::text('custom_value1')
|
|
->label(trans('texts.field_value')) !!}
|
|
<p> </p>
|
|
{!! Former::text('custom_label2')
|
|
->label(trans('texts.field_label')) !!}
|
|
{!! Former::text('custom_value2')
|
|
->label(trans('texts.field_value'))
|
|
->help(trans('texts.custom_account_fields_helps')) !!}
|
|
|
|
</div>
|
|
</div>
|
|
<div role="tabpanel" class="tab-pane" id="invoiceFields">
|
|
<div class="panel-body">
|
|
|
|
{!! Former::text('custom_invoice_text_label1')
|
|
->label(trans('texts.field_label')) !!}
|
|
{!! Former::text('custom_invoice_text_label2')
|
|
->label(trans('texts.field_label'))
|
|
->help(trans('texts.custom_invoice_fields_helps')) !!}
|
|
|
|
</div>
|
|
</div>
|
|
<div role="tabpanel" class="tab-pane" id="invoiceItemFields">
|
|
<div class="panel-body">
|
|
|
|
{!! Former::text('custom_invoice_item_label1')
|
|
->label(trans('texts.field_label')) !!}
|
|
{!! Former::text('custom_invoice_item_label2')
|
|
->label(trans('texts.field_label'))
|
|
->help(trans('texts.custom_invoice_item_fields_help')) !!}
|
|
|
|
</div>
|
|
</div>
|
|
<div role="tabpanel" class="tab-pane" id="invoiceCharges">
|
|
<div class="panel-body">
|
|
|
|
{!! Former::text('custom_invoice_label1')
|
|
->label(trans('texts.field_label'))
|
|
->addGroupClass('pad-checkbox')
|
|
->append(Former::checkbox('custom_invoice_taxes1')
|
|
->raw() . trans('texts.charge_taxes')) !!}
|
|
{!! Former::text('custom_invoice_label2')
|
|
->label(trans('texts.field_label'))
|
|
->addGroupClass('pad-checkbox')
|
|
->append(Former::checkbox('custom_invoice_taxes2')
|
|
->raw() . trans('texts.charge_taxes'))
|
|
->help(trans('texts.custom_invoice_charges_helps')) !!}
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="panel panel-default">
|
|
<div class="panel-heading">
|
|
<h3 class="panel-title">{!! trans('texts.quote_settings') !!}</h3>
|
|
</div>
|
|
<div class="panel-body form-padding-right">
|
|
{!! Former::checkbox('auto_convert_quote')
|
|
->text(trans('texts.enable'))
|
|
->blockHelp(trans('texts.auto_convert_quote_help')) !!}
|
|
</div>
|
|
</div>
|
|
|
|
<div class="panel panel-default">
|
|
<div class="panel-heading">
|
|
<h3 class="panel-title">{!! trans('texts.default_messages') !!}</h3>
|
|
</div>
|
|
<div class="panel-body form-padding-right">
|
|
|
|
<div role="tabpanel">
|
|
<ul class="nav nav-tabs" role="tablist" style="border: none">
|
|
<li role="presentation" class="active"><a href="#invoiceTerms" aria-controls="invoiceTerms" role="tab" data-toggle="tab">{{ trans('texts.invoice_terms') }}</a></li>
|
|
<li role="presentation"><a href="#invoiceFooter" aria-controls="invoiceFooter" role="tab" data-toggle="tab">{{ trans('texts.invoice_footer') }}</a></li>
|
|
<li role="presentation"><a href="#quoteTerms" aria-controls="quoteTerms" role="tab" data-toggle="tab">{{ trans('texts.quote_terms') }}</a></li>
|
|
</ul>
|
|
</div>
|
|
<div class="tab-content">
|
|
<div role="tabpanel" class="tab-pane active" id="invoiceTerms">
|
|
<div class="panel-body">
|
|
{!! Former::textarea('invoice_terms')
|
|
->label(trans('texts.default_invoice_terms'))
|
|
->rows(4) !!}
|
|
</div>
|
|
</div>
|
|
<div role="tabpanel" class="tab-pane" id="invoiceFooter">
|
|
<div class="panel-body">
|
|
{!! Former::textarea('invoice_footer')
|
|
->label(trans('texts.default_invoice_footer'))
|
|
->rows(4) !!}
|
|
</div>
|
|
</div>
|
|
<div role="tabpanel" class="tab-pane" id="quoteTerms">
|
|
<div class="panel-body">
|
|
{!! Former::textarea('quote_terms')
|
|
->label(trans('texts.default_quote_terms'))
|
|
->rows(4) !!}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
@if (Auth::user()->isPro())
|
|
<center>
|
|
{!! Button::success(trans('texts.save'))->large()->submit()->appendIcon(Icon::create('floppy-disk')) !!}
|
|
</center>
|
|
@endif
|
|
|
|
<div class="modal fade" id="patternHelpModal" tabindex="-1" role="dialog" aria-labelledby="patternHelpModalLabel" aria-hidden="true">
|
|
<div class="modal-dialog" style="min-width:150px">
|
|
<div class="modal-content">
|
|
<div class="modal-header">
|
|
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
|
|
<h4 class="modal-title" id="patternHelpModalLabel">{{ trans('texts.pattern_help_title') }}</h4>
|
|
</div>
|
|
|
|
<div class="modal-body">
|
|
<p>{{ trans('texts.pattern_help_1') }}</p>
|
|
<p>{{ trans('texts.pattern_help_2') }}</p>
|
|
<ul>
|
|
@foreach (\App\Models\Invoice::$patternFields as $field)
|
|
@if ($field == 'date:')
|
|
<li>{$date:format} - {!! link_to(PHP_DATE_FORMATS, trans('texts.see_options'), ['target' => '_blank']) !!}</li>
|
|
@else
|
|
<li>{${{ $field }}}</li>
|
|
@endif
|
|
@endforeach
|
|
</ul>
|
|
<p>{{ trans('texts.pattern_help_3', [
|
|
'example' => '{$year}-{$counter}',
|
|
'value' => date('Y') . '-0001'
|
|
]) }}</p>
|
|
</div>
|
|
|
|
<div class="modal-footer" style="margin-top: 0px">
|
|
<button type="button" class="btn btn-primary" data-dismiss="modal">{{ trans('texts.close') }}</button>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
{!! Former::close() !!}
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
function setQuoteNumberEnabled() {
|
|
var disabled = $('#share_counter').prop('checked');
|
|
$('#quote_number_counter').prop('disabled', disabled);
|
|
$('#quote_number_counter').val(disabled ? '' : '{!! $account->quote_number_counter !!}');
|
|
}
|
|
|
|
function onInvoiceNumberTypeChange() {
|
|
var val = $('input[name=invoice_number_type]:checked').val()
|
|
if (val == 'prefix') {
|
|
$('.invoice-prefix').show();
|
|
$('.invoice-pattern').hide();
|
|
} else {
|
|
$('.invoice-prefix').hide();
|
|
$('.invoice-pattern').show();
|
|
}
|
|
}
|
|
|
|
function onQuoteNumberTypeChange() {
|
|
var val = $('input[name=quote_number_type]:checked').val()
|
|
if (val == 'prefix') {
|
|
$('.quote-prefix').show();
|
|
$('.quote-pattern').hide();
|
|
} else {
|
|
$('.quote-prefix').hide();
|
|
$('.quote-pattern').show();
|
|
}
|
|
}
|
|
|
|
$('.number-pattern .input-group-addon').click(function() {
|
|
$('#patternHelpModal').modal('show');
|
|
});
|
|
|
|
$(function() {
|
|
setQuoteNumberEnabled();
|
|
onInvoiceNumberTypeChange();
|
|
onQuoteNumberTypeChange();
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
@stop
|
|
|
|
@section('onReady')
|
|
$('#custom_invoice_label1').focus();
|
|
@stop
|