|
@@ -128,7 +128,10 @@ public class BizArchiveInputServiceImpl extends ServiceImpl<BizArchiveInputMappe
|
|
|
|
|
|
@Override
|
|
|
public boolean verify(BizArchiveInput bizArchiveInput) {
|
|
|
- super.updateById(bizArchiveInput);
|
|
|
+ boolean i = super.updateById(bizArchiveInput);
|
|
|
+ if(!i){
|
|
|
+ return false;
|
|
|
+ }
|
|
|
Long userId = SecurityUtils.getUserId();
|
|
|
List<BizArchiveInputDetail> details = archiveInputDetailService.query().eq("contract_id", bizArchiveInput.getId()).list();
|
|
|
details.forEach(l -> {
|