forked from Wavyzz/dolibarr
FIX: systematic rounding causes prices to be updated without reason
This commit is contained in:
@@ -320,18 +320,12 @@ if (! empty($usemargins) && $user->rights->margins->creer)
|
|||||||
jQuery(document).ready(function() {
|
jQuery(document).ready(function() {
|
||||||
<?php
|
<?php
|
||||||
if (! empty($conf->global->DISPLAY_MARGIN_RATES)) { ?>
|
if (! empty($conf->global->DISPLAY_MARGIN_RATES)) { ?>
|
||||||
$('#addline').click(function (e) {
|
|
||||||
return checkFreeLine(e, "np_marginRate");
|
|
||||||
});
|
|
||||||
$("input[name='np_marginRate']:first").blur(function(e) {
|
$("input[name='np_marginRate']:first").blur(function(e) {
|
||||||
return checkFreeLine(e, "np_marginRate");
|
return checkFreeLine(e, "np_marginRate");
|
||||||
});
|
});
|
||||||
<?php
|
<?php
|
||||||
}
|
}
|
||||||
if (! empty($conf->global->DISPLAY_MARK_RATES)) { ?>
|
if (! empty($conf->global->DISPLAY_MARK_RATES)) { ?>
|
||||||
$('#addline').click(function (e) {
|
|
||||||
return checkFreeLine(e, "np_markRate");
|
|
||||||
});
|
|
||||||
$("input[name='np_markRate']:first").blur(function(e) {
|
$("input[name='np_markRate']:first").blur(function(e) {
|
||||||
return checkFreeLine(e, "np_markRate");
|
return checkFreeLine(e, "np_markRate");
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -247,9 +247,6 @@ if (! empty($conf->margin->enabled))
|
|||||||
if (! empty($conf->global->DISPLAY_MARGIN_RATES))
|
if (! empty($conf->global->DISPLAY_MARGIN_RATES))
|
||||||
{
|
{
|
||||||
?>
|
?>
|
||||||
$('#savelinebutton').click(function (e) {
|
|
||||||
return checkEditLine(e, "np_marginRate");
|
|
||||||
});
|
|
||||||
$("input[name='np_marginRate']:first").blur(function(e) {
|
$("input[name='np_marginRate']:first").blur(function(e) {
|
||||||
return checkEditLine(e, "np_marginRate");
|
return checkEditLine(e, "np_marginRate");
|
||||||
});
|
});
|
||||||
@@ -258,9 +255,6 @@ if (! empty($conf->margin->enabled))
|
|||||||
if (! empty($conf->global->DISPLAY_MARK_RATES))
|
if (! empty($conf->global->DISPLAY_MARK_RATES))
|
||||||
{
|
{
|
||||||
?>
|
?>
|
||||||
$('#savelinebutton').click(function (e) {
|
|
||||||
return checkEditLine(e, "np_markRate");
|
|
||||||
});
|
|
||||||
$("input[name='np_markRate']:first").blur(function(e) {
|
$("input[name='np_markRate']:first").blur(function(e) {
|
||||||
return checkEditLine(e, "np_markRate");
|
return checkEditLine(e, "np_markRate");
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user