|
@@ -92,11 +92,13 @@ public class LogBidRule extends BaseRuleImpl implements IBaseRule {
|
92
|
92
|
String json = flowVar.get("json");
|
93
|
93
|
String date = flowVar.get("date");
|
94
|
94
|
String userId = flowVar.get("userId");
|
|
95
|
+ String docTemplateId = flowVar.get("docTemplateId");
|
95
|
96
|
final Map<String, Object> params = new HashMap<>();
|
96
|
97
|
params.put("id", id);
|
97
|
98
|
params.put("date", date);
|
98
|
99
|
params.put("json", json);
|
99
|
100
|
params.put("userId", userId);
|
|
101
|
+ params.put("docTemplateId", docTemplateId);
|
100
|
102
|
params.put("processInstanceStatus", status);
|
101
|
103
|
System.err.println(params.toString());
|
102
|
104
|
Constants.EXECUTOR_SERVICE.submit(new Runnable() {
|