| | |
| | | import com.ruoyi.common.core.domain.AjaxResult; |
| | | import com.ruoyi.common.core.page.TableDataInfo; |
| | | import com.ruoyi.common.enums.BusinessType; |
| | | import com.ruoyi.common.utils.poi.ExcelUtil; |
| | | import com.ruoyi.project.domain.ServiceFund; |
| | | import com.ruoyi.project.domain.ServiceFundtax; |
| | | import com.ruoyi.project.domain.vo.FundTaxVO; |
| | | import com.ruoyi.project.domain.vo.TotalTaxVO; |
| | | import com.ruoyi.project.service.IServiceFundService; |
| | | import com.ruoyi.project.service.IServiceFunddetailService; |
| | | import com.ruoyi.project.service.IServiceFundtaxService; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiOperation; |
| | |
| | | import org.springframework.security.access.prepost.PreAuthorize; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | | import java.util.Arrays; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | import java.util.UUID; |
| | | import java.util.*; |
| | | |
| | | /** |
| | | * 专家费用算税申请主Controller |
| | |
| | | // ExcelUtil<ServiceFundtax> util = new ExcelUtil<ServiceFundtax>(ServiceFundtax.class); |
| | | // return util.exportExcel(list, "专家费用算税申请主数据"); |
| | | // } |
| | | // |
| | | // /** |
| | | // * 获取专家费用算税申请主详细信息 |
| | | // */ |
| | | // @ApiOperation("获取专家费用算税申请主详细信息") |
| | | // @PreAuthorize("@ss.hasPermi('system:fundtax:query')") |
| | | // @GetMapping(value = "/getInfo/{id}") |
| | | // public AjaxResult getInfo(@PathVariable("id") Long id) { |
| | | // return AjaxResult.success(serviceFundtaxService.getById(id)); |
| | | // } |
| | | // |
| | | |
| | | /** |
| | | * 获取专家费用算税申请主详细信息 |
| | | */ |
| | | @ApiOperation("获取专家费用算税申请主详细信息") |
| | | @PreAuthorize("@ss.hasPermi('system:fundtax:query')") |
| | | @GetMapping(value = "/getInfo/{id}") |
| | | public AjaxResult getInfo(@PathVariable("id") Long id) { |
| | | ServiceFundtax serviceFundtax = serviceFundtaxService.getById(id); |
| | | ServiceFund serviceFund=new ServiceFund(); |
| | | serviceFund.setFundTaxId(id); |
| | | serviceFundtax.setServiceFunds(serviceFundService.queryList(serviceFund)); |
| | | return AjaxResult.success(serviceFundtax); |
| | | } |
| | | |
| | | |
| | | /** |
| | | * 修改专家费用算税申请主 |
| | |
| | | serviceFund.setFundTaxId(serviceFundtax.getId()); |
| | | serviceFundService.updateById(serviceFund); |
| | | } |
| | | return toAjax(serviceFundtax.getId().intValue()); |
| | | Map<String, Long> map = new HashMap<>(); |
| | | map.put("fundTaxId", serviceFundtax.getId()); |
| | | return AjaxResult.success(map); |
| | | } |
| | | |
| | | /** |