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.assignedManage.AssignedManageService;
import com.zcloud.service.operatingvehicles.OperatingVehiclesService;
import com.zcloud.service.scrapManage.ScrapManageService;
import com.zcloud.service.system.ImgFilesService;
import com.zcloud.util.*;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.util.ObjectUtils;
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;

    @Autowired
    private ImgFilesService imgfilesService;

    @Autowired
    private ScrapManageService scrapManageService;

    @Autowired
    private AssignedManageService assignedManageService;

    /**新增
     * @param
     * @throws Exception
     */
    @RequestMapping(value="/add")
    @ResponseBody
    public Object add(
            /*@RequestParam(value="headstockphoto",required=false) MultipartFile headstockphoto,
            @RequestParam(value="drivinglicensephoto",required=false) MultipartFile drivinglicensephoto,
            @RequestParam(value="operatingcertificatephoto",required=false) MultipartFile operatingcertificatephoto*/
    ) 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())); // 修改时间
        pd.put("CORPINFO_ID", Jurisdiction.getCORPINFO_ID());
        /*if (null != headstockphoto && !headstockphoto.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()+headstockphoto.getOriginalFilename().substring(headstockphoto.getOriginalFilename().lastIndexOf("."));
            smb.sshSftp(headstockphoto, fileName, Const.FILEPATHFILE + Jurisdiction.getCORPINFO_ID() + "/" + ffile);
            pd.put("HEADSTOCK_PHOTO", Const.FILEPATHFILE + Jurisdiction.getCORPINFO_ID() + "/" + ffile + "/" + fileName);
        }
        if (null != drivinglicensephoto && !drivinglicensephoto.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()+drivinglicensephoto.getOriginalFilename().substring(drivinglicensephoto.getOriginalFilename().lastIndexOf("."));
            smb.sshSftp(drivinglicensephoto, fileName, Const.FILEPATHFILE + Jurisdiction.getCORPINFO_ID() + "/" + ffile);
            pd.put("DRIVINGLICENSE_PHOTO", Const.FILEPATHFILE + Jurisdiction.getCORPINFO_ID() + "/" + ffile + "/" + fileName);
        }
        if (null != operatingcertificatephoto && !operatingcertificatephoto.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()+operatingcertificatephoto.getOriginalFilename().substring(operatingcertificatephoto.getOriginalFilename().lastIndexOf("."));
            smb.sshSftp(operatingcertificatephoto, fileName, Const.FILEPATHFILE + Jurisdiction.getCORPINFO_ID() + "/" + ffile);
            pd.put("OPERATING_CERTIFICATE_PHOTO", Const.FILEPATHFILE + Jurisdiction.getCORPINFO_ID() + "/" + ffile + "/" + fileName);
        }*/
        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();
        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);
        }
        pd.put("DELETOR", Jurisdiction.getUSER_ID());
        pd.put("DELETORNAME", Jurisdiction.getUsername());
        pd.put("DELETTIME", DateUtil.date2Str(new Date()));
        operatingVehiclesService.delete(pd);
        map.put("result", errInfo);				//返回结果
        return map;
    }

    /**修改
     * @param
     * @throws Exception
     */
    @RequestMapping(value="/edit")
    @ResponseBody
    public Object edit() 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()));
        PageData operation = operatingVehiclesService.findById(pd);
        List<PageData> assignedList = assignedManageService.assignedList(pd.getString("CORPINFO_ID"));
        for (PageData assigned : assignedList) {
            if(operation.get("PLATE_NUMBER").equals(assigned.get("RAW_PLATE_NUMBER"))) {
                assigned.put("RAW_PLATE_NUMBER", pd.get("PLATE_NUMBER"));
                assigned.put("RAW_OWNERS", pd.get("VEHICLEOWNER"));
                assignedManageService.edit(assigned);
            }
        }
        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();
        pd.put("CORPINFO_ID", Jurisdiction.getCORPINFO_ID());
        pd = operatingVehiclesService.findById(pd);

        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);
        map.put("result", errInfo);
        return map;
    }

    @RequestMapping(value = "/list")
    // @RequiresPermissions( value = {"question:list" , "courseware:list"}, logical = Logical.OR)
    @ResponseBody
    @LogAnno(menuType = "基础信息管理", menuServer = "货运挂车", instructionsOperate = "货运挂车", instructionsType = "列表")
    public Object list(Page page) 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());    //企业ID
        page.setPd(pd);
        List<PageData> varList = operatingVehiclesService.list(page);    //列出Question列表
        map.put("varList", varList);
        map.put("page", page);
        map.put("result", errInfo);
        return map;
    }

    @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;
    }

    @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());

        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);
        pd = operatingVehiclesService.findById(pd);
        map.put("pd", pd);
        map.put("result", errInfo);
        return map;
    }

    @RequestMapping(value = "/corpList")
    @ResponseBody
    public Object corpList() throws Exception {
        Map<String, Object> map = new HashMap<String, Object>();
        String errInfo = "success";
        String corpId = Jurisdiction.getCORPINFO_ID();
        List<PageData> list = operatingVehiclesService.corpList(corpId);    //列出Question列表
        map.put("list", list);
        map.put("result", errInfo);
        return map;
    }

    @RequestMapping(value="/findByPlateNumber")
    @ResponseBody
    public Object findByPlateNumber() 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());
        pd.put("PLATE_NUMBER", pd.getString("vehicleNumber"));
        pd = operatingVehiclesService.findByfindByPlateNumber(pd);
        map.put("pd", pd);
        map.put("result", errInfo);
        return map;
    }

}