Fix qty precision

This commit is contained in:
Hillel Coren 2018-01-16 12:46:53 +02:00
parent 9a91bc7d32
commit 86be4f9819
2 changed files with 3 additions and 1 deletions

View File

@ -2649,6 +2649,7 @@ $LANG = array(
'signature_on_pdf_help' => 'Show the client signature on the invoice/quote PDF.', 'signature_on_pdf_help' => 'Show the client signature on the invoice/quote PDF.',
'expired_white_label' => 'The white label license has expired', 'expired_white_label' => 'The white label license has expired',
'return_to_login' => 'Return to Login', 'return_to_login' => 'Return to Login',
'convert_products_tip' => 'Note: add a custom field named ":name" to see the exchange rate.',
); );

View File

@ -21,7 +21,8 @@
{!! Former::checkbox('fill_products')->text(trans('texts.fill_products_help'))->value(1) !!} {!! 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('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::actions( Button::success(trans('texts.save'))->submit()->appendIcon(Icon::create('floppy-disk')) ) !!}
{!! Former::close() !!} {!! Former::close() !!}