Merge branch 'develop' of git@github.com:Dolibarr/dolibarr.git into develop

This commit is contained in:
Laurent Destailleur 2016-01-01 23:44:35 +01:00
commit a7b2f000d8
2 changed files with 4 additions and 3 deletions

View File

@ -2054,7 +2054,7 @@ abstract class CommonObject
$forcedroundingmode=$roundingadjust; $forcedroundingmode=$roundingadjust;
if ($forcedroundingmode == 'auto' && isset($conf->global->MAIN_ROUNDOFTOTAL_NOT_TOTALOFROUND)) $forcedroundingmode=$conf->global->MAIN_ROUNDOFTOTAL_NOT_TOTALOFROUND; if ($forcedroundingmode == 'auto' && isset($conf->global->MAIN_ROUNDOFTOTAL_NOT_TOTALOFROUND)) $forcedroundingmode=$conf->global->MAIN_ROUNDOFTOTAL_NOT_TOTALOFROUND;
if ($forcedroundingmode == 'auto') $forcedroundingmode='0'; elseif ($forcedroundingmode == 'auto') $forcedroundingmode='0';
$error=0; $error=0;

View File

@ -624,10 +624,11 @@ class Resource extends CommonObject
* Load properties id_previous and id_next * Load properties id_previous and id_next
* *
* @param string $filter Optional filter * @param string $filter Optional filter
* @param int $fieldid Name of field to use for the select MAX and MIN * @param int $fieldid Name of field to use for the select MAX and MIN
* @param int $nodbprefix Do not include DB prefix to forge table name
* @return int <0 if KO, >0 if OK * @return int <0 if KO, >0 if OK
*/ */
function load_previous_next_ref($filter,$fieldid) function load_previous_next_ref($filter, $fieldid, $nodbprefix =0)
{ {
global $conf, $user; global $conf, $user;