Commit 14604ce1 authored by Quxl's avatar Quxl

x

parent d6cca963
......@@ -419,6 +419,7 @@ public class UserServiceImpl implements UserService {
Map<String, Object> shopMap = jdbcTemplate.queryForMap("select * from tShop where nShopID = ?", shopId);
String custNo = (String) shopMap.get("sCustNO");
Map<String, Object> custMap = jdbcTemplate.queryForMap("select * from tCustomer where sCustNO = ?", custNo);
map.put("nTag", custMap.get("nTag"));
map.put("sCustName", custMap.get("sCustName"));
map.put("sCustNO", custMap.get("sCustNO"));
map.put("sShopNO", shopMap.get("sShopNO"));
......
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