| | |
| | | import com.alibaba.fastjson.JSONObject; |
| | | import com.alibaba.fastjson.serializer.SerializerFeature; |
| | | import com.java110.dto.fee.FeeDetailDto; |
| | | import com.java110.entity.order.Business; |
| | | import com.java110.dto.system.Business; |
| | | import com.java110.intf.community.ICommunityInnerServiceSMO; |
| | | import com.java110.intf.fee.IFeeDetailInnerServiceSMO; |
| | | import com.java110.intf.user.IOwnerAppUserInnerServiceSMO; |
| | |
| | | import com.java110.po.fee.PayFeeDetailPo; |
| | | import com.java110.utils.util.Assert; |
| | | import org.slf4j.Logger; |
| | | import org.slf4j.LoggerFactory; |
| | | import com.java110.core.log.LoggerFactory; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.stereotype.Component; |
| | | |
| | |
| | | businessPayFeeDetails = (JSONArray) bObj; |
| | | } |
| | | } else { |
| | | return; |
| | | if (data instanceof JSONObject) { |
| | | businessPayFeeDetails = new JSONArray(); |
| | | businessPayFeeDetails.add(data); |
| | | } |
| | | } |
| | | |
| | | if (businessPayFeeDetails == null) { |
| | |
| | | * @param businessPayFeeDetail |
| | | */ |
| | | private void doPayFeeDetail(Business business, JSONObject businessPayFeeDetail) { |
| | | // if(businessPayFeeDetail.containsKey("receivedAmount") |
| | | // && businessPayFeeDetail.getDoubleValue("receivedAmount")<0){ |
| | | // return ; |
| | | // } |
| | | payFeeDetailToMonthImpl.doPayFeeDetail(business,businessPayFeeDetail); |
| | | } |
| | | |