设备事件 init

master
guochaojie 4 months ago
parent 79c6fc34e0
commit 1801da8552

@ -0,0 +1,16 @@
package jnpf.mapper;
import jnpf.entity.RecycleDeviceEventEntity;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
/**
*
* V3.5
* https://www.jnpfsoft.com
* JNPF
* 2024-06-18
*/
public interface RecycleDeviceEventMapper extends BaseMapper<RecycleDeviceEventEntity> {
}

@ -0,0 +1,35 @@
package jnpf.service;
import jnpf.model.recycledeviceevent.*;
import jnpf.entity.*;
import java.util.*;
import com.baomidou.mybatisplus.extension.service.IService;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
/**
*
* V3.5
* https://www.jnpfsoft.com
* JNPF
* 2024-06-18
*/
public interface RecycleDeviceEventService extends IService<RecycleDeviceEventEntity> {
List<RecycleDeviceEventEntity> getList(RecycleDeviceEventPagination recycleDeviceEventPagination);
List<RecycleDeviceEventEntity> getTypeList(RecycleDeviceEventPagination recycleDeviceEventPagination,String dataType);
RecycleDeviceEventEntity getInfo(String id);
void delete(RecycleDeviceEventEntity entity);
void create(RecycleDeviceEventEntity entity);
boolean update(String id, RecycleDeviceEventEntity entity);
//子表方法
//副表数据方法
String checkForm(RecycleDeviceEventForm form,int i);
void saveOrUpdate(RecycleDeviceEventForm recycleDeviceEventForm,String id, boolean isSave) throws Exception;
}

@ -0,0 +1,357 @@
package jnpf.service.impl;
import jnpf.entity.*;
import jnpf.mapper.RecycleDeviceEventMapper;
import jnpf.service.*;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import jnpf.model.recycledeviceevent.*;
import java.math.BigDecimal;
import cn.hutool.core.util.ObjectUtil;
import jnpf.permission.model.authorize.AuthorizeConditionModel;
import jnpf.util.GeneraterSwapUtil;
import jnpf.database.model.superQuery.SuperQueryJsonModel;
import jnpf.database.model.superQuery.ConditionJsonModel;
import jnpf.database.model.superQuery.SuperQueryConditionModel;
import java.lang.reflect.Field;
import com.baomidou.mybatisplus.annotation.TableField;
import java.util.regex.Pattern;
import jnpf.model.QueryModel;
import java.util.stream.Collectors;
import jnpf.base.model.ColumnDataModel;
import org.springframework.stereotype.Service;
import com.baomidou.mybatisplus.core.metadata.IPage;
import jnpf.database.model.superQuery.SuperJsonModel;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.transaction.annotation.Transactional;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import java.text.SimpleDateFormat;
import jnpf.util.*;
import java.util.*;
import jnpf.base.UserInfo;
import jnpf.permission.entity.UserEntity;
/**
*
*
* V3.5
* https://www.jnpfsoft.com
* JNPF
* 2024-06-18
*/
@Service
public class RecycleDeviceEventServiceImpl extends ServiceImpl<RecycleDeviceEventMapper, RecycleDeviceEventEntity> implements RecycleDeviceEventService{
@Autowired
private GeneraterSwapUtil generaterSwapUtil;
@Autowired
private UserProvider userProvider;
@Override
public List<RecycleDeviceEventEntity> getList(RecycleDeviceEventPagination recycleDeviceEventPagination){
return getTypeList(recycleDeviceEventPagination,recycleDeviceEventPagination.getDataType());
}
/** 列表查询 */
@Override
public List<RecycleDeviceEventEntity> getTypeList(RecycleDeviceEventPagination recycleDeviceEventPagination,String dataType){
String userId=userProvider.get().getUserId();
List<String> AllIdList =new ArrayList();
List<List<String>> intersectionList =new ArrayList<>();
boolean isPc = ServletUtil.getHeader("jnpf-origin").equals("pc");
String columnData = !isPc ? RecycleDeviceEventConstant.getAppColumnData() : RecycleDeviceEventConstant.getColumnData();
ColumnDataModel columnDataModel = JsonUtil.getJsonToBean(columnData, ColumnDataModel.class);
String ruleJson = !isPc ? JsonUtil.getObjectToString(columnDataModel.getRuleListApp()) : JsonUtil.getObjectToString(columnDataModel.getRuleList());
int total=0;
int recycleDeviceEventNum =0;
QueryWrapper<RecycleDeviceEventEntity> recycleDeviceEventQueryWrapper=new QueryWrapper<>();
List<String> allSuperIDlist = new ArrayList<>();
String superOp ="";
if (ObjectUtil.isNotEmpty(recycleDeviceEventPagination.getSuperQueryJson())){
List<String> allSuperList = new ArrayList<>();
List<List<String>> intersectionSuperList = new ArrayList<>();
String queryJson = recycleDeviceEventPagination.getSuperQueryJson();
SuperJsonModel superJsonModel = JsonUtil.getJsonToBean(queryJson, SuperJsonModel.class);
int superNum = 0;
QueryWrapper<RecycleDeviceEventEntity> recycleDeviceEventSuperWrapper = new QueryWrapper<>();
recycleDeviceEventSuperWrapper = generaterSwapUtil.getCondition(new QueryModel(recycleDeviceEventSuperWrapper,RecycleDeviceEventEntity.class,queryJson,"0"));
int recycleDeviceEventNum1 = recycleDeviceEventSuperWrapper.getExpression().getNormal().size();
if (recycleDeviceEventNum1>0){
List<String> recycleDeviceEventList =this.list(recycleDeviceEventSuperWrapper).stream().map(RecycleDeviceEventEntity::getId).collect(Collectors.toList());
allSuperList.addAll(recycleDeviceEventList);
intersectionSuperList.add(recycleDeviceEventList);
superNum++;
}
superOp = superNum > 0 ? superJsonModel.getMatchLogic() : "";
//and or
if(superOp.equalsIgnoreCase("and")){
allSuperIDlist = generaterSwapUtil.getIntersection(intersectionSuperList);
}else{
allSuperIDlist = allSuperList;
}
}
List<String> allRuleIDlist = new ArrayList<>();
String ruleOp ="";
if (ObjectUtil.isNotEmpty(ruleJson)){
List<String> allRuleList = new ArrayList<>();
List<List<String>> intersectionRuleList = new ArrayList<>();
SuperJsonModel ruleJsonModel = JsonUtil.getJsonToBean(ruleJson, SuperJsonModel.class);
int ruleNum = 0;
QueryWrapper<RecycleDeviceEventEntity> recycleDeviceEventSuperWrapper = new QueryWrapper<>();
recycleDeviceEventSuperWrapper = generaterSwapUtil.getCondition(new QueryModel(recycleDeviceEventSuperWrapper,RecycleDeviceEventEntity.class,ruleJson,"0"));
int recycleDeviceEventNum1 = recycleDeviceEventSuperWrapper.getExpression().getNormal().size();
if (recycleDeviceEventNum1>0){
List<String> recycleDeviceEventList =this.list(recycleDeviceEventSuperWrapper).stream().map(RecycleDeviceEventEntity::getId).collect(Collectors.toList());
allRuleList.addAll(recycleDeviceEventList);
intersectionRuleList.add(recycleDeviceEventList);
ruleNum++;
}
ruleOp = ruleNum > 0 ? ruleJsonModel.getMatchLogic() : "";
//and or
if(ruleOp.equalsIgnoreCase("and")){
allRuleIDlist = generaterSwapUtil.getIntersection(intersectionRuleList);
}else{
allRuleIDlist = allRuleList;
}
}
boolean pcPermission = false;
boolean appPermission = false;
if(isPc && pcPermission){
if (!userProvider.get().getIsAdministrator()){
Object recycleDeviceEventObj=generaterSwapUtil.getAuthorizeCondition(new QueryModel(recycleDeviceEventQueryWrapper,RecycleDeviceEventEntity.class,recycleDeviceEventPagination.getMenuId(),"0"));
if (ObjectUtil.isEmpty(recycleDeviceEventObj)){
return new ArrayList<>();
} else {
recycleDeviceEventQueryWrapper = (QueryWrapper<RecycleDeviceEventEntity>)recycleDeviceEventObj;
if( recycleDeviceEventQueryWrapper.getExpression().getNormal().size()>0){
recycleDeviceEventNum++;
}
}
}
}
if(!isPc && appPermission){
if (!userProvider.get().getIsAdministrator()){
Object recycleDeviceEventObj=generaterSwapUtil.getAuthorizeCondition(new QueryModel(recycleDeviceEventQueryWrapper,RecycleDeviceEventEntity.class,recycleDeviceEventPagination.getMenuId(),"0"));
if (ObjectUtil.isEmpty(recycleDeviceEventObj)){
return new ArrayList<>();
} else {
recycleDeviceEventQueryWrapper = (QueryWrapper<RecycleDeviceEventEntity>)recycleDeviceEventObj;
if( recycleDeviceEventQueryWrapper.getExpression().getNormal().size()>0){
recycleDeviceEventNum++;
}
}
}
}
if(isPc){
if(ObjectUtil.isNotEmpty(recycleDeviceEventPagination.getDeviceCode())){
recycleDeviceEventNum++;
List<String> idList = new ArrayList<>();
try {
String[][] deviceCode = JsonUtil.getJsonToBean(recycleDeviceEventPagination.getDeviceCode(),String[][].class);
for(int i=0;i<deviceCode.length;i++){
if(deviceCode[i].length>0){
idList.add(JsonUtil.getObjectToString(Arrays.asList(deviceCode[i])));
}
}
}catch (Exception e1){
try {
List<String> deviceCode = JsonUtil.getJsonToList(recycleDeviceEventPagination.getDeviceCode(),String.class);
if(deviceCode.size()>0){
idList.addAll(deviceCode);
}
}catch (Exception e2){
idList.add(String.valueOf(recycleDeviceEventPagination.getDeviceCode()));
}
}
recycleDeviceEventQueryWrapper.lambda().and(t->{
idList.forEach(tt->{
t.like(RecycleDeviceEventEntity::getDeviceCode, tt).or();
});
});
}
if(ObjectUtil.isNotEmpty(recycleDeviceEventPagination.getBucketCode())){
recycleDeviceEventNum++;
List<String> idList = new ArrayList<>();
try {
String[][] bucketCode = JsonUtil.getJsonToBean(recycleDeviceEventPagination.getBucketCode(),String[][].class);
for(int i=0;i<bucketCode.length;i++){
if(bucketCode[i].length>0){
idList.add(JsonUtil.getObjectToString(Arrays.asList(bucketCode[i])));
}
}
}catch (Exception e1){
try {
List<String> bucketCode = JsonUtil.getJsonToList(recycleDeviceEventPagination.getBucketCode(),String.class);
if(bucketCode.size()>0){
idList.addAll(bucketCode);
}
}catch (Exception e2){
idList.add(String.valueOf(recycleDeviceEventPagination.getBucketCode()));
}
}
recycleDeviceEventQueryWrapper.lambda().and(t->{
idList.forEach(tt->{
t.like(RecycleDeviceEventEntity::getBucketCode, tt).or();
});
});
}
if(ObjectUtil.isNotEmpty(recycleDeviceEventPagination.getEventType())){
recycleDeviceEventNum++;
String value = recycleDeviceEventPagination.getEventType() instanceof List ?
JsonUtil.getObjectToString(recycleDeviceEventPagination.getEventType()) :
String.valueOf(recycleDeviceEventPagination.getEventType());
recycleDeviceEventQueryWrapper.lambda().like(RecycleDeviceEventEntity::getEventType,value);
}
if(ObjectUtil.isNotEmpty(recycleDeviceEventPagination.getIsLocal())){
recycleDeviceEventNum++;
recycleDeviceEventQueryWrapper.lambda().eq(RecycleDeviceEventEntity::getIsLocal,recycleDeviceEventPagination.getIsLocal());
}
if(ObjectUtil.isNotEmpty(recycleDeviceEventPagination.getEventResult())){
recycleDeviceEventNum++;
recycleDeviceEventQueryWrapper.lambda().eq(RecycleDeviceEventEntity::getEventResult,recycleDeviceEventPagination.getEventResult());
}
if(ObjectUtil.isNotEmpty(recycleDeviceEventPagination.getEventTime())){
recycleDeviceEventNum++;
String value = recycleDeviceEventPagination.getEventTime() instanceof List ?
JsonUtil.getObjectToString(recycleDeviceEventPagination.getEventTime()) :
String.valueOf(recycleDeviceEventPagination.getEventTime());
recycleDeviceEventQueryWrapper.lambda().like(RecycleDeviceEventEntity::getEventTime,value);
}
}
List<String> intersection = generaterSwapUtil.getIntersection(intersectionList);
if (total>0){
if (intersection.size()==0){
intersection.add("jnpfNullList");
}
recycleDeviceEventQueryWrapper.lambda().in(RecycleDeviceEventEntity::getId, intersection);
}
//是否有高级查询
if (StringUtil.isNotEmpty(superOp)){
if (allSuperIDlist.size()==0){
allSuperIDlist.add("jnpfNullList");
}
List<String> finalAllSuperIDlist = allSuperIDlist;
recycleDeviceEventQueryWrapper.lambda().and(t->t.in(RecycleDeviceEventEntity::getId, finalAllSuperIDlist));
}
//是否有数据过滤查询
if (StringUtil.isNotEmpty(ruleOp)){
if (allRuleIDlist.size()==0){
allRuleIDlist.add("jnpfNullList");
}
List<String> finalAllRuleIDlist = allRuleIDlist;
recycleDeviceEventQueryWrapper.lambda().and(t->t.in(RecycleDeviceEventEntity::getId, finalAllRuleIDlist));
}
//排序
if(StringUtil.isEmpty(recycleDeviceEventPagination.getSidx())){
recycleDeviceEventQueryWrapper.lambda().orderByDesc(RecycleDeviceEventEntity::getId);
}else{
try {
String sidx = recycleDeviceEventPagination.getSidx();
String[] strs= sidx.split("_name");
RecycleDeviceEventEntity recycleDeviceEventEntity = new RecycleDeviceEventEntity();
Field declaredField = recycleDeviceEventEntity.getClass().getDeclaredField(strs[0]);
declaredField.setAccessible(true);
String value = declaredField.getAnnotation(TableField.class).value();
recycleDeviceEventQueryWrapper="asc".equals(recycleDeviceEventPagination.getSort().toLowerCase())?recycleDeviceEventQueryWrapper.orderByAsc(value):recycleDeviceEventQueryWrapper.orderByDesc(value);
} catch (NoSuchFieldException e) {
e.printStackTrace();
}
}
if("0".equals(dataType)){
if((total>0 && AllIdList.size()>0) || total==0){
Page<RecycleDeviceEventEntity> page=new Page<>(recycleDeviceEventPagination.getCurrentPage(), recycleDeviceEventPagination.getPageSize());
IPage<RecycleDeviceEventEntity> userIPage=this.page(page, recycleDeviceEventQueryWrapper);
return recycleDeviceEventPagination.setData(userIPage.getRecords(),userIPage.getTotal());
}else{
List<RecycleDeviceEventEntity> list = new ArrayList();
return recycleDeviceEventPagination.setData(list, list.size());
}
}else{
return this.list(recycleDeviceEventQueryWrapper);
}
}
@Override
public RecycleDeviceEventEntity getInfo(String id){
QueryWrapper<RecycleDeviceEventEntity> queryWrapper=new QueryWrapper<>();
queryWrapper.lambda().eq(RecycleDeviceEventEntity::getId,id);
return this.getOne(queryWrapper);
}
@Override
public void create(RecycleDeviceEventEntity entity){
this.save(entity);
}
@Override
public boolean update(String id, RecycleDeviceEventEntity entity){
return this.updateById(entity);
}
@Override
public void delete(RecycleDeviceEventEntity entity){
if(entity!=null){
this.removeById(entity.getId());
}
}
/** 验证表单唯一字段,正则,非空 i-0新增-1修改*/
@Override
public String checkForm(RecycleDeviceEventForm form,int i) {
boolean isUp =StringUtil.isNotEmpty(form.getId()) && !form.getId().equals("0");
String id="";
String countRecover = "";
if (isUp){
id = form.getId();
}
//主表字段验证
return countRecover;
}
/**
* ()
* @param id
* @param recycleDeviceEventForm
* @return
*/
@Override
@Transactional
public void saveOrUpdate(RecycleDeviceEventForm recycleDeviceEventForm,String id, boolean isSave) throws Exception{
UserInfo userInfo=userProvider.get();
UserEntity userEntity = generaterSwapUtil.getUser(userInfo.getUserId());
recycleDeviceEventForm = JsonUtil.getJsonToBean(
generaterSwapUtil.swapDatetime(RecycleDeviceEventConstant.getFormData(),recycleDeviceEventForm),RecycleDeviceEventForm.class);
RecycleDeviceEventEntity entity = JsonUtil.getJsonToBean(recycleDeviceEventForm, RecycleDeviceEventEntity.class);
if(isSave){
String mainId = RandomUtil.uuId() ;
entity.setCreateUserId(userInfo.getUserId());
entity.setCreateTime(DateUtil.getNowDate());
entity.setOrganizeJsonId(generaterSwapUtil.getCurrentOrgIds(userInfo.getOrganizeId(),"all"));
entity.setDepartmentId(userEntity.getPositionId());
entity.setId(mainId);
}else{
entity.setCreateUserId(userInfo.getUserId());
entity.setCreateTime(DateUtil.getNowDate());
entity.setOrganizeJsonId(generaterSwapUtil.getCurrentOrgIds(userInfo.getOrganizeId(),"all"));
entity.setDepartmentId(userEntity.getPositionId());
}
this.saveOrUpdate(entity);
}
}

@ -0,0 +1,190 @@
package jnpf.controller;
import cn.hutool.core.util.ObjectUtil;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import io.swagger.v3.oas.annotations.Operation;
import io.swagger.v3.oas.annotations.tags.Tag;
import jnpf.base.ActionResult;
import jnpf.base.UserInfo;
import jnpf.exception.DataException;
import jnpf.permission.entity.UserEntity;
import jnpf.service.*;
import jnpf.entity.*;
import jnpf.util.*;
import jnpf.model.recycledeviceevent.*;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;
import javax.validation.Valid;
import java.util.*;
import jnpf.annotation.JnpfField;
import jnpf.base.vo.PageListVO;
import jnpf.base.vo.PaginationVO;
import jnpf.base.vo.DownloadVO;
import jnpf.config.ConfigValueUtil;
import jnpf.base.entity.ProvinceEntity;
import java.io.IOException;
import java.util.stream.Collectors;
import jnpf.engine.entity.FlowTaskEntity;
import jnpf.exception.WorkFlowException;
import org.springframework.transaction.annotation.Transactional;
/**
*
* @ V3.5
* @ https://www.jnpfsoft.com
* @ JNPF
* @ 2024-06-18
*/
@Slf4j
@RestController
@Tag(name = "设备事件" , description = "scm")
@RequestMapping("/api/scm/RecycleDeviceEvent")
public class RecycleDeviceEventController {
@Autowired
private GeneraterSwapUtil generaterSwapUtil;
@Autowired
private UserProvider userProvider;
@Autowired
private RecycleDeviceEventService recycleDeviceEventService;
/**
*
*
* @param recycleDeviceEventPagination
* @return
*/
@Operation(summary = "获取列表")
@PostMapping("/getList")
public ActionResult list(@RequestBody RecycleDeviceEventPagination recycleDeviceEventPagination)throws IOException{
List<RecycleDeviceEventEntity> list= recycleDeviceEventService.getList(recycleDeviceEventPagination);
List<Map<String, Object>> realList=new ArrayList<>();
for (RecycleDeviceEventEntity entity : list) {
Map<String, Object> recycleDeviceEventMap=JsonUtil.entityToMap(entity);
recycleDeviceEventMap.put("id", recycleDeviceEventMap.get("id"));
//副表数据
//子表数据
realList.add(recycleDeviceEventMap);
}
//数据转换
realList = generaterSwapUtil.swapDataList(realList, RecycleDeviceEventConstant.getFormData(), RecycleDeviceEventConstant.getColumnData(), recycleDeviceEventPagination.getModuleId(),false);
//返回对象
PageListVO vo = new PageListVO();
vo.setList(realList);
PaginationVO page = JsonUtil.getJsonToBean(recycleDeviceEventPagination, PaginationVO.class);
vo.setPagination(page);
return ActionResult.success(vo);
}
/**
*
*
* @param recycleDeviceEventForm
* @return
*/
@PostMapping()
@Operation(summary = "创建")
public ActionResult create(@RequestBody @Valid RecycleDeviceEventForm recycleDeviceEventForm) {
String b = recycleDeviceEventService.checkForm(recycleDeviceEventForm,0);
if (StringUtil.isNotEmpty(b)){
return ActionResult.fail(b );
}
try{
recycleDeviceEventService.saveOrUpdate(recycleDeviceEventForm, null ,true);
}catch(Exception e){
return ActionResult.fail("新增数据失败");
}
return ActionResult.success("创建成功");
}
/**
*
* @param id
* @param recycleDeviceEventForm
* @return
*/
@PutMapping("/{id}")
@Operation(summary = "更新")
public ActionResult update(@PathVariable("id") String id,@RequestBody @Valid RecycleDeviceEventForm recycleDeviceEventForm,
@RequestParam(value = "isImport", required = false) boolean isImport){
recycleDeviceEventForm.setId(id);
if (!isImport) {
String b = recycleDeviceEventService.checkForm(recycleDeviceEventForm,1);
if (StringUtil.isNotEmpty(b)){
return ActionResult.fail(b );
}
}
RecycleDeviceEventEntity entity= recycleDeviceEventService.getInfo(id);
if(entity!=null){
try{
recycleDeviceEventService.saveOrUpdate(recycleDeviceEventForm,id,false);
}catch(Exception e){
return ActionResult.fail("修改数据失败");
}
return ActionResult.success("更新成功");
}else{
return ActionResult.fail("更新失败,数据不存在");
}
}
/**
*
* @param id
* @return
*/
@Operation(summary = "删除")
@DeleteMapping("/{id}")
@Transactional
public ActionResult delete(@PathVariable("id") String id){
RecycleDeviceEventEntity entity= recycleDeviceEventService.getInfo(id);
if(entity!=null){
//主表数据删除
recycleDeviceEventService.delete(entity);
}
return ActionResult.success("删除成功");
}
/**
* ()
* 使-
* @param id
* @return
*/
@Operation(summary = "表单信息(详情页)")
@GetMapping("/detail/{id}")
public ActionResult detailInfo(@PathVariable("id") String id){
RecycleDeviceEventEntity entity= recycleDeviceEventService.getInfo(id);
if(entity==null){
return ActionResult.fail("表单数据不存在!");
}
Map<String, Object> recycleDeviceEventMap=JsonUtil.entityToMap(entity);
recycleDeviceEventMap.put("id", recycleDeviceEventMap.get("id"));
//副表数据
//子表数据
recycleDeviceEventMap = generaterSwapUtil.swapDataDetail(recycleDeviceEventMap,RecycleDeviceEventConstant.getFormData(),"572738430170051973",false);
return ActionResult.success(recycleDeviceEventMap);
}
/**
* ()
* 使-
* @param id
* @return
*/
@Operation(summary = "信息")
@GetMapping("/{id}")
public ActionResult info(@PathVariable("id") String id){
RecycleDeviceEventEntity entity= recycleDeviceEventService.getInfo(id);
if(entity==null){
return ActionResult.fail("表单数据不存在!");
}
Map<String, Object> recycleDeviceEventMap=JsonUtil.entityToMap(entity);
recycleDeviceEventMap.put("id", recycleDeviceEventMap.get("id"));
//副表数据
//子表数据
recycleDeviceEventMap = generaterSwapUtil.swapDataForm(recycleDeviceEventMap,RecycleDeviceEventConstant.getFormData(),RecycleDeviceEventConstant.TABLEFIELDKEY,RecycleDeviceEventConstant.TABLERENAMES);
return ActionResult.success(recycleDeviceEventMap);
}
}

@ -0,0 +1,55 @@
package jnpf.entity;
import com.baomidou.mybatisplus.annotation.*;
import lombok.Data;
import java.util.Date;
/**
*
*
* @ V3.5
* @ https://www.jnpfsoft.com
* @ JNPF
* @ 2024-06-18
*/
@Data
@TableName("nx_recycle_device_event")
public class RecycleDeviceEventEntity {
@TableId(value ="ID" )
private String id;
@TableField(value = "DEVICE_CODE" , updateStrategy = FieldStrategy.IGNORED)
private String deviceCode;
@TableField(value = "BUCKET_CODE" , updateStrategy = FieldStrategy.IGNORED)
private String bucketCode;
@TableField(value = "DOOR_NUM" , updateStrategy = FieldStrategy.IGNORED)
private Integer doorNum;
@TableField(value = "EVENT_TYPE" , updateStrategy = FieldStrategy.IGNORED)
private String eventType;
@TableField(value = "EVENT_TIME" , updateStrategy = FieldStrategy.IGNORED)
private Date eventTime;
@TableField(value = "EVENT_DESC" , updateStrategy = FieldStrategy.IGNORED)
private String eventDesc;
@TableField(value = "EVENT_RESULT" , updateStrategy = FieldStrategy.IGNORED)
private String eventResult;
@TableField(value = "IS_LOCAL" , updateStrategy = FieldStrategy.IGNORED)
private String isLocal;
@TableField("IMAGES")
private String images;
@TableField("F_CREATE_USER_ID")
private String createUserId;
@TableField("F_CREATE_TIME")
private Date createTime;
@TableField("F_LAST_MODIFY_USER_ID")
private String lastModifyUserId;
@TableField("F_LAST_MODIFY_TIME")
private Date lastModifyTime;
@TableField("F_TENANT_ID")
private String tenantId;
@TableField("COMPANY_ID")
private String companyId;
@TableField("DEPARTMENT_ID")
private String departmentId;
@TableField("ORGANIZE_JSON_ID")
private String organizeJsonId;
@TableField("F_FLOW_ID")
private String flowId;
}

@ -0,0 +1,56 @@
package jnpf.model.recycledeviceevent;
import lombok.Data;
import java.util.List;
import java.math.BigDecimal;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
*
* @ V3.5
* @ https://www.jnpfsoft.com
* @ JNPF
* @ 2024-06-18
*/
@Data
public class RecycleDeviceEventForm {
/** 主键 */
private String id;
/** 设备编码 **/
@JsonProperty("deviceCode")
private Object deviceCode;
/** 桶编码 **/
@JsonProperty("bucketCode")
private Object bucketCode;
/** 门号 **/
@JsonProperty("doorNum")
private String doorNum;
/** 事件类型 **/
@JsonProperty("eventType")
private String eventType;
/** 事件时间 **/
@JsonProperty("eventTime")
private String eventTime;
/** 事件描述 **/
@JsonProperty("eventDesc")
private String eventDesc;
/** 本地调用 **/
@JsonProperty("isLocal")
private String isLocal;
/** 事件结果 **/
@JsonProperty("eventResult")
private String eventResult;
/** 创建用户 **/
@JsonProperty("createUserId")
private String createUserId;
/** 创建时间 **/
@JsonProperty("createTime")
private String createTime;
/** 所属组织 **/
@JsonProperty("organizeJsonId")
private Object organizeJsonId;
/** 部门 **/
@JsonProperty("departmentId")
private String departmentId;
}

@ -0,0 +1,48 @@
package jnpf.model.recycledeviceevent;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
import jnpf.base.Pagination;
import java.util.List;
/**
*
*
* @ V3.5
* @ https://www.jnpfsoft.com
* @ JNPF
* @ 2024-06-18
*/
@Data
public class RecycleDeviceEventPagination extends Pagination {
/** 查询key */
private String[] selectKey;
/** json */
private String json;
/** 数据类型 0-当前页1-全部数据 */
private String dataType;
/** 高级查询 */
private String superQueryJson;
/** 功能id */
private String moduleId;
/** 菜单id */
private String menuId;
/** 设备编码 */
@JsonProperty("deviceCode")
private Object deviceCode;
/** 桶编码 */
@JsonProperty("bucketCode")
private Object bucketCode;
/** 事件类型 */
@JsonProperty("eventType")
private Object eventType;
/** 本地调用 */
@JsonProperty("isLocal")
private Object isLocal;
/** 事件结果 */
@JsonProperty("eventResult")
private Object eventResult;
/** 事件时间 */
@JsonProperty("eventTime")
private Object eventTime;
}

@ -0,0 +1,175 @@
<template>
<el-dialog title="详情"
:close-on-click-modal="false" append-to-body
:visible.sync="visible" class="JNPF-dialog JNPF-dialog_center" lock-scroll
width="600px">
<el-row :gutter="15" class="">
<el-form ref="formRef" :model="dataForm" size="small" label-width="100px" label-position="right" >
<template v-if="!loading">
<el-col :span="24" >
<jnpf-form-tip-item label="设备编码"
prop="deviceCode" >
<p>{{ dataForm.deviceCode }} </p>
</jnpf-form-tip-item>
</el-col>
<el-col :span="24" >
<jnpf-form-tip-item label="桶编码"
prop="bucketCode" >
<p>{{dataForm.bucketCode}}</p>
</jnpf-form-tip-item>
</el-col>
<el-col :span="24" >
<jnpf-form-tip-item label="门号"
prop="doorNum" >
<p>{{dataForm.doorNum}}</p>
</jnpf-form-tip-item>
</el-col>
<el-col :span="24" >
<jnpf-form-tip-item label="事件类型"
prop="eventType" >
<p>{{dataForm.eventType}}</p>
</jnpf-form-tip-item>
</el-col>
<el-col :span="24" >
<jnpf-form-tip-item label="事件时间"
prop="eventTime" >
<p>{{dataForm.eventTime}}</p>
</jnpf-form-tip-item>
</el-col>
<el-col :span="24" >
<jnpf-form-tip-item label="事件描述"
prop="eventDesc" >
<p>{{dataForm.eventDesc}}</p>
</jnpf-form-tip-item>
</el-col>
<el-col :span="24" >
<jnpf-form-tip-item label="本地调用"
prop="isLocal" >
<p>{{ dataForm.isLocal }} </p>
</jnpf-form-tip-item>
</el-col>
<el-col :span="24" >
<jnpf-form-tip-item label="事件结果"
prop="eventResult" >
<p>{{ dataForm.eventResult }} </p>
</jnpf-form-tip-item>
</el-col>
<el-col :span="24" >
<jnpf-form-tip-item label="创建用户"
prop="createUserId" >
<p>{{dataForm.createUserId}}</p>
</jnpf-form-tip-item>
</el-col>
<el-col :span="24" >
<jnpf-form-tip-item label="创建时间"
prop="createTime" >
<p>{{dataForm.createTime}}</p>
</jnpf-form-tip-item>
</el-col>
<el-col :span="24" >
<jnpf-form-tip-item label="所属组织"
prop="organizeJsonId" >
<p>{{dataForm.organizeJsonId}}</p>
</jnpf-form-tip-item>
</el-col>
<el-col :span="24" >
<jnpf-form-tip-item label="部门"
prop="departmentId" >
<p>{{dataForm.departmentId}}</p>
</jnpf-form-tip-item>
</el-col>
</template>
</el-form>
</el-row>
<span slot="footer" class="dialog-footer">
<el-button @click="visible = false"> </el-button>
</span>
<Detail v-if="detailVisible" ref="Detail" @close="detailVisible = false" />
</el-dialog>
</template>
<script>
import request from '@/utils/request'
import { getConfigData } from '@/api/onlineDev/visualDev'
import jnpf from '@/utils/jnpf'
import Detail from '@/views/basic/dynamicModel/list/detail'
import { thousandsFormat } from "@/components/Generator/utils/index"
export default {
components: { Detail},
props: [],
data() {
return {
visible: false,
detailVisible: false,
loading: false,
dataForm: {
id :'',
deviceCode : "",
bucketCode : "",
doorNum : '',
eventType : '',
eventTime : '',
eventDesc : '',
isLocal : '',
eventResult : '',
createUserId : "",
createTime : "",
organizeJsonId : "",
departmentId : "",
},
deviceCodeOptions:[{"fullName":"选项一","id":"1"},{"fullName":"选项二","id":"2"}],
deviceCodeProps:{"label":"fullName","value":"id" },
bucketCodeProps:{"label":"device_name","value":"device_code" },
isLocalOptions:[{"fullName":"本地","id":"1"},{"fullName":"远程","id":"2"}],
isLocalProps:{"label":"fullName","value":"id" },
eventResultOptions:[{"fullName":"成功","id":"1"},{"fullName":"失败","id":"0"}],
eventResultProps:{"label":"fullName","value":"id" },
}
},
computed: {},
watch: {},
created() {
},
mounted() {},
methods: {
toDetail(defaultValue, modelId) {
if (!defaultValue) return
getConfigData(modelId).then(res => {
if (!res.data || !res.data.formData) return
let formData = JSON.parse(res.data.formData)
formData.popupType = 'general'
this.detailVisible = true
this.$nextTick(() => {
this.$refs.Detail.init(formData, modelId, defaultValue)
})
})
},
dataInfo(dataAll){
let _dataAll =dataAll
this.dataForm = _dataAll
},
init(id) {
this.dataForm.id = id || 0;
this.visible = true;
this.$nextTick(() => {
if(this.dataForm.id){
this.loading = true
request({
url: '/api/scm/RecycleDeviceEvent/detail/'+this.dataForm.id,
method: 'get'
}).then(res => {
this.dataInfo(res.data)
this.loading = false
})
}
})
},
},
}
</script>

File diff suppressed because one or more lines are too long

@ -0,0 +1,533 @@
<template>
<el-dialog :title="!dataForm.id ? '新建' :'编辑'"
:close-on-click-modal="false" append-to-body
:visible.sync="visible" class="JNPF-dialog JNPF-dialog_center" lock-scroll
width="600px">
<el-row :gutter="15" class="">
<el-form ref="formRef" :model="dataForm" :rules="dataRule" size="small" label-width="100px" label-position="right" >
<template v-if="!loading">
<!-- 具体表单 -->
<el-col :span="24" >
<jnpf-form-tip-item
label="设备编码" prop="deviceCode" >
<JnpfSelect v-model="dataForm.deviceCode" @change="changeData('deviceCode',-1)"
placeholder="请选择" clearable :style='{"width":"100%"}' :options="deviceCodeOptions" :props="deviceCodeProps" >
</JnpfSelect>
</jnpf-form-tip-item>
</el-col>
<el-col :span="24" >
<jnpf-form-tip-item
label="桶编码" prop="bucketCode" >
<JnpfSelect v-model="dataForm.bucketCode" @change="changeData('bucketCode',-1)"
placeholder="请选择" clearable :style='{"width":"100%"}' :options="bucketCodeOptions" :props="bucketCodeProps" >
</JnpfSelect>
</jnpf-form-tip-item>
</el-col>
<el-col :span="24" >
<jnpf-form-tip-item
label="门号" prop="doorNum" >
<JnpfInput v-model="dataForm.doorNum" @change="changeData('doorNum',-1)"
placeholder="请输入" clearable :style='{"width":"100%"}'>
</JnpfInput>
</jnpf-form-tip-item>
</el-col>
<el-col :span="24" >
<jnpf-form-tip-item
label="事件类型" prop="eventType" >
<JnpfInput v-model="dataForm.eventType" @change="changeData('eventType',-1)"
placeholder="请输入" clearable :style='{"width":"100%"}'>
</JnpfInput>
</jnpf-form-tip-item>
</el-col>
<el-col :span="24" >
<jnpf-form-tip-item
label="事件时间" prop="eventTime" >
<JnpfInput v-model="dataForm.eventTime" @change="changeData('eventTime',-1)"
placeholder="请输入" clearable :style='{"width":"100%"}'>
</JnpfInput>
</jnpf-form-tip-item>
</el-col>
<el-col :span="24" >
<jnpf-form-tip-item
label="事件描述" prop="eventDesc" >
<JnpfInput v-model="dataForm.eventDesc" @change="changeData('eventDesc',-1)"
placeholder="请输入" clearable :style='{"width":"100%"}'>
</JnpfInput>
</jnpf-form-tip-item>
</el-col>
<el-col :span="24" >
<jnpf-form-tip-item
label="本地调用" prop="isLocal" >
<JnpfRadio v-model="dataForm.isLocal" @change="changeData('isLocal',-1)"
optionType="button" direction="horizontal" size="small" :options="isLocalOptions" :props="isLocalProps" >
</JnpfRadio>
</jnpf-form-tip-item>
</el-col>
<el-col :span="24" >
<jnpf-form-tip-item
label="事件结果" prop="eventResult" >
<JnpfRadio v-model="dataForm.eventResult" @change="changeData('eventResult',-1)"
optionType="button" direction="horizontal" size="small" :options="eventResultOptions" :props="eventResultProps" >
</JnpfRadio>
</jnpf-form-tip-item>
</el-col>
<el-col :span="24" >
<jnpf-form-tip-item
label="创建用户" prop="createUserId" >
<JnpfOpenData v-model="dataForm.createUserId" @change="changeData('createUserId',-1)"
placeholder="系统自动生成" readonly :style='{"width":"100%"}' type="currUser" >
</JnpfOpenData>
</jnpf-form-tip-item>
</el-col>
<el-col :span="24" >
<jnpf-form-tip-item
label="创建时间" prop="createTime" >
<JnpfOpenData v-model="dataForm.createTime" @change="changeData('createTime',-1)"
placeholder="系统自动生成" readonly :style='{"width":"100%"}' type="currTime" >
</JnpfOpenData>
</jnpf-form-tip-item>
</el-col>
<el-col :span="24" >
<jnpf-form-tip-item
label="所属组织" prop="organizeJsonId" >
<JnpfOpenData v-model="dataForm.organizeJsonId" @change="changeData('organizeJsonId',-1)"
placeholder="系统自动生成" readonly :style='{"width":"100%"}' type="currOrganize" showLevel="all" >
</JnpfOpenData>
</jnpf-form-tip-item>
</el-col>
<el-col :span="24" >
<jnpf-form-tip-item
label="部门" prop="departmentId" >
<JnpfOpenData v-model="dataForm.departmentId" @change="changeData('departmentId',-1)"
placeholder="系统自动生成" readonly :style='{"width":"100%"}' type="currPosition" >
</JnpfOpenData>
</jnpf-form-tip-item>
</el-col>
<!-- 表单结束 -->
</template>
</el-form>
<SelectDialog v-if="selectDialogVisible" :config="currTableConf" :formData="dataForm"
ref="selectDialog" @select="addForSelect" @close="selectDialogVisible=false"/>
</el-row>
<span slot="footer" class="dialog-footer">
<div class="upAndDown-button" v-if="dataForm.id">
<el-button @click="prev" :disabled='prevDis'>
{{'上一条'}}
</el-button>
<el-button @click="next" :disabled='nextDis'>
{{'下一条'}}
</el-button>
</div>
<el-button type="primary" @click="dataFormSubmit(2)" :loading="continueBtnLoading">
{{!dataForm.id ?'确定并新增':'确定并继续'}}</el-button>
<el-button @click="visible = false"> </el-button>
<el-button type="primary" @click="dataFormSubmit()" :loading="btnLoading"> </el-button>
</span>
</el-dialog>
</template>
<script>
import request from '@/utils/request'
import {mapGetters} from "vuex";
import { getDataInterfaceRes } from '@/api/systemData/dataInterface'
import { getDictionaryDataSelector } from '@/api/systemData/dictionary'
import { getDefaultCurrentValueUserId } from '@/api/permission/user'
import { getDefaultCurrentValueDepartmentId } from '@/api/permission/organize'
import { getDateDay, getLaterData, getBeforeData, getBeforeTime, getLaterTime } from '@/components/Generator/utils/index.js'
import { thousandsFormat } from "@/components/Generator/utils/index"
export default {
components: { },
props: [],
data() {
return {
dataFormSubmitType: 0,
continueBtnLoading: false,
index: 0,
prevDis: false,
nextDis: false,
allList: [],
visible: false,
loading: false,
btnLoading: false,
formRef: 'formRef',
setting:{},
eventType: '',
userBoxVisible:false,
selectDialogVisible: false,
currTableConf:{},
dataValueAll:{},
addTableConf:{
},
//
ableAll:{
},
tableRows:{
},
Vmodel:"",
currVmodel:"",
dataForm: {
deviceCode : undefined,
bucketCode : undefined,
doorNum : undefined,
eventType : undefined,
eventTime : undefined,
eventDesc : undefined,
isLocal : undefined,
eventResult : undefined,
createUserId : undefined,
createTime : undefined,
organizeJsonId : undefined,
departmentId : undefined,
},
tableRequiredData: {},
dataRule:
{
},
deviceCodeOptions:[{"fullName":"选项一","id":"1"},{"fullName":"选项二","id":"2"}],
deviceCodeProps:{"label":"fullName","value":"id" },
bucketCodeOptions:[],
bucketCodeProps:{"label":"device_name","value":"device_code" },
isLocalOptions:[{"fullName":"本地","id":"1"},{"fullName":"远程","id":"2"}],
isLocalProps:{"label":"fullName","value":"id" },
eventResultOptions:[{"fullName":"成功","id":"1"},{"fullName":"失败","id":"0"}],
eventResultProps:{"label":"fullName","value":"id" },
childIndex:-1,
isEdit:false,
interfaceRes: {
deviceCode:[] ,
bucketCode:[] ,
doorNum:[] ,
eventType:[] ,
eventTime:[] ,
eventDesc:[] ,
isLocal:[] ,
eventResult:[] ,
createUserId:[] ,
createTime:[] ,
organizeJsonId:[] ,
departmentId:[] ,
},
}
},
computed: {
...mapGetters(['userInfo'])
},
watch: {},
created() {
this.dataAll()
this.initDefaultData()
this.dataValueAll = JSON.parse(JSON.stringify(this.dataForm))
},
mounted() {},
methods: {
prev() {
this.index--
if (this.index === 0) {
this.prevDis = true
}
this.nextDis = false
for (let index = 0; index < this.allList.length; index++) {
const element = this.allList[index];
if (this.index == index) {
this.getInfo(element.id)
}
}
},
next() {
this.index++
if (this.index === this.allList.length - 1) {
this.nextDis = true
}
this.prevDis = false
for (let index = 0; index < this.allList.length; index++) {
const element = this.allList[index];
if (this.index == index) {
this.getInfo(element.id)
}
}
},
getInfo(id) {
request({
url: '/api/scm/RecycleDeviceEvent/'+ id,
method: 'get'
}).then(res => {
this.dataInfo(res.data)
});
},
goBack() {
this.visible = false
this.$emit('refreshDataList', true)
},
changeData(model, index) {
this.isEdit = false
this.childIndex = index
let modelAll = model.split("-");
let faceMode = "";
for (let i = 0; i < modelAll.length; i++) {
faceMode += modelAll[i];
}
for (let key in this.interfaceRes) {
if (key != faceMode) {
let faceReList = this.interfaceRes[key]
for (let i = 0; i < faceReList.length; i++) {
if (faceReList[i].relationField == model) {
let options = 'get' + key + 'Options';
if(this[options]){
this[options]()
}
this.changeData(key, index)
}
}
}
}
},
changeDataFormData(type, data, model,index,defaultValue) {
if(!this.isEdit) {
if (type == 2) {
for (let i = 0; i < this.dataForm[data].length; i++) {
if (index == -1) {
this.dataForm[data][i][model] = defaultValue
} else if (index == i) {
this.dataForm[data][i][model] = defaultValue
}
}
} else {
this.dataForm[data] = defaultValue
}
}
},
dataAll(){
this.getbucketCodeOptions();
},
getbucketCodeOptions() {
const index = this.childIndex
let templateJsonList = JSON.parse(JSON.stringify(this.interfaceRes.bucketCode))
for (let i = 0; i < templateJsonList.length; i++) {
let json = templateJsonList[i];
if(json.relationField){
let relationFieldAll = json.relationField.split("-");
let val = json.defaultValue;
if(relationFieldAll.length>1 && index>-1){
val = this.dataForm[relationFieldAll[0]+'List']&&this.dataForm[relationFieldAll[0]+'List'].length?this.dataForm[relationFieldAll[0]+'List'][index][relationFieldAll[1]]:''
}else {
val = this.dataForm[relationFieldAll]
}
json.defaultValue = val
}
}
let template ={
paramList:templateJsonList
}
getDataInterfaceRes('563706688754953029',template).then(res => {
let data = res.data
this.bucketCodeOptions = data
this.changeDataFormData(1,'bucketCode','bucketCode',index,'')
})
},
clearData(){
this.dataForm = JSON.parse(JSON.stringify(this.dataValueAll))
},
init(id,isDetail,allList) {
this.prevDis = false
this.nextDis = false
this.allList = allList || []
if (allList.length) {
this.index = this.allList.findIndex(item => item.id === id)
if (this.index == 0) {
this.prevDis = true
}
if (this.index == this.allList.length - 1) {
this.nextDis = true
}
} else {
this.prevDis = true
this.nextDis = true
}
this.dataForm.id = id || 0;
this.visible = true;
this.$nextTick(() => {
if(this.dataForm.id){
this.loading = true
request({
url: '/api/scm/RecycleDeviceEvent/'+this.dataForm.id,
method: 'get'
}).then(res => {
this.dataInfo(res.data)
this.loading = false
});
}else{
this.clearData()
this.initDefaultData()
}
});
this.$store.commit('generator/UPDATE_RELATION_DATA', {})
},
//
initDefaultData() {
},
//
dataFormSubmit(type) {
this.dataFormSubmitType = type ? type : 0
this.$refs['formRef'].validate((valid) => {
if (valid) {
this.request()
}
})
},
request() {
let _data =this.dataList()
if (this.dataFormSubmitType == 2) {
this.continueBtnLoading = true
} else {
this.btnLoading = true
}
if (!this.dataForm.id) {
request({
url: '/api/scm/RecycleDeviceEvent',
method: 'post',
data: _data
}).then((res) => {
this.$message({
message: res.msg,
type: 'success',
duration: 1000,
onClose: () => {
if (this.dataFormSubmitType == 2) {
this.$nextTick(() => {
this.clearData()
this.initDefaultData()
})
this.continueBtnLoading = false
return
}
this.visible = false
this.btnLoading = false
this.$emit('refresh', true)
}
})
}).catch(()=>{
this.btnLoading = false
this.continueBtnLoading = false
})
}else{
request({
url: '/api/scm/RecycleDeviceEvent/'+this.dataForm.id,
method: 'PUT',
data: _data
}).then((res) => {
this.$message({
message: res.msg,
type: 'success',
duration: 1000,
onClose: () => {
if (this.dataFormSubmitType == 2) return this.continueBtnLoading = false
this.visible = false
this.btnLoading = false
this.$emit('refresh', true)
}
})
}).catch(()=>{
this.btnLoading = false
this.continueBtnLoading = false
})
}
},
openSelectDialog(key) {
this.currTableConf=this.addTableConf[key]
this.currVmodel=key
this.selectDialogVisible = true
this.$nextTick(() => {
this.$refs.selectDialog.init()
})
},
addForSelect(data) {
for (let i = 0; i < data.length; i++) {
let t = data[i]
if(this['get'+this.currVmodel]){
this['get'+this.currVmodel](t)
}
}
},
dateTime(timeRule, timeType, timeTarget, timeValueData, dataValue) {
let timeDataValue = null;
let timeValue = Number(timeValueData)
if (timeRule) {
if (timeType == 1) {
timeDataValue = timeValue
} else if (timeType == 2) {
timeDataValue = dataValue
} else if (timeType == 3) {
timeDataValue = new Date().getTime()
} else if (timeType == 4) {
let previousDate = '';
if (timeTarget == 1 || timeTarget == 2) {
previousDate = getDateDay(timeTarget, timeType, timeValue)
timeDataValue = new Date(previousDate).getTime()
} else if (timeTarget == 3) {
previousDate = getBeforeData(timeValue)
timeDataValue = new Date(previousDate).getTime()
} else {
timeDataValue = getBeforeTime(timeTarget, timeValue).getTime()
}
} else if (timeType == 5) {
let previousDate = '';
if (timeTarget == 1 || timeTarget == 2) {
previousDate = getDateDay(timeTarget, timeType, timeValue)
timeDataValue = new Date(previousDate).getTime()
} else if (timeTarget == 3) {
previousDate = getLaterData(timeValue)
timeDataValue = new Date(previousDate).getTime()
} else {
timeDataValue = getLaterTime(timeTarget, timeValue).getTime()
}
}
}
return timeDataValue;
},
time(timeRule, timeType, timeTarget, timeValue, formatType, dataValue) {
let format = formatType == 'HH:mm' ? 'HH:mm:00' : formatType
let timeDataValue = null
if (timeRule) {
if (timeType == 1) {
timeDataValue = timeValue || '00:00:00'
if (timeDataValue.split(':').length == 3) {
timeDataValue = timeDataValue
} else {
timeDataValue = timeDataValue + ':00'
}
} else if (timeType == 2) {
timeDataValue = dataValue
} else if (timeType == 3) {
timeDataValue = this.jnpf.toDate(new Date(), format)
} else if (timeType == 4) {
let previousDate = '';
previousDate = getBeforeTime(timeTarget, timeValue)
timeDataValue = this.jnpf.toDate(previousDate, format)
} else if (timeType == 5) {
let previousDate = '';
previousDate = getLaterTime(timeTarget, timeValue)
timeDataValue = this.jnpf.toDate(previousDate, format)
}
}
return timeDataValue;
},
dataList(){
var _data = this.dataForm;
return _data;
},
dataInfo(dataAll){
let _dataAll =dataAll
this.dataForm = _dataAll
this.isEdit = true
this.dataAll()
this.childIndex=-1
},
},
}
</script>

@ -0,0 +1,562 @@
<template>
<div class="JNPF-common-layout">
<div class="JNPF-common-layout-center">
<el-row class="JNPF-common-search-box" :gutter="16">
<el-form @submit.native.prevent>
<el-col :span="6">
<el-form-item label="设备编码">
<JnpfSelect v-model="query.deviceCode" placeholder="请选择" clearable
:options="deviceCodeOptions"
:props="deviceCodeProps" multiple >
</JnpfSelect>
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="桶编码">
<JnpfSelect v-model="query.bucketCode" placeholder="请选择" clearable
:options="bucketCodeOptions"
:props="bucketCodeProps" multiple >
</JnpfSelect>
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="事件类型">
<el-input v-model="query.eventType" placeholder="请输入" clearable> </el-input>
</el-form-item>
</el-col>
<template v-if="showAll">
<el-col :span="6">
<el-form-item label="本地调用">
<JnpfSelect v-model="query.isLocal" placeholder="请选择" clearable
:options="isLocalOptions"
:props="isLocalProps" >
</JnpfSelect>
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="事件结果">
<JnpfSelect v-model="query.eventResult" placeholder="请选择" clearable
:options="eventResultOptions"
:props="eventResultProps" >
</JnpfSelect>
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="事件时间">
<el-input v-model="query.eventTime" placeholder="请输入" clearable> </el-input>
</el-form-item>
</el-col>
</template>
<el-col :span="6">
<el-form-item>
<el-button type="primary" icon="el-icon-search" @click="search()"></el-button>
<el-button icon="el-icon-refresh-right" @click="reset()"></el-button>
<el-button type="text" icon="el-icon-arrow-down" @click="showAll=true" v-if="!showAll">
展开
</el-button>
<el-button type="text" icon="el-icon-arrow-up" @click="showAll=false" v-else>
收起
</el-button>
</el-form-item>
</el-col>
</el-form>
</el-row>
<div class="JNPF-common-layout-main JNPF-flex-main">
<div class="JNPF-common-head">
<div>
<el-button type="primary" icon="icon-ym icon-ym-btn-add" @click="addOrUpdateHandle()">
</el-button>
</div>
<div class="JNPF-common-head-right">
<el-tooltip content="高级查询" placement="top" v-if="true">
<el-link icon="icon-ym icon-ym-filter JNPF-common-head-icon" :underline="false"
@click="openSuperQuery()" />
</el-tooltip>
<el-tooltip effect="dark" :content="$t('common.refresh')" placement="top">
<el-link icon="icon-ym icon-ym-Refresh JNPF-common-head-icon" :underline="false"
@click="initData()" />
</el-tooltip>
</div>
</div>
<JNPF-table v-loading="listLoading" :data="list" @sort-change='sortChange'
:span-method="arraySpanMethod"
>
<el-table-column label="设备编码" prop="deviceCode" algin="left"
>
<template slot-scope="scope">
{{ scope.row.deviceCode}}
</template>
</el-table-column>
<el-table-column
prop="bucketCode"
label="桶编码" align="left"
>
</el-table-column>
<el-table-column
prop="doorNum"
label="门号" align="left"
>
</el-table-column>
<el-table-column
prop="eventType"
label="事件类型" align="left"
>
</el-table-column>
<el-table-column
prop="eventTime"
label="事件时间" align="left"
>
</el-table-column>
<el-table-column
prop="eventDesc"
label="事件描述" align="left"
>
</el-table-column>
<el-table-column label="本地调用" prop="isLocal" algin="left"
>
<template slot-scope="scope">
{{ scope.row.isLocal}}
</template>
</el-table-column>
<el-table-column label="事件结果" prop="eventResult" algin="left"
>
<template slot-scope="scope">
{{ scope.row.eventResult}}
</template>
</el-table-column>
<el-table-column
prop="createUserId"
label="创建用户" align="left"
>
</el-table-column>
<el-table-column
prop="createTime"
label="创建时间" align="left"
>
</el-table-column>
<el-table-column
prop="organizeJsonId"
label="所属组织" align="left"
>
</el-table-column>
<el-table-column
prop="departmentId"
label="部门" align="left"
>
</el-table-column>
<el-table-column label="操作"
fixed="right" width="150" >
<template slot-scope="scope" >
<el-button type="text"
@click="addOrUpdateHandle(scope.row)" >编辑
</el-button>
<el-button type="text" class="JNPF-table-delBtn" @click="handleDel(scope.row.id)">
</el-button>
<el-button type="text"
@click="goDetail(scope.row.id)">详情
</el-button>
</template>
</el-table-column>
</JNPF-table>
<pagination :total="total" :page.sync="listQuery.currentPage" :limit.sync="listQuery.pageSize" @pagination="initData"/>
</div>
</div>
<JNPF-Form v-if="formVisible" ref="JNPFForm" @refresh="refresh"/>
<ExportBox v-if="exportBoxVisible" ref="ExportBox" @download="download"/>
<ImportBox v-if="uploadBoxVisible" ref="UploadBox" @refresh="initData" />
<Detail v-if="detailVisible" ref="Detail" @refresh="detailVisible=false"/>
<ToFormDetail v-if="toFormDetailVisible" ref="toFormDetail" @close="toFormDetailVisible = false" />
<SuperQuery v-if="superQueryVisible" ref="SuperQuery" :columnOptions="superQueryJson"
@superQuery="superQuery" />
</div>
</template>
<script>
import request from '@/utils/request'
import {mapGetters} from "vuex";
import {getDictionaryDataSelector} from '@/api/systemData/dictionary'
import JNPFForm from './form'
import Detail from './Detail'
import ExportBox from '@/components/ExportBox'
import ToFormDetail from '@/views/basic/dynamicModel/list/detail'
import {getDataInterfaceRes} from '@/api/systemData/dataInterface'
import { getConfigData } from '@/api/onlineDev/visualDev'
import { getDefaultCurrentValueUserIdAsync } from '@/api/permission/user'
import { getDefaultCurrentValueDepartmentIdAsync } from '@/api/permission/organize'
import columnList from './columnList'
import { thousandsFormat } from "@/components/Generator/utils/index"
import SuperQuery from '@/components/SuperQuery'
import superQueryJson from './superQueryJson'
export default {
components: {
JNPFForm,
Detail,
ExportBox,ToFormDetail , SuperQuery
},
data() {
return {
keyword:'',
expandsTree: true,
refreshTree: true,
toFormDetailVisible:false,
expandObj:{},
columnOptions: [],
mergeList: [],
exportList:[],
columnList,
showAll: false,
superQueryVisible: false,
superQueryJson,
uploadBoxVisible: false,
detailVisible: false,
query: {
deviceCode:undefined,
bucketCode:undefined,
eventType:undefined,
isLocal:undefined,
eventResult:undefined,
eventTime:undefined,
},
treeProps: {
children: 'children',
label: 'fullName',
value: 'id',
isLeaf: 'isLeaf'
},
list: [],
listLoading: true,
total: 0,
queryData: {},
listQuery: {
superQueryJson: '',
currentPage: 1,
pageSize: 20,
sort: "desc",
sidx: "",
},
formVisible: false,
flowVisible: false,
flowListVisible: false,
flowList: [],
exportBoxVisible: false,
deviceCodeOptions:[{"fullName":"选项一","id":"1"},{"fullName":"选项二","id":"2"}],
deviceCodeProps:{"label":"fullName","value":"id" },
bucketCodeOptions:[],
bucketCodeProps:{"label":"device_name","value":"device_code" },
isLocalOptions:[{"fullName":"本地","id":"1"},{"fullName":"远程","id":"2"}],
isLocalProps:{"label":"fullName","value":"id" },
eventResultOptions:[{"fullName":"成功","id":"1"},{"fullName":"失败","id":"0"}],
eventResultProps:{"label":"fullName","value":"id" },
interfaceRes: {
},
}
},
computed: {
...mapGetters(['userInfo']),
menuId() {
return this.$route.meta.modelId || ''
}
},
created() {
this.getColumnList(),
this.initSearchDataAndListData()
this.getbucketCodeOptions();
this.queryData = JSON.parse(JSON.stringify(this.query))
},
methods: {
toDetail(defaultValue, modelId) {
if (!defaultValue) return
getConfigData(modelId).then(res => {
if (!res.data || !res.data.formData) return
let formData = JSON.parse(res.data.formData)
formData.popupType = 'general'
this.toFormDetailVisible = true
this.$nextTick(() => {
this.$refs.toFormDetail.init(formData, modelId, defaultValue)
})
})
},
toggleTreeExpand(expands) {
this.refreshTree = false
this.expandsTree = expands
this.$nextTick(() => {
this.refreshTree = true
this.$nextTick(() => {
this.$refs.treeBox.setCurrentKey(null)
})
})
},
filterNode(value, data) {
if (!value) return true;
return data[this.treeProps.label].indexOf(value) !== -1;
},
loadNode(node, resolve) {
const nodeData = node.data
const config ={
treeInterfaceId:"",
treeTemplateJson:[]
}
if (config.treeInterfaceId) {
//
if (config.treeTemplateJson && config.treeTemplateJson.length) {
for (let i = 0; i < config.treeTemplateJson.length; i++) {
const element = config.treeTemplateJson[i];
element.defaultValue = nodeData[element.relationField] || ''
}
}
//
let query = {
paramList: config.treeTemplateJson || [],
}
//
getDataInterfaceRes(config.treeInterfaceId, query).then(res => {
let data = res.data
if (Array.isArray(data)) {
resolve(data);
} else {
resolve([]);
}
})
}
},
getColumnList() {
//
this.columnOptions = this.transformColumnList(this.columnList)
},
transformColumnList(columnList) {
let list = []
for (let i = 0; i < columnList.length; i++) {
const e = columnList[i];
if (!e.prop.includes('-')) {
list.push(e)
} else {
let prop = e.prop.split('-')[0]
let label = e.label.split('-')[0]
let vModel = e.prop.split('-')[1]
let newItem = {
align: "center",
jnpfKey: "table",
prop,
label,
children: []
}
e.vModel = vModel
if (!this.expandObj.hasOwnProperty(`${prop}Expand`)) this.$set(this.expandObj, `${prop}Expand`, false)
if (!list.some(o => o.prop === prop)) list.push(newItem)
for (let i = 0; i < list.length; i++) {
if (list[i].prop === prop) {
list[i].children.push(e)
break
}
}
}
}
this.getMergeList(list)
this.getExportList(list)
return list
},
arraySpanMethod({ column }) {
for (let i = 0; i < this.mergeList.length; i++) {
if (column.property == this.mergeList[i].prop) {
return [this.mergeList[i].rowspan, this.mergeList[i].colspan]
}
}
},
getMergeList(list) {
let newList = JSON.parse(JSON.stringify(list))
newList.forEach(item => {
if (item.children && item.children.length) {
let child = {
prop: item.prop + '-child-first'
}
item.children.unshift(child)
}
})
newList.forEach(item => {
if (item.children && item.children.length ) {
item.children.forEach((child, index) => {
if (index == 0) {
this.mergeList.push({
prop: child.prop,
rowspan: 1,
colspan: item.children.length
})
} else {
this.mergeList.push({
prop: child.prop,
rowspan: 0,
colspan: 0
})
}
})
} else {
this.mergeList.push({
prop: item.prop,
rowspan: 1,
colspan: 1
})
}
})
},
getExportList(list) {
let exportList = []
for (let i = 0; i < list.length; i++) {
if (list[i].jnpfKey === 'table') {
for (let j = 0; j < list[i].children.length; j++) {
exportList.push(list[i].children[j])
}
} else {
exportList.push(list[i])
}
}
this.exportList = exportList
},
getbucketCodeOptions() {
getDataInterfaceRes('563706688754953029').then(res => {
let data = res.data
this.bucketCodeOptions = data
})
},
goDetail(id){
this.detailVisible = true
this.$nextTick(() => {
this.$refs.Detail.init(id)
})
},
sortChange({column, prop, order}) {
this.listQuery.sort = order == 'ascending' ? 'asc' : 'desc'
this.listQuery.sidx = !order ? '' : prop
this.initData()
},
async initSearchDataAndListData() {
await this.initSearchData()
this.initData()
},
//
async initSearchData() {
},
initData() {
this.listLoading = true;
let _query = {
...this.listQuery,
...this.query,
keyword: this.keyword,
dataType: 0,
menuId:this.menuId,
moduleId:'572738430170051973',
type:1,
};
request({
url: `/api/scm/RecycleDeviceEvent/getList`,
method: 'post',
data: _query
}).then(res => {
var _list =res.data.list;
this.list = _list.map(o => ({
...o,
...this.expandObj,
}))
this.total = res.data.pagination.total
this.listLoading = false
})
},
handleDel(id) {
this.$confirm('此操作将永久删除该数据, 是否继续?', '提示', {
type: 'warning'
}).then(() => {
request({
url: `/api/scm/RecycleDeviceEvent/${id}`,
method: 'DELETE'
}).then(res => {
this.$message({
type: 'success',
message: res.msg,
onClose: () => {
this.initData()
}
});
})
}).catch(() => {
});
},
handelUpload(){
this.uploadBoxVisible = true
this.$nextTick(() => {
this.$refs.UploadBox.init("","scm/RecycleDeviceEvent")
})
},
openSuperQuery() {
this.superQueryVisible = true
this.$nextTick(() => {
this.$refs.SuperQuery.init()
})
},
superQuery(queryJson) {
this.listQuery.superQueryJson = queryJson
this.listQuery.currentPage = 1
this.initData()
},
addOrUpdateHandle(row, isDetail) {
let id = row?row.id:""
this.formVisible = true
this.$nextTick(() => {
this.$refs.JNPFForm.init(id, isDetail,this.list)
})
},
exportData() {
this.exportBoxVisible = true
this.$nextTick(() => {
this.$refs.ExportBox.init(this.exportList)
})
},
download(data) {
let query = {...data, ...this.listQuery, ...this.query,menuId:this.menuId}
request({
url: `/api/scm/RecycleDeviceEvent/Actions/Export`,
method: 'post',
data: query
}).then(res => {
if (!res.data.url) return
this.jnpf.downloadFile(res.data.url)
this.$refs.ExportBox.visible = false
this.exportBoxVisible = false
})
},
search() {
this.listQuery.currentPage=1
this.listQuery.pageSize=20
this.listQuery.sort="desc"
this.listQuery.sidx=""
this.initData()
},
refresh(isrRefresh) {
this.formVisible = false
if (isrRefresh) this.reset()
},
reset() {
this.query = JSON.parse(JSON.stringify(this.queryData))
this.search()
},
colseFlow(isrRefresh) {
this.flowVisible = false
if (isrRefresh) this.reset()
},
}
}
</script>

File diff suppressed because one or more lines are too long
Loading…
Cancel
Save