|
@@ -0,0 +1,175 @@
|
|
|
+package com.bz.smart_city.service.impl.pay;
|
|
|
+
|
|
|
+import com.bz.smart_city.commom.model.Pagination;
|
|
|
+import com.bz.smart_city.commom.util.UserUtil;
|
|
|
+import com.bz.smart_city.dto.LoginUser;
|
|
|
+import com.bz.smart_city.dto.pay.*;
|
|
|
+import com.bz.smart_city.entity.pay.PayBaseAccount;
|
|
|
+import com.bz.smart_city.entity.pay.PayInvoiceParam;
|
|
|
+import com.bz.smart_city.entity.pay.archives.PayBaseCustomerandmeterrela;
|
|
|
+import com.bz.smart_city.service.pay.PayBaseAccountService;
|
|
|
+import com.bz.smart_city.service.pay.PayBaseConfigService;
|
|
|
+import com.bz.smart_city.service.pay.PayInvoiceParamService;
|
|
|
+import com.bz.smart_city.service.pay.PayPayReceivedService;
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+import org.springframework.scheduling.annotation.Async;
|
|
|
+import org.springframework.stereotype.Service;
|
|
|
+
|
|
|
+import java.math.BigDecimal;
|
|
|
+import java.math.BigInteger;
|
|
|
+import java.util.*;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @ClassName IssueElectronicInvoiceServiceImpl
|
|
|
+ * @Description: TODO
|
|
|
+ * @Author :WYY
|
|
|
+ * @Date 2020/7/28
|
|
|
+ * @Version V1.0
|
|
|
+ **/
|
|
|
+@Service
|
|
|
+public class IssueElectronicInvoiceServiceImpl {
|
|
|
+ @Autowired
|
|
|
+ PayBaseConfigService payBaseConfigService;
|
|
|
+ @Autowired
|
|
|
+ PayInvoiceParamService payInvoiceParamService;
|
|
|
+ @Autowired
|
|
|
+ PayBaseAccountService payBaseAccountService;
|
|
|
+ @Autowired
|
|
|
+ PayPayReceivedService payPayReceivedService;
|
|
|
+
|
|
|
+ private Map<String, String> getPrintParam() {
|
|
|
+ Map<String, String> map = new HashMap<>();
|
|
|
+ //查询销方参数
|
|
|
+ Pagination<PayBaseConfigDto> payBaseConfigDtoPagination = payBaseConfigService.getAll("PRINT_", 1, 15);
|
|
|
+ List<PayBaseConfigDto> payBaseConfigDtos = payBaseConfigDtoPagination.getList();
|
|
|
+ for (PayBaseConfigDto item : payBaseConfigDtos) {
|
|
|
+ switch (item.getName()) {
|
|
|
+ case "PRINT_INVOICE_ADDRESS":
|
|
|
+ map.put("saleAddress", item.getValue());
|
|
|
+ break;
|
|
|
+ case "PRINT_INVOICE_PHONE":
|
|
|
+ map.put("salePhone", item.getValue());
|
|
|
+ break;
|
|
|
+ case "PRINT_INVOICE_ACCEPTERBANKNUM":
|
|
|
+ map.put("saleAccount", item.getValue());
|
|
|
+ break;
|
|
|
+ case "PRINT_INVOICE_IDENTITY":
|
|
|
+ map.put("saleIdentity", item.getValue());
|
|
|
+ break;
|
|
|
+ case "PRINT_EMAIL":
|
|
|
+ map.put("saleEmail", item.getValue());
|
|
|
+ break;
|
|
|
+ case "PRINT_INVOICE_ADMINISTERNUM":
|
|
|
+ map.put("saleCode", item.getValue());
|
|
|
+ break;
|
|
|
+ case "PRINT_INVOICE_CHECKER":
|
|
|
+ map.put("saleChecker", item.getValue());
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return map;
|
|
|
+ }
|
|
|
+
|
|
|
+ private Map<Integer, PayInvoiceParam> getInvoiceParam() {
|
|
|
+ Map<Integer, PayInvoiceParam> map = new HashMap<>();
|
|
|
+ List<PayInvoiceParam> payInvoiceParams = payInvoiceParamService.findList(null);
|
|
|
+ for (PayInvoiceParam item : payInvoiceParams) {
|
|
|
+ map.put(item.getFeetype(), item);
|
|
|
+ }
|
|
|
+ return map;
|
|
|
+ }
|
|
|
+ public BigDecimal saveTwoDecimal(BigDecimal d){
|
|
|
+ BigDecimal a =d.setScale(2,BigDecimal.ROUND_HALF_UP);
|
|
|
+ return a;
|
|
|
+ }
|
|
|
+ public BigDecimal saveEightDecimal(BigDecimal d){
|
|
|
+ BigDecimal a =d.setScale(8,BigDecimal.ROUND_HALF_UP);
|
|
|
+ return a;
|
|
|
+ }
|
|
|
+ /**
|
|
|
+ * @MethodName:
|
|
|
+ * @Description: TODO
|
|
|
+ * @Param: kpType 开票类型 1 正票 2 红票 userCode 用户号 payseriesno 缴费流水号
|
|
|
+ * @Return:
|
|
|
+ * @Author:
|
|
|
+ * @Date: 2020/7/28
|
|
|
+ **/
|
|
|
+ @Async
|
|
|
+ public void requestPrint(String kpType,String userCode,String payseriesno) {
|
|
|
+ LoginUser loginUser = UserUtil.getCurrentUser();
|
|
|
+ String name = loginUser.getName();//操作员姓名
|
|
|
+ BigInteger siteId = BigInteger.valueOf(loginUser.getSiteId());
|
|
|
+ BigInteger customerId = BigInteger.valueOf(loginUser.getCustomerId());
|
|
|
+
|
|
|
+ Map<String, String> invoiceParam = getPrintParam();//发票参数
|
|
|
+ PayEleInvoiceDto payEleInvoiceDto = new PayEleInvoiceDto();
|
|
|
+ payEleInvoiceDto.setIdentity(invoiceParam.get("saleIdentity"));
|
|
|
+
|
|
|
+ Map<Integer, PayInvoiceParam> invoiceMap = getInvoiceParam();//税率相关参数
|
|
|
+
|
|
|
+ PayInvoiceOrderDto payInvoiceOrderDto = new PayInvoiceOrderDto();//开票订单信息
|
|
|
+ payInvoiceOrderDto.setSaleaccount(invoiceParam.get("saleAccount"));//销方银行账号
|
|
|
+ payInvoiceOrderDto.setSalephone(invoiceParam.get("salePhone"));//销方电话
|
|
|
+ payInvoiceOrderDto.setSaleaddress(invoiceParam.get("saleAddress"));//销方地址
|
|
|
+ payInvoiceOrderDto.setSaletaxnum(invoiceParam.get("saleCode"));//销方税号
|
|
|
+ payInvoiceOrderDto.setChecker(invoiceParam.get("saleChecker"));//复核人
|
|
|
+ payInvoiceOrderDto.setClerk(name);//开票人
|
|
|
+ payInvoiceOrderDto.setPayee(name);//收款人
|
|
|
+ payInvoiceOrderDto.setKptype(kpType);//开票类型
|
|
|
+ payInvoiceOrderDto.setTsfs("2");//推送方式
|
|
|
+ //查询购方相关信息
|
|
|
+ PayBaseCustomerandmeterrela payBaseAccount = new PayBaseCustomerandmeterrela();
|
|
|
+ payInvoiceOrderDto.setBuyername(payBaseAccount.getAccountname());//购方名称
|
|
|
+ payInvoiceOrderDto.setPhone(payBaseAccount.getTelephone());//电话
|
|
|
+ payInvoiceOrderDto.setAddress(payBaseAccount.getAddress());//地址
|
|
|
+ payInvoiceOrderDto.setAccount(payBaseAccount.getBankaccount());//银行账号
|
|
|
+ payInvoiceOrderDto.setTelephone(payBaseAccount.getTelephone());//电话
|
|
|
+
|
|
|
+ List<PayInvoiceOrderDetailDto> orderDetailDtos = new ArrayList<>();
|
|
|
+ //循环加入明细
|
|
|
+ List<PayReceivedInvoiceDto> payReceivedInvoiceDtos = payPayReceivedService.findInvoiceReceivedByPayseriesno(payseriesno,loginUser.getSiteId(),loginUser.getCustomerId());
|
|
|
+ //将水费分开,其他类型水费合并todo
|
|
|
+ for (PayReceivedInvoiceDto item:payReceivedInvoiceDtos) {
|
|
|
+ PayInvoiceOrderDetailDto orderDetailDto = new PayInvoiceOrderDetailDto();
|
|
|
+ PayInvoiceParam payInvoiceParam = invoiceMap.get(item.getFeetype());
|
|
|
+ orderDetailDto.setGoodsname(item.getFeetypename());
|
|
|
+ orderDetailDto.setTaxamt(String.valueOf(saveTwoDecimal(item.getReceivedamount())));//含税金额
|
|
|
+ //含税标志为1 含税,税额=round((数量*含税单价)*税率/(1+税率)),2),不含税金额=含税金额-税额
|
|
|
+ //含税标志为0 不含税,税额=round((数量*不含税单价)*税率),2),含税金额=不含税金额+税额
|
|
|
+ BigDecimal taxAmount = new BigDecimal(0);//税额
|
|
|
+ BigDecimal receAmount = item.getReceivedamount();//实收金额
|
|
|
+ BigDecimal rate =new BigDecimal(payInvoiceParam.getTaxrate());//税率
|
|
|
+ if(payInvoiceParam.getPricetax().equals("1"))
|
|
|
+ {
|
|
|
+ taxAmount = saveTwoDecimal(receAmount.multiply(rate).divide(rate.add(BigDecimal.valueOf(1))));
|
|
|
+
|
|
|
+ }else
|
|
|
+ {
|
|
|
+ taxAmount = saveTwoDecimal(receAmount.multiply(rate));
|
|
|
+ }
|
|
|
+ orderDetailDto.setTax(String.valueOf(saveTwoDecimal(taxAmount)));//税额
|
|
|
+ orderDetailDto.setTaxfreeamt(String.valueOf(saveTwoDecimal(receAmount.subtract(taxAmount))));//不含税金额
|
|
|
+ if(item.getPrice()!=null) {
|
|
|
+ orderDetailDto.setPrice(String.valueOf(saveTwoDecimal(item.getPrice())));
|
|
|
+ orderDetailDto.setNum(String.valueOf(saveEightDecimal(receAmount.subtract(taxAmount).divide(saveTwoDecimal(item.getPrice())))));
|
|
|
+ }
|
|
|
+ if(!payInvoiceParam.getZerotax().equals("0")) {
|
|
|
+ orderDetailDto.setLslbs(payInvoiceParam.getZerotax());//零税率标志
|
|
|
+ }
|
|
|
+ orderDetailDto.setZzstsgl(payInvoiceParam.getOthermanger());//增值税特殊管理
|
|
|
+ orderDetailDto.setKce(payInvoiceParam.getKec());//扣除额
|
|
|
+ orderDetailDto.setZsbm(payInvoiceParam.getZsbm());//自行编码
|
|
|
+ orderDetailDto.setUnit(payInvoiceParam.getUnit());//单位
|
|
|
+ orderDetailDto.setSpec(payInvoiceParam.getSpec());//规格型号
|
|
|
+ orderDetailDto.setYhzcbs(payInvoiceParam.getPrepolicy());//优惠政策标识
|
|
|
+ orderDetailDto.setFphxz(payInvoiceParam.getNature());//发票行性质
|
|
|
+ orderDetailDto.setHsbz(payInvoiceParam.getPricetax());//单价含税标志
|
|
|
+ orderDetailDto.setSpbm(payInvoiceParam.getGoodstaxno());//税收分类编码
|
|
|
+ orderDetailDto.setTaxrate(payInvoiceParam.getTaxrate());//税率
|
|
|
+
|
|
|
+ orderDetailDtos.add(orderDetailDto);
|
|
|
+ }
|
|
|
+ payInvoiceOrderDto.setDetail(orderDetailDtos);
|
|
|
+ payEleInvoiceDto.setOrder(payInvoiceOrderDto);
|
|
|
+ }
|
|
|
+}
|