|
@@ -1705,7 +1705,7 @@ public class ProcessAuditServiceImpl extends ServiceImpl<ProcessAuditMapper, Pro
|
|
1705
|
public void drugDetailsAdd(String parameter) throws JSONException {
|
1705
|
public void drugDetailsAdd(String parameter) throws JSONException {
|
|
1706
|
JSONObject jsStr = new JSONObject(parameter);
|
1706
|
JSONObject jsStr = new JSONObject(parameter);
|
|
1707
|
String processId = "";
|
1707
|
String processId = "";
|
|
1708
|
- if(null != jsStr.optString("processId") && "" != jsStr.optString("processId")){
|
|
|
|
|
|
1708
|
+ if(null != jsStr.optString("processId") && !jsStr.optString("processId").equals("")){
|
|
1709
|
processId = jsStr.optString("processId");//流程id 用于修改
|
1709
|
processId = jsStr.optString("processId");//流程id 用于修改
|
|
1710
|
}else{
|
1710
|
}else{
|
|
1711
|
processId = UUID.randomUUID().toString();//生成一个流程id
|
1711
|
processId = UUID.randomUUID().toString();//生成一个流程id
|