Blame view

src/main/java/com/huaheng/pc/srm/controller/SRMDetailNoneController.java 10.7 KB
周鸿 authored
1
2
3
package com.huaheng.pc.srm.controller;
xumiao authored
4
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
周鸿 authored
5
6
7
8
import com.huaheng.common.exception.service.ServiceException;
import com.huaheng.common.support.Convert;
import com.huaheng.common.utils.StringUtils;
import com.huaheng.common.utils.security.ShiroUtils;
周鸿 authored
9
import com.huaheng.framework.aspectj.lang.annotation.ApiLogger;
周鸿 authored
10
11
12
13
14
15
import com.huaheng.framework.aspectj.lang.annotation.Log;
import com.huaheng.framework.aspectj.lang.constant.BusinessType;
import com.huaheng.framework.web.controller.BaseController;
import com.huaheng.framework.web.domain.AjaxResult;
import com.huaheng.framework.web.page.TableDataInfo;
xumiao authored
16
17
import com.huaheng.pc.config.material.domain.Material;
import com.huaheng.pc.config.material.service.MaterialService;
周鸿 authored
18
19
20
21
22
23
24
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.domain.SrmHeader;
import com.huaheng.pc.srm.service.SrmDetailService;
import com.huaheng.pc.srm.service.SrmHeaderService;
import org.apache.shiro.authz.annotation.RequiresPermissions;
xumiao authored
25
import org.apache.shiro.crypto.hash.format.Shiro1CryptFormat;
周鸿 authored
26
import org.springframework.stereotype.Controller;
27
import org.springframework.transaction.annotation.Transactional;
周鸿 authored
28
29
30
31
32
import org.springframework.ui.ModelMap;
import org.springframework.web.bind.annotation.*;

import javax.annotation.Resource;
import java.math.BigDecimal;
周鸿 authored
33
import java.text.ParseException;
xumiao authored
34
import java.util.*;
周鸿 authored
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57


@Controller
@RequestMapping("/srm/srmDetailNone")
public class SRMDetailNoneController extends BaseController {
    private String prefix = "srm/srmDetailNone";

    @RequiresPermissions("srm:srmDetail:view")
    @GetMapping("/{headerId}")
    public String srmDetail(@PathVariable("headerId") String headerId, ModelMap mmap)
    {
        mmap.put("headerId", headerId);
        return prefix + "/srmDetailNone";
    }


    @Resource
    private SrmDetailService srmDetailService;

    @Resource
    private WarehouseU8Service warehouseU8Service;
    @Resource
    private SrmHeaderService srmHeaderService;
xumiao authored
58
59
    @Resource
    private MaterialService materialService;
周鸿 authored
60
61
62
63
64


    /**
     * 查询已到送货单明细
     */
xumiao authored
65
//    @RequiresPermissions("srm:srmDetail:list")
周鸿 authored
66
67
68
69
70
71
72
73
74
75
    @Log(title = "送货单-送货单", operating="查看送货单明细", action = BusinessType.GRANT)
    @PostMapping("/list")
    @ResponseBody
    public TableDataInfo list(SrmDetail srmDetail)
    {
        srmDetail.setEnable(0);
        startPage();
        List<SrmDetail> list = srmDetailService.selectList(srmDetail) ;
        for (SrmDetail detail : list) {
            WarehouseU8 warehouseWu = new WarehouseU8();
周鸿 authored
76
            warehouseWu.setWarehouseCode(srmDetail.getWarehouseCode());
周鸿 authored
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
            warehouseWu.setUCompanyCode(detail.getCompanyCode());
            warehouseWu.setUWarehouseCode(detail.getUWarehouseCode());
            List<WarehouseU8> warehouseWulist = warehouseU8Service.getByDomain(warehouseWu);
            if(warehouseWulist != null&&warehouseWulist.size()>0){
                warehouseWu=warehouseWulist.get(0);
                detail.setUWarehouseName(warehouseWu.getUWarehouseName());
            }
        }
        return getDataTable(list);
    }


    /**
     * 选择仓库
     */
    @GetMapping("/checkWarehouse/{ids}")
    public String checkWarehouse(@PathVariable("ids") String ids, ModelMap mmap) {
        if (StringUtils.isEmpty(ids)){
           throw new ServiceException("没有选中明细行");
        }
        List<Integer> list = Arrays.asList(Convert.toIntArray(ids));
        SrmDetail srmDetail = new SrmDetail();
        srmDetail.setId(list.get(0));
        srmDetail =  srmDetailService.selectFirstModel(srmDetail);
        if(srmDetail !=null){
           srmDetail.setCompanyName(ids);
           mmap.put("srmDetail",srmDetail);
        }
        return prefix + "/checkWarehouse";
    }


    /**
     * 选择仓库
     */
    @RequiresPermissions("srm:srmDetail:checkWarehouse")
    @Log(title = "送货单-送货单", operating = "选择仓库", action = BusinessType.DELETE)
    @PostMapping("/checkWarehouse")
    @ResponseBody
xumiao authored
116
    @Transactional(rollbackFor = Exception.class)
周鸿 authored
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
    public AjaxResult confirmQty(String ids,String uWarehouseCode) {
        if (StringUtils.isEmpty(ids)){
            return AjaxResult.error("没有选中明细行");
        }
        Integer[] list = Convert.toIntArray(ids);
        for (Integer id : list) {
            SrmDetail srmDetail = new SrmDetail();
            srmDetail.setId(id);
            srmDetail.setUWarehouseCode(uWarehouseCode);
            srmDetail.setLastUpdateBy(ShiroUtils.getLoginName());
            srmDetail.setLastUpdate(new Date());
            srmDetailService.updateById(srmDetail);
        }
        return AjaxResult.success("成功");
    }


    /**
     * 确认数量
     */
    @GetMapping("/confirmConfirQty")
    public String confirmConfirQty( Integer id, ModelMap mmap) {
        SrmDetail srmDetail = new SrmDetail();
        srmDetail.setId(id);
        srmDetail =srmDetailService.selectFirstModel(srmDetail);
        mmap.put("srmDetail", srmDetail);
        return prefix + "/confirmConfirQty";
    }


    /**
     * 确认数量
     */
    @RequiresPermissions("srm:srmDetail:confirmQty")
    @Log(title = "送货单-送货单", operating = "确认到货数量", action = BusinessType.DELETE)
    @PostMapping("/confirmConfirQty")
    @ResponseBody
    public AjaxResult confirmConfirQty(SrmDetail srmDetail) {
        srmDetail.setLastUpdateBy(ShiroUtils.getLoginName());
        srmDetail.setLastUpdate(new Date());
        srmDetailService.updateById(srmDetail);
        return AjaxResult.success("成功");
    }



    /**
     * 确认数量
     */
    @RequiresPermissions("srm:srmDetail:confirmQty")
    @Log(title = "送货单-送货单", operating = "确认到货数量", action = BusinessType.DELETE)
    @PostMapping("/confirmQty")
    @ResponseBody
    public AjaxResult confirmQty(String ids) {
        if (StringUtils.isEmpty(ids)){
            return AjaxResult.error("没有选中明细行");
        }
        Integer[] list = Convert.toIntArray(ids);
        for (Integer id : list) {
            SrmDetail srmDetail = new SrmDetail();
            srmDetail.setId(id);
            srmDetail =srmDetailService.selectFirstModel(srmDetail);
            if(srmDetail != null){
                srmDetail.setConfirmQty(srmDetail.getQty());
                srmDetail.setLastUpdateBy(ShiroUtils.getLoginName());
                srmDetail.setLastUpdate(new Date());
                srmDetailService.updateById(srmDetail);
            }
        }
        return AjaxResult.success("成功");
    }



    /**
     * 提交
     */
    @RequiresPermissions("srm:srmDetail:confirm")
    @Log(title = "送货单-送货单", operating = "提交", action = BusinessType.DELETE)
    @PostMapping("/confirm")
    @ResponseBody
198
//    @ApiLogger(apiName = "srm送货单-提交", from = "SRM" )
199
    @Transactional(rollbackFor = Exception.class)
周鸿 authored
200
    public AjaxResult confirm(String ids,String warehouseCode) throws ParseException {
周鸿 authored
201
202
203
204
205
        if (StringUtils.isEmpty(ids)){
            return AjaxResult.error("没有选中明细行");
        }
        Integer[] list = Convert.toIntArray(ids);
        List<SrmDetail> srmDetails = new ArrayList<>();
周鸿 authored
206
        Integer headId = 0;
xumiao authored
207
        List<SrmDetail> failedSrmDetail = new ArrayList<>();
周鸿 authored
208
        for (Integer id : list) {
xumiao authored
209
            SrmDetail srmDetail = srmDetailService.getOne(new LambdaQueryWrapper<SrmDetail>().eq(SrmDetail::getId,id).eq(SrmDetail::getWarehouseCode,ShiroUtils.getWarehouseCode()));
周鸿 authored
210
211
212
213
214
215
            if(srmDetail == null){
                return AjaxResult.error("id为"+id+"的送货单明细不存在");
            }
            if(StringUtils.isEmpty(srmDetail.getUWarehouseCode())){
                return AjaxResult.error("id为"+id+"的送货单明细没有选择仓库");
            }
周鸿 authored
216
            srmDetail.setConfirmQty(srmDetail.getQty());
周鸿 authored
217
218
219
            srmDetail.setEnable(1);
            srmDetail.setLastUpdateBy(ShiroUtils.getLoginName());
            srmDetail.setLastUpdate(new Date());
xumiao authored
220
221
222
223
            // 如果不合格数量不等于0
            if (srmDetail.getUnqualifiedQty().compareTo(new BigDecimal(0)) != 0){
                failedSrmDetail.add(srmDetail);
            }
周鸿 authored
224
225
            srmDetailService.updateById(srmDetail);
            srmDetails.add(srmDetail);
xumiao authored
226
            headId=srmDetail.getHeaderId();
周鸿 authored
227
        }
xumiao authored
228
229
230
231
232
233
234
235
236
237
238
239
        SrmHeader srmHeader = srmHeaderService.getOne(new LambdaQueryWrapper<SrmHeader>().eq(SrmHeader::getId,headId).eq(SrmHeader::getWarehouseCode, ShiroUtils.getWarehouseCode()));
        if (srmHeader != null) {
            SrmDetail srmDetail = new SrmDetail();
            srmDetail.setCode(srmHeader.getCode());
            srmDetail.setWarehouseCode(ShiroUtils.getWarehouseCode());
            List<SrmDetail> srmDetailList = srmDetailService.selectList(srmDetail);
            srmDetail.setEnable(1);
            List<SrmDetail> details = srmDetailService.selectList(srmDetail);
            if (srmDetailList.size() == details.size()) {
                srmHeader.setEnable(2);
            } else {
                srmHeader.setEnable(1);
周鸿 authored
240
            }
xumiao authored
241
242
243
            srmHeader.setLastUpdate(new Date());
            srmHeader.setLastUpdateBy(ShiroUtils.getLoginName());
            srmHeaderService.updateById(srmHeader);
周鸿 authored
244
        }
xumiao authored
245
246
247
248
249
250
251
252
253
254
255
        //默认质检的物料是不做到货的
//        Iterator<SrmDetail> iterator = srmDetails.iterator();
//        while (iterator.hasNext()) {
//            SrmDetail srmDetail = iterator.next();
//            Material material = materialService.getMaterialByCode(srmDetail.getMaterialCode(), ShiroUtils.getWarehouseCode());
//            if(material.getCode().startsWith("2")&&(StringUtils.isEmpty(material.getQcFlag())||(StringUtils.isNotEmpty(material.getQcFlag())&&!material.getQcFlag().equals("0")))){
//                srmDetail.setQcFlag("1");
//                srmDetailService.updateById(srmDetail);
//                iterator.remove();
//            }
//        }
xumiao authored
256
257
258
259
260
261
        //告诉SRM到货数量
        //SRM提交到货
        //SRM提示到货失败的需要去定时任务
        if(!srmDetails.isEmpty()){
            srmHeaderService.confirmSRMModel(srmDetails);
        }
xumiao authored
262
        //告诉U8合格数量
周鸿 authored
263
        AjaxResult result = AjaxResult.success();
xumiao authored
264
        result = srmHeaderService.confirmU8Model(srmDetails);
周鸿 authored
265
266
267
268
        if (result.hasErr()){
            result.setMsg("系统自动获取erp到货单失败请手动获取:" + result.getMsg());
            return result;
        }
xumiao authored
269
270
271
272
        // 存在不合格数量直接调用退料单接口
        if (failedSrmDetail.size() > 0){
            srmDetailService.checkWhetherQualified(failedSrmDetail, srmHeader);
        }
周鸿 authored
273
274
275
        return AjaxResult.success("成功");
    }
}