feat:修改任务列表

develop
username 1 month ago
parent 492027d7e6
commit 3f261b8279

@ -0,0 +1,219 @@
package com.bs.cm.controller;
import java.util.List;
import javax.servlet.http.HttpServletResponse;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import org.springframework.security.access.prepost.PreAuthorize;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.PutMapping;
import org.springframework.web.bind.annotation.DeleteMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import com.bs.common.annotation.Log;
import com.bs.common.core.controller.BaseController;
import com.bs.common.core.domain.AjaxResult;
import com.bs.common.core.page.TableDataInfo;
import com.bs.common.enums.BusinessType;
import com.bs.common.utils.poi.ExcelUtil;
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
import org.apache.commons.lang3.StringUtils;
import com.bs.cm.domain.CmAttach;
import com.bs.cm.service.ICmAttachService;
import javax.annotation.Resource;
/**
* Controller
*
* @author bs
* @date 2025-03-04
*/
@Api(tags = "附近信息")
@RestController
@RequestMapping("/cm/attach")
public class CmAttachController extends BaseController {
@Resource
private ICmAttachService cmAttachService;
/**
*
*/
@ApiOperation("分页查询附近信息列表")
@GetMapping("/pageList")
public TableDataInfo pageList(CmAttach cmAttach) {
startPage();
LambdaQueryWrapper<CmAttach> queryWrapper = new LambdaQueryWrapper();
condition(queryWrapper,cmAttach);
List<CmAttach> list = cmAttachService.list(queryWrapper);
return getDataTable(list);
}
/**
*
*/
@ApiOperation("查询附近信息列表")
@GetMapping("/list")
public AjaxResult list(CmAttach cmAttach) {
LambdaQueryWrapper<CmAttach> queryWrapper = new LambdaQueryWrapper();
condition(queryWrapper,cmAttach);
List<CmAttach> list = cmAttachService.list(queryWrapper);
return success(list);
}
/**
*
*/
@ApiOperation("导出附近信息列表")
@Log(title = "附近信息导出", businessType = BusinessType.EXPORT)
@PostMapping("/export")
public void export(HttpServletResponse response, CmAttach cmAttach) {
LambdaQueryWrapper<CmAttach> queryWrapper = new LambdaQueryWrapper();
condition(queryWrapper,cmAttach);
List<CmAttach> list = cmAttachService.list(queryWrapper);
ExcelUtil<CmAttach> util = new ExcelUtil<CmAttach>(CmAttach. class);
util.exportExcel(response, list, "附近信息数据");
}
/**
*
*/
@ApiOperation("获取附近信息详细信息")
@GetMapping(value = "/{id}")
public AjaxResult getInfo(@PathVariable("id") Long id) {
return success(cmAttachService.getById(id));
}
/**
*
*/
@ApiOperation("新增附近信息")
@Log(title = "附近信息新增", businessType = BusinessType.INSERT)
@PostMapping
public AjaxResult add(@RequestBody CmAttach cmAttach) {
return toAjax(cmAttachService.save(cmAttach));
}
/**
*
*/
@ApiOperation("修改附近信息")
@Log(title = "附近信息修改", businessType = BusinessType.UPDATE)
@PutMapping
public AjaxResult edit(@RequestBody CmAttach cmAttach) {
return toAjax(cmAttachService.updateById(cmAttach));
}
/**
*
*/
@ApiOperation("删除附近信息")
@Log(title = "附近信息删除", businessType = BusinessType.DELETE)
@DeleteMapping("/{ids}")
public AjaxResult remove(@PathVariable List<Long> ids) {
return toAjax(cmAttachService.removeBatchByIds(ids));
}
/**
*
*/
private void condition (LambdaQueryWrapper<CmAttach> queryWrapper,CmAttach cmAttach){
//用户id
if(null != cmAttach.getId()){
queryWrapper.eq(CmAttach::getId,cmAttach.getId());
}
//文件组id
if(StringUtils.isNotEmpty(cmAttach.getFileId())){
queryWrapper.eq(CmAttach::getFileId,cmAttach.getFileId());
}
//文件排序
if(null != cmAttach.getFileSort()){
queryWrapper.eq(CmAttach::getFileSort,cmAttach.getFileSort());
}
//文件名称(编译后)
if(StringUtils.isNotEmpty(cmAttach.getAttachName())){
queryWrapper.eq(CmAttach::getAttachName,cmAttach.getAttachName());
}
//文件类型
if(StringUtils.isNotEmpty(cmAttach.getAttachFileType())){
queryWrapper.eq(CmAttach::getAttachFileType,cmAttach.getAttachFileType());
}
//文件编码类型
if(StringUtils.isNotEmpty(cmAttach.getAttachContentType())){
queryWrapper.eq(CmAttach::getAttachContentType,cmAttach.getAttachContentType());
}
//文件大小
if(null != cmAttach.getAttachFileSize()){
queryWrapper.eq(CmAttach::getAttachFileSize,cmAttach.getAttachFileSize());
}
//文件路径
if(StringUtils.isNotEmpty(cmAttach.getAttachFileUrl())){
queryWrapper.eq(CmAttach::getAttachFileUrl,cmAttach.getAttachFileUrl());
}
//文件名(原始)
if(StringUtils.isNotEmpty(cmAttach.getOldName())){
queryWrapper.eq(CmAttach::getOldName,cmAttach.getOldName());
}
//文件版本号
if(StringUtils.isNotEmpty(cmAttach.getVersionNo())){
queryWrapper.eq(CmAttach::getVersionNo,cmAttach.getVersionNo());
}
//创建部门
if(null != cmAttach.getCreateDept()){
queryWrapper.eq(CmAttach::getCreateDept,cmAttach.getCreateDept());
}
//创建人
if(null != cmAttach.getCreateBy()){
queryWrapper.eq(CmAttach::getCreateBy,cmAttach.getCreateBy());
}
//创建时间
if(null != cmAttach.getCreateTime()){
queryWrapper.eq(CmAttach::getCreateTime,cmAttach.getCreateTime());
}
//修改人
if(null != cmAttach.getUpdateBy()){
queryWrapper.eq(CmAttach::getUpdateBy,cmAttach.getUpdateBy());
}
//修改时间
if(null != cmAttach.getUpdateTime()){
queryWrapper.eq(CmAttach::getUpdateTime,cmAttach.getUpdateTime());
}
//备注
if(StringUtils.isNotEmpty(cmAttach.getRemark())){
queryWrapper.eq(CmAttach::getRemark,cmAttach.getRemark());
}
//删除标志0代表存在 2代表删除
if(StringUtils.isNotEmpty(cmAttach.getDelFlag())){
queryWrapper.eq(CmAttach::getDelFlag,cmAttach.getDelFlag());
}
//${column.columnComment}
if(StringUtils.isNotEmpty(cmAttach.getTenantId())){
queryWrapper.eq(CmAttach::getTenantId,cmAttach.getTenantId());
}
}
}

@ -0,0 +1,95 @@
package com.bs.cm.domain;
import com.bs.common.annotation.Excel;
import com.bs.common.core.domain.BaseEntity;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import io.swagger.annotations.ApiModelProperty;
/**
* cm_attach
*
* @author bs
* @date 2025-03-04
*/
@EqualsAndHashCode(callSuper = true)
@Accessors(chain = true)
@TableName("cm_attach")
@Data
public class CmAttach extends BaseEntity{
private static final long serialVersionUID = 1L;
/** 用户id */
@TableId(value = "id",type = IdType.AUTO)
@ApiModelProperty(value = "用户id")
private Long id;
/** 文件组id */
@Excel(name = "文件组id")
@ApiModelProperty(value = "文件组id")
private String fileId;
/** 文件排序 */
@Excel(name = "文件排序")
@ApiModelProperty(value = "文件排序")
private Long fileSort;
/** 文件名称(编译后) */
@Excel(name = "文件名称", readConverterExp = "编=译后")
@ApiModelProperty(value = "文件名称(编译后)")
private String attachName;
/** 文件类型 */
@Excel(name = "文件类型")
@ApiModelProperty(value = "文件类型")
private String attachFileType;
/** 文件编码类型 */
@Excel(name = "文件编码类型")
@ApiModelProperty(value = "文件编码类型")
private String attachContentType;
/** 文件大小 */
@Excel(name = "文件大小")
@ApiModelProperty(value = "文件大小")
private Long attachFileSize;
/** 文件路径 */
@Excel(name = "文件路径")
@ApiModelProperty(value = "文件路径")
private String attachFileUrl;
/** 文件名(原始) */
@Excel(name = "文件名", readConverterExp = "原=始")
@ApiModelProperty(value = "文件名(原始)")
private String oldName;
/** 文件版本号 */
@Excel(name = "文件版本号")
@ApiModelProperty(value = "文件版本号")
private String versionNo;
/** 备注 */
@Excel(name = "备注")
@ApiModelProperty(value = "备注")
private String remark;
}

@ -0,0 +1,14 @@
package com.bs.cm.mapper;
import com.bs.common.mybatis.mapper.BaseMapperX;
import com.bs.cm.domain.CmAttach;
/**
* Mapper
*
* @author bs
* @date 2025-03-04
*/
public interface CmAttachMapper extends BaseMapperX<CmAttach> {
}

@ -0,0 +1,14 @@
package com.bs.cm.service;
import com.github.yulichang.base.MPJBaseService;
import com.bs.cm.domain.CmAttach;
/**
* Service
*
* @author bs
* @date 2025-03-04
*/
public interface ICmAttachService extends MPJBaseService<CmAttach>{
}

@ -0,0 +1,19 @@
package com.bs.cm.service.impl;
import com.bs.cm.mapper.CmAttachMapper;
import com.bs.cm.domain.CmAttach;
import com.bs.cm.service.ICmAttachService;
import com.github.yulichang.base.MPJBaseServiceImpl;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
/**
* Service
*
* @author bs
* @date 2025-03-04
*/
@Service
@Transactional(rollbackFor = Exception.class)
public class CmAttachServiceImpl extends MPJBaseServiceImpl<CmAttachMapper, CmAttach> implements ICmAttachService {
}

@ -4,6 +4,7 @@ import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.List;
import java.util.Map;
import java.util.Random;
import java.util.stream.Collectors;
import javax.servlet.http.HttpServletResponse;
@ -144,6 +145,13 @@ public class CtTaskInfoController extends BaseController {
@Log(title = "任务信息新增", businessType = BusinessType.INSERT)
@PostMapping
public AjaxResult add(@RequestBody CtTaskInfo ctTaskInfo) {
Long newId = System.currentTimeMillis() + new Random().nextInt(1000);
ctTaskInfo.setId(newId);
List<CtTaskBranch> branchList = ctTaskInfo.getBranchList();
for (CtTaskBranch sdTaskOtherBranch : branchList) {
sdTaskOtherBranch.setTaskId(ctTaskInfo.getId());
ctTaskBranchService.saveOrUpdate(sdTaskOtherBranch);
}
return toAjax(ctTaskInfoService.save(ctTaskInfo));
}
@ -154,6 +162,17 @@ public class CtTaskInfoController extends BaseController {
@Log(title = "任务信息修改", businessType = BusinessType.UPDATE)
@PutMapping
public AjaxResult edit(@RequestBody CtTaskInfo ctTaskInfo) {
List<CtTaskBranch> branchList = ctTaskInfo.getBranchList();
if (branchList != null && branchList.size() > 0) {
for (CtTaskBranch sdTaskOtherBranch : branchList) {
sdTaskOtherBranch.setTaskId(ctTaskInfo.getId());
if (sdTaskOtherBranch.getId() == null) {
ctTaskBranchService.save(sdTaskOtherBranch);
} else {
ctTaskBranchService.updateById(sdTaskOtherBranch);
}
}
}
return toAjax(ctTaskInfoService.updateById(ctTaskInfo));
}

@ -1,6 +1,8 @@
package com.bs.ct.domain;
import java.util.Date;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.bs.common.annotation.Excel;
import com.bs.common.core.domain.BaseEntity;
@ -146,6 +148,7 @@ public class CtTaskInfo extends BaseEntity{
private String remarks;
@TableField(exist = false)
private List<CtTaskBranch> branchList;
}

@ -4,6 +4,10 @@ import java.util.ArrayList;
import java.util.List;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import com.bs.cm.domain.CmAttach;
import com.bs.cm.service.ICmAttachService;
import org.aspectj.util.FileUtil;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
@ -34,6 +38,9 @@ public class CommonController
@Autowired
private ServerConfig serverConfig;
@Autowired
private ICmAttachService cmAttachService;
private static final String FILE_DELIMETER = ",";
@ -73,7 +80,7 @@ public class CommonController
*
*/
@PostMapping("/upload")
public AjaxResult uploadFile(MultipartFile file) throws Exception
public AjaxResult uploadFile(MultipartFile file, String fileId) throws Exception
{
try
{
@ -82,12 +89,34 @@ public class CommonController
// 上传并返回新文件名称
String fileName = FileUploadUtils.upload(filePath, file);
String url = serverConfig.getUrl() + fileName;
AjaxResult ajax = AjaxResult.success();
ajax.put("url", url);
ajax.put("fileName", fileName);
ajax.put("newFileName", FileUtils.getName(fileName));
ajax.put("originalFilename", file.getOriginalFilename());
return ajax;
String newFileName = FileUtils.getName(fileName);
String originalFilename = file.getOriginalFilename();
CmAttach cmAttach = new CmAttach();
cmAttach.setFileId(fileId);
cmAttach.setFileSort(1L);
cmAttach.setAttachName(newFileName);
cmAttach.setAttachContentType(file.getContentType());
cmAttach.setAttachFileSize(file.getSize());
// String suffix = FileUtil.getExtensionName(originalFilename);
// String type = FileUtil.getFileType(suffix);
// cmAttach.setAttachFileType(type);
cmAttach.setAttachFileUrl(fileName);
cmAttach.setOldName(originalFilename);
cmAttach.setVersionNo("1");
cmAttach.setRemark("");
boolean save = cmAttachService.save(cmAttach);
if (save) {
Long id = cmAttach.getId();
AjaxResult ajax = AjaxResult.success();
ajax.put("url", url);
ajax.put("fileId", id);
ajax.put("fileName", fileName);
ajax.put("newFileName", newFileName);
ajax.put("cmAttach", cmAttach);
ajax.put("originalFilename", originalFilename);
return ajax;
}
return null;
}
catch (Exception e)
{

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.bs.cm.mapper.CmAttachMapper">
</mapper>

@ -66,6 +66,8 @@
"@vue/cli-service": "4.4.6",
"babel-eslint": "10.1.0",
"babel-plugin-dynamic-import-node": "2.3.3",
"browserslist": "^4.24.4",
"caniuse-lite": "^1.0.30001700",
"chalk": "4.1.0",
"compression-webpack-plugin": "5.0.2",
"connect": "3.6.6",

@ -143,6 +143,8 @@ import {
listBranch,
} from "@/api/task/branch";
// import { getDateStr } from "@/utils/";
import { getAllTree } from "@/api/system/dept";
export default {
components: {
@ -209,11 +211,18 @@ export default {
}
if (!this.dialogForm.branchCode) {
let dept = null;
this.$store.getters.depts.forEach(v => {
if (!dept || dept.deptId > v.deptId) {
dept = v;
}
});
// getAllTree().then((res) => {
// res.forEach(v => {
// if (!dept || dept.deptId > v.deptId) {
// dept = v;
// }
// });
// });
// this.$store.getters.forEach(v => {
// if (!dept || dept.deptId > v.deptId) {
// dept = v;
// }
// });
if (dept) {
this.dialogForm.branchCode = dept.deptId;
this.dialogForm.branchName = dept.deptName;
@ -264,7 +273,7 @@ export default {
taskId: this.dialogForm.id,
})
.then((res) => {
this.branchList = res || [];
this.branchList = res.data || [];
this.branchLoading = false;
})
.catch((e) => {
@ -272,7 +281,6 @@ export default {
});
},
branchChange(val) {
console.log(this.branchList);
val.forEach((item) => {
if (this.branchList.some((v) => v.branchCode === item.deptId + "")) {
return;

@ -42,7 +42,7 @@
<script>
import TableEditMixin from "@/mixins/table-edit-mixin";
import FileUpload from "@/components/FileUpload";
import { addBranch, updateBranch } from "@/api/task/branch";
import { updateInfo } from "@/api/task/info";
export default {
@ -55,7 +55,7 @@ export default {
defaultForm: {
},
title: "任务备注",
updateApi: updateBranch,
updateApi: updateInfo,
// addApi: addBranch,
},
data() {

Loading…
Cancel
Save