Commit 8ba3796e authored by Quxl's avatar Quxl

x

parent 0818e0fb
...@@ -69,7 +69,7 @@ public class CategoryServiceImpl implements CategoryService { ...@@ -69,7 +69,7 @@ public class CategoryServiceImpl implements CategoryService {
if(level == null) { if(level == null) {
level = jdbcTemplate.queryForInt("select GoodsCategoryLevel = isnull((select Convert(int,sValue1) from tSystemCtrl where sCode = 'GoodsCategoryLevel'),0)"); level = jdbcTemplate.queryForInt("select GoodsCategoryLevel = isnull((select Convert(int,sValue1) from tSystemCtrl where sCode = 'GoodsCategoryLevel'),0)");
} }
String three="select sCategoryNO, sCategoryDesc, sUpCategoryNO from tOrgCategory where sOrgNO = ? and nCategoryLevel = ? order by nSort desc"; String three="select sCategoryNO, sCategoryDesc, sUpCategoryNO from tOrgCategory where sOrgNO = ? and nCategoryLevel = ? and nTag&1 = 0 order by nSort desc";
List<Map<String,Object>> list3=jdbcTemplate.queryForList(three, orgNO, level); List<Map<String,Object>> list3=jdbcTemplate.queryForList(three, orgNO, level);
return list3; return list3;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment