package com.java110.fee.cmd.fee;
|
|
import com.alibaba.fastjson.JSONArray;
|
import com.alibaba.fastjson.JSONObject;
|
import com.java110.core.annotation.Java110Cmd;
|
import com.java110.core.context.ICmdDataFlowContext;
|
import com.java110.core.event.cmd.Cmd;
|
import com.java110.core.event.cmd.CmdEvent;
|
import com.java110.core.factory.CommunitySettingFactory;
|
import com.java110.core.factory.GenerateCodeFactory;
|
import com.java110.core.log.LoggerFactory;
|
import com.java110.core.smo.IComputeFeeSMO;
|
import com.java110.dto.account.AccountDetailDto;
|
import com.java110.dto.account.AccountDto;
|
import com.java110.dto.community.CommunityDto;
|
import com.java110.dto.coupon.CouponUserDto;
|
import com.java110.dto.fee.FeeAttrDto;
|
import com.java110.dto.fee.FeeConfigDto;
|
import com.java110.dto.fee.FeeDetailDto;
|
import com.java110.dto.fee.FeeDto;
|
import com.java110.dto.fee.ComputeDiscountDto;
|
import com.java110.dto.payment.PaymentPoolDto;
|
import com.java110.dto.payment.PaymentPoolValueDto;
|
import com.java110.dto.wechat.SmallWeChatDto;
|
import com.java110.intf.acct.*;
|
import com.java110.intf.community.ICommunityV1InnerServiceSMO;
|
import com.java110.intf.community.IRepairUserInnerServiceSMO;
|
import com.java110.intf.community.IRoomInnerServiceSMO;
|
import com.java110.intf.fee.*;
|
import com.java110.intf.user.IOwnerCarInnerServiceSMO;
|
import com.java110.po.account.AccountDetailPo;
|
import com.java110.po.account.AccountPo;
|
import com.java110.utils.cache.CommonCache;
|
import com.java110.utils.cache.MappingCache;
|
import com.java110.utils.constant.MappingConstant;
|
import com.java110.utils.constant.ResponseConstant;
|
import com.java110.utils.constant.WechatConstant;
|
import com.java110.utils.exception.CmdException;
|
import com.java110.utils.exception.ListenerExecuteException;
|
import com.java110.utils.util.*;
|
import org.slf4j.Logger;
|
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.http.HttpStatus;
|
import org.springframework.http.ResponseEntity;
|
|
import java.math.BigDecimal;
|
import java.text.ParseException;
|
import java.text.SimpleDateFormat;
|
import java.util.ArrayList;
|
import java.util.Date;
|
import java.util.List;
|
import java.util.Map;
|
import java.util.stream.Collectors;
|
|
/**
|
* 类表述:删除
|
* 服务编码:feePrintPage.deleteFeePrintPage
|
* 请求路劲:/app/feePrintPage.DeleteFeePrintPage
|
* add by 吴学文 at 2021-09-16 22:26:04 mail: 928255095@qq.com
|
* open source address: https://gitee.com/wuxw7/MicroCommunity
|
* 官网:http://www.homecommunity.cn
|
* 温馨提示:如果您对此文件进行修改 请不要删除原有作者及注释信息,请补充您的 修改的原因以及联系邮箱如下
|
* // modify by 张三 at 2021-09-12 第10行在某种场景下存在某种bug 需要修复,注释10至20行 加入 20行至30行
|
*/
|
@Java110Cmd(serviceCode = "fee.payFeePre")
|
public class PayFeePreCmd extends Cmd {
|
|
private static Logger logger = LoggerFactory.getLogger(PayFeePreCmd.class);
|
|
@Autowired
|
private IFeeInnerServiceSMO feeInnerServiceSMOImpl;
|
|
@Autowired
|
private IRoomInnerServiceSMO roomInnerServiceSMOImpl;
|
|
@Autowired
|
private IPaymentPoolV1InnerServiceSMO paymentPoolV1InnerServiceSMOImpl;
|
|
@Autowired
|
private IPaymentPoolValueV1InnerServiceSMO paymentPoolValueV1InnerServiceSMOImpl;
|
|
@Autowired
|
private IFeeConfigInnerServiceSMO feeConfigInnerServiceSMOImpl;
|
|
@Autowired
|
private IFeeDiscountInnerServiceSMO feeDiscountInnerServiceSMOImpl;
|
|
@Autowired
|
private IFeeAttrInnerServiceSMO feeAttrInnerServiceSMOImpl;
|
|
@Autowired
|
private IRepairUserInnerServiceSMO repairUserInnerServiceSMO;
|
|
@Autowired
|
private IOwnerCarInnerServiceSMO ownerCarInnerServiceSMOImpl;
|
|
@Autowired
|
private IApplyRoomDiscountInnerServiceSMO applyRoomDiscountInnerServiceSMOImpl;
|
|
@Autowired
|
private IFeeDetailInnerServiceSMO iFeeDetailInnerServiceSMO;
|
|
@Autowired
|
private IComputeFeeSMO computeFeeSMOImpl;
|
|
@Autowired
|
private ICouponUserV1InnerServiceSMO couponUserV1InnerServiceSMOImpl;
|
|
@Autowired
|
private IAccountInnerServiceSMO accountInnerServiceSMOImpl;
|
|
@Autowired
|
private IAccountDetailInnerServiceSMO accountDetailInnerServiceSMOImpl;
|
|
@Autowired
|
private ICommunityV1InnerServiceSMO communityV1InnerServiceSMOImpl;
|
|
@Autowired
|
private IFeeAccountDetailServiceSMO feeAccountDetailServiceSMOImpl;
|
|
//键(积分账户最大使用积分)
|
public static final String MAXIMUM_NUMBER = "MAXIMUM_NUMBER";
|
|
//键(积分账户抵扣比例)
|
public static final String DEDUCTION_PROPORTION = "DEDUCTION_PROPORTION";
|
|
@Override
|
public void validate(CmdEvent event, ICmdDataFlowContext cmdDataFlowContext, JSONObject reqJson) {
|
Assert.jsonObjectHaveKey(reqJson, "communityId", "请求报文中未包含communityId节点");
|
Assert.jsonObjectHaveKey(reqJson, "cycles", "请求报文中未包含cycles节点");
|
Assert.jsonObjectHaveKey(reqJson, "receivedAmount", "请求报文中未包含receivedAmount节点");
|
Assert.jsonObjectHaveKey(reqJson, "feeId", "请求报文中未包含feeId节点");
|
Assert.jsonObjectHaveKey(reqJson, "appId", "请求报文中未包含appId节点");
|
|
Assert.hasLength(reqJson.getString("communityId"), "小区ID不能为空");
|
Assert.hasLength(reqJson.getString("cycles"), "周期不能为空");
|
Assert.hasLength(reqJson.getString("receivedAmount"), "实收金额不能为空");
|
Assert.hasLength(reqJson.getString("feeId"), "费用ID不能为空");
|
Assert.hasLength(reqJson.getString("appId"), "appId不能为空");
|
|
|
//判断是否 费用状态为缴费结束
|
FeeDto feeDto = new FeeDto();
|
feeDto.setFeeId(reqJson.getString("feeId"));
|
feeDto.setCommunityId(reqJson.getString("communityId"));
|
List<FeeDto> feeDtos = feeInnerServiceSMOImpl.queryFees(feeDto);
|
|
Assert.listOnlyOne(feeDtos, "传入费用ID错误");
|
|
feeDto = feeDtos.get(0);
|
|
if (FeeDto.STATE_FINISH.equals(feeDto.getState())) {
|
throw new IllegalArgumentException("收费已经结束,不能再缴费");
|
}
|
|
Date endTime = feeDto.getEndTime();
|
|
FeeConfigDto feeConfigDto = new FeeConfigDto();
|
feeConfigDto.setConfigId(feeDto.getConfigId());
|
feeConfigDto.setCommunityId(reqJson.getString("communityId"));
|
List<FeeConfigDto> feeConfigDtos = feeConfigInnerServiceSMOImpl.queryFeeConfigs(feeConfigDto);
|
|
if (feeConfigDtos != null && feeConfigDtos.size() == 1) {
|
try {
|
Date configEndTime = DateUtil.getDateFromString(feeConfigDtos.get(0).getEndTime(), DateUtil.DATE_FORMATE_STRING_A);
|
configEndTime = DateUtil.stepDay(configEndTime, 5);
|
|
Date newDate = DateUtil.stepMonth(endTime, reqJson.getInteger("cycles"));
|
|
if (newDate.getTime() > configEndTime.getTime()) {
|
throw new IllegalArgumentException("缴费周期超过 缴费结束时间");
|
}
|
|
} catch (Exception e) {
|
logger.error("比较费用日期失败", e);
|
}
|
}
|
|
}
|
|
@Override
|
public void doCmd(CmdEvent event, ICmdDataFlowContext cmdDataFlowContext, JSONObject reqJson) throws CmdException {
|
logger.debug("ServiceDataFlowEvent : {}", event);
|
|
String userId = cmdDataFlowContext.getReqHeaders().get("user-id");
|
|
String appId = cmdDataFlowContext.getReqHeaders().get("app-id");
|
reqJson.put("appId", appId);
|
reqJson.put("userId", userId);
|
|
FeeDto feeDto = new FeeDto();
|
feeDto.setFeeId(reqJson.getString("feeId"));
|
feeDto.setCommunityId(reqJson.getString("communityId"));
|
List<FeeDto> feeDtos = feeInnerServiceSMOImpl.queryFees(feeDto);
|
if (feeDtos == null || feeDtos.size() != 1) {
|
throw new ListenerExecuteException(ResponseConstant.RESULT_CODE_ERROR, "查询费用信息失败,未查到数据或查到多条数据");
|
}
|
feeDto = feeDtos.get(0);
|
reqJson.put("feeTypeCd", feeDto.getFeeTypeCd());
|
reqJson.put("feeId", feeDto.getFeeId());
|
|
Map feePriceAll = computeFeeSMOImpl.getFeePrice(feeDto);
|
//todo 计算应收
|
BigDecimal receivableAmount = new BigDecimal(feePriceAll.get("feePrice").toString());
|
BigDecimal cycles = new BigDecimal(Double.parseDouble(reqJson.getString("cycles")));
|
double tmpReceivableAmount = cycles.multiply(receivableAmount).setScale(4, BigDecimal.ROUND_HALF_EVEN).doubleValue();
|
tmpReceivableAmount = MoneyUtil.computePriceScale(tmpReceivableAmount, feeDto.getScale(), Integer.parseInt(feeDto.getDecimalPlace()));
|
|
JSONObject paramOut = new JSONObject();
|
paramOut.put("receivableAmount", tmpReceivableAmount);
|
SmallWeChatDto smallWeChatDto = get(reqJson.getString("communityId"));
|
paramOut.put("oId", smallWeChatDto.getOrderPre() + GenerateCodeFactory.getGeneratorId(GenerateCodeFactory.CODE_PREFIX_oId));
|
|
|
//实收金额
|
BigDecimal tmpReceivedAmout = new BigDecimal(tmpReceivableAmount);
|
|
//判断是否有折扣情况
|
double discountPrice = judgeDiscount(reqJson);
|
tmpReceivedAmout = tmpReceivedAmout.subtract(new BigDecimal(discountPrice)).setScale(2, BigDecimal.ROUND_HALF_EVEN);
|
//2.0 考虑账户抵消
|
double accountPrice = judgeAccount(reqJson);
|
tmpReceivedAmout = tmpReceivedAmout.subtract(new BigDecimal(accountPrice)).setScale(2, BigDecimal.ROUND_HALF_EVEN);
|
|
//3.0 考虑优惠卷
|
double couponPrice = checkCouponUser(reqJson);
|
tmpReceivedAmout = tmpReceivedAmout.subtract(new BigDecimal(couponPrice)).setScale(2, BigDecimal.ROUND_HALF_EVEN);
|
|
|
double receivedAmount = tmpReceivedAmout.doubleValue();
|
//所有 优惠折扣计算完后,如果总金额小于等于0,则返回总扣款为0
|
if (receivedAmount <= 0) {
|
receivedAmount = 0.0;
|
}
|
//todo 小数点处理
|
receivedAmount = MoneyUtil.computePriceScale(
|
receivedAmount,
|
feeDto.getScale(),
|
Integer.parseInt(feeDto.getDecimalPlace())
|
);
|
|
paramOut.put("receivedAmount", receivedAmount);
|
|
String feeName = getObjName(feeDto);
|
paramOut.put("feeName", feeName);
|
|
ResponseEntity<String> responseEntity = new ResponseEntity<>(paramOut.toJSONString(), HttpStatus.OK);
|
reqJson.putAll(paramOut);
|
CommonCache.setValue("payFeePre" + paramOut.getString("oId"), reqJson.toJSONString(), 24 * 60 * 60);
|
cmdDataFlowContext.setResponseEntity(responseEntity);
|
}
|
|
public SmallWeChatDto get(String community){
|
SmallWeChatDto smallWeChatDto = new SmallWeChatDto();
|
//由于富有支付方式要从数据库里面取值,所以此处要查询
|
PaymentPoolDto paymentPoolDto = new PaymentPoolDto();
|
// paymentPoolDto.setCommunityId(community);
|
paymentPoolDto.setPage(1);
|
paymentPoolDto.setRow(10);
|
List<PaymentPoolDto> paymentPoolDtos = paymentPoolV1InnerServiceSMOImpl.queryPaymentPools(paymentPoolDto);
|
List<PaymentPoolDto> collect = paymentPoolDtos.stream().filter(e -> e.getPaymentType().equals("FUIOU")).collect(Collectors.toList());
|
PaymentPoolValueDto paymentPoolValueDto = new PaymentPoolValueDto();
|
paymentPoolValueDto.setPpId(collect.get(0).getPpId());
|
paymentPoolValueDto.setCommunityId(community);
|
List<PaymentPoolValueDto> values = paymentPoolValueV1InnerServiceSMOImpl.queryPaymentPoolValues(paymentPoolValueDto);
|
Map<String, List<PaymentPoolValueDto>> payMap = values.stream().collect(Collectors.groupingBy(PaymentPoolValueDto::getColumnKey));
|
if(payMap.containsKey("FUIOU_APP_ID")){
|
smallWeChatDto.setAppId(payMap.get("FUIOU_APP_ID").get(0).getColumnValue());
|
}else{
|
smallWeChatDto.setAppId(MappingCache.getValue(WechatConstant.WECHAT_DOMAIN, "appId"));
|
}
|
if(payMap.containsKey("FUIOU_MCHNT_KEY")){
|
smallWeChatDto.setAppSecret(payMap.get("FUIOU_MCHNT_KEY").get(0).getColumnValue());
|
}else{
|
smallWeChatDto.setAppSecret(MappingCache.getValue(WechatConstant.WECHAT_DOMAIN, "appSecret"));
|
}
|
if(payMap.containsKey("FUIOU_MERCHANT_ID")){
|
smallWeChatDto.setMchId(payMap.get("FUIOU_MERCHANT_ID").get(0).getColumnValue());
|
}else{
|
smallWeChatDto.setMchId(MappingCache.getValue(MappingConstant.WECHAT_STORE_DOMAIN, "mchId"));
|
}
|
if(payMap.containsKey("FUIOU_ORDER_PRE")){
|
smallWeChatDto.setOrderPre(payMap.get("FUIOU_ORDER_PRE").get(0).getColumnValue());
|
}else{
|
smallWeChatDto.setOrderPre("1066");
|
}
|
return smallWeChatDto;
|
}
|
|
private String getObjName(FeeDto feeDto) {
|
//查询小区名称
|
CommunityDto communityDto = new CommunityDto();
|
communityDto.setCommunityId(feeDto.getCommunityId());
|
List<CommunityDto> communityDtos = communityV1InnerServiceSMOImpl.queryCommunitys(communityDto);
|
|
Assert.listOnlyOne(communityDtos, "小区不存在");
|
|
List<FeeAttrDto> feeAttrDtos = feeDto.getFeeAttrDtos();
|
if (feeAttrDtos == null || feeAttrDtos.size() < 1) {
|
return communityDtos.get(0).getName() + "-" + feeDto.getFeeName();
|
}
|
|
for (FeeAttrDto feeAttrDto : feeAttrDtos) {
|
if (FeeAttrDto.SPEC_CD_PAY_OBJECT_NAME.equals(feeAttrDto.getSpecCd())) {
|
return communityDtos.get(0).getName() + "-" + feeAttrDto.getValue() + "-" + feeDto.getFeeName();
|
}
|
}
|
|
return communityDtos.get(0).getName() + "-" + feeDto.getFeeName();
|
}
|
|
/**
|
* 考虑账户抵消
|
*
|
* @param reqJson
|
*/
|
private double judgeAccount(JSONObject reqJson) {
|
if (!reqJson.containsKey("deductionAmount")) {
|
reqJson.put("deductionAmount", 0.0);
|
return 0.0;
|
}
|
|
double deductionAmount = reqJson.getDouble("deductionAmount");
|
if (deductionAmount <= 0) {
|
reqJson.put("deductionAmount", 0.0);
|
return 0.0;
|
}
|
|
if (!reqJson.containsKey("selectUserAccount")) {
|
reqJson.put("deductionAmount", 0.0);
|
return 0.0;
|
}
|
|
JSONArray selectUserAccount = reqJson.getJSONArray("selectUserAccount");
|
if (selectUserAccount == null || selectUserAccount.size() < 1) {
|
reqJson.put("deductionAmount", 0.0);
|
return 0.0;
|
}
|
List<String> acctIds = new ArrayList<>();
|
for (int userAccountIndex = 0; userAccountIndex < selectUserAccount.size(); userAccountIndex++) {
|
acctIds.add(selectUserAccount.getJSONObject(userAccountIndex).getString("acctId"));
|
}
|
|
AccountDto accountDto = new AccountDto();
|
accountDto.setAcctIds(acctIds.toArray(new String[acctIds.size()]));
|
List<AccountDto> accountDtos = accountInnerServiceSMOImpl.queryAccounts(accountDto);
|
|
if (ListUtil.isNull(accountDtos)) {
|
reqJson.put("deductionAmount", 0.0);
|
return 0.0;
|
}
|
BigDecimal money = new BigDecimal(0);
|
BigDecimal cashMoney = new BigDecimal("0.00"); //抵扣的现金账户
|
BigDecimal pointsMoney = new BigDecimal(0.00); //抵扣的积分数
|
BigDecimal pointsMoneyNow = new BigDecimal(0.00); //积分转换为现金的实际数
|
BigDecimal totalAccountAmount = new BigDecimal(0.00);
|
//获取应收金额
|
BigDecimal dedAmount = new BigDecimal("0.00");
|
if (reqJson.containsKey("receivedMoney") && !StringUtil.isEmpty(reqJson.getString("receivedMoney"))) {
|
dedAmount = new BigDecimal(reqJson.getString("receivedMoney"));
|
} else {
|
dedAmount = new BigDecimal(reqJson.getString("deductionAmount"));
|
}
|
for (AccountDto tmpAccountDto : accountDtos) {
|
int compare = dedAmount.compareTo(BigDecimal.ZERO);
|
if (AccountDto.ACCT_TYPE_CASH.equals(tmpAccountDto.getAcctType()) && compare > 0) { //现金账户
|
//账户金额
|
BigDecimal amount = new BigDecimal(tmpAccountDto.getAmount());
|
int flag = amount.compareTo(dedAmount);
|
if (flag == 1 || flag == 0) { //现金账户大于应收金额,或现金账户等于应收金额,就用应收金额抵扣
|
cashMoney = dedAmount;
|
dedAmount = new BigDecimal("0.0");
|
}
|
if (flag == -1) { //现金账户小于应收金额,就用现金账户抵扣
|
cashMoney = amount;
|
dedAmount = dedAmount.subtract(amount);
|
}
|
money = money.add(cashMoney);
|
} else if ("2004".equals(tmpAccountDto.getAcctType()) && compare > 0) { //积分账户
|
//积分账户最大使用积分
|
String maximumNumber = CommunitySettingFactory.getValue(reqJson.getString("communityId"), MAXIMUM_NUMBER);
|
BigDecimal maxNumber = new BigDecimal(maximumNumber);
|
//积分账户抵扣比例
|
String deductionProportion = CommunitySettingFactory.getValue(reqJson.getString("communityId"), DEDUCTION_PROPORTION);
|
BigDecimal deductionProportionNum = new BigDecimal(deductionProportion);
|
//积分账户金额
|
BigDecimal amount = new BigDecimal(tmpAccountDto.getAmount());
|
int flag = amount.compareTo(maxNumber);
|
if (flag == -1) { //积分账户金额小于积分账户最大使用积分,就用积分账户抵扣
|
pointsMoney = amount;
|
} else if (flag == 0) { //积分账户金额等于积分账户最大使用积分,就用积分账户抵扣
|
pointsMoney = amount;
|
} else if (flag == 1) { //积分账户金额大于积分账户最大使用积分,就用最大使用积分抵扣
|
pointsMoney = maxNumber;
|
}
|
//计算抵扣积分抵扣的金额 积分除以比例等于账户能抵扣的钱数
|
BigDecimal integralMoney = pointsMoney.divide(deductionProportionNum);
|
BigDecimal redepositAmount = new BigDecimal("0.00");
|
int count = integralMoney.compareTo(dedAmount);
|
if (count == 1 || count == 0) { //积分抵扣的金额大于应收金额,或积分抵扣的金额等于应收金额,就用应收金额抵扣
|
redepositAmount = dedAmount;
|
pointsMoney = dedAmount.multiply(deductionProportionNum);//应收金额乘以抵扣比例即为需要扣除的积分数
|
pointsMoneyNow = dedAmount;
|
dedAmount = new BigDecimal("0.0");
|
}
|
if (count == -1) { //积分抵扣的金额小于应收金额,就用积分抵扣的金额抵扣
|
redepositAmount = integralMoney;
|
dedAmount = dedAmount.subtract(integralMoney);//剩余应收金额
|
pointsMoneyNow = integralMoney;
|
}
|
money = money.add(redepositAmount);
|
}
|
}
|
reqJson.put("deductionAmount", money.doubleValue());
|
reqJson.put("cashMoney", cashMoney); //现金抵扣
|
reqJson.put("pointsMoney", pointsMoney); //积分抵扣扣除数
|
reqJson.put("pointsMoneyNow", pointsMoneyNow); //积分抵扣 实际现金数
|
reqJson.put("selectUserAccount", BeanConvertUtil.beanCovertJSONArray(accountDtos));
|
return money.doubleValue();
|
}
|
|
private double checkCouponUser(JSONObject paramObj) {
|
JSONArray couponList = paramObj.getJSONArray("couponList");
|
BigDecimal couponPrice = new BigDecimal(0.0);
|
List<String> couponIds = new ArrayList<String>();
|
|
if (couponList == null || couponList.size() < 1) {
|
paramObj.put("couponPrice", couponPrice.doubleValue());
|
paramObj.put("couponUserDtos", new JSONArray()); //这里考虑空
|
return couponPrice.doubleValue();
|
}
|
for (int couponIndex = 0; couponIndex < couponList.size(); couponIndex++) {
|
couponIds.add(couponList.getJSONObject(couponIndex).getString("couponId"));
|
}
|
CouponUserDto couponUserDto = new CouponUserDto();
|
couponUserDto.setCouponIds(couponIds.toArray(new String[couponIds.size()]));
|
List<CouponUserDto> couponUserDtos = couponUserV1InnerServiceSMOImpl.queryCouponUsers(couponUserDto);
|
if (couponUserDtos == null || couponUserDtos.size() < 1) {
|
paramObj.put("couponPrice", couponPrice.doubleValue());
|
return couponPrice.doubleValue();
|
}
|
for (CouponUserDto couponUser : couponUserDtos) {
|
//不计算已过期购物券金额
|
if (couponUser.getEndTime().compareTo(DateUtil.getNow(DateUtil.DATE_FORMATE_STRING_B)) >= 0) {
|
couponPrice = couponPrice.add(new BigDecimal(Double.parseDouble(couponUser.getActualPrice())));
|
}
|
}
|
paramObj.put("couponPrice", couponPrice.doubleValue());
|
paramObj.put("couponUserDtos", BeanConvertUtil.beanCovertJSONArray(couponUserDtos));
|
return couponPrice.doubleValue();
|
}
|
|
|
private double judgeDiscount(JSONObject paramObj) {
|
FeeDetailDto feeDetailDto = new FeeDetailDto();
|
feeDetailDto.setCommunityId(paramObj.getString("communityId"));
|
feeDetailDto.setFeeId(paramObj.getString("feeId"));
|
feeDetailDto.setCycles(paramObj.getString("cycles"));
|
feeDetailDto.setPayerObjId(paramObj.getString("payerObjId"));
|
feeDetailDto.setPayerObjType(paramObj.getString("payerObjType"));
|
String endTime = paramObj.getString("endTime"); //获取缴费到期时间
|
SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
|
try {
|
feeDetailDto.setStartTime(simpleDateFormat.parse(endTime));
|
} catch (ParseException e) {
|
throw new CmdException(e.getLocalizedMessage());
|
}
|
|
feeDetailDto.setRow(20);
|
feeDetailDto.setPage(1);
|
List<ComputeDiscountDto> computeDiscountDtos = feeDiscountInnerServiceSMOImpl.computeDiscount(feeDetailDto);
|
|
if (computeDiscountDtos == null || computeDiscountDtos.size() < 1) {
|
paramObj.put("discountPrice", 0.0);
|
return 0.0;
|
}
|
BigDecimal discountPrice = new BigDecimal(0);
|
for (ComputeDiscountDto computeDiscountDto : computeDiscountDtos) {
|
discountPrice = discountPrice.add(new BigDecimal(computeDiscountDto.getDiscountPrice()));
|
}
|
paramObj.put("discountPrice", discountPrice.doubleValue());
|
paramObj.put("computeDiscountDtos", BeanConvertUtil.beanCovertJSONArray(computeDiscountDtos));
|
return discountPrice.doubleValue();
|
}
|
}
|