|
|
@@ -58,7 +58,6 @@ public class BasicWarehouseServiceImpl implements BasicWarehouseService {
|
|
58
|
58
|
public void edit(String warehouseJson, String userInfo, String orgInfoJson) throws Exception {
|
|
59
|
59
|
|
|
60
|
60
|
JSONObject user = null;
|
|
61
|
|
- JSONObject orgInfo = null;
|
|
62
|
61
|
Integer orgId = null;
|
|
63
|
62
|
String userName = "";
|
|
64
|
63
|
|
|
|
@@ -68,12 +67,6 @@ public class BasicWarehouseServiceImpl implements BasicWarehouseService {
|
|
68
|
67
|
orgId = Integer.parseInt(user.get("orgId") == null?"":user.get("orgId").toString());
|
|
69
|
68
|
userName = user.get("username") == null?"":user.get("username").toString();
|
|
70
|
69
|
}
|
|
71
|
|
- //解析单位信息
|
|
72
|
|
- String dwbm = "";
|
|
73
|
|
- if (null != orgInfoJson && !"".equals(orgInfoJson)) {
|
|
74
|
|
- orgInfo = JSONObject.parseObject(orgInfoJson);
|
|
75
|
|
- dwbm = orgInfo.get("creditCode") == null?"":orgInfo.get("creditCode").toString();
|
|
76
|
|
- }
|
|
77
|
70
|
|
|
78
|
71
|
//获取当前时间
|
|
79
|
72
|
Date date = new Date();
|