|
@@ -68,6 +68,8 @@ public class SampleUpdateFlow extends FlowDelegate {
|
|
|
public Long start(Long flowId, JSONObject submitData) {
|
|
|
|
|
|
SampleDto newSample = submitData.toJavaObject(SampleDto.class);
|
|
|
+ //赋值流程id
|
|
|
+ newSample.setFlowId(flowId);
|
|
|
|
|
|
//判断合同是否在变更中,防止用户缓存导致重复变更
|
|
|
Sample byId = sampleService.getById(newSample.getOldSampleId());
|