Fix debian installer control prerequisites for 6.2

This commit is contained in:
Carlos Ruiz 2019-02-08 12:56:39 +01:00
parent 55df014054
commit 6d82731dc5
3 changed files with 6 additions and 4 deletions

View File

@ -34,8 +34,8 @@ public class CalloutBPartnerQuickEntry implements IColumnCallout {
if (!Util.isEmpty(docSOTrx)) {
boolean isSOTrx = "Y".equals(docSOTrx);
mTab.setValue(MBPartner.COLUMNNAME_IsCustomer, isSOTrx);
mTab.setValue(MBPartner.COLUMNNAME_IsVendor, !isSOTrx);
//mTab.setValue(MBPartner.COLUMNNAME_IsCustomer, isSOTrx);
//mTab.setValue(MBPartner.COLUMNNAME_IsVendor, !isSOTrx);
}
}
return null;

View File

@ -1023,8 +1023,10 @@ class Restriction implements Serializable
//
this.Operator = operator;
// Boolean
if (code instanceof Boolean)
if (code instanceof Boolean) {
Code = ((Boolean)code).booleanValue() ? "Y" : "N";
Code = Msg.getMsg(Env.getAD_Language(Env.getCtx()), Code.toString());
}
else if (code instanceof KeyNamePair)
Code = Integer.valueOf(((KeyNamePair)code).getKey());
else if (code instanceof ValueNamePair)

View File

@ -3,7 +3,7 @@ Version: 6.2
Section: web
Priority: extra
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
Installed-Size: 968668
Maintainer: Carlos Ruiz <carg67@gmail.com>