| | |
| | | |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.ruoyi.common.utils.poi.ExcelUtil; |
| | | import com.ruoyi.framework.aspectj.lang.annotation.Log; |
| | | import com.ruoyi.framework.aspectj.lang.enums.BusinessType; |
| | | import com.ruoyi.framework.web.controller.BaseController; |
| | | import com.ruoyi.framework.web.domain.AjaxResult; |
| | | import com.ruoyi.production.dto.ProcessSchedulingDto; |
| | | import com.ruoyi.production.dto.ProductionReportDto; |
| | | import com.ruoyi.production.dto.SalesLedgerSchedulingProcessDto; |
| | | import com.ruoyi.production.dto.SalesLedgerWorkDto; |
| | | import com.ruoyi.production.pojo.SalesLedgerWork; |
| | | import com.ruoyi.production.service.SalesLedgerWorkService; |
| | | import com.ruoyi.production.service.impl.SalesLedgerWorkServiceImpl; |
| | | import io.jsonwebtoken.lang.Collections; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.transaction.annotation.Transactional; |
| | | import org.springframework.util.CollectionUtils; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | | import javax.servlet.http.HttpServletResponse; |
| | | import java.util.List; |
| | | |
| | | /** |
| | |
| | | return AjaxResult.success(listPage); |
| | | } |
| | | |
| | | /** |
| | | * 导出 |
| | | * @param response |
| | | */ |
| | | @PostMapping("/export") |
| | | @ApiOperation("生产管理-生产报工-导出") |
| | | public void export(HttpServletResponse response) { |
| | | Page page = new Page(-1,-1); |
| | | SalesLedgerWorkDto salesLedgerSchedulingDto = new SalesLedgerWorkDto(); |
| | | IPage<SalesLedgerWorkDto> result = salesLedgerWorkService.listPage(page,salesLedgerSchedulingDto); |
| | | result.getRecords().forEach(item -> { |
| | | item.setDaiNum(item.getFinishedNum().subtract(item.getSchedulingNum())); |
| | | item.setStatusName(item.getStatus().toString()); |
| | | }); |
| | | ExcelUtil<SalesLedgerWorkDto> util = new ExcelUtil<>(SalesLedgerWorkDto.class); |
| | | util.exportExcel(response, result.getRecords(), "工序排产"); |
| | | } |
| | | |
| | | @GetMapping("/list") |
| | | @Log(title = "生产报工-查询", businessType = BusinessType.OTHER) |
| | | @ApiOperation("生产报工-查询") |
| | |
| | | @Log(title = "生产管理-生产报工", businessType = BusinessType.INSERT) |
| | | @ApiOperation("生产管理-生产报工") |
| | | @Transactional(rollbackFor = Exception.class) |
| | | public AjaxResult productionReport(@RequestBody ProductionReportDto productionReportDto) { |
| | | int result = salesLedgerWorkService.productionReport(productionReportDto); |
| | | return AjaxResult.success(result); |
| | | public AjaxResult productionReport(@RequestBody List<ProductionReportDto> productionReportDto) { |
| | | if(CollectionUtils.isEmpty(productionReportDto)) return AjaxResult.error("请选择要报工的记录"); |
| | | productionReportDto.forEach(item -> { |
| | | salesLedgerWorkService.productionReport(item); |
| | | }); |
| | | return AjaxResult.success("报工成功"); |
| | | } |
| | | |
| | | |