Debug v17
This commit is contained in:
parent
c3da1554a7
commit
2cafd2cbc4
@ -261,7 +261,7 @@ class RemiseCheque extends CommonObject
|
||||
$this->errno = $this->db->lasterrno();
|
||||
}
|
||||
|
||||
if (!$this->errno && !empty($conf->global->MAIN_DISABLEDRAFTSTATUS)) {
|
||||
if (!$this->errno && (getDolGlobalString('MAIN_DISABLEDRAFTSTATUS') || getDolGlobalString('MAIN_DISABLEDRAFTSTATUS_CHEQUE'))) {
|
||||
$res = $this->validate($user);
|
||||
//if ($res < 0) $error++;
|
||||
}
|
||||
|
||||
@ -984,8 +984,13 @@ if (!$error && $massaction == 'validate' && $permissiontoadd) {
|
||||
if (getDolGlobalInt('MAIN_MULTILANGS') && empty($newlang) && GETPOST('lang_id', 'aZ09')) {
|
||||
$newlang = GETPOST('lang_id', 'aZ09');
|
||||
}
|
||||
if (getDolGlobalInt('MAIN_MULTILANGS') && empty($newlang)) {
|
||||
$newlang = $objecttmp->thirdparty->default_lang;
|
||||
if (getDolGlobalInt('MAIN_MULTILANGS') && empty($newlang) && property_exists($objecttmp, 'thirdparty')) {
|
||||
if ((property_exists($objecttmp, 'socid') || property_exists($objecttmp, 'fk_soc')) && empty($objecttmp->thirdparty)) {
|
||||
$objecttmp->fetch_thirparty();
|
||||
}
|
||||
if (!empty($objecttmp->thirdparty)) {
|
||||
$newlang = $objecttmp->thirdparty->default_lang;
|
||||
}
|
||||
}
|
||||
if (!empty($newlang)) {
|
||||
$outputlangs = new Translate("", $conf);
|
||||
|
||||
@ -438,7 +438,7 @@ class Don extends CommonObject
|
||||
}
|
||||
}
|
||||
|
||||
if (!$error && !empty($conf->global->MAIN_DISABLEDRAFTSTATUS)) {
|
||||
if (!$error && (getDolGlobalString('MAIN_DISABLEDRAFTSTATUS') || getDolGlobalString('MAIN_DISABLEDRAFTSTATUS_DONATION'))) {
|
||||
//$res = $this->setValid($user);
|
||||
//if ($res < 0) $error++;
|
||||
}
|
||||
|
||||
@ -498,7 +498,7 @@ class Project extends CommonObject
|
||||
}
|
||||
}
|
||||
|
||||
if (!$error && !empty($conf->global->MAIN_DISABLEDRAFTSTATUS)) {
|
||||
if (!$error && (getDolGlobalString('MAIN_DISABLEDRAFTSTATUS') || getDolGlobalString('MAIN_DISABLEDRAFTSTATUS_PROJECT'))) {
|
||||
$res = $this->setValid($user);
|
||||
if ($res < 0) {
|
||||
$error++;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user