2024-03-01 10:01:48 +08:00
|
|
|
|
package com.zcloud.controller.operatingvehicles;
|
|
|
|
|
|
|
|
|
|
import com.zcloud.controller.base.BaseController;
|
|
|
|
|
import com.zcloud.entity.Page;
|
|
|
|
|
import com.zcloud.entity.PageData;
|
|
|
|
|
import com.zcloud.logs.LogAnno;
|
|
|
|
|
import com.zcloud.service.operatingvehicles.OperatingVehiclesService;
|
2024-03-14 09:04:40 +08:00
|
|
|
|
import com.zcloud.service.scrapManage.ScrapManageService;
|
2024-03-19 14:02:24 +08:00
|
|
|
|
import com.zcloud.service.system.ImgFilesService;
|
2024-03-01 10:01:48 +08:00
|
|
|
|
import com.zcloud.util.*;
|
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
|
|
import org.springframework.stereotype.Controller;
|
|
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
|
|
import org.springframework.web.bind.annotation.RequestParam;
|
|
|
|
|
import org.springframework.web.bind.annotation.ResponseBody;
|
|
|
|
|
import org.springframework.web.multipart.MultipartFile;
|
|
|
|
|
|
|
|
|
|
import java.util.Date;
|
|
|
|
|
import java.util.HashMap;
|
|
|
|
|
import java.util.List;
|
|
|
|
|
import java.util.Map;
|
|
|
|
|
|
|
|
|
|
@Controller
|
|
|
|
|
@RequestMapping("/operatingvehicles")
|
|
|
|
|
public class OperatingVehiclesController extends BaseController {
|
|
|
|
|
|
|
|
|
|
@Autowired
|
|
|
|
|
private OperatingVehiclesService operatingVehiclesService;
|
|
|
|
|
|
|
|
|
|
@Autowired
|
|
|
|
|
private Smb smb;
|
|
|
|
|
|
2024-03-19 14:02:24 +08:00
|
|
|
|
@Autowired
|
|
|
|
|
private ImgFilesService imgfilesService;
|
|
|
|
|
|
2024-03-14 09:04:40 +08:00
|
|
|
|
@Autowired
|
|
|
|
|
private ScrapManageService scrapManageService;
|
|
|
|
|
|
2024-03-01 10:01:48 +08:00
|
|
|
|
/**新增
|
|
|
|
|
* @param
|
|
|
|
|
* @throws Exception
|
|
|
|
|
*/
|
|
|
|
|
@RequestMapping(value="/add")
|
|
|
|
|
@ResponseBody
|
|
|
|
|
public Object add(
|
2024-03-07 10:23:53 +08:00
|
|
|
|
/*@RequestParam(value="headstockphoto",required=false) MultipartFile headstockphoto,
|
|
|
|
|
@RequestParam(value="drivinglicensephoto",required=false) MultipartFile drivinglicensephoto,
|
|
|
|
|
@RequestParam(value="operatingcertificatephoto",required=false) MultipartFile operatingcertificatephoto*/
|
2024-03-01 10:01:48 +08:00
|
|
|
|
) throws Exception{
|
|
|
|
|
Map<String,Object> map = new HashMap<String,Object>();
|
|
|
|
|
String errInfo = "success";
|
|
|
|
|
PageData pd = new PageData();
|
|
|
|
|
pd = this.getPageData();
|
|
|
|
|
pd.put("OPERATING_ID", this.get32UUID()); //运营车辆主键
|
|
|
|
|
pd.put("ISDELETE", "0"); //是否删除(0:有效 1:删除)
|
|
|
|
|
pd.put("CREATOR", Jurisdiction.getUSER_ID()); //添加人id
|
|
|
|
|
pd.put("CREATORNAME", Jurisdiction.getUsername()); //添加人名字
|
|
|
|
|
pd.put("CREATTIME", DateUtil.date2Str(new Date())); //添加时间
|
|
|
|
|
pd.put("OPERATOR", Jurisdiction.getUSER_ID()); //修改人id
|
|
|
|
|
pd.put("OPERATORNAME", Jurisdiction.getUsername()); // 修改人名字
|
|
|
|
|
pd.put("OPERATTIME", DateUtil.date2Str(new Date())); // 修改时间
|
2024-03-06 09:41:06 +08:00
|
|
|
|
pd.put("CORPINFO_ID", Jurisdiction.getCORPINFO_ID());
|
2024-03-07 10:23:53 +08:00
|
|
|
|
/*if (null != headstockphoto && !headstockphoto.isEmpty()) {
|
2024-03-01 10:01:48 +08:00
|
|
|
|
String ffile = DateUtil.getDays();
|
|
|
|
|
//本地
|
|
|
|
|
// String filePath = PathUtil.getProjectpath() + Const.FILEPATHFILE + Jurisdiction.getCORPINFO_ID() + "/" + ffile; //文件上传路径
|
|
|
|
|
// String fileName = FileUpload.fileUp(file, filePath, this.get32UUID()); //执行上传
|
|
|
|
|
//服务器
|
2024-03-07 10:23:53 +08:00
|
|
|
|
String fileName = this.get32UUID()+headstockphoto.getOriginalFilename().substring(headstockphoto.getOriginalFilename().lastIndexOf("."));
|
|
|
|
|
smb.sshSftp(headstockphoto, fileName, Const.FILEPATHFILE + Jurisdiction.getCORPINFO_ID() + "/" + ffile);
|
2024-03-01 10:01:48 +08:00
|
|
|
|
pd.put("HEADSTOCK_PHOTO", Const.FILEPATHFILE + Jurisdiction.getCORPINFO_ID() + "/" + ffile + "/" + fileName);
|
|
|
|
|
}
|
2024-03-07 10:23:53 +08:00
|
|
|
|
if (null != drivinglicensephoto && !drivinglicensephoto.isEmpty()) {
|
2024-03-01 10:01:48 +08:00
|
|
|
|
String ffile = DateUtil.getDays();
|
|
|
|
|
//本地
|
|
|
|
|
// String filePath = PathUtil.getProjectpath() + Const.FILEPATHFILE + Jurisdiction.getCORPINFO_ID() + "/" + ffile; //文件上传路径
|
|
|
|
|
// String fileName = FileUpload.fileUp(file, filePath, this.get32UUID()); //执行上传
|
|
|
|
|
//服务器
|
2024-03-07 10:23:53 +08:00
|
|
|
|
String fileName = this.get32UUID()+drivinglicensephoto.getOriginalFilename().substring(drivinglicensephoto.getOriginalFilename().lastIndexOf("."));
|
|
|
|
|
smb.sshSftp(drivinglicensephoto, fileName, Const.FILEPATHFILE + Jurisdiction.getCORPINFO_ID() + "/" + ffile);
|
2024-03-01 10:01:48 +08:00
|
|
|
|
pd.put("DRIVINGLICENSE_PHOTO", Const.FILEPATHFILE + Jurisdiction.getCORPINFO_ID() + "/" + ffile + "/" + fileName);
|
|
|
|
|
}
|
2024-03-07 10:23:53 +08:00
|
|
|
|
if (null != operatingcertificatephoto && !operatingcertificatephoto.isEmpty()) {
|
2024-03-01 10:01:48 +08:00
|
|
|
|
String ffile = DateUtil.getDays();
|
|
|
|
|
//本地
|
|
|
|
|
// String filePath = PathUtil.getProjectpath() + Const.FILEPATHFILE + Jurisdiction.getCORPINFO_ID() + "/" + ffile; //文件上传路径
|
|
|
|
|
// String fileName = FileUpload.fileUp(file, filePath, this.get32UUID()); //执行上传
|
|
|
|
|
//服务器
|
2024-03-07 10:23:53 +08:00
|
|
|
|
String fileName = this.get32UUID()+operatingcertificatephoto.getOriginalFilename().substring(operatingcertificatephoto.getOriginalFilename().lastIndexOf("."));
|
|
|
|
|
smb.sshSftp(operatingcertificatephoto, fileName, Const.FILEPATHFILE + Jurisdiction.getCORPINFO_ID() + "/" + ffile);
|
2024-03-01 10:01:48 +08:00
|
|
|
|
pd.put("OPERATING_CERTIFICATE_PHOTO", Const.FILEPATHFILE + Jurisdiction.getCORPINFO_ID() + "/" + ffile + "/" + fileName);
|
2024-03-07 10:23:53 +08:00
|
|
|
|
}*/
|
2024-03-01 10:01:48 +08:00
|
|
|
|
operatingVehiclesService.save(pd);
|
|
|
|
|
map.put("pd", pd);
|
|
|
|
|
map.put("result", errInfo);
|
|
|
|
|
return map;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**删除
|
|
|
|
|
* @param
|
|
|
|
|
* @throws Exception
|
|
|
|
|
*/
|
|
|
|
|
@RequestMapping(value="/delete")
|
|
|
|
|
@ResponseBody
|
|
|
|
|
public Object delete() throws Exception{
|
|
|
|
|
Map<String,String> map = new HashMap<String,String>();
|
|
|
|
|
String errInfo = "success";
|
|
|
|
|
PageData pd = new PageData();
|
|
|
|
|
pd = this.getPageData();
|
2024-03-14 09:04:40 +08:00
|
|
|
|
pd.put("CORPINFO_ID", Jurisdiction.getCORPINFO_ID());
|
|
|
|
|
if(Tools.notEmpty(pd.getString("OPERATING_ID"))) {
|
|
|
|
|
PageData findPageData = operatingVehiclesService.findById(pd);
|
|
|
|
|
PageData scrapAddData = new PageData();
|
|
|
|
|
scrapAddData.put("SCRAP_ID",this.get32UUID());
|
|
|
|
|
scrapAddData.put("RECORD_NUMBER", findPageData.get("GOODSSELFNUMBER"));
|
|
|
|
|
scrapAddData.put("FRAMES_NUMBER", findPageData.get("FRAMES_NUMBER"));
|
|
|
|
|
scrapAddData.put("PLATE_NUMBER", findPageData.get("PLATE_NUMBER"));
|
|
|
|
|
scrapAddData.put("SCRAP_VEHICLEMODEL", "运输车辆");
|
|
|
|
|
scrapAddData.put("VEHICLEOWNER", findPageData.get("VEHICLEOWNER"));
|
|
|
|
|
scrapAddData.put("CONTACT_NUMBER", findPageData.get("CONTACT_NUMBER"));
|
|
|
|
|
scrapAddData.put("SCRAP_DATE", DateUtil.date2Str(new Date()));
|
|
|
|
|
scrapAddData.put("REGISTRANT", Jurisdiction.getUsername());
|
|
|
|
|
scrapAddData.put("CREATTIME", DateUtil.date2Str(new Date()));
|
|
|
|
|
scrapAddData.put("OPERATTIME", DateUtil.date2Str(new Date()));
|
|
|
|
|
scrapAddData.put("VEHICLEOWNER_NUMBER", findPageData.get("VEHICLEOWNER_NUMBER"));
|
|
|
|
|
scrapAddData.put("FIRSTSHOW_DATE", findPageData.get("FIRSTSHOW_DATE"));
|
|
|
|
|
scrapAddData.put("BRAND", findPageData.get("VEHICLE_BRAND"));
|
|
|
|
|
scrapAddData.put("VEHICLE_MODEL", findPageData.get("VEHICLE_MODEL"));
|
|
|
|
|
scrapAddData.put("TRANSACTION_DATE", DateUtil.date2Str(new Date()));
|
|
|
|
|
scrapAddData.put("CORPINFO_ID", findPageData.get("CORPINFO_ID"));
|
|
|
|
|
scrapAddData.put("SCRAP_VEHICLE", findPageData.get("PLATE_NUMBER"));
|
|
|
|
|
scrapAddData.put("ISDELETE", "0");
|
|
|
|
|
scrapManageService.save(scrapAddData);
|
|
|
|
|
}
|
2024-03-06 09:41:06 +08:00
|
|
|
|
pd.put("DELETOR", Jurisdiction.getUSER_ID());
|
|
|
|
|
pd.put("DELETORNAME", Jurisdiction.getUsername());
|
|
|
|
|
pd.put("DELETTIME", DateUtil.date2Str(new Date()));
|
|
|
|
|
operatingVehiclesService.delete(pd);
|
2024-03-01 10:01:48 +08:00
|
|
|
|
map.put("result", errInfo); //返回结果
|
|
|
|
|
return map;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**修改
|
|
|
|
|
* @param
|
|
|
|
|
* @throws Exception
|
|
|
|
|
*/
|
|
|
|
|
@RequestMapping(value="/edit")
|
|
|
|
|
@ResponseBody
|
|
|
|
|
public Object edit(
|
|
|
|
|
@RequestParam(value="headstockFile",required=false) MultipartFile headstockFile,
|
|
|
|
|
@RequestParam(value="drivinglicenseFile",required=false) MultipartFile drivinglicenseFile,
|
|
|
|
|
@RequestParam(value="operatingCertificateFile",required=false) MultipartFile operatingCertificateFile
|
|
|
|
|
) throws Exception{
|
|
|
|
|
Map<String,Object> map = new HashMap<String,Object>();
|
|
|
|
|
String errInfo = "success";
|
|
|
|
|
PageData pd = new PageData();
|
|
|
|
|
pd = this.getPageData();
|
|
|
|
|
pd.put("OPERATOR", Jurisdiction.getCORPINFO_ID());
|
|
|
|
|
pd.put("OPERATORNAME", Jurisdiction.getUsername());
|
|
|
|
|
pd.put("OPERATTIME", DateUtil.date2Str(new Date()));
|
|
|
|
|
if (null != headstockFile && !headstockFile.isEmpty()) {
|
|
|
|
|
String ffile = DateUtil.getDays();
|
|
|
|
|
//本地
|
|
|
|
|
// String filePath = PathUtil.getProjectpath() + Const.FILEPATHFILE + Jurisdiction.getCORPINFO_ID() + "/" + ffile; //文件上传路径
|
|
|
|
|
// String fileName = FileUpload.fileUp(file, filePath, this.get32UUID()); //执行上传
|
|
|
|
|
//服务器
|
|
|
|
|
String fileName = this.get32UUID()+headstockFile.getOriginalFilename().substring(headstockFile.getOriginalFilename().lastIndexOf("."));
|
|
|
|
|
smb.sshSftp(headstockFile, fileName, Const.FILEPATHFILE + Jurisdiction.getCORPINFO_ID() + "/" + ffile);
|
|
|
|
|
pd.put("HEADSTOCK_PHOTO", Const.FILEPATHFILE + Jurisdiction.getCORPINFO_ID() + "/" + ffile + "/" + fileName);
|
|
|
|
|
}
|
|
|
|
|
if (null != drivinglicenseFile && !drivinglicenseFile.isEmpty ()) {
|
|
|
|
|
String ffile = DateUtil.getDays();
|
|
|
|
|
//本地
|
|
|
|
|
// String filePath = PathUtil.getProjectpath() + Const.FILEPATHFILE + Jurisdiction.getCORPINFO_ID() + "/" + ffile; //文件上传路径
|
|
|
|
|
// String fileName = FileUpload.fileUp(file, filePath, this.get32UUID()); //执行上传
|
|
|
|
|
//服务器
|
|
|
|
|
String fileName = this.get32UUID()+drivinglicenseFile.getOriginalFilename().substring(drivinglicenseFile.getOriginalFilename().lastIndexOf("."));
|
|
|
|
|
smb.sshSftp(drivinglicenseFile, fileName, Const.FILEPATHFILE + Jurisdiction.getCORPINFO_ID() + "/" + ffile);
|
|
|
|
|
pd.put("DRIVINGLICENSE_PHOTO", Const.FILEPATHFILE + Jurisdiction.getCORPINFO_ID() + "/" + ffile + "/" + fileName);
|
|
|
|
|
}
|
|
|
|
|
if (null != operatingCertificateFile && !operatingCertificateFile.isEmpty()) {
|
|
|
|
|
String ffile = DateUtil.getDays();
|
|
|
|
|
//本地
|
|
|
|
|
// String filePath = PathUtil.getProjectpath() + Const.FILEPATHFILE + Jurisdiction.getCORPINFO_ID() + "/" + ffile; //文件上传路径
|
|
|
|
|
// String fileName = FileUpload.fileUp(file, filePath, this.get32UUID()); //执行上传
|
|
|
|
|
//服务器
|
|
|
|
|
String fileName = this.get32UUID()+operatingCertificateFile.getOriginalFilename().substring(operatingCertificateFile.getOriginalFilename().lastIndexOf("."));
|
|
|
|
|
smb.sshSftp(operatingCertificateFile, fileName, Const.FILEPATHFILE + Jurisdiction.getCORPINFO_ID() + "/" + ffile);
|
|
|
|
|
pd.put("OPERATING_CERTIFICATE_PHOTO", Const.FILEPATHFILE + Jurisdiction.getCORPINFO_ID() + "/" + ffile + "/" + fileName);
|
|
|
|
|
}
|
|
|
|
|
operatingVehiclesService.edit(pd);
|
|
|
|
|
map.put("pd", pd);
|
|
|
|
|
map.put("result", errInfo);
|
|
|
|
|
return map;
|
|
|
|
|
}
|
|
|
|
|
/**去修改页面获取数据
|
|
|
|
|
* @param
|
|
|
|
|
* @throws Exception
|
|
|
|
|
*/
|
|
|
|
|
@RequestMapping(value="/goEdit")
|
|
|
|
|
@ResponseBody
|
|
|
|
|
public Object goEdit() throws Exception{
|
|
|
|
|
Map<String,Object> map = new HashMap<String,Object>();
|
|
|
|
|
String errInfo = "success";
|
|
|
|
|
PageData pd = new PageData();
|
|
|
|
|
pd = this.getPageData();
|
2024-03-14 09:04:40 +08:00
|
|
|
|
pd.put("CORPINFO_ID", Jurisdiction.getCORPINFO_ID());
|
2024-03-01 10:01:48 +08:00
|
|
|
|
pd = operatingVehiclesService.findById(pd);
|
2024-03-19 14:02:24 +08:00
|
|
|
|
|
|
|
|
|
pd.put("FOREIGN_KEY", pd.getString("OPERATING_ID"));
|
|
|
|
|
pd.put("TYPE",130);
|
|
|
|
|
List<PageData> headstockphoto = imgfilesService.listAll(pd);//车头照片
|
|
|
|
|
pd.put("TYPE",131);
|
|
|
|
|
List<PageData> drivinglicensephoto = imgfilesService.listAll(pd);//行驶证照片
|
|
|
|
|
pd.put("TYPE",132);
|
|
|
|
|
List<PageData> operatingcertificatephoto = imgfilesService.listAll(pd);//运营证照片
|
2024-03-01 10:01:48 +08:00
|
|
|
|
map.put("pd", pd);
|
2024-03-19 14:02:24 +08:00
|
|
|
|
map.put("headstockphoto", headstockphoto);
|
|
|
|
|
map.put("drivinglicensephoto", drivinglicensephoto);
|
|
|
|
|
map.put("operatingcertificatephoto", operatingcertificatephoto);
|
2024-03-01 10:01:48 +08:00
|
|
|
|
map.put("result", errInfo);
|
|
|
|
|
return map;
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-08 17:43:31 +08:00
|
|
|
|
@RequestMapping(value = "/list")
|
|
|
|
|
// @RequiresPermissions( value = {"question:list" , "courseware:list"}, logical = Logical.OR)
|
2024-03-01 10:01:48 +08:00
|
|
|
|
@ResponseBody
|
2024-03-08 17:43:31 +08:00
|
|
|
|
@LogAnno(menuType = "基础信息管理", menuServer = "货运挂车", instructionsOperate = "货运挂车", instructionsType = "列表")
|
|
|
|
|
public Object list(Page page) throws Exception {
|
|
|
|
|
Map<String, Object> map = new HashMap<String, Object>();
|
2024-03-01 10:01:48 +08:00
|
|
|
|
String errInfo = "success";
|
|
|
|
|
PageData pd = new PageData();
|
|
|
|
|
pd = this.getPageData();
|
2024-03-08 17:43:31 +08:00
|
|
|
|
pd.put("CORPINFO_ID", Jurisdiction.getCORPINFO_ID()); //企业ID
|
2024-03-01 10:01:48 +08:00
|
|
|
|
page.setPd(pd);
|
2024-03-08 17:43:31 +08:00
|
|
|
|
List<PageData> varList = operatingVehiclesService.list(page); //列出Question列表
|
2024-03-01 10:01:48 +08:00
|
|
|
|
map.put("varList", varList);
|
|
|
|
|
map.put("page", page);
|
|
|
|
|
map.put("result", errInfo);
|
|
|
|
|
return map;
|
|
|
|
|
}
|
2024-03-08 17:43:31 +08:00
|
|
|
|
|
|
|
|
|
@RequestMapping(value = "/operationvehicleList")
|
|
|
|
|
@ResponseBody
|
|
|
|
|
public Object operationVehicleList() throws Exception {
|
|
|
|
|
Map<String, Object> map = new HashMap<String, Object>();
|
|
|
|
|
String errInfo = "success";
|
|
|
|
|
String corpId = Jurisdiction.getCORPINFO_ID();
|
|
|
|
|
List<PageData> list = operatingVehiclesService.operationVehicleList(corpId); //列出Question列表
|
|
|
|
|
map.put("list", list);
|
|
|
|
|
map.put("result", errInfo);
|
|
|
|
|
return map;
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-14 09:04:40 +08:00
|
|
|
|
@RequestMapping(value = "/findById")
|
|
|
|
|
@ResponseBody
|
|
|
|
|
public Object findById() throws Exception {
|
|
|
|
|
Map<String,Object> map = new HashMap<String,Object>();
|
|
|
|
|
String errInfo = "success";
|
|
|
|
|
PageData pd = new PageData();
|
|
|
|
|
pd = this.getPageData();
|
|
|
|
|
pd.put("CORPINFO_ID",Jurisdiction.getCORPINFO_ID());
|
2024-03-19 14:02:24 +08:00
|
|
|
|
|
|
|
|
|
pd.put("FOREIGN_KEY", pd.getString("OPERATING_ID"));
|
|
|
|
|
pd.put("TYPE",130);
|
|
|
|
|
List<PageData> headstockphoto = imgfilesService.listAll(pd);//车头照片
|
|
|
|
|
pd.put("TYPE",131);
|
|
|
|
|
List<PageData> drivinglicensephoto = imgfilesService.listAll(pd);//行驶证照片
|
|
|
|
|
pd.put("TYPE",132);
|
|
|
|
|
List<PageData> operatingcertificatephoto = imgfilesService.listAll(pd);//运营证照片
|
|
|
|
|
map.put("pd", pd);
|
|
|
|
|
map.put("headstockphoto", headstockphoto);
|
|
|
|
|
map.put("drivinglicensephoto", drivinglicensephoto);
|
|
|
|
|
map.put("operatingcertificatephoto", operatingcertificatephoto);
|
2024-03-14 09:04:40 +08:00
|
|
|
|
pd = operatingVehiclesService.findById(pd);
|
|
|
|
|
map.put("pd", pd);
|
|
|
|
|
map.put("result", errInfo);
|
|
|
|
|
return map;
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-19 14:02:24 +08:00
|
|
|
|
@RequestMapping(value = "/corpList")
|
2024-03-08 17:43:31 +08:00
|
|
|
|
@ResponseBody
|
2024-03-19 14:02:24 +08:00
|
|
|
|
public Object corpList() throws Exception {
|
2024-03-08 17:43:31 +08:00
|
|
|
|
Map<String, Object> map = new HashMap<String, Object>();
|
|
|
|
|
String errInfo = "success";
|
2024-03-19 14:02:24 +08:00
|
|
|
|
String corpId = Jurisdiction.getCORPINFO_ID();
|
|
|
|
|
List<PageData> list = operatingVehiclesService.corpList(corpId); //列出Question列表
|
|
|
|
|
map.put("list", list);
|
2024-03-08 17:43:31 +08:00
|
|
|
|
map.put("result", errInfo);
|
|
|
|
|
return map;
|
2024-03-19 14:02:24 +08:00
|
|
|
|
}
|
2024-03-01 10:01:48 +08:00
|
|
|
|
}
|