优化对Parental字段的判断
parent
102aad1f5d
commit
4e0a463f88
|
@ -206,8 +206,18 @@ public class XmlUtil {
|
|||
deviceChannel.setAddress(XmlUtil.getText(itemDevice, "Address"));
|
||||
String businessGroupID = XmlUtil.getText(itemDevice, "BusinessGroupID");
|
||||
if (XmlUtil.getText(itemDevice, "Parental") == null
|
||||
|| XmlUtil.getText(itemDevice, "Parental") == "") {
|
||||
deviceChannel.setParental(0);
|
||||
|| XmlUtil.getText(itemDevice, "Parental").equals("")) {
|
||||
if (deviceChannel.getChannelId().length() <= 10
|
||||
|| (deviceChannel.getChannelId().length() == 20 && (
|
||||
Integer.parseInt(deviceChannel.getChannelId().substring(10, 13)) == 215
|
||||
|| Integer.parseInt(deviceChannel.getChannelId().substring(10, 13)) == 216
|
||||
)
|
||||
)
|
||||
) {
|
||||
deviceChannel.setParental(1);
|
||||
}else {
|
||||
deviceChannel.setParental(0);
|
||||
}
|
||||
} else {
|
||||
deviceChannel.setParental(Integer.parseInt(XmlUtil.getText(itemDevice, "Parental")));
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue