|
@ -1,6 +1,7 @@
|
|
|
package com.yihu.jw.hospital.prescription.service;
|
|
|
|
|
|
|
|
|
import com.alibaba.fastjson.JSON;
|
|
|
import com.alibaba.fastjson.JSONArray;
|
|
|
import com.alibaba.fastjson.JSONObject;
|
|
|
import com.fasterxml.jackson.databind.ObjectMapper;
|
|
@ -22,18 +23,23 @@ import com.yihu.jw.entity.hospital.consult.WlyyHospitalWaitingRoomDO;
|
|
|
import com.yihu.jw.entity.hospital.dict.WlyyChargeDictDO;
|
|
|
import com.yihu.jw.entity.hospital.doctor.WlyyPatientRegisterTimeDO;
|
|
|
import com.yihu.jw.entity.hospital.family.WlyyPatientFamilyMemberDO;
|
|
|
import com.yihu.jw.entity.hospital.healthCare.YlzMedicalMxDO;
|
|
|
import com.yihu.jw.entity.hospital.healthCare.YlzMedicalRelationDO;
|
|
|
import com.yihu.jw.entity.hospital.healthCare.YlzMedicalRelationInvoiceDO;
|
|
|
import com.yihu.jw.entity.hospital.mapping.DoctorMappingDO;
|
|
|
import com.yihu.jw.entity.hospital.mapping.PatientMappingDO;
|
|
|
import com.yihu.jw.entity.hospital.prescription.*;
|
|
|
import com.yihu.jw.entity.order.BusinessOrderDO;
|
|
|
import com.yihu.jw.entity.util.StringFStringEncryptConverter;
|
|
|
import com.yihu.jw.hospital.consult.dao.HospitalWaitingRoomDao;
|
|
|
import com.yihu.jw.hospital.dict.WlyyChargeDictDao;
|
|
|
import com.yihu.jw.hospital.dict.WlyyHospitalSysDictDao;
|
|
|
import com.yihu.jw.hospital.doctor.dao.PatientRegisterTimeDao;
|
|
|
import com.yihu.jw.hospital.drugstore.dao.BaseDrugStoreDao;
|
|
|
import com.yihu.jw.hospital.family.dao.WlyyPatientFamilyMemberDao;
|
|
|
import com.yihu.jw.hospital.healthCare.YlzMedicailMxDao;
|
|
|
import com.yihu.jw.hospital.healthCare.YlzMedicailRelationDao;
|
|
|
import com.yihu.jw.hospital.healthCare.YlzMedicailRelationInvoiceDao;
|
|
|
import com.yihu.jw.hospital.mapping.dao.DoctorMappingDao;
|
|
|
import com.yihu.jw.hospital.mapping.dao.PatientMappingDao;
|
|
|
import com.yihu.jw.hospital.mapping.service.PatientMappingService;
|
|
@ -46,6 +52,7 @@ import com.yihu.jw.patient.dao.BasePatientDao;
|
|
|
import com.yihu.jw.patient.dao.BasePatientMedicareCardDao;
|
|
|
import com.yihu.jw.restmodel.hospital.prescription.WlyyOutpatientVO;
|
|
|
import com.yihu.jw.restmodel.hospital.prescription.WlyyPrescriptionVO;
|
|
|
import com.yihu.jw.rm.base.BaseRequestMapping;
|
|
|
import com.yihu.jw.util.common.IdCardUtil;
|
|
|
import com.yihu.jw.util.date.DateUtil;
|
|
|
import com.yihu.jw.util.http.HttpClientUtil;
|
|
@ -57,6 +64,8 @@ import com.yihu.mysql.query.BaseJpaService;
|
|
|
import com.yihu.utils.network.HttpResponse;
|
|
|
import com.yihu.utils.network.HttpUtils;
|
|
|
import com.yihu.utils.security.MD5;
|
|
|
import jdk.nashorn.internal.ir.IfNode;
|
|
|
import nuonuo.open.sdk.NNOpenSDK;
|
|
|
import org.apache.commons.collections.map.HashedMap;
|
|
|
import org.apache.commons.lang3.StringUtils;
|
|
|
import org.slf4j.Logger;
|
|
@ -66,11 +75,7 @@ import org.springframework.beans.factory.annotation.Value;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
import org.springframework.transaction.annotation.Transactional;
|
|
|
|
|
|
import java.text.SimpleDateFormat;
|
|
|
import java.util.ArrayList;
|
|
|
import java.util.Date;
|
|
|
import java.util.List;
|
|
|
import java.util.Map;
|
|
|
import java.util.*;
|
|
|
|
|
|
/**
|
|
|
* Created by Trick on 2019/5/17.
|
|
@ -145,6 +150,7 @@ public class YkyyPrescriptionService extends BaseJpaService<WlyyPrescriptionDO,
|
|
|
private PrescriptionLogDao prescriptionLogDao;
|
|
|
|
|
|
private final static String saveUrl="http://192.168.20.55:10023/ykyy/save";
|
|
|
private final static String url="http://192.168.20.55:10023/ykyy/createSQLQuery";
|
|
|
|
|
|
|
|
|
@Value("${demo.flag}")
|
|
@ -163,6 +169,21 @@ public class YkyyPrescriptionService extends BaseJpaService<WlyyPrescriptionDO,
|
|
|
private YkyySMSService ykyySMSService;
|
|
|
@Autowired
|
|
|
private PrescriptionService prescriptionService;
|
|
|
private static String dzfpToken;
|
|
|
private static String saleraddress;
|
|
|
private static String saleraccount;
|
|
|
private static String salertaxnum;
|
|
|
private static String salertel;
|
|
|
private static String dzfpAppKey;
|
|
|
private static String dzfpAppSecret;
|
|
|
|
|
|
private static String goodsname;
|
|
|
private static String taxrate;
|
|
|
@Autowired
|
|
|
private YlzMedicailMxDao ylzMedicailMxDao;
|
|
|
@Autowired
|
|
|
private YlzMedicailRelationInvoiceDao ylzMedicailRelationInvoiceDao;
|
|
|
|
|
|
/**
|
|
|
* 获取居民就诊记录接口
|
|
|
* @param patient
|
|
@ -1259,7 +1280,25 @@ public class YkyyPrescriptionService extends BaseJpaService<WlyyPrescriptionDO,
|
|
|
boolean flag = true;
|
|
|
if (ylzMedicalRelationDO.getMedicalState()==null||(ylzMedicalRelationDO.getMedicalState()!=null&&ylzMedicalRelationDO.getMedicalState()==0)){
|
|
|
flag=true;
|
|
|
YlzMedicalRelationInvoiceDO invoiceDO = new YlzMedicalRelationInvoiceDO();
|
|
|
try {
|
|
|
logger.info("=================电子发票开具开始=================");
|
|
|
requestBillingNew(outpatientId,1);
|
|
|
invoiceDO = queryInvoiceResult(outpatientId);
|
|
|
logger.info("=================电子发票开具结束=================");
|
|
|
}catch (Exception e){
|
|
|
e.printStackTrace();
|
|
|
}
|
|
|
}else {
|
|
|
YlzMedicalRelationInvoiceDO invoiceDO = new YlzMedicalRelationInvoiceDO();
|
|
|
try {
|
|
|
logger.info("=================电子发票开具开始=================");
|
|
|
requestBillingNew(outpatientId,1);
|
|
|
invoiceDO = queryInvoiceResult(outpatientId);
|
|
|
logger.info("=================电子发票开具结束=================");
|
|
|
}catch (Exception e){
|
|
|
e.printStackTrace();
|
|
|
}
|
|
|
HlwMzybjsDO hlwMzybjsDO = new HlwMzybjsDO();
|
|
|
hlwMzybjsDO.setInsuranceSerial(ylzMedicalRelationDO.getInsuranceSerial());
|
|
|
hlwMzybjsDO.setAccountBalance(Double.parseDouble(ylzMedicalRelationDO.getAccountBalance()));
|
|
@ -1308,6 +1347,7 @@ public class YkyyPrescriptionService extends BaseJpaService<WlyyPrescriptionDO,
|
|
|
hlwMzybjsDO.setPayTime(DateUtil.dateToShortStrHh(ylzMedicalRelationDO.getPayDate()));
|
|
|
hlwMzybjsDO.setCollector(ylzMedicalRelationDO.getCollector());
|
|
|
hlwMzybjsDO.setJsrq(new Date());
|
|
|
hlwMzybjsDO.setFphm(invoiceDO.getInvoiceNo());
|
|
|
String jsonString1 = JSONObject.toJSONString(hlwMzybjsDO);
|
|
|
logger.info("医保结算============");
|
|
|
Map<String,Object> params1 = new HashedMap();
|
|
@ -1420,13 +1460,7 @@ public class YkyyPrescriptionService extends BaseJpaService<WlyyPrescriptionDO,
|
|
|
realOrder = prescriptionDO.getRealOrder();
|
|
|
}
|
|
|
}
|
|
|
try {
|
|
|
/*logger.info("=================电子发票开具开始=================");
|
|
|
hcyyEntranceService.OutpatientInvoicing(ylzMedicalRelationDO.getHisBillSerial(),"lb");
|
|
|
logger.info("=================电子发票开具结束=================");*/
|
|
|
}catch (Exception e){
|
|
|
e.printStackTrace();
|
|
|
}
|
|
|
|
|
|
|
|
|
return "结算成功!";
|
|
|
}else {
|
|
@ -1440,29 +1474,232 @@ public class YkyyPrescriptionService extends BaseJpaService<WlyyPrescriptionDO,
|
|
|
|
|
|
|
|
|
//============================电子发票=========================
|
|
|
public String dzfp() throws Exception {
|
|
|
String url = "http://10.110.98.135:8090/dataReport/services/HipService?wsdl";
|
|
|
String namespace="OutPatientBilling";
|
|
|
String api="OutPatientBilling";
|
|
|
String msgHeader ="<Sender>HIS</Sender>\n" +
|
|
|
"<MsgType>MR_0101</MsgType>\n" +
|
|
|
"<MsgVersion>3.0</MsgVersion>";
|
|
|
String param = "\t<ClerkId>王云海</ClerkId>\n" +
|
|
|
"\t<BuyerName>王云海</BuyerName>\n" +
|
|
|
"\t<BuyerTaxNum></BuyerTaxNum>\n" +
|
|
|
"\t<BuyerTel>13850005761</BuyerTel>\n" +
|
|
|
"\t<BuyerAddress></BuyerAddress>\n" +
|
|
|
"\t<BuyerAccount></BuyerAccount>\n" +
|
|
|
"\t<PushMode>1</PushMode>\n" +
|
|
|
"\t<BuyerPhone></BuyerPhone>\n" +
|
|
|
"\t<Email></Email>\n" +
|
|
|
"\t<PatientId>569768</PatientId>\n" +
|
|
|
"\t<BillNo>123456</BillNo>\n" +
|
|
|
"\t<Extra></Extra>";
|
|
|
Map<String,String> params = new HashedMap();
|
|
|
String parameter= "<BSXml>"+msgHeader+param+"</BSXml>";
|
|
|
params.put("parameter",parameter);
|
|
|
|
|
|
return WebserviceUtil.postYk(url,api,params);
|
|
|
|
|
|
|
|
|
/**
|
|
|
* 初始化电子发票固定参数
|
|
|
* @throws Exception
|
|
|
*/
|
|
|
public void getHisDzfpInfo() throws Exception {
|
|
|
if (!demoFlag){
|
|
|
salertaxnum = "110000999999003";
|
|
|
dzfpAppKey="23760028";
|
|
|
dzfpAppSecret="45591CA66F8D4589";
|
|
|
dzfpToken="44d50530356519e60973b70cwqn46acs";
|
|
|
salertaxnum="110000999999003";
|
|
|
saleraddress="福建省厦门市厦禾路336号";
|
|
|
saleraccount="建行厦门市厦禾支行 35101561001052502781";
|
|
|
salertel = "0592-2109113 2109829";
|
|
|
goodsname = "医疗费用";
|
|
|
taxrate = "0";
|
|
|
}else {
|
|
|
String sql = "select saleraddress as \"saleraddress\",saleraccount as \"saleraccount\",salertaxnum as \"salertaxnum\",salertel as \"salertel\",goodsname as \"goodsname\",taxrate as \"taxrate\" from V_HLWYY_DZFP_HEAD ";
|
|
|
JSONArray array = new JSONArray();
|
|
|
Map<String,Object> params = new HashedMap();
|
|
|
params.put("sql",sql);
|
|
|
logger.info("getHisDzfpInfo:"+sql);
|
|
|
HttpResponse response = HttpUtils.doGet(url,params);
|
|
|
String content = response.getContent();
|
|
|
logger.info("response:"+content);
|
|
|
JSONObject rs = JSON.parseObject(content);
|
|
|
Integer status = rs.getInteger("status");
|
|
|
if (status==200){
|
|
|
array = rs.getJSONArray("detailModelList");
|
|
|
if (array!=null&&array.size()!=0){
|
|
|
JSONObject object = array.getJSONObject(0);
|
|
|
salertaxnum = object.getString("salertaxnum");
|
|
|
dzfpAppKey="13680495";
|
|
|
dzfpAppSecret="391834ED4EEC429F";
|
|
|
dzfpToken="9f279f9cd5adca46fc6b220cxt1sr1qs";
|
|
|
saleraddress=object.getString("saleraddress");
|
|
|
saleraccount=object.getString("saleraccount");
|
|
|
salertel = object.getString("salertel");
|
|
|
goodsname = object.getString("goodsname");
|
|
|
taxrate = object.getString("taxrate");
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
|
|
|
|
|
|
/**
|
|
|
*
|
|
|
* @param outpatientId
|
|
|
* @param flag 1蓝票2红票
|
|
|
* @return
|
|
|
* @throws Exception
|
|
|
*/
|
|
|
public String requestBillingNew(String outpatientId,Integer flag) throws Exception {
|
|
|
getHisDzfpInfo();
|
|
|
NNOpenSDK sdk = NNOpenSDK.getIntance();
|
|
|
String taxnum = salertaxnum; // 授权企业税号
|
|
|
String appKey = dzfpAppKey;
|
|
|
String appSecret = dzfpAppSecret;
|
|
|
String method = "nuonuo.ElectronInvoice.requestBillingNew"; // API方法名
|
|
|
List<YlzMedicalRelationDO> medicalRelationDOS = ylzMedicailRelationDao.findByOutpatientNoStatus(outpatientId);
|
|
|
YlzMedicalRelationDO medicalRelationDO = new YlzMedicalRelationDO();
|
|
|
if (medicalRelationDOS!=null&&medicalRelationDOS.size()!=0){
|
|
|
medicalRelationDO = medicalRelationDOS.get(0);
|
|
|
}
|
|
|
List<YlzMedicalMxDO> medicalMxDOS = ylzMedicailMxDao.findByMedicalId(medicalRelationDO.getId());
|
|
|
YlzMedicalRelationInvoiceDO ylzMedicalRelationInvoiceDO = ylzMedicailRelationInvoiceDao.findByMedicalId(medicalRelationDO.getId());
|
|
|
if (ylzMedicalRelationInvoiceDO==null){
|
|
|
ylzMedicalRelationInvoiceDO = new YlzMedicalRelationInvoiceDO();
|
|
|
}
|
|
|
String token = dzfpToken; // 访问令
|
|
|
String content = "";
|
|
|
JSONObject object = new JSONObject();
|
|
|
JSONObject order = new JSONObject();
|
|
|
order.put("buyerName","王云海");
|
|
|
order.put("buyerTaxNum",salertaxnum);
|
|
|
order.put("buyerTel",salertel);
|
|
|
order.put("buyerAddress",saleraddress);
|
|
|
order.put("buyerAccount",saleraccount);
|
|
|
order.put("salerTaxNum",salertaxnum);
|
|
|
order.put("salerTel",salertel);
|
|
|
order.put("salerAddress",saleraddress);
|
|
|
order.put("salerAccount",saleraccount);
|
|
|
order.put("orderNo",medicalRelationDO.getHisSettleNo());
|
|
|
order.put("invoiceDate","2022-01-13 12:30:00");//订单时间
|
|
|
order.put("clerkId","2527");
|
|
|
order.put("clerk","互联网医院");
|
|
|
order.put("pushMode","-1");//推送方式:-1,不推送;0,邮箱;1,手机(默认);2,邮箱、手机
|
|
|
order.put("buyerPhone","13850005761");//购方手机(pushMode为1或2时,此项为必填,同时受企业资质是否必填控制)
|
|
|
if (flag==1){
|
|
|
order.put("invoiceType","1");//开票类型:1:蓝票;2:红票 (全电发票暂不支持红票)
|
|
|
ylzMedicalRelationInvoiceDO.setStatus(1);
|
|
|
}else {
|
|
|
if (!StringUtils.isNoneBlank(ylzMedicalRelationInvoiceDO.getInvoiceCode())){
|
|
|
throw new Exception("发票代码为空,不能冲红");
|
|
|
}
|
|
|
order.put("invoiceType","2");//开票类型:1:蓝票;2:红票 (全电发票暂不支持红票)
|
|
|
order.put("invoiceCode","");//
|
|
|
order.put("invoiceNum","");//
|
|
|
ylzMedicalRelationInvoiceDO.setStatus(2);
|
|
|
}
|
|
|
order.put("invoiceLine","p");
|
|
|
order.put("specificFactor","0");
|
|
|
order.put("proxyInvoiceFlag","0");
|
|
|
JSONArray array = new JSONArray();
|
|
|
for (YlzMedicalMxDO mxDO:medicalMxDOS){
|
|
|
JSONObject invoice = new JSONObject();
|
|
|
if (flag==2){
|
|
|
invoice.put("taxExcludedAmount","-"+mxDO.getTotalMoney());
|
|
|
invoice.put("taxIncludedAmount","-"+mxDO.getTotalMoney());
|
|
|
invoice.put("num","-"+mxDO.getAmount());//数量
|
|
|
}else {
|
|
|
invoice.put("taxExcludedAmount",mxDO.getTotalMoney());
|
|
|
invoice.put("taxIncludedAmount",mxDO.getTotalMoney());
|
|
|
invoice.put("num",mxDO.getAmount());//数量
|
|
|
}
|
|
|
invoice.put("goodsName",goodsname);
|
|
|
invoice.put("withTaxFlag",0);//单价含税标志:0:不含税,1:含税
|
|
|
invoice.put("taxRate",taxrate);//税率
|
|
|
invoice.put("invoiceLineProperty",0);//发票行性质:0,正常行;1,折扣行;2,被折扣行,红票只有正常行
|
|
|
invoice.put("price",mxDO.getTotalMoney());//单价(精确到小数点后8位),当单价(price)为空时,数量(num)也必须为空;(price)为空时,含税金额(taxIncludedAmount)、不含税金额(taxExcludedAmount)、税额(tax)都不能为空
|
|
|
invoice.put("unit",mxDO.getChargeUnit());//单位
|
|
|
invoice.put("specType",mxDO.getSpecificationType());//规格型号
|
|
|
invoice.put("tax",0);//
|
|
|
invoice.put("zeroRateFlag",3);//
|
|
|
invoice.put("deduction",0);
|
|
|
array.add(invoice);
|
|
|
}
|
|
|
order.put("invoiceDetail",array);
|
|
|
object.put("order",order);
|
|
|
content = object.toJSONString();
|
|
|
String url = "https://sdk.nuonuo.com/open/v1/services"; // SDK请求地址
|
|
|
String senid = UUID.randomUUID().toString().replace("-", ""); // 唯一标识,32位随机码,无需修改,保持默认即可
|
|
|
logger.info("开具电子发票入参数"+content+"=============="+"url:"+url+"token:"+token+"taxnum:"+taxnum+"appKey:"+appKey+"appSecret:"+appSecret);
|
|
|
String result = sdk.sendPostSyncRequest(url, senid, appKey, appSecret, token, taxnum, method, content);
|
|
|
JSONObject jsonObject = JSONObject.parseObject(result);
|
|
|
if (jsonObject.getString("code").equalsIgnoreCase("E0000")){
|
|
|
JSONObject res = jsonObject.getJSONObject("result");
|
|
|
ylzMedicalRelationInvoiceDO.setInvoiceSerialNum(res.getString("invoiceSerialNum"));
|
|
|
ylzMedicalRelationInvoiceDO.setUpdateTime(new Date());
|
|
|
ylzMedicalRelationInvoiceDO.setMedicalId(medicalRelationDO.getId());
|
|
|
ylzMedicailRelationInvoiceDao.save(ylzMedicalRelationInvoiceDO);
|
|
|
}
|
|
|
System.out.println("开具电子发票结果:"+result);
|
|
|
return result;
|
|
|
}
|
|
|
|
|
|
|
|
|
/**
|
|
|
* 用户作废已开票成功的发票
|
|
|
*
|
|
|
* @return
|
|
|
*/
|
|
|
public String invoiceCancellation(String invoiceId,String invoiceNo,String invoiceCode) throws Exception {
|
|
|
getHisDzfpInfo();
|
|
|
NNOpenSDK sdk = NNOpenSDK.getIntance();
|
|
|
String taxnum = salertaxnum; // 授权企业税号
|
|
|
String appKey = dzfpAppKey;
|
|
|
String appSecret = dzfpAppSecret;
|
|
|
String method = "nuonuo.electronInvoice.invoiceCancellation"; // API方法名
|
|
|
String token = dzfpToken; // 访问令牌
|
|
|
JSONObject object = new JSONObject();
|
|
|
object.put("invoiceId",invoiceId);//发票流水号
|
|
|
object.put("invoiceNo",invoiceNo);//发票代码
|
|
|
object.put("invoiceCode",invoiceCode);//发票号码
|
|
|
String content = object.toJSONString();
|
|
|
String url = "https://sdk.nuonuo.com/open/v1/services"; // SDK请求地址
|
|
|
String senid = UUID.randomUUID().toString().replace("-", ""); // 唯一标识,32位随机码,无需修改,保持默认即可
|
|
|
logger.info("作废电子发票入参数"+content+"=============="+"url:"+url+"token:"+token+"taxnum:"+taxnum+"appKey:"+appKey+"appSecret:"+appSecret);
|
|
|
String result = sdk.sendPostSyncRequest(url, senid, appKey, appSecret, token, taxnum, method, content);
|
|
|
System.out.println("作废电子发票结果:"+result);
|
|
|
return result;
|
|
|
}
|
|
|
|
|
|
|
|
|
/**
|
|
|
* 调用该接口获取发票开票结果等有关发票信息,部分字段需要配置才返回
|
|
|
* @return
|
|
|
*/
|
|
|
public YlzMedicalRelationInvoiceDO queryInvoiceResult(String outpatientId) throws Exception {
|
|
|
List<YlzMedicalRelationDO> medicalRelationDOS = ylzMedicailRelationDao.findByOutpatientNoStatus(outpatientId);
|
|
|
YlzMedicalRelationDO medicalRelationDO = new YlzMedicalRelationDO();
|
|
|
if (medicalRelationDOS!=null&&medicalRelationDOS.size()!=0){
|
|
|
medicalRelationDO = medicalRelationDOS.get(0);
|
|
|
}
|
|
|
YlzMedicalRelationInvoiceDO ylzMedicalRelationInvoiceDO = ylzMedicailRelationInvoiceDao.findByMedicalId(medicalRelationDO.getId());
|
|
|
if (ylzMedicalRelationInvoiceDO==null){
|
|
|
ylzMedicalRelationInvoiceDO = new YlzMedicalRelationInvoiceDO();
|
|
|
ylzMedicalRelationInvoiceDO.setMedicalId(medicalRelationDO.getId());
|
|
|
ylzMedicalRelationInvoiceDO.setStatus(1);
|
|
|
}
|
|
|
getHisDzfpInfo();
|
|
|
NNOpenSDK sdk = NNOpenSDK.getIntance();
|
|
|
String taxnum = salertaxnum; // 授权企业税号
|
|
|
String appKey = dzfpAppKey;
|
|
|
String appSecret = dzfpAppSecret;
|
|
|
String token = dzfpToken; // 访问令牌
|
|
|
String method = "nuonuo.ElectronInvoice.queryInvoiceResult"; // API方法名
|
|
|
JSONObject object = new JSONObject();
|
|
|
object.put("isOfferInvoiceDetail",1);//是否需要提供明细(不填默认false)
|
|
|
JSONArray orderNos= new JSONArray();
|
|
|
orderNos.add(medicalRelationDO.getHisSettleNo());
|
|
|
object.put("orderNos",orderNos);//订单编号
|
|
|
JSONArray serialNos = new JSONArray();
|
|
|
object.put("serialNos",serialNos);//发票流水号,两字段二选一,同时存在以流水号为准
|
|
|
String content = object.toJSONString();
|
|
|
String url = "https://sdk.nuonuo.com/open/v1/services"; // SDK请求地址
|
|
|
String senid = UUID.randomUUID().toString().replace("-", ""); // 唯一标识,32位随机码,无需修改,保持默认即可
|
|
|
logger.info("查询电子发票入参数"+content+"=============="+"url:"+url+"token:"+token+"taxnum:"+taxnum+"appKey:"+appKey+"appSecret:"+appSecret);
|
|
|
String result = sdk.sendPostSyncRequest(url, senid, appKey, appSecret, token, taxnum, method, content);
|
|
|
System.out.println("查询电子发票结果"+result);
|
|
|
JSONObject jsonObject = JSONObject.parseObject(result);
|
|
|
if (jsonObject.getString("code").equalsIgnoreCase("E0000")){
|
|
|
JSONArray array = jsonObject.getJSONArray("result");
|
|
|
if (array!=null&&array.size()!=0){
|
|
|
JSONObject res = array.getJSONObject(0);
|
|
|
ylzMedicalRelationInvoiceDO.setInvoiceCode(res.getString("invoiceCode"));
|
|
|
ylzMedicalRelationInvoiceDO.setInvoicePdf(res.getString("pdfUrl"));
|
|
|
ylzMedicalRelationInvoiceDO.setInvoiceNo(res.getString("invoiceNo"));
|
|
|
ylzMedicalRelationInvoiceDO.setResult(result);
|
|
|
ylzMedicalRelationInvoiceDO.setCreateTime(new Date());
|
|
|
ylzMedicailRelationInvoiceDao.save(ylzMedicalRelationInvoiceDO);
|
|
|
}
|
|
|
}
|
|
|
return ylzMedicalRelationInvoiceDO;
|
|
|
}
|
|
|
}
|