Browse Source

fix:[资源库管理]bug

master
15881625488@163.com 2 days ago
parent
commit
69a391909b
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/impl/GyzjServiceImpl.java
  2. +1
    -1
      hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/impl/MjyServiceImpl.java

+ 1
- 1
hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/impl/GyzjServiceImpl.java View File

@ -1210,7 +1210,7 @@ public class GyzjServiceImpl extends ServiceImpl implements IG
@Override
@Transactional(rollbackFor = Exception.class)
public void gh(GhForm form) {
SysUser jsr1 = sysUserService.selectUserById(form.getJsr1Id());
SysUser jsr1 = SecurityUtils.getLoginUser().getSysUser();
SysUser jsr2 = sysUserService.selectUserById(form.getJsr2Id());
//验证接收人1密码
checkPassword(jsr1,form.getJsr1mm());

+ 1
- 1
hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/impl/MjyServiceImpl.java View File

@ -1173,7 +1173,7 @@ public class MjyServiceImpl extends ServiceImpl implements IMjyS
public void gh( GhForm form) {
SysUser ghr1 = sysUserService.selectUserById(form.getGhr1Id());
SysUser ghr2 = sysUserService.selectUserById(form.getGhr2Id());
SysUser jsr1 = sysUserService.selectUserById(form.getJsr1Id());
SysUser jsr1 = SecurityUtils.getLoginUser().getSysUser();
SysUser jsr2 = sysUserService.selectUserById(form.getJsr2Id());
//验证归还人1密码
checkPassword(ghr1,form.getGhr1mm());

Loading…
Cancel
Save