mirror of
http://192.168.1.205:9980/cf_devdept2/cf_imes_server.git
synced 2026-08-12 21:02:08 +08:00
禅道Bug968,820,665修改
This commit is contained in:
+4
-3
@@ -102,9 +102,10 @@ public class LabelServiceImpl implements LabelService {
|
||||
packageConfigDOS.forEach(f -> {
|
||||
|
||||
JsonNode packConfig = parseTree(unzipString(f.getSetting()));
|
||||
labelId.add(packConfig.get("partLabelId").asLong());
|
||||
labelId.add(packConfig.get("orderLabelId").asLong());
|
||||
labelId.add(packConfig.get("plateLabelId").asLong());
|
||||
|
||||
labelId.add(packConfig.get("partLabelId") == null ? null : packConfig.get("partLabelId").asLong());
|
||||
labelId.add(packConfig.get("orderLabelId") == null ? null : packConfig.get("orderLabelId").asLong());
|
||||
labelId.add(packConfig.get("plateLabelId") == null ? null : packConfig.get("plateLabelId").asLong());
|
||||
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user