|
@@ -518,7 +518,8 @@ public class TbAssetInventoryServiceImpl implements ITbAssetInventoryService
|
|
Map<String, Integer> invQuantity_map){
|
|
Map<String, Integer> invQuantity_map){
|
|
for (TbAssetInformation asset : assetInfos) {
|
|
for (TbAssetInformation asset : assetInfos) {
|
|
|
|
|
|
- String loc = asset.getAncestorLocationName()+asset.getParentLocationName()+asset.getLocationName();
|
|
+
|
|
|
|
+ String loc = asset.getLocationName();
|
|
|
|
|
|
if (!assetMap.containsKey(asset.getName()+"-"+loc)){
|
|
if (!assetMap.containsKey(asset.getName()+"-"+loc)){
|
|
|
|
|
|
@@ -659,7 +660,8 @@ public class TbAssetInventoryServiceImpl implements ITbAssetInventoryService
|
|
TbAssetInformation info = JSONUtil.toBean(asset.getAssetData(), TbAssetInformation.class);
|
|
TbAssetInformation info = JSONUtil.toBean(asset.getAssetData(), TbAssetInformation.class);
|
|
assetInfos.add(info);
|
|
assetInfos.add(info);
|
|
|
|
|
|
- String loc = info.getAncestorLocationName()+info.getParentLocationName()+info.getLocationName();
|
|
+
|
|
|
|
+ String loc = info.getLocationName();
|
|
|
|
|
|
if (!invQuantity_map.containsKey(info.getName()+"-"+loc)) {
|
|
if (!invQuantity_map.containsKey(info.getName()+"-"+loc)) {
|
|
invQuantity_map.put(info.getName() + "-" + loc, asset.getInventoryQuantity());
|
|
invQuantity_map.put(info.getName() + "-" + loc, asset.getInventoryQuantity());
|