| | |
| | | import org.springblade.modules.social.service.ISocialService; |
| | | import org.springblade.modules.social.vo.SocialVO; |
| | | import org.springblade.modules.system.excel.UserExcel; |
| | | import org.springblade.modules.system.service.MyAsyncService; |
| | | import org.springframework.transaction.annotation.Transactional; |
| | | import org.springframework.web.bind.annotation.*; |
| | | import org.springframework.web.multipart.MultipartFile; |
| | | |
| | |
| | | import java.text.ParseException; |
| | | import java.text.SimpleDateFormat; |
| | | import java.util.ArrayList; |
| | | import java.util.Arrays; |
| | | import java.util.List; |
| | | |
| | | /** |
| | |
| | | public class SocialController extends BladeController { |
| | | |
| | | private final ISocialService socialService; |
| | | |
| | | private final MyAsyncService myAsyncService; |
| | | |
| | | /** |
| | | * 详情 |
| | |
| | | @ApiOperationSupport(order = 4) |
| | | @ApiOperation(value = "新增", notes = "传入social") |
| | | public R save(@Valid @RequestBody Social social) { |
| | | //更新用户是否缴纳社保状态 |
| | | socialService.upSoil(social.getCardid()); |
| | | return R.status(socialService.save(social)); |
| | | //新增社保缴纳记录 |
| | | boolean save = socialService.save(social); |
| | | if (save){ |
| | | String sql = |
| | | "insert into sys_socil(id,namb,sex,nation,telephone,cardid,residence,amount,insuredtime,deptid) " + |
| | | "values(" + "'" + social.getId() + "'" |
| | | + "," + "'" + social.getNamb() + "'" |
| | | + "," + "'" + social.getSex() + "'" + |
| | | "," + "'" + social.getNation() + "'" + |
| | | "," + "'" + social.getTelephone() + "'" + |
| | | "," + "'" + social.getCardid() + "'" + |
| | | "," + "'" + social.getResidence() + "'" + |
| | | "," + "'" + social.getAmount() + "'" + |
| | | "," + "'" + new SimpleDateFormat("yyyy-MM-dd").format(social.getInsuredtime()) + "'" + |
| | | "," + "'" + social.getDeptid() + "'" + ")"; |
| | | myAsyncService.dataSync(sql); |
| | | } |
| | | //返回 |
| | | return R.status(save); |
| | | } |
| | | |
| | | /** |
| | |
| | | @PostMapping("/remove") |
| | | @ApiOperationSupport(order = 8) |
| | | @ApiOperation(value = "删除", notes = "传入ids") |
| | | @Transactional(rollbackFor = Exception.class) |
| | | public R remove(@ApiParam(value = "主键集合", required = true) @RequestParam String ids) { |
| | | return R.status(socialService.removeByIds(Func.toLongList(ids))); |
| | | boolean remove = socialService.removeByIds(Func.toLongList(ids)); |
| | | if (remove) { |
| | | List<String> list = Arrays.asList(ids.split(",")); |
| | | list.forEach(s -> { |
| | | //内网同步删除 |
| | | String s1 = "delete from sys_socil where id = " + "'" + s + "'"; |
| | | myAsyncService.dataSync(s1); |
| | | }); |
| | | } |
| | | return R.status(remove); |
| | | } |
| | | |
| | | |