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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
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
116
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
package com.changhong.epc.bean.tenant.bill;
 
import com.alibaba.fastjson.annotation.JSONField;
import com.iemsoft.framework.cloud.core.tools.ObjectUtil;
import com.iemsoft.framework.cloud.core.tools.StringUtil;
import lombok.Data;
import lombok.extern.slf4j.Slf4j;
 
import java.math.BigDecimal;
import java.util.*;
 
@Slf4j
@Data
public class OCRBillBodyEntity implements IOCRBill {
 
    /**
     * 票据原始信息
     */
    private Map<String, String> bodyDataMap        = new HashMap<>();
 
    /*
     * 票据基础信息
     */
    private Map<String, String> billKeyName     = new HashMap<>();
 
    private Map<String, String> billKeyCode     = new HashMap<>();
 
    private Map<String, String> billMasterName     = new HashMap<>();
 
    private Map<String, String> billMasterCode     = new HashMap<>();
 
    /*
     * 行-费用类型
     */
    private CostType costType;
 
    /**
     * 汇率
     */
    private String exchangeRate;
    
    /**
     * @Author WangYX
     * @Description 合并的票据信息
     * @Date 2019/1/17 下午2:06
     */
    private List<IOCRBill> child = new ArrayList<>();
 
    @Override
    public Double getBillMoney() {
//        log.debug("参数-{}:{}", R_EAMOUT, getMoney(R_EAMOUT));
//        log.debug("参数-{}:{}", R_VTAX, getMoney(R_VTAX));
//        log.debug("参数-{}:{}", "cliendM", getChildMoney());
 
        return
                BigDecimal.valueOf(getMoney(R_EAMOUT))
                        .add(BigDecimal.valueOf(getMoney(R_VTAX)))
                        .add(BigDecimal.valueOf(getChildMoney()))
                .doubleValue();
    }
 
    private Double getChildMoney() {
        if(ObjectUtil.empty(child)){
            return 0D;
        }
        return child.stream()
                .filter(ioc->ioc.isAssignableFrom(OCRBillHeaderEntity.class))
                .map(ioc->BigDecimal.valueOf(ioc.getBillMoney()))
                .reduce(BigDecimal.valueOf(0), (a1, a2)->a1.add(a2))
                .doubleValue();
//        if(ObjectUtil.empty(child)){
//            return 0D;
//        }
//        return this.child.stream()
//                .map(IOCRBill::getBillMoney)
//                .reduce(0D, (a1, a2)->a1+a2);
    }
 
    @Override
    public Boolean getBillByType(String type) {
        return Objects.equals(Optional.ofNullable(costType).map(CostType::getCode).orElse(null), type);
    }
 
    private String billCode;
 
    @Override
    public String getBillCode() {
        if(billCode == null){
            this.billCode = StringUtil.getUUID();
        }
        return this.billCode;
    }
 
    @Override
    @JSONField(serialize=false)
    public String getBillType() {
        return costType.getCode();
    }
 
    @Override
    public Map<String, String> getBillOriginalInfo() {
        return this.bodyDataMap;
    }
 
    @Override
    public void setCostType(CostType costType) {
        this.costType = costType;
    }
 
    @Override
    public CostType getCostType() {
        return this.costType;
    }
 
    @Override
    public void appendBill(IOCRBill bill) {
        child.add(bill);
    }
 
    @Override
    public Map<String, String> getBillKeyName() {
        Map<String, String> result = new HashMap<>(billKeyName);
        child.stream().forEach(c->meage(result, c.getBillKeyName()));
//        getBillBodyEntityList().stream().forEach(body->result.putAll(body.getBillKeyName()));
        return result;
    }
    @Override
    public void setBillKeyName(String key, String val) {
        this.billKeyName.put(key, val);
    }
 
    @Override
    public Map<String, String> getBillKeyCode() {
        Map<String, String> result = new HashMap<>(billKeyCode);
        child.stream().forEach(c->meage(result, c.getBillKeyCode()));
 
//        getBillBodyEntityList().stream().forEach(body->result.putAll(body.getBillKeyCode()));
        return result;
    }
    @Override
    public void setBillKeyCode(String key, String val) {
        this.billKeyCode.put(key, val);
    }
 
    @Override
    public Map<String, String> getBillMasterName() {
        Map<String, String> result = new HashMap<>(billMasterName);
//        getBillBodyEntityList().stream().forEach(body->result.putAll(body.getBillMasterName()));
        return result;
    }
    @Override
    public void setBillMasterName(String key, String val) {
        this.billMasterName.put(key, val);
    }
 
    @Override
    public Map<String, String> getBillMasterCode() {
        Map<String, String> result = new HashMap<>(billMasterCode);
//        getBillBodyEntityList().stream().forEach(body->result.putAll(body.getBillMasterCode()));
        return result;
    }
    @Override
    public void setBillMasterCode(String key, String val) {
        this.billMasterCode.put(key, val);
    }
}