|
@@ -223,7 +223,8 @@ public class GljtSqSqServiceImpl implements IGljtSqSqService
|
|
|
lr.setStatus(GljtLrStatus.FF.getCode());
|
|
|
try {
|
|
|
asyncIn(gljtSqSq);
|
|
|
- gljtSqUtils.insertLrHi(lr, "0");
|
|
|
+ String lrHiId = gljtSqUtils.insertLrHiSq(lr, "0");
|
|
|
+ gljtSqSq.setLrHiId(lrHiId);
|
|
|
} catch (Exception ignored) {}
|
|
|
} else {
|
|
|
lr.setStatus(GljtLrStatus.DJ.getCode());
|
|
@@ -289,7 +290,8 @@ public class GljtSqSqServiceImpl implements IGljtSqSqService
|
|
|
asyncIn(old);
|
|
|
BeanUtil.copyProperties(gljtSqSq, gljtSqLr, new CopyOptions().ignoreNullValue());
|
|
|
gljtSqLr.setStatus(GljtLrStatus.FF.getCode());
|
|
|
- gljtSqUtils.insertLrHi(gljtSqLr, "0");
|
|
|
+ String lrHiId = gljtSqUtils.insertLrHiSq(gljtSqLr, "0");
|
|
|
+ gljtSqSq.setLrHiId(lrHiId);
|
|
|
} catch (Exception ignored) {}
|
|
|
gljtSqLrMapper.updateById(lr);
|
|
|
} else if (StringUtils.equals(gljtSqSq.getStatus(), GljtAdStatus.FPASS.getCode())) {
|