mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-06-23 20:00:33 -04:00
Change tax limitation
This commit is contained in:
parent
3e10c76bc7
commit
1ac4846f0d
@ -2619,6 +2619,7 @@ $LANG = array(
|
|||||||
'mcrypt_warning' => 'Warning: Mcrypt is deprecated, run <code>php artisan ninja:update-key --legacy=true</code> to update your cipher.',
|
'mcrypt_warning' => 'Warning: Mcrypt is deprecated, run <code>php artisan ninja:update-key --legacy=true</code> to update your cipher.',
|
||||||
'edit_times' => 'Edit Times',
|
'edit_times' => 'Edit Times',
|
||||||
'inclusive_taxes_help' => 'Include <b>taxes in the cost</b>',
|
'inclusive_taxes_help' => 'Include <b>taxes in the cost</b>',
|
||||||
|
'inclusive_taxes_notice' => 'This setting can not be changed once an invoice has been created.',
|
||||||
'inclusive_taxes_warning' => 'Warning: existing invoices will need to be resaved',
|
'inclusive_taxes_warning' => 'Warning: existing invoices will need to be resaved',
|
||||||
'copy_shipping' => 'Copy Shipping',
|
'copy_shipping' => 'Copy Shipping',
|
||||||
'copy_billing' => 'Copy Billing',
|
'copy_billing' => 'Copy Billing',
|
||||||
|
@ -35,18 +35,19 @@
|
|||||||
->label(' ')
|
->label(' ')
|
||||||
->value(1) !!}
|
->value(1) !!}
|
||||||
|
|
||||||
@if (! $hasInclusiveTaxRates && ($account->inclusive_taxes || $countInvoices <= 10))
|
|
||||||
{!! Former::checkbox('inclusive_taxes')
|
|
||||||
->text(trans('texts.inclusive_taxes_help'))
|
|
||||||
->label(' ')
|
|
||||||
->value(1) !!}
|
|
||||||
@endif
|
|
||||||
|
|
||||||
{!! Former::checkbox('include_item_taxes_inline')
|
{!! Former::checkbox('include_item_taxes_inline')
|
||||||
->text(trans('texts.include_item_taxes_inline'))
|
->text(trans('texts.include_item_taxes_inline'))
|
||||||
->label(' ')
|
->label(' ')
|
||||||
->value(1) !!}
|
->value(1) !!}
|
||||||
|
|
||||||
|
@if (! $hasInclusiveTaxRates && $countInvoices == 0)
|
||||||
|
{!! Former::checkbox('inclusive_taxes')
|
||||||
|
->text(trans('texts.inclusive_taxes_help'))
|
||||||
|
->label(' ')
|
||||||
|
->help('inclusive_taxes_notice')
|
||||||
|
->value(1) !!}
|
||||||
|
@endif
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@if ($taxRates->count())
|
@if ($taxRates->count())
|
||||||
|
Loading…
x
Reference in New Issue
Block a user