1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 16:31:33 +02:00

Add help for inclusive tax rates

This commit is contained in:
Hillel Coren 2017-03-24 17:31:59 +03:00
parent db55725890
commit 5384b79082
2 changed files with 3 additions and 1 deletions

View File

@ -2438,6 +2438,7 @@ $LANG = array(
'created_new_company' => 'Successfully created new company', 'created_new_company' => 'Successfully created new company',
'fees_disabled_for_gateway' => 'Fees are disabled for this gateway.', 'fees_disabled_for_gateway' => 'Fees are disabled for this gateway.',
'logout_and_delete' => 'Log Out/Delete Account', 'logout_and_delete' => 'Log Out/Delete Account',
'tax_rate_type_help' => 'Inclusive taxes adjust the line item cost when selected.',
); );

View File

@ -33,7 +33,8 @@
trans('texts.inclusive') => array('name' => 'is_inclusive', 'value' => 1), trans('texts.inclusive') => array('name' => 'is_inclusive', 'value' => 1),
])->inline() ])->inline()
->check(0) ->check(0)
->label('type') !!} ->label('type')
->help('tax_rate_type_help') !!}
</div> </div>