Blame view

src/main/java/com/huaheng/pc/srm/controller/SRMDetailCheckController.java 5.2 KB
周鸿 authored
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
package com.huaheng.pc.srm.controller;


import com.huaheng.common.support.Convert;
import com.huaheng.common.utils.StringUtils;
import com.huaheng.common.utils.file.FileUtils;
import com.huaheng.common.utils.file.ZipUtils;
import com.huaheng.framework.aspectj.lang.annotation.Log;
import com.huaheng.framework.aspectj.lang.constant.BusinessType;
import com.huaheng.framework.config.HuaHengConfig;
import com.huaheng.framework.web.controller.BaseController;
import com.huaheng.framework.web.domain.AjaxResult;
import com.huaheng.framework.web.page.TableDataInfo;
import com.huaheng.pc.config.company.service.CompanyService;
import com.huaheng.pc.config.warehouse.domain.WarehouseU8;
import com.huaheng.pc.config.warehouse.service.WarehouseU8Service;
import com.huaheng.pc.srm.domain.SrmDetail;
import com.huaheng.pc.srm.service.SrmDetailService;
import org.apache.shiro.authz.annotation.RequiresPermissions;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.stereotype.Controller;
import org.springframework.ui.ModelMap;
import org.springframework.web.bind.annotation.*;

import javax.annotation.Resource;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.File;
import java.util.List;


@Controller
@RequestMapping("/srm/srmDetailCheck")
public class SRMDetailCheckController extends BaseController {


    private static final Logger log = LoggerFactory.getLogger(SRMDetailCheckController.class);


    private String prefix = "srm/srmDetailCheck";

    @RequiresPermissions("srm:srmDetail:view")
    @GetMapping("/{headerId}")
45
    public String srmDetail(@PathVariable("headerId") String headerId, ModelMap mmap) {
周鸿 authored
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
        mmap.put("headerId", headerId);
        return prefix + "/srmDetailCheck";
    }


    @Resource
    private SrmDetailService srmDetailService;
    @Resource
    private CompanyService companyService;
    @Resource
    private WarehouseU8Service warehouseU8Service;

    /**
     * 查询已到送货单明细
     */
xumiao authored
61
    //@RequiresPermissions("srm:srmDetail:list")
62
    @Log(title = "送货单-送货单", operating = "查看送货单明细", action = BusinessType.GRANT)
周鸿 authored
63
64
    @PostMapping("/list")
    @ResponseBody
65
    public TableDataInfo list(SrmDetail srmDetail) {
周鸿 authored
66
67
        srmDetail.setCheckCode(2);
        startPage();
68
        List<SrmDetail> list = srmDetailService.selectList(srmDetail);
周鸿 authored
69
70
        for (SrmDetail detail : list) {
            WarehouseU8 warehouseWu = new WarehouseU8();
71
            warehouseWu.setWarehouseCode(detail.getWarehouseCode());
周鸿 authored
72
73
            warehouseWu.setUCompanyCode(detail.getCompanyCode());
            warehouseWu.setUWarehouseCode(detail.getUWarehouseCode());
74
75
76
            List<WarehouseU8> warelist = warehouseU8Service.getByDomain(warehouseWu);
            if (warelist != null && warelist.size() > 0) {
                warehouseWu = warelist.get(0);
周鸿 authored
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
                detail.setUWarehouseName(warehouseWu.getUWarehouseName());
            }
        }
        return getDataTable(list);
    }


    @GetMapping("/uploadAnnex/{id}")
    public String uploadAnnex(@PathVariable String id, ModelMap modelMap) {
        modelMap.put("id", id);
        return prefix + "/uploadAnnex";
    }

    @PostMapping("/uploadAnnex")
    @ResponseBody
    public AjaxResult updateAnnex(SrmDetail srmDetail) {
        SrmDetail condition = new SrmDetail();
        condition.setId(srmDetail.getId());
        condition = srmDetailService.selectFirstModel(condition);
96
        if (condition == null) {
周鸿 authored
97
98
            return AjaxResult.error("没有此送货单明细");
        }
99
        if (StringUtils.isEmpty(condition.getAnnex())) {
周鸿 authored
100
            condition.setAnnex(srmDetail.getAnnex());
101
102
        } else {
            condition.setAnnex(condition.getAnnex() + ";" + srmDetail.getAnnex());
周鸿 authored
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
        }
        return toAjax(srmDetailService.updateById(condition));
    }


    @GetMapping("/downloadAnnex/{id}")
    public void downloadAnnex(@PathVariable String id, HttpServletResponse response, HttpServletRequest request) {
        SrmDetail srmDetail = new SrmDetail();
        srmDetail.setId(Integer.valueOf(id));
        srmDetail = srmDetailService.selectFirstModel(srmDetail);

        String[] fileNameArray = Convert.toStrArray(";", srmDetail.getAnnex());
        File[] srcFiles = new File[fileNameArray.length];
        String fileName = "ZipFile.zip";
        File zipFile = new File(HuaHengConfig.getProfile() + fileName);
        for (int i = 0; i < fileNameArray.length; i++) {
            srcFiles[i] = new File(HuaHengConfig.getProfile() + fileNameArray[i]);
        }
        ZipUtils.zipFiles(srcFiles, zipFile);
        try {
            String realFileName = System.currentTimeMillis() + fileName.substring(fileName.indexOf("_") + 1);
            String filePath = HuaHengConfig.getProfile() + fileName;

            response.setCharacterEncoding("utf-8");
            response.setContentType("multipart/form-data");
            response.setHeader("Content-Disposition", "attachment;fileName=" + FileUtils.setFileDownloadHeader(request, realFileName));
            FileUtils.writeBytes(filePath, response.getOutputStream());
            FileUtils.deleteFile(filePath);

        } catch (Exception e) {
            log.error("下载文件失败", e);
        }
    }
}