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
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
package foundation.ai.dao;
 
import java.util.ArrayList;
import java.util.List;
 
import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
 
import foundation.clean.CleanBucket;
import foundation.clean.CleanEngine;
import foundation.json.IJSONProvider;
import foundation.json.IJSONWriter;
import foundation.util.Util;
 
public class InvoiceVerificationDao implements IJSONProvider {
 
    private String code;
    private String number;
    private String machineNo;
    private String checkCode;
    private String invoiceDate;
    private String hasSellerList;
    private String trafficFreeFlag;
    private String typeCode;
    private String buyerName;
    private String buyerTaxCode;
    private String buyerAddressPhone;
    private String buyerBankAccount;
    private String sellerName;
    private String sellerTaxCode;
    private String sellerBankAccount;
    private String sellerAddressPhone;
    private String sellerListTax;
    private String amountWithTax;
    private String amountWithoutTax;
    private String amountTax;
    private String bureauTax;
    private String remark;
    private String isAbandoned;
    private InvoiceStatus invoiceStatus;
    private boolean isReal;
    private boolean isBill;
    private boolean isDistinct;
    private List<InvoiceVerificationDetailDao> items;
    
    public void parse(JSONObject jsonObject) throws Exception {
        code = jsonObject.getString("invoiceCode");
        number = jsonObject.getString("invoiceNo");
        machineNo = jsonObject.getString("machineNo");
        checkCode = jsonObject.getString("checkCode");
        invoiceDate = jsonObject.getString("invoiceDate");
        typeCode = jsonObject.getString("invoiceType");
        hasSellerList = jsonObject.getString("hasSellerList");
        trafficFreeFlag = jsonObject.getString("trafficFreeFlag");
        buyerName = jsonObject.getString("buyerName");
        buyerTaxCode = jsonObject.getString("buyerTaxNo");
        buyerAddressPhone = jsonObject.getString("buyerAddressPhone");
        buyerBankAccount = jsonObject.getString("buyerAccount");
        sellerName = jsonObject.getString("salerName");
        sellerTaxCode = jsonObject.getString("salerTaxNo");
        sellerBankAccount = jsonObject.getString("salerAccount");
        sellerAddressPhone = jsonObject.getString("salerAddressPhone");
        sellerListTax = jsonObject.getString("sellerListTax");
        amountWithTax = jsonObject.getString("totalAmount");
        amountWithoutTax = jsonObject.getString("amount");
        amountTax = jsonObject.getString("taxAmount");
        bureauTax = jsonObject.getString("bureauTax");
        remark = jsonObject.getString("remark");
        isDistinct = true;
        
        isAbandoned = jsonObject.getString("cancelMark");
        if(Util.isEmpty(isAbandoned)) {
            isReal = false; 
        }else {
            isReal = !Util.StringToBoolean(isAbandoned);
        }
        
        invoiceStatus = InvoiceStatus.parse(jsonObject.getString("invoiceStatus"));
        String checkStatus = jsonObject.getString("checkStatus");
        if("1".equalsIgnoreCase(checkStatus)) {
            isBill = true;
        }else {
            isBill = Util.StringToBoolean(checkStatus);
        }
 
 
        JSONArray itemArray = jsonObject.getJSONArray("items");
        items = new ArrayList<InvoiceVerificationDetailDao>();
        if(itemArray == null || itemArray.size() <= 0 ) {
            return ;
        }
        
        for(int i=0; i < itemArray.size(); i++){
            JSONObject oneDetail = itemArray.getJSONObject(i);
            InvoiceVerificationDetailDao detail = new InvoiceVerificationDetailDao();
            detail.parse(oneDetail);
 
            CleanBucket cleanBucket = CleanBucket.getInstance();
            CleanEngine cleanEngine = cleanBucket.get("product_name_clean");
            String productName = cleanEngine.modify(detail.getName());
            if(Util.isEmpty(productName)) {
                continue;
            }
            items.add(detail);
        }
    }
    
    
    public InvoiceVerificationDao(InvoiceStatus invoiceStatus) {
        super();
        this.invoiceStatus = invoiceStatus;
    }
 
 
    public String getCode() {
        return code;
    }
 
 
    public void setCode(String code) {
        this.code = code;
    }
 
 
    public String getNumber() {
        return number;
    }
 
 
    public void setNumber(String number) {
        this.number = number;
    }
 
 
    public String getMachineNo() {
        return machineNo;
    }
 
 
    public void setMachineNo(String machineNo) {
        this.machineNo = machineNo;
    }
 
 
    public String getCheckCode() {
        return checkCode;
    }
 
 
    public void setCheckCode(String checkCode) {
        this.checkCode = checkCode;
    }
 
 
    public String getInvoiceDate() {
        return invoiceDate;
    }
 
 
    public void setInvoiceDate(String invoiceDate) {
        this.invoiceDate = invoiceDate;
    }
 
 
    public String getHasSellerList() {
        return hasSellerList;
    }
 
 
    public void setHasSellerList(String hasSellerList) {
        this.hasSellerList = hasSellerList;
    }
 
 
    public String getTrafficFreeFlag() {
        return trafficFreeFlag;
    }
 
 
    public void setTrafficFreeFlag(String trafficFreeFlag) {
        this.trafficFreeFlag = trafficFreeFlag;
    }
 
 
    public String getTypeCode() {
        return typeCode;
    }
 
 
    public void setTypeCode(String typeCode) {
        this.typeCode = typeCode;
    }
 
 
    public String getBuyerName() {
        return buyerName;
    }
 
 
    public void setBuyerName(String buyerName) {
        this.buyerName = buyerName;
    }
 
 
    public String getBuyerTaxCode() {
        return buyerTaxCode;
    }
 
 
    public void setBuyerTaxCode(String buyerTaxCode) {
        this.buyerTaxCode = buyerTaxCode;
    }
 
 
    public String getBuyerAddressPhone() {
        return buyerAddressPhone;
    }
 
 
    public void setBuyerAddressPhone(String buyerAddressPhone) {
        this.buyerAddressPhone = buyerAddressPhone;
    }
 
 
    public String getBuyerBankAccount() {
        return buyerBankAccount;
    }
 
 
    public void setBuyerBankAccount(String buyerBankAccount) {
        this.buyerBankAccount = buyerBankAccount;
    }
 
 
    public String getSellerName() {
        return sellerName;
    }
 
 
    public void setSellerName(String sellerName) {
        this.sellerName = sellerName;
    }
 
 
    public String getSellerTaxCode() {
        return sellerTaxCode;
    }
 
 
    public void setSellerTaxCode(String sellerTaxCode) {
        this.sellerTaxCode = sellerTaxCode;
    }
 
 
    public String getSellerBankAccount() {
        return sellerBankAccount;
    }
 
 
    public void setSellerBankAccount(String sellerBankAccount) {
        this.sellerBankAccount = sellerBankAccount;
    }
 
 
    public String getSellerAddressPhone() {
        return sellerAddressPhone;
    }
 
 
    public void setSellerAddressPhone(String sellerAddressPhone) {
        this.sellerAddressPhone = sellerAddressPhone;
    }
 
 
    public String getSellerListTax() {
        return sellerListTax;
    }
 
 
    public void setSellerListTax(String sellerListTax) {
        this.sellerListTax = sellerListTax;
    }
 
 
    public String getAmountWithTax() {
        return amountWithTax;
    }
 
 
    public void setAmountWithTax(String amountWithTax) {
        this.amountWithTax = amountWithTax;
    }
 
 
    public String getAmountWithoutTax() {
        return amountWithoutTax;
    }
 
 
    public void setAmountWithoutTax(String amountWithoutTax) {
        this.amountWithoutTax = amountWithoutTax;
    }
 
 
    public String getAmountTax() {
        return amountTax;
    }
 
 
    public void setAmountTax(String amountTax) {
        this.amountTax = amountTax;
    }
 
 
    public String getBureauTax() {
        return bureauTax;
    }
 
 
    public void setBureauTax(String bureauTax) {
        this.bureauTax = bureauTax;
    }
 
 
    public String getRemark() {
        return remark;
    }
 
 
    public void setRemark(String remark) {
        this.remark = remark;
    }
 
 
    public String getIsAbandoned() {
        return isAbandoned;
    }
 
 
    public void setIsAbandoned(String isAbandoned) {
        this.isAbandoned = isAbandoned;
    }
 
    public InvoiceStatus getInvoiceStatus() {
        return invoiceStatus;
    }
 
    public void setInvoiceStatus(InvoiceStatus invoiceStatus) {
        this.invoiceStatus = invoiceStatus;
    }
 
    public boolean isReal() {
        return isReal;
    }
 
    public void setReal(boolean isReal) {
        this.isReal = isReal;
    }
 
    public boolean isBill() {
        return isBill;
    }
 
    public void setBill(boolean isBill) {
        this.isBill = isBill;
    }
 
    public boolean isDistinct() {
        return isDistinct;
    }
 
    public void setDistinct(boolean isDistinct) {
        this.isDistinct = isDistinct;
    }
 
    public List<InvoiceVerificationDetailDao> getItems() {
        return items;
    }
    
    public void setItems(List<InvoiceVerificationDetailDao> items) {
        this.items = items;
    }
    
    @Override
    public void writeJSON(IJSONWriter writer) {
        writer.beginObject();
        
        writer.write("code", code);
        writer.write("number", number);
        writer.write("machine_no", machineNo);
        writer.write("check_code", checkCode);
        writer.write("invoice_date", invoiceDate);
        writer.write("has_seller_list", hasSellerList);
        writer.write("traffic_free_flag", trafficFreeFlag);
        writer.write("type_code", typeCode);
        writer.write("buyer_name", buyerName);
        writer.write("buyer_taxcode", buyerTaxCode);
        writer.write("buyer_address_phone", buyerAddressPhone);
        writer.write("buyer_bank_account", buyerBankAccount);
        writer.write("seller_name", sellerName);
        writer.write("seller_taxcode", sellerTaxCode);
        writer.write("seller_address_phone", sellerAddressPhone);
        writer.write("seller_bank_account", sellerBankAccount);
        writer.write("seller_list_tax", sellerListTax);
        writer.write("amount_with_tax", amountWithTax);
        writer.write("amount_without_tax", amountWithoutTax);
        writer.write("amount_tax", amountTax);
        writer.write("bureau_tax", bureauTax);
        writer.write("remark", remark);
        writer.write("is_abandoned", isAbandoned);
        writer.write("is_real", isReal);
        writer.write("is_bill", isBill);
        writer.write("invoice_status", invoiceStatus.name());
        writer.write("is_distinct", isDistinct);
        
        writer.beginArray("invoiceDetailList");
        if(items != null && items.size() > 0 ) {
            
            for (InvoiceVerificationDetailDao detail : items) {
                detail.writeJSON(writer);
            }    
        }
        writer.endArray();
        
        writer.endObject();
    }
    
    
    
}