Fix debian installer control prerequisites for 6.2
This commit is contained in:
parent
55df014054
commit
6d82731dc5
|
@ -34,8 +34,8 @@ public class CalloutBPartnerQuickEntry implements IColumnCallout {
|
||||||
|
|
||||||
if (!Util.isEmpty(docSOTrx)) {
|
if (!Util.isEmpty(docSOTrx)) {
|
||||||
boolean isSOTrx = "Y".equals(docSOTrx);
|
boolean isSOTrx = "Y".equals(docSOTrx);
|
||||||
mTab.setValue(MBPartner.COLUMNNAME_IsCustomer, isSOTrx);
|
//mTab.setValue(MBPartner.COLUMNNAME_IsCustomer, isSOTrx);
|
||||||
mTab.setValue(MBPartner.COLUMNNAME_IsVendor, !isSOTrx);
|
//mTab.setValue(MBPartner.COLUMNNAME_IsVendor, !isSOTrx);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
|
|
|
@ -1023,8 +1023,10 @@ class Restriction implements Serializable
|
||||||
//
|
//
|
||||||
this.Operator = operator;
|
this.Operator = operator;
|
||||||
// Boolean
|
// Boolean
|
||||||
if (code instanceof Boolean)
|
if (code instanceof Boolean) {
|
||||||
Code = ((Boolean)code).booleanValue() ? "Y" : "N";
|
Code = ((Boolean)code).booleanValue() ? "Y" : "N";
|
||||||
|
Code = Msg.getMsg(Env.getAD_Language(Env.getCtx()), Code.toString());
|
||||||
|
}
|
||||||
else if (code instanceof KeyNamePair)
|
else if (code instanceof KeyNamePair)
|
||||||
Code = Integer.valueOf(((KeyNamePair)code).getKey());
|
Code = Integer.valueOf(((KeyNamePair)code).getKey());
|
||||||
else if (code instanceof ValueNamePair)
|
else if (code instanceof ValueNamePair)
|
||||||
|
|
|
@ -3,7 +3,7 @@ Version: 6.2
|
||||||
Section: web
|
Section: web
|
||||||
Priority: extra
|
Priority: extra
|
||||||
Architecture: all
|
Architecture: all
|
||||||
Pre-Depends: openjdk-10-jdk|openjdk-11-jdk|openjdk-12-jdk, postgresql-11|postgresql-10|postgresql-9.6, postgresql-contrib, adduser
|
Pre-Depends: openjdk-11-jre|openjdk-11-jdk|openjdk-12-jre|openjdk-12-jdk, postgresql-11|postgresql-10|postgresql-9.6, postgresql-contrib, adduser
|
||||||
Suggests: firefox
|
Suggests: firefox
|
||||||
Installed-Size: 968668
|
Installed-Size: 968668
|
||||||
Maintainer: Carlos Ruiz <carg67@gmail.com>
|
Maintainer: Carlos Ruiz <carg67@gmail.com>
|
||||||
|
|
Loading…
Reference in New Issue