zm
2020-05-18 a18bfacbf56b401f6e0fdae8710fbca4df8cff77
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
45
46
47
48
49
50
51
52
53
54
package com.changhong.epc.tenant.service.bill.impl;
 
import com.changhong.epc.bean.tenant.bill.BillData;
import com.changhong.epc.tenant.mapper.tenant.bill.BillDataMapper;
import com.changhong.epc.tenant.service.bill.BillDataService;
import com.iemsoft.framework.cloud.core.tools.ObjectUtil;
import org.springframework.stereotype.Service;
 
import javax.annotation.Resource;
import java.util.List;
import java.util.Map;
@Service("billDataService")
public class BillDataServiceImpl implements BillDataService {
 
    /**
     * 票据信息
     */
    @Resource
    private BillDataMapper billDataMapper;
    
    @Override
    public List<BillData> selectByCode(BillData orderCode) {
        return orderCode.getOrderCode() == null ? null : billDataMapper.select(orderCode);
    }
 
    @Override
    public BillData selectByOrderCodeAndJ(String orderCode, Integer jId) {
         BillData asdas =  billDataMapper.selectByOrderCodeAndJ(orderCode, jId);
         return asdas; 
    }
 
    @Override
    public Integer updateBillDataByJouryId(Map<String, Object> paramMap) {
        String orderCode = paramMap.get("orderCode").toString();
        @SuppressWarnings("unchecked")
        List<Integer> dataRowNums = (List<Integer>) paramMap.get("dataRowNums");
        List<BillData> billData = billDataMapper.selectByOrderCode(orderCode);
        billDataMapper.deleteByOrderCode(orderCode); 
        int i = 0;
        if(ObjectUtil.empty(dataRowNums)){
            return i;
        }
        for(Integer dataRowNum :dataRowNums){
            i ++;
            billData.stream().sorted().forEach(o -> {
                o.setJId(dataRowNum);
                o.initParam();
                billDataMapper.insert(o);
            });
        }
        return i;
    }
        
}