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
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
package com.changhong.epc.parsing.service.util.impl;
 
import com.changhong.epc.bean.form.CpnVal;
import com.changhong.epc.bean.form.Fieldsets;
import com.changhong.epc.bean.form.FormBaseEntity;
import com.changhong.epc.bean.form.FormDataEntity;
import com.changhong.epc.bean.parsing.BillInfo;
import com.changhong.epc.bean.tenant.bill.OCRBillEntity;
import com.changhong.epc.bean.tenant.cost.CostType;
import com.changhong.epc.bean.tenant.cost.extend.CostFromMappingExtend;
import com.changhong.epc.bean.tenant.master.MasterEleValue;
import com.changhong.epc.bean.tenant.master.MasterValue;
import com.changhong.epc.constter.form.utf.FormUrlConst;
import com.changhong.epc.constter.system.SystemClients;
import com.changhong.epc.constter.system.businesscode.BusinessMeaningCode;
import com.changhong.epc.constter.system.run.EpcRestInterface;
import com.changhong.epc.constter.tenant.TenantUrlConst;
import com.changhong.epc.parsing.mapper.tenant.JourneyFormMapper;
import com.changhong.epc.parsing.service.util.IFromOperate;
import com.google.common.base.Objects;
import com.iemsoft.framework.cloud.core.base.ResMsg;
import com.iemsoft.framework.cloud.core.tools.JSONTool;
import com.iemsoft.framework.cloud.core.tools.ObjectUtil;
import com.iemsoft.framework.cloud.core.tools.SpringUtil;
import com.iemsoft.framework.cloud.ribbon.RestInterface;
import org.springframework.stereotype.Service;
 
import javax.annotation.Resource;
import java.util.*;
import java.util.Map.Entry;
 
import static com.changhong.epc.constter.form.utf.FormUrlConst.FORM_DATA_SELECT_ONE;
import static com.changhong.epc.constter.form.utf.FormUrlConst.FORM_DATA_UPDATFORM;
 
//import org.apache.commons.collections.map.HashedMap;
 
@Service("fromOperate")
public class FromOperateImpl implements BusinessMeaningCode, SystemClients, IFromOperate {
 
//    private CpnVal subForm;
 
    @Resource
    private JourneyFormMapper journeyFormMapper;
 
 
    public Object getFromRest(String fs, Object parm) {
        RestInterface restInterface = SpringUtil.getBean(SERVER_FORM.getBeanName(), RestInterface.class);
        Object data = restInterface.post(fs, parm, ResMsg.class, EpcRestInterface.getEpcHeads()).getData();
//        // System.out.println("分配成功修改状态返回结果"+JSONTool.toJson(data));
        return data;
    }
 
    public Object getTenantRest(String fs, Object parm) {
        RestInterface restInterface = SpringUtil.getBean(SERVER_TENANT.getBeanName(), RestInterface.class);
        Object data = restInterface.post(fs, parm, ResMsg.class, EpcRestInterface.getEpcHeads()).getData();
 
        return data;
    }
 
    @Override
    public FormBaseEntity selectFromAll(BillInfo billInfo) {
        Map<String, Object> parm = new HashMap<>();
        parm.put("formId", billInfo.getFormId());
        @SuppressWarnings("unchecked")
        Map<String, Object> billDatas = JSONTool.toObj(billInfo.getInfo(), Map.class);
        parm.put("tenantId", billDatas.get("tenantId"));
 
        Object fromRest = getFromRest(FormUrlConst.FORM_PROPERTY_URL, parm);
        FormBaseEntity formBase = JSONTool.toObj(JSONTool.toJson(fromRest), FormBaseEntity.class);
        return formBase;
    }
 
    /**
     * 将分配完的数据添加到子表单中
     */
    @Override
    public Integer insertCpnVal(BillInfo billInfo, Map<CpnVal, List<List<CpnVal>>> data) {
        Map<String, Object> parm = new HashMap<>();
        CpnVal subForm = new CpnVal();
        //分配完的行程插入到子表单中
        List<List<CpnVal>> subFormVals = new ArrayList<>();
        if(ObjectUtil.notEmpty(data)) {
            for (Entry<CpnVal, List<List<CpnVal>>> serverDefine : data.entrySet()) {
                subForm = serverDefine.getKey();
                subFormVals = serverDefine.getValue();
            }
        }
 
        List<Map<String, Object>> cpnVal = new ArrayList<>();
        for (List<CpnVal> eachJoun : subFormVals) {
            HashMap<String, Object> eachCpnVal = new HashMap<>();
            eachCpnVal.put("PARENTDATAROWNUM", billInfo.getFormDataId());
            for (CpnVal val : eachJoun) {
                eachCpnVal.put(val.getAlias(), val.getValCode());
            }
            cpnVal.add(eachCpnVal);
        }
        parm.put("formId", billInfo.getFormId());
        parm.put("childAlias", subForm.getAlias());
        parm.put("data", cpnVal);
        getFromRest(FormUrlConst.FORM_DATA_INSERT, parm);
        return null;
    }
 
    @Override
    public List<Integer> insertCpnVal(BillInfo billInfo, CpnVal journeySubForm, List<List<CpnVal>> allJourneyCpn) {
 
        CpnVal subForm = journeySubForm;
        Map<String, Object> parm = new HashMap<>();
 
        List<Map<String, Object>> cpnVal = new ArrayList<>();
        if(ObjectUtil.notEmpty(allJourneyCpn)) {
            for (List<CpnVal> eachJoun : allJourneyCpn) {
                HashMap<String, Object> eachCpnVal = new HashMap<>();
                eachCpnVal.put("PARENTDATAROWNUM", billInfo.getFormDataId());
                for (CpnVal val : eachJoun) {
                    eachCpnVal.put(val.getAlias(), val.getValCode());
                }
                cpnVal.add(eachCpnVal);
            }
        }
        parm.put("formId", billInfo.getFormId());
        parm.put("tenantId", JSONTool.toObj(billInfo.getInfo(), Map.class).get("tenantId"));
        parm.put("childAlias", subForm.getAlias());
        parm.put("data", cpnVal);
//        JSONTool.toJson(parm);
//        // System.out.println("保存控件。。。");
//        // System.out.println(JSONTool.toJson(parm));
        // System.out.println("最终添加子表单参数:" + JSONTool.toJson(parm));
        Object fromRest = getFromRest(FormUrlConst.FORM_DATA_INSERT, parm);
        List<Map> resList = JSONTool.toList(JSONTool.toJson(fromRest), Map.class);
        List<Integer> jIds = new ArrayList<>();
        if(ObjectUtil.notEmpty(resList)) {
            for (Map map : resList) {
                Object object = map.get("dataRowNum");
                jIds.add(Integer.valueOf(object.toString()));
            }
        }
//        // System.out.println("子表单新增数据后返回结果:+++++++++++++++++++++++++++++++++++++++++"+JSONTool.toJson(resList));
//        // System.out.println("+++++++++++++++++++++++++++++++++++++++++++++");
//        // System.out.println("+++++++++++++++++++++++++++++++++++++++++++++");
//        // System.out.println("+++++++++++++++++++++++++++++++++++++++++++++");
//        // System.out.println("+++++++++++++++++++++++++++++++++++++++++++++");
//        // System.out.println("+++++++++++++++++++++++++++++++++++++++++++++");
//        // System.out.println("+++++++++++++++++++++++++++++++++++++++++++++");
//        // System.out.println("+++++++++++++++++++++++++++++++++++++++++++++");
        // System.out.println("添加子表单返回:" + JSONTool.toJson(jIds));
        return jIds;
    }
 
    @Override
    public boolean updateCpnVal(BillInfo billInfo, Map<CpnVal, List<List<CpnVal>>> data) {
        Integer row = 0;
        if(ObjectUtil.empty(data)){
            data = Collections.EMPTY_MAP;
        }
        for (Entry<CpnVal, List<List<CpnVal>>> forms : data.entrySet()) {
            FormDataEntity formDataEntity = new FormDataEntity();
            formDataEntity.setFormId(billInfo.getFormId());
            List<Map<String, Object>> cpnValData = new ArrayList<>();
            // 主控件
            if (forms.getKey() == null) {
                formDataEntity.setDataRowNum(billInfo.getFormDataId());
            }
            if(ObjectUtil.notEmpty(forms.getValue())) {
                for (List<CpnVal> eachJoun : forms.getValue()) {
                    Map<String, Object> eachCpnVal = new HashMap<>();
                    formDataEntity.setChildAlias(forms.getKey().getAlias());
                    eachJoun.stream().forEach(val -> setEachCpnVal(eachCpnVal, val));
                    cpnValData.add(eachCpnVal);
                }
            }
            formDataEntity.setData(cpnValData);
 
            Object fromRest = getFromRest(FormUrlConst.FORM_DATA_UPDATE, formDataEntity);
            row += (int) fromRest;
 
        }
        return row > 0 ? true : false;
 
    }
 
    public void setEachCpnVal(Map<String, Object> eachCpnVal, CpnVal val){
        eachCpnVal.put(val.getAlias(), val.getValCode());
        if (Objects.equal("dataRowNum", val.getAlias())) {
            eachCpnVal.put("PARENTDATAROWNUM", val.getValCode());
        }
    }
 
 
    @Override
    public Boolean deleteFormData(BillInfo billInfo, CpnVal subForm) {
        Map<String, Object> parm = new HashMap<>();
        parm.put("formId", billInfo.getFormId());
        parm.put("childAlias", subForm.getAlias());
        parm.put("dataRowNum", billInfo.getFormDataId());
        parm.put("tenantId", JSONTool.toObj(billInfo.getInfo(), Map.class).get("tenantId"));
        try {
            getFromRest(FormUrlConst.FORM_DATA_URL, parm);
        } catch (Exception e) {
            return false;
        }
 
        return true;
    }
 
//    @Override
//    public void setJourneySubForm(CpnVal journeySubForm) {
//        subForm = journeySubForm;
//    }
 
 
    @Override
    public Map<CpnVal, List<Map>> selectfromDataAll(BillInfo billInfo, Fieldsets fieldsets) {
        Map<CpnVal, List<Map>> data = new HashMap<>();
 
        Map<String, Object> dataKeyVal = new HashMap<>();
 
 
        FormDataEntity parm = new FormDataEntity();
        parm.setFormId(billInfo.getFormId());
//        parm.setChildAlias(JOURNEY_SUB);
        parm.setDataRowNum(billInfo.getFormDataId());
        @SuppressWarnings("unchecked")
        Map<String, Object> billDatas = JSONTool.toObj(billInfo.getInfo(), Map.class);
        parm.setTenantId(billDatas.get("tenantId").toString());
 
        // System.out.println(JSONTool.toJson(parm));
        Object fromRest = getFromRest(FormUrlConst.FORM_DATA_SEARCH_LIST, parm);
        List<Map> res = JSONTool.toList(JSONTool.toJson(fromRest), Map.class);
        data.put(null, res);
        for (CpnVal group : fieldsets.getSubform().keySet()) {
            parm = new FormDataEntity();
            parm.setFormId(billInfo.getFormId());
            parm.setChildAlias(group.getAlias());
            parm.setDataRowNum(billInfo.getFormDataId());
            parm.setTenantId(billDatas.get("tenantId").toString());
            fromRest = getFromRest(FormUrlConst.FORM_DATA_SEARCH_LIST, parm);
            res = JSONTool.toList(JSONTool.toJson(fromRest), Map.class);
            data.put(group, res);
        }
 
 
        return data;
    }
 
    @Override
    public Integer getBillType(String formId) {
        HashMap<String, Object> hashMap = new HashMap<>();
        hashMap.put("fId", formId);
        // Object postRest = getPostRestTen(TenantUrlConst.REST_TENANT_COSTFORM_SELECTONE, hashMap);
        Object postRest = null;
        try {
            RestInterface restInterface = SpringUtil.getBean(SERVER_TENANT.getBeanName(), RestInterface.class);
            postRest = restInterface.post(TenantUrlConst.REST_TENANT_COSTFORM_SELECTONE, hashMap, ResMsg.class, EpcRestInterface.getEpcHeads()).getData();
        } catch (Exception e) {
            // System.err.println(e.getMessage());
        }
        CostFromMappingExtend obj = JSONTool.toObj(JSONTool.toJson(postRest), CostFromMappingExtend.class);
 
        return obj.getCtId();
 
    }
 
    @Override
    public void updateForm(Map<String, Object> data) {
        Object fromRest = getFromRest(FormUrlConst.FORM_DATA_UPDATE2, data);
        // System.out.println(fromRest);
    }
 
    @Override
    public int updateFormStatus(BillInfo billInfo, Integer status) {
        Map<String, Object> param = new HashMap<>();
        param.put("formID", billInfo.getFormId());
        param.put("dataRowNum", billInfo.getFormDataId());
        param.put("status", status);
        param.put("tenantID", billInfo.getFormDataId());
        getFromRest(FormUrlConst.FORM_STATUS, param);
        return 0;
    }
 
    @Override
    public FormBaseEntity selectFromAll(OCRBillEntity OCRBillEntity) {
        Map<String, Object> parm = new HashMap<>();
        parm.put("formId", OCRBillEntity.getFormId());
        parm.put("tenantId", OCRBillEntity.getTenantId());
 
        Object fromRest = getFromRest(FormUrlConst.FORM_PROPERTY_URL, parm);
        FormBaseEntity formBase = JSONTool.toObj(JSONTool.toJson(fromRest), FormBaseEntity.class);
        return formBase;
    }
 
    @Override
    public MasterValue billValToCode(MasterEleValue masterEleValue) {
        Object fromRest = getTenantRest(TenantUrlConst.REST_TENANT_MASTERVALUE_GETCODE, masterEleValue);
        MasterValue masterValue = JSONTool.toObj(JSONTool.toJson(fromRest), MasterValue.class);
        return masterValue;
    }
 
    @Override
    public int updateFormStatusTe(BillInfo billInfo, Integer status, Integer tenantId) {
        Map<String, Object> param = new HashMap<>();
        param.put("formID", billInfo.getFormId());
        param.put("dataRowNum", billInfo.getFormDataId());
        param.put("status", status);
        param.put("tenantID", tenantId);
 
        getFromRest(FormUrlConst.FORM_STATUS, param);
        return 0;
    }
 
    @Override
    public Map<String, Object> selectFromData(BillInfo formData, Fieldsets fieldsets, OCRBillEntity oCRBillEntity) {
        FormDataEntity formDataEntity = new FormDataEntity();
        formDataEntity.setFormId(formData.getFormId());
        formDataEntity.setDataRowNum(formData.getFormDataId());
        formDataEntity.setChildAliaList(
                new ArrayList<>(fieldsets.getSubform() == null
                        ? Collections.emptyList() :
                        Arrays.asList(fieldsets.getSubform().keySet().stream().map(cpnVal -> cpnVal.getAlias()).toArray(String[]::new))
                ));
        formDataEntity.setTenantId(java.util.Objects.toString(oCRBillEntity.getTenantId()));
        return (Map<String, Object>) getFromRest(FORM_DATA_SELECT_ONE, formDataEntity);
    }
 
    @Override
    public int updateFormStatus(String formId, String tenangId, String dataRowNum, Integer status) {
        Map<String, Object> param = new HashMap<>();
        param.put("formID", formId);
        param.put("dataRowNum", dataRowNum);
        param.put("status", status);
        param.put("tenantID", tenangId);
        getFromRest(FormUrlConst.FORM_STATUS, param);
        return 0;
    }
 
    /**
     * 修改表单数据
     *
     * @param formDataEntity
     */
    @Override
    public void updateFormData(FormDataEntity formDataEntity) {
        getFromRest(FORM_DATA_UPDATFORM, formDataEntity);
    }
 
    @Override
    public Map<String, Object> selectSign(String formId, String tenangId, Integer dataRowNum) {
        FormDataEntity formDataEntity = new FormDataEntity(formId,dataRowNum,tenangId);
        return (Map<String, Object>) getFromRest(FORM_DATA_SELECT_ONE, formDataEntity);
    }
 
    @Override
    public List<Map> selectSubList(String formId, String tenangId, Integer dataRowNum, String alias) {
        FormDataEntity formDataEntity = new FormDataEntity(formId,dataRowNum,tenangId);
        formDataEntity.setChildAlias(alias);
        return JSONTool.toList(JSONTool.toJson(getFromRest(FormUrlConst.FORM_DATA_SEARCH_LIST, formDataEntity)),Map.class);
 
    }
 
    @Override
    public String getCostCode(Integer ctId) {
        CostType cost = new CostType();
        cost.setId(ctId);
        Object res = getTenantRest(TenantUrlConst.REST_TENANT_COSTTYPE_ONE, cost);
        cost = JSONTool.toObj(JSONTool.toJson(res),CostType.class);
        return cost.getOrderTypeCode();
    }
}