| | |
| | | return procurementRecordService.updateCustom(customStorage); |
| | | } |
| | | |
| | | @Delete("/delteCustom") |
| | | @DeleteMapping("/deleteCustom") |
| | | @Log(title = "自定义入库-入库管理-删除入库", businessType = BusinessType.DELETE) |
| | | @Transactional |
| | | public AjaxResult deleteCustom(@RequestBody List<Long> ids) { |
| | |
| | | return AjaxResult.success(procurementRecordService.updateManagementByCustom(procurementDto)); |
| | | } |
| | | |
| | | @GetMapping("/detailManagementByCustom") |
| | | @ApiOperation(value = "自定义入库-详情") |
| | | public AjaxResult detailManagementByCustom(ProcurementManagementUpdateDto procurementDto) { |
| | | return AjaxResult.success(procurementRecordService.detailManagementByCustom(procurementDto)); |
| | | } |
| | | |
| | | @ApiOperation(value = "采购入库-详情") |
| | | @GetMapping("/detail") |
| | | public AjaxResult detail(ProcurementUpdateDto procurementDto) { |
| | | return AjaxResult.success(procurementRecordService.detail(procurementDto)); |
| | | } |
| | | |
| | | |
| | | |
| | | |
| | | @PostMapping("/del") |
| | | @Log(title = "采购入库-入库管理-删除入库", businessType = BusinessType.DELETE) |
| | | @Transactional |