FR [ 1828521 ] Centralized ID management
Fix possible precedence problems with parenthesis
This commit is contained in:
parent
5752bdbe07
commit
a2191ada06
|
@ -157,7 +157,7 @@ public class MSequence extends X_AD_Sequence
|
||||||
if (adempiereSys) {
|
if (adempiereSys) {
|
||||||
|
|
||||||
String isUseCentralizedID = MSysConfig.getValue("DICTIONARY_ID_USE_CENTRALIZED_ID", "Y"); // defaults to Y
|
String isUseCentralizedID = MSysConfig.getValue("DICTIONARY_ID_USE_CENTRALIZED_ID", "Y"); // defaults to Y
|
||||||
if (! isUseCentralizedID.equals("N") && ! isExceptionCentralized(TableName)) {
|
if ( ( ! isUseCentralizedID.equals("N") ) && ( ! isExceptionCentralized(TableName) ) ) {
|
||||||
// get ID from http site
|
// get ID from http site
|
||||||
retValue = getNextOfficialID_HTTP(TableName);
|
retValue = getNextOfficialID_HTTP(TableName);
|
||||||
if (retValue > 0) {
|
if (retValue > 0) {
|
||||||
|
@ -174,7 +174,7 @@ public class MSequence extends X_AD_Sequence
|
||||||
}
|
}
|
||||||
|
|
||||||
// If not official dictionary try to get the ID from http custom server - if configured
|
// If not official dictionary try to get the ID from http custom server - if configured
|
||||||
if (hasEntityType && ! adempiereSys && ! isExceptionCentralized(TableName)) {
|
if (hasEntityType && ( ! adempiereSys ) && ( ! isExceptionCentralized(TableName) ) ) {
|
||||||
|
|
||||||
String isUseProjectCentralizedID = MSysConfig.getValue("PROJECT_ID_USE_CENTRALIZED_ID", "N"); // defaults to N
|
String isUseProjectCentralizedID = MSysConfig.getValue("PROJECT_ID_USE_CENTRALIZED_ID", "N"); // defaults to N
|
||||||
if (isUseProjectCentralizedID.equals("Y")) {
|
if (isUseProjectCentralizedID.equals("Y")) {
|
||||||
|
|
Loading…
Reference in New Issue