P15GEN2\59518
2024-05-29 d4210c7c4b04abde20037ea8aa0f54ef8a2649aa
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
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
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
package foundation.ai;
 
import java.io.File;
 
import com.alibaba.fastjson.JSONObject;
 
import foundation.action.ActionProvider;
import foundation.ai.dao.VatInvoiceVerifyDao;
import foundation.ai.logic.VatInvoiceVerifyLogic;
import foundation.io.FileCenter;
import foundation.io.object.FileRecord;
import foundation.util.Util;
 
public class OCRHandler extends ActionProvider {
 
    @Override
    protected void publishMethod() {
        //1. bizLicense
        addMethod("bizLicense");
        
        //2. enterpriseLicense
        addMethod("enterpriseLicense");
        
        //3. orgCodeCert
        addMethod("orgCodeCert");
        
        //4. institution
        addMethod("institution");
        
        //5. idCard
        addMethod("idCard");
        
        //6. textAccurate
        addMethod("textAccurate");
        
        //7. textCommon //不行
        addMethod("textCommon");
        
        //8. textFast //不行
        addMethod("textFast");
        
        //9. invoiceValidate
        addMethod("invoiceIdentify2");
        
        //10. BankSlip  银行回单识别
        addMethod("bankSlip");
        
        //11. Invoice verification--发票验真
        addMethod("invoiceVerification2");
        
        //12. Invoice Identify--发票识别
        addMethod("invoiceIdentify");
        
        //13. getInvoiceIdentifyByCode--获取发票信息
        addMethod("getInvoiceIdentifyByCode");
        
        //14. Invoice verification--发票验真
        addMethod("invoiceVerification");
 
        //15. invoiceIdentifyAndVerification--发票识别及核验
        addMethod("invoiceIdentifyAndVerification");
    }
    
    public void bizLicense() throws Exception {
        //1. 收取上载文件
        FileRecord fileRecord = FileCenter.uploadOneFile(dataReader);
        dataWriter.addValue("upload", fileRecord);
        
        //2. OCR识别
        File file = fileRecord.getFile();
        OCRResult ocrResult = AICenter.execOCR(Operator.BizLicense, file);
        dataWriter.addValue("ocr", ocrResult);
    }
    
    public void enterpriseLicense() throws Exception {
        //1. 收取上载文件
        FileRecord fileRecord = FileCenter.uploadOneFile(dataReader);
        dataWriter.addValue("upload", fileRecord);
        
        //2. OCR识别
        File file = fileRecord.getFile();
        OCRResult ocrResult = AICenter.execOCR(Operator.EnterpriseLicense, file);
        if (!"fail".equalsIgnoreCase(ocrResult.getJson())) {
            dataWriter.addValue("ocr", ocrResult);
        }
    }
    
    public void orgCodeCert() throws Exception {
        //1. 收取上载文件
        FileRecord fileRecord = FileCenter.uploadOneFile(dataReader);
        dataWriter.addValue("upload", fileRecord);
        
        //2. OCR识别
        File file = fileRecord.getFile();
        OCRResult ocrResult = AICenter.execOCR(Operator.OrgCodeCert, file);
        dataWriter.addValue("ocr", ocrResult);
    }
    
    public void institution() throws Exception {
        //1. 收取上载文件
        FileRecord fileRecord = FileCenter.uploadOneFile(dataReader);
        dataWriter.addValue("upload", fileRecord);
        
        //2. OCR识别
        File file = fileRecord.getFile();
        OCRResult ocrResult = AICenter.execOCR(Operator.Institution, file);
        dataWriter.addValue("ocr", ocrResult);
    }
    
    public void idCard() throws Exception {
        //1. 收取上载文件
        FileRecord fileRecord = FileCenter.uploadOneFile(dataReader);
        dataWriter.addValue("upload", fileRecord);
        
        //2. OCR识别
        File file = fileRecord.getFile();
        OCRResult ocrResult = AICenter.execOCR(Operator.IDCard, file);
        dataWriter.addValue("ocr", ocrResult);
    }
    
    public void textAccurate() throws Exception {
        //1. 收取上载文件
        FileRecord fileRecord = FileCenter.uploadOneFile(dataReader);
        dataWriter.addValue("upload", fileRecord);
        
        //2. OCR识别
        File file = fileRecord.getFile();
        OCRResult ocrResult = AICenter.execOCR(Operator.TextAccurate, file);
        dataWriter.addValue("ocr", ocrResult);
    }
    
    public void textCommon() throws Exception {
        //1. 收取上载文件
        FileRecord fileRecord = FileCenter.uploadOneFile(dataReader);
        dataWriter.addValue("upload", fileRecord);
        
        //2. OCR识别
        File file = fileRecord.getFile();
        OCRResult ocrResult = AICenter.execOCR(Operator.TextCommon, file);
        dataWriter.addValue("ocr", ocrResult);
    }
    
    public void textFast() throws Exception {
        //1. 收取上载文件
        FileRecord fileRecord = FileCenter.uploadOneFile(dataReader);
        dataWriter.addValue("upload", fileRecord);
        
        //2. OCR识别
        File file = fileRecord.getFile();
        OCRResult ocrResult = AICenter.execOCR(Operator.TextFast, file);
        dataWriter.addValue("ocr", ocrResult);
    }
    
    public void invoiceIdentify2() throws Exception {
        //1. 收取上载文件
        FileRecord fileRecord = FileCenter.uploadOneFile(dataReader);
        dataWriter.addValue("upload", fileRecord);
        
        //2. OCR识别
        File file = fileRecord.getFile();
        OCRResult ocrResult = AICenter.execOCR(Operator.InvoiceIdentify, file);
        dataWriter.addValue("ocr", ocrResult);
    }
    
    public void invoiceVerification2() throws Exception {
        String fileId = null;
        //1. 收取上载文件
        FileRecord fileRecord = FileCenter.uploadOneFile(dataReader);
        dataWriter.addValue("upload", fileRecord);
        
        fileId = fileRecord.getIndexId();
        //2. OCR识别
        File file = fileRecord.getFile();
        OCRResult ocrResult = AICenter.execOCR(Operator.InvoiceIdentify, file);
        
        if ("fail".equalsIgnoreCase(ocrResult.getJson())) {
            dataWriter.addValue("ocr", ocrResult);
            return;
        } 
        
        VatInvoiceVerifyLogic vatInvoiceVerifyLogic = new VatInvoiceVerifyLogic();
        
        //3. 解析发票内容
        VatInvoiceVerifyDao vatInvoiceVerify = vatInvoiceVerifyLogic.parseInvoiceInfo(ocrResult);
        
        if (Util.isEmpty(vatInvoiceVerify.getInvoiceCode()) && Util.isEmpty(vatInvoiceVerify.getInvoiceNo()) && 
            Util.isEmpty(vatInvoiceVerify.getInvoiceDate()) && Util.isEmpty(vatInvoiceVerify.getAdditional()) &&
            Util.isEmpty(vatInvoiceVerify.getAmount())) {
            ocrResult.setIs_bill(false);
            ocrResult.setJson(null);
            dataWriter.addValue("ocr", ocrResult);
            return;
        }
        
        //4.发票验真
        ocrResult = AICenter.execOCR(Operator.InvoiceVerification, vatInvoiceVerify);
        
        if (!ocrResult.isIs_real()) {
            //将假发票删除
            //vatInvoiceVerifyLogic.deleteBillImage(fileId);
            ocrResult.setIs_real(false); 
            ocrResult.setIs_bill(true);
            dataWriter.addValue("ocr", ocrResult);
            return;
        }
        
        //5.将发票明细保存到表中
        vatInvoiceVerifyLogic.saveVatInvoiceVerify(ocrResult);
        ocrResult.setIs_real(true);
        ocrResult.setJson(null);
        ocrResult.setIs_bill(true);
        
        //6.更新file_index是is_bill
        vatInvoiceVerifyLogic.markBill(fileId);
        
        dataWriter.addValue("ocr", ocrResult);
    }
    
    //银行回单识别
    public void bankSlip() throws Exception {
        //1. 收取上载文件
        FileRecord fileRecord = FileCenter.uploadOneFile(dataReader);
        dataWriter.addValue("upload", fileRecord);
        
        //2. OCR识别
        File file = fileRecord.getFile();
        OCRResult ocrResult = AICenter.execOCR(Operator.BankSlip, file);
        dataWriter.addValue("ocr", ocrResult);
    }
    
    public void invoiceIdentify() throws Exception {
        //1. 收取上载文件
        FileRecord fileRecord = FileCenter.uploadOneFile(dataReader);
        File file = fileRecord.getFile();
        dataWriter.addValue("upload", fileRecord);
        
        //2. OCR识别        
        OCRResult ocrResult = AICenter.execOCR(Operator.InvoiceIdentify, file);
        dataWriter.addValue("ocr", ocrResult);
    }
    
    
    public void getInvoiceIdentifyByCode() throws Exception {
        Object paramObject = null;
        //1. 收取参数
        if(dataReader.getBody() != null ) {
            paramObject = JSONObject.parseObject(dataReader.getBody());
        }
        
        //2. OCR识别        
        OCRResult ocrResult = AICenter.execOCR(Operator.GetInvoiceByCode, paramObject);
        dataWriter.addValue("ocr", ocrResult);
    }
    
    public void invoiceVerification() throws Exception {
        //1. 收取上载文件
        FileRecord fileRecord = FileCenter.uploadOneFile(dataReader);
        File file = fileRecord.getFile();
        dataWriter.addValue("upload", fileRecord);
        
        //2. OCR识别
        OCRResult ocrResult = AICenter.execOCR(Operator.InvoiceVerification, file);
        dataWriter.addValue("ocr", ocrResult);
    }
    
    public void invoiceIdentifyAndVerification() throws Exception {
        //1. 收取上载文件
        FileRecord fileRecord = FileCenter.uploadOneFile(dataReader);
        File file = fileRecord.getFile();
        dataWriter.addValue("upload", fileRecord);
        
        //2. OCR识别        
        OCRResult ocrResult = AICenter.execOCR(Operator.InvoiceIdentifyAndVerification, file);
        dataWriter.addValue("ocr", ocrResult);
        
        
    }
    
}