mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-08 06:24:30 -04:00
Fix qty precision
This commit is contained in:
parent
9a91bc7d32
commit
86be4f9819
@ -2649,6 +2649,7 @@ $LANG = array(
|
||||
'signature_on_pdf_help' => 'Show the client signature on the invoice/quote PDF.',
|
||||
'expired_white_label' => 'The white label license has expired',
|
||||
'return_to_login' => 'Return to Login',
|
||||
'convert_products_tip' => 'Note: add a custom field named ":name" to see the exchange rate.',
|
||||
|
||||
);
|
||||
|
||||
|
@ -21,7 +21,8 @@
|
||||
{!! Former::checkbox('fill_products')->text(trans('texts.fill_products_help'))->value(1) !!}
|
||||
{!! Former::checkbox('update_products')->text(trans('texts.update_products_help'))->value(1) !!}
|
||||
|
||||
{!! Former::checkbox('convert_products')->text(trans('texts.convert_products_help'))->value(1) !!}
|
||||
{!! Former::checkbox('convert_products')->text(trans('texts.convert_products_help'))
|
||||
->help(trans('texts.convert_products_tip', ['name' => trans('texts.exchange_rate')]))->value(1) !!}
|
||||
|
||||
{!! Former::actions( Button::success(trans('texts.save'))->submit()->appendIcon(Icon::create('floppy-disk')) ) !!}
|
||||
{!! Former::close() !!}
|
||||
|
Loading…
x
Reference in New Issue
Block a user