Commit 29a95cb7 authored by hongguangwu's avatar hongguangwu

MVP1.6.5-社保士兵实缴:最终

parent c568bea3
...@@ -26,6 +26,7 @@ import io.swagger.v3.oas.annotations.Operation; ...@@ -26,6 +26,7 @@ import io.swagger.v3.oas.annotations.Operation;
import io.swagger.v3.oas.annotations.tags.Tag; import io.swagger.v3.oas.annotations.tags.Tag;
import lombok.RequiredArgsConstructor; import lombok.RequiredArgsConstructor;
import org.springframework.web.bind.annotation.*; import org.springframework.web.bind.annotation.*;
import org.springframework.web.multipart.MultipartFile;
import java.util.List; import java.util.List;
...@@ -148,10 +149,10 @@ public class TSocialSoldierController { ...@@ -148,10 +149,10 @@ public class TSocialSoldierController {
* @return: com.yifu.cloud.plus.v1.yifu.common.core.util.R<java.lang.String> * @return: com.yifu.cloud.plus.v1.yifu.common.core.util.R<java.lang.String>
**/ **/
@Operation(description = "6每月6号1点推送实缴3张表查询") @Operation(description = "6每月6号1点推送实缴3张表查询")
@PostMapping("/inner/pushPaymentThree") @PostMapping("/inner/doPushPaymentThree")
@SysLog("6每月6号推送实缴3张表查询") @SysLog("6每月6号推送实缴3张表查询")
@Inner @Inner
public R<String> pushPaymentThree() { public R<String> doPushPaymentThree() {
return tSocialSoldierPushService.pushPaymentThree(null,false); return tSocialSoldierPushService.pushPaymentThree(null,false);
} }
...@@ -191,19 +192,20 @@ public class TSocialSoldierController { ...@@ -191,19 +192,20 @@ public class TSocialSoldierController {
@Operation(description = "获取重新办理结果") @Operation(description = "获取重新办理结果")
@GetMapping("/getReHandle") @GetMapping("/getReHandle")
public R<String> getReHandle(@RequestParam String parentId) { public R<String> getReHandle(@RequestParam String parentId) {
return tSocialSoldierService.getReHandle(parentId); tSocialSoldierService.getReHandle(parentId);
return R.ok("正在执行中,请耐心等待!");
} }
/** /**
* @Description: 文件组装zip的Demo * @Description: 文件组装zip的Demo(测试附件使用,不删除)
* @Author: hgw * @Author: hgw
* @Date: 2024-6-11 14:27:50 * @Date: 2024-6-11 14:27:50
* @return: com.yifu.cloud.plus.v1.yifu.common.core.util.R<java.lang.String> * @return: com.yifu.cloud.plus.v1.yifu.common.core.util.R<java.lang.String>
**/ **/
/*@Operation(description = "文件组装zip的Demo") @Operation(description = "文件组装zip的Demo")
@GetMapping("/getZip") @PostMapping("/getZip")
public R<String> getZip() { public R<String> getZip(@RequestBody MultipartFile zipFile) {
return tSocialSoldierService.getZip(); return tSocialSoldierService.getZip(zipFile);
}*/ }
} }
...@@ -49,7 +49,7 @@ public interface TAutoPaymentDetailMapper extends BaseMapper<TAutoPaymentDetail> ...@@ -49,7 +49,7 @@ public interface TAutoPaymentDetailMapper extends BaseMapper<TAutoPaymentDetail>
* @Date: 2024/6/6 9:55 * @Date: 2024/6/6 9:55
* @return: void * @return: void
**/ **/
void deleteByParentId(@Param("parentId") String parentId); void deleteByParentId(@Param("parentId") String parentId, @Param("sourceType") int sourceType);
List<TAutoPaymentDetail> getListByParentId(@Param("parentId") String parentId); List<TAutoPaymentDetail> getListByParentId(@Param("parentId") String parentId);
......
...@@ -51,12 +51,13 @@ public interface TAutoPaymentDetailService extends IService<TAutoPaymentDetail> ...@@ -51,12 +51,13 @@ public interface TAutoPaymentDetailService extends IService<TAutoPaymentDetail>
List<TAutoPaymentDetail> noPageDiy(TAutoPaymentDetailSearchVo searchVo); List<TAutoPaymentDetail> noPageDiy(TAutoPaymentDetailSearchVo searchVo);
/** /**
* @param: sourceType 资源类型:1日常申报导出;2人员缴费明细打印;3单位缴费明细查询;4单位缴费明细下载
* @Description: 清空明细表 * @Description: 清空明细表
* @Author: hgw * @Author: hgw
* @Date: 2024/6/6 9:54 * @Date: 2024/6/6 9:54
* @return: void * @return: void
**/ **/
void deleteByParentId(String parentId); void deleteByParentId(String parentId, int sourceType);
/** /**
* @param parentId * @param parentId
......
...@@ -20,6 +20,7 @@ package com.yifu.cloud.plus.v1.yifu.social.service; ...@@ -20,6 +20,7 @@ package com.yifu.cloud.plus.v1.yifu.social.service;
import com.baomidou.mybatisplus.extension.service.IService; import com.baomidou.mybatisplus.extension.service.IService;
import com.yifu.cloud.plus.v1.yifu.common.core.util.R; import com.yifu.cloud.plus.v1.yifu.common.core.util.R;
import com.yifu.cloud.plus.v1.yifu.social.entity.TSocialInfo; import com.yifu.cloud.plus.v1.yifu.social.entity.TSocialInfo;
import org.springframework.web.multipart.MultipartFile;
/** /**
* 社保士兵 * 社保士兵
...@@ -62,4 +63,7 @@ public interface TSocialSoldierService extends IService<TSocialInfo> { ...@@ -62,4 +63,7 @@ public interface TSocialSoldierService extends IService<TSocialInfo> {
**/ **/
R<String> getReHandle(String parentId); R<String> getReHandle(String parentId);
R<String> getZip(MultipartFile zipFile);
} }
...@@ -178,8 +178,8 @@ public class TAutoPaymentDetailServiceImpl extends ServiceImpl<TAutoPaymentDetai ...@@ -178,8 +178,8 @@ public class TAutoPaymentDetailServiceImpl extends ServiceImpl<TAutoPaymentDetai
} }
@Override @Override
public void deleteByParentId(String parentId) { public void deleteByParentId(String parentId, int sourceType) {
baseMapper.deleteByParentId(parentId); baseMapper.deleteByParentId(parentId, sourceType);
} }
@Override @Override
public List<TAutoPaymentDetail> getListByParentId(String parentId) { public List<TAutoPaymentDetail> getListByParentId(String parentId) {
......
...@@ -114,7 +114,7 @@ public class TSocialSoldierPushServiceImpl extends ServiceImpl<TSocialSoldierMap ...@@ -114,7 +114,7 @@ public class TSocialSoldierPushServiceImpl extends ServiceImpl<TSocialSoldierMap
if (type == 2) { if (type == 2) {
List<SocialSoldierSetVo> setList = new ArrayList<>(); List<SocialSoldierSetVo> setList = new ArrayList<>();
SocialSoldierSetVo vo = new SocialSoldierSetVo(); SocialSoldierSetVo vo = new SocialSoldierSetVo();
vo.setIsAutoSubmit(""); vo.setIsAutoSubmit("");
vo.setIsAutoInsert("否"); vo.setIsAutoInsert("否");
vo.setIsAutoUpload("否"); vo.setIsAutoUpload("否");
vo.setIsDoShenBao("否"); vo.setIsDoShenBao("否");
......
...@@ -150,7 +150,7 @@ ...@@ -150,7 +150,7 @@
</select> </select>
<delete id="deleteByParentId"> <delete id="deleteByParentId">
delete from t_auto_payment_detail where PARENT_ID = #{parentId} delete from t_auto_payment_detail where PARENT_ID = #{parentId} and SOURCE_TYPE = #{sourceType}
</delete> </delete>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment