From 163ac6431ae233dd712bb5bff285ccf728c58dd9 Mon Sep 17 00:00:00 2001 From: river <1376754470@qq.com> Date: Fri, 5 Mar 2021 11:23:09 +0800 Subject: [PATCH] =?UTF-8?q?Revert=20"=E5=B0=8F=E7=A8=8B=E5=BA=8F=E7=AB=AF?= =?UTF-8?q?=E7=94=B3=E8=AF=B7=E8=AE=B0=E5=BD=95=E4=BC=98=E5=8C=96=E3=80=81?= =?UTF-8?q?=E7=94=B3=E8=AF=B7=E9=A2=9D=E5=BA=A6=E4=BC=98=E5=8C=96=E3=80=81?= =?UTF-8?q?=E6=9B=B4=E6=96=B0=E5=91=98=E5=B7=A5=E5=9B=BE=E5=83=8F(?= =?UTF-8?q?=E5=B0=8F=E7=A8=8B=E5=BA=8F=E7=AB=AF)"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This reverts commit b8be3595 --- .../financial/hrms/UserControllerApi.java | 19 ++-- .../controller/CustomerAppletController.java | 3 +- .../model/request/PersonalAppletRequest.java | 3 + .../impl/CustomerAppletServiceImpl.java | 11 ++- .../src/main/resources/bootstrap.properties | 86 +++++++++---------- .../mapper/crms/CustomerAppletDao.xml | 9 +- .../mapper/crms/PersonalCustomerDao.xml | 2 +- .../hrms/controller/UserController.java | 12 +++ .../daqing/financial/hrms/dao/UserDao.java | 2 + .../financial/hrms/service/UserService.java | 2 + .../hrms/service/impl/UserServiceImpl.java | 14 +++ .../main/resources/mapper/hrms/UserDao.xml | 4 + .../domain/hrms/response/HrmsCode.java | 1 + 13 files changed, 107 insertions(+), 61 deletions(-) diff --git a/dq-financial-api/src/main/java/com/daqing/financial/hrms/UserControllerApi.java b/dq-financial-api/src/main/java/com/daqing/financial/hrms/UserControllerApi.java index c8629e6c..d6717636 100644 --- a/dq-financial-api/src/main/java/com/daqing/financial/hrms/UserControllerApi.java +++ b/dq-financial-api/src/main/java/com/daqing/financial/hrms/UserControllerApi.java @@ -16,24 +16,27 @@ import javax.servlet.http.HttpServletResponse; @Api(value = "用户相关操作", tags = "提供工作台人力资源等相关方法") public interface UserControllerApi { - @ApiOperation(value = "用户详情",notes = "用户详情",response = EmployeeAndUserVO.class) + @ApiOperation(value = "用户详情", notes = "用户详情", response = EmployeeAndUserVO.class) ResponseResult info(); - @ApiOperation(value = "修改用户信息",notes = "修改用户信息") + @ApiOperation(value = "修改用户信息", notes = "修改用户信息") ResponseResult update(EmployeeAndUserVO employeeAndUserVO); - @ApiOperation(value = "获取验证码",notes = "获取验证码") + @ApiOperation(value = "获取验证码", notes = "获取验证码") ResponseResult code(String phone); - @ApiOperation(value = "修改密码",notes = "修改密码") + @ApiOperation(value = "修改密码", notes = "修改密码") ResponseResult updatePassword(String primaryPassword, String newPassword, String affirmNewPassword); - @ApiOperation(value = "绑定手机号",notes = "绑定手机号") - ResponseResult binding(String phone,String code); + @ApiOperation(value = "绑定手机号", notes = "绑定手机号") + ResponseResult binding(String phone, String code); - @ApiOperation(value = "取消微信绑定",notes = "取消微信绑定") + @ApiOperation(value = "取消微信绑定", notes = "取消微信绑定") ResponseResult cancel(); - @ApiOperation(value = "图像文件上传",notes = "图像文件上传") + @ApiOperation(value = "图像文件上传", notes = "图像文件上传") ResponseResult uploadFile(MultipartFile file); + + @ApiOperation(value = "更新员工图像(小程序端)", notes = "更新员工图像(小程序端)") + ResponseResult updateHeadPortraitUrl(String headPortraitUrl); } diff --git a/dq-financial-crms/src/main/java/com/daqing/financial/crms/controller/CustomerAppletController.java b/dq-financial-crms/src/main/java/com/daqing/financial/crms/controller/CustomerAppletController.java index 5e540f56..53aa3e5e 100644 --- a/dq-financial-crms/src/main/java/com/daqing/financial/crms/controller/CustomerAppletController.java +++ b/dq-financial-crms/src/main/java/com/daqing/financial/crms/controller/CustomerAppletController.java @@ -102,7 +102,8 @@ public class CustomerAppletController { */ @GetMapping("/get/record") @ApiOperation(value = "获取申请记录", response = ApplicationRecordResponse.class) - public ResponseResult getApplicationRecord(@RequestParam("page") Integer page, @RequestParam("size") Integer size, Integer type, Integer status) { + public ResponseResult getApplicationRecord(@RequestParam("page") Integer page, + @RequestParam("size") Integer size, Integer type, Integer status) { return ResponseResult.SUCCESS(customerAppletService.getApplicationRecord(page, size, type, status)); } diff --git a/dq-financial-crms/src/main/java/com/daqing/financial/crms/model/request/PersonalAppletRequest.java b/dq-financial-crms/src/main/java/com/daqing/financial/crms/model/request/PersonalAppletRequest.java index 56a8fd71..836d38ed 100644 --- a/dq-financial-crms/src/main/java/com/daqing/financial/crms/model/request/PersonalAppletRequest.java +++ b/dq-financial-crms/src/main/java/com/daqing/financial/crms/model/request/PersonalAppletRequest.java @@ -20,6 +20,9 @@ import java.io.Serializable; @ToString public class PersonalAppletRequest implements Serializable { + @ApiModelProperty("客户表id") + private Long companyId; + @NotNull(message = "客户名称不能为空") @ApiModelProperty(value = "客户名称") private String name; diff --git a/dq-financial-crms/src/main/java/com/daqing/financial/crms/service/impl/CustomerAppletServiceImpl.java b/dq-financial-crms/src/main/java/com/daqing/financial/crms/service/impl/CustomerAppletServiceImpl.java index 6775a612..feac8749 100644 --- a/dq-financial-crms/src/main/java/com/daqing/financial/crms/service/impl/CustomerAppletServiceImpl.java +++ b/dq-financial-crms/src/main/java/com/daqing/financial/crms/service/impl/CustomerAppletServiceImpl.java @@ -203,6 +203,7 @@ public class CustomerAppletServiceImpl extends ServiceImpl applicationRecordPOList = this.getBaseMapper().getApplyMount(companyId); + if (applicationRecordPOList.size() < 1) { + return map; + } for (ApplicationRecordPO applicationRecordPO : applicationRecordPOList) { - company += applicationRecordPO.getApplyAmount(); + company += applicationRecordPO.getApplyAmount() == null ? 0.00 : applicationRecordPO.getApplyAmount(); } map.put("company", company); } diff --git a/dq-financial-crms/src/main/resources/bootstrap.properties b/dq-financial-crms/src/main/resources/bootstrap.properties index 1811a1da..7fb796e4 100644 --- a/dq-financial-crms/src/main/resources/bootstrap.properties +++ b/dq-financial-crms/src/main/resources/bootstrap.properties @@ -1,24 +1,24 @@ #服务名称 -spring.application.name=dq-financial-crms -#配置中心地址 -spring.cloud.nacos.config.server-addr=192.168.31.140:8848 -spring.cloud.nacos.config.file-extension=yml -#redis配置 -spring.redis.host=127.0.0.1 -spring.redis.port=6379 -spring.redis.password= -spring.redis.database=0 -spring.redis.timeout=30000 -spring.redis.jedis.pool.max-active=8 -spring.redis.jedis.pool.max-wait=-1 -spring.redis.jedis.pool.max-idle=8 -spring.redis.jedis.pool.min-idle=0 +#spring.application.name=dq-financial-crms +##配置中心地址 +#spring.cloud.nacos.config.server-addr=192.168.31.140:8848 +#spring.cloud.nacos.config.file-extension=yml +##redis配置 +#spring.redis.host=127.0.0.1 +#spring.redis.port=6379 +#spring.redis.password= +#spring.redis.database=0 +#spring.redis.timeout=30000 +#spring.redis.jedis.pool.max-active=8 +#spring.redis.jedis.pool.max-wait=-1 +#spring.redis.jedis.pool.max-idle=8 +#spring.redis.jedis.pool.min-idle=0 #本地测试环境 -spring.cloud.nacos.config.namespace=1520c5ea-5f15-4ac1-9eb1-d25924825b99 +#spring.cloud.nacos.config.namespace=1520c5ea-5f15-4ac1-9eb1-d25924825b99 #线上测试环境 #spring.cloud.nacos.config.namespace=5698e60a-9d0b-433f-a69f-12b0a2d23128 - +# #线上生产环境 #spring.cloud.nacos.config.namespace=6054a175-069a-492d-8679-820758416406 @@ -29,30 +29,30 @@ ribbon.ConnectTimeout: 120000 # 正式环境(prod) #服务名称 -#spring.application.name=dq-financial-crms -###配置中心地址 -#spring.cloud.nacos.config.server-addr=120.78.127.12:8848 -#spring.cloud.nacos.config.namespace=25ce05e2-a0eb-4842-92e4-d8b550a489dd -##spring.cloud.nacos.config.group=prod -# -#spring.cloud.nacos.config.ext-config[0].data-id=datasource.yml -#spring.cloud.nacos.config.ext-config[0].group=prod -#spring.cloud.nacos.config.ext-config[0].refresh=true -# -#spring.cloud.nacos.config.ext-config[1].data-id=mybatis.yml -#spring.cloud.nacos.config.ext-config[1].group=prod -#spring.cloud.nacos.config.ext-config[1].refresh=true -# -#spring.cloud.nacos.config.ext-config[2].data-id=other.yml -#spring.cloud.nacos.config.ext-config[2].group=prod -#spring.cloud.nacos.config.ext-config[2].refresh=true -# -#spring.redis.host=127.0.0.1 -#spring.redis.port=6379 -#spring.redis.password=dq123456 -#spring.redis.database=0 -#spring.redis.timeout=30000 -#spring.redis.jedis.pool.max-active=8 -#spring.redis.jedis.pool.max-wait=-1 -#spring.redis.jedis.pool.max-idle=8 -#spring.redis.jedis.pool.min-idle=0 \ No newline at end of file +spring.application.name=dq-financial-crms +##配置中心地址 +spring.cloud.nacos.config.server-addr=120.78.127.12:8848 +spring.cloud.nacos.config.namespace=25ce05e2-a0eb-4842-92e4-d8b550a489dd +#spring.cloud.nacos.config.group=prod + +spring.cloud.nacos.config.ext-config[0].data-id=datasource.yml +spring.cloud.nacos.config.ext-config[0].group=prod +spring.cloud.nacos.config.ext-config[0].refresh=true + +spring.cloud.nacos.config.ext-config[1].data-id=mybatis.yml +spring.cloud.nacos.config.ext-config[1].group=prod +spring.cloud.nacos.config.ext-config[1].refresh=true + +spring.cloud.nacos.config.ext-config[2].data-id=other.yml +spring.cloud.nacos.config.ext-config[2].group=prod +spring.cloud.nacos.config.ext-config[2].refresh=true + +spring.redis.host=127.0.0.1 +spring.redis.port=6379 +spring.redis.password=dq123456 +spring.redis.database=0 +spring.redis.timeout=30000 +spring.redis.jedis.pool.max-active=8 +spring.redis.jedis.pool.max-wait=-1 +spring.redis.jedis.pool.max-idle=8 +spring.redis.jedis.pool.min-idle=0 \ No newline at end of file diff --git a/dq-financial-crms/src/main/resources/mapper/crms/CustomerAppletDao.xml b/dq-financial-crms/src/main/resources/mapper/crms/CustomerAppletDao.xml index f44e24a5..3d9ffcd6 100644 --- a/dq-financial-crms/src/main/resources/mapper/crms/CustomerAppletDao.xml +++ b/dq-financial-crms/src/main/resources/mapper/crms/CustomerAppletDao.xml @@ -18,7 +18,7 @@ UPDATE crms_customer - SET name=#{customer.name},addr=#{customer.addr},phone=#{customer.phone},motify_time=#{customer.motifyTime} + SET name = #{customer.name},addr = #{customer.addr},phone = #{customer.phone},motify_time = #{customer.motifyTime} WHERE id = #{customer.id} @@ -29,7 +29,7 @@ @@ -69,8 +69,7 @@ FROM dg_apply_amount_list AS l LEFT JOIN dg_business_process_status AS b ON l.business_id = b.business_id - WHERE l.role_id = 58 - AND l.business_id = #{id} + WHERE l.id = #{id} \ No newline at end of file diff --git a/dq-financial-crms/src/main/resources/mapper/crms/PersonalCustomerDao.xml b/dq-financial-crms/src/main/resources/mapper/crms/PersonalCustomerDao.xml index 9222e27c..13faa7a8 100644 --- a/dq-financial-crms/src/main/resources/mapper/crms/PersonalCustomerDao.xml +++ b/dq-financial-crms/src/main/resources/mapper/crms/PersonalCustomerDao.xml @@ -26,7 +26,7 @@ + + + UPDATE hrms_employee SET head_portarit_url = #{url} WHERE id = #{id} + \ No newline at end of file diff --git a/dq-framework-model/src/main/java/com/daqing/framework/domain/hrms/response/HrmsCode.java b/dq-framework-model/src/main/java/com/daqing/framework/domain/hrms/response/HrmsCode.java index 6d20259e..74cd0b23 100644 --- a/dq-framework-model/src/main/java/com/daqing/framework/domain/hrms/response/HrmsCode.java +++ b/dq-framework-model/src/main/java/com/daqing/framework/domain/hrms/response/HrmsCode.java @@ -61,6 +61,7 @@ public enum HrmsCode implements ResultCode { USER_FILE_TYPE_MISTAKE(false,88013,"文件格式不正确,请重新选择图片文件!"), USER_FILE_UPLOAD_FAIL(false,88014,"上传图像失败,请稍后刷新再试!"), USER_PHONE_ACCOUNT_REPETITION(false,88015,"该手机号已绑定过用户,请更换手机号!"), + USER_HEAD_PORTRAIT_URL_IS_NULL(false, 88016, "当前图片不存在,请重新选择!"), PHNOE_ACCOUNT_NOT_EMPTY(false,33001,"手机号码为空!"), VERIFY_CODE_NOT_EMPTY(false,33002,"短信验证码为空!"),