|
|
@ -71,7 +71,6 @@ import com.yxt.anrui.flowable.api.sysformlink.SysFormLinkFeign; |
|
|
|
import com.yxt.anrui.flowable.api.sysformlink.SysFormLinkTypeEnum; |
|
|
|
import com.yxt.anrui.flowable.api.sysformlink.SysFormStateVo; |
|
|
|
import com.yxt.anrui.flowable.api.sysprourl.SysProUrlFeign; |
|
|
|
import com.yxt.anrui.flowable.api.sysprourl.SysProUrlVo; |
|
|
|
import com.yxt.anrui.flowable.api.utils.ProcDefEnum; |
|
|
|
import com.yxt.anrui.flowable.api.utils.ProcessStateEnum; |
|
|
|
import com.yxt.anrui.flowable.sqloperationsymbol.BusinessVariables; |
|
|
@ -94,7 +93,9 @@ import com.yxt.common.base.utils.PagerUtil; |
|
|
|
import com.yxt.common.core.query.PagerQuery; |
|
|
|
import com.yxt.common.core.result.ResultBean; |
|
|
|
import com.yxt.common.core.vo.PagerVo; |
|
|
|
import com.yxt.messagecenter.api.message.*; |
|
|
|
import com.yxt.messagecenter.api.message.MessageFeign; |
|
|
|
import com.yxt.messagecenter.api.message.MessageFlowVo; |
|
|
|
import com.yxt.messagecenter.api.message.MessageFlowableQuery; |
|
|
|
import org.apache.commons.lang3.StringUtils; |
|
|
|
import org.springframework.beans.BeanUtils; |
|
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
@ -643,7 +644,12 @@ public class BusMainDepositService extends MybatisBaseService<BusMainDepositMapp |
|
|
|
AppBusDepositBusDetailsVo vo = baseMapper.selDepositByBillsid(virtualOrderSid); |
|
|
|
record.setPayName(vo.getPayName()); |
|
|
|
record.setMobile(vo.getMobile()); |
|
|
|
List<BusDepositRecordsVo> depositRecords = busDepositFictitiousService.getDepositRecords(record.getVirtualOrderId()); |
|
|
|
if(StringUtils.isNotBlank(record.getUsedDeposit())){ |
|
|
|
record.setDescribe("订金: " + vo.getDeposit() + "元 已用:" + record.getUsedDeposit() + "元"); |
|
|
|
}else{ |
|
|
|
record.setDescribe("订金: " + vo.getDeposit() + "元 已用:" + "0" + "元"); |
|
|
|
} |
|
|
|
/*List<BusDepositRecordsVo> depositRecords = busDepositFictitiousService.getDepositRecords(record.getVirtualOrderId()); |
|
|
|
if (depositRecords.size() > 0) { |
|
|
|
for (BusDepositRecordsVo depositRecord : depositRecords) { |
|
|
|
String usePrice = depositRecord.getUsePrice(); |
|
|
@ -655,7 +661,7 @@ public class BusMainDepositService extends MybatisBaseService<BusMainDepositMapp |
|
|
|
record.setDescribe("订金: " + vo.getDeposit() + "元 已用:" + bigDecimalAll.toString() + "元"); |
|
|
|
} else { |
|
|
|
record.setDescribe("订金: " + vo.getDeposit() + "元 已用:" + "0" + "元"); |
|
|
|
} |
|
|
|
}*/ |
|
|
|
record.setCarNumber(vo.getCarNumber()); |
|
|
|
} else if (record.getVirtualOrderType().equals("02")) { |
|
|
|
BusDepositVehicleCustomer busDepositVehicleCustomer = baseMapper.selectVehicleCustomerByBillSid(virtualOrderSid); |
|
|
|