|
|
|
@ -8,6 +8,7 @@ import javax.annotation.Resource; |
|
|
|
|
|
|
|
|
|
import com.dxhy.common.constant.DictConstant; |
|
|
|
|
import com.dxhy.common.service.DictdetaServcice; |
|
|
|
|
import org.apache.commons.lang.StringUtils; |
|
|
|
|
import org.springframework.stereotype.Service; |
|
|
|
|
import org.springframework.transaction.annotation.Transactional; |
|
|
|
|
|
|
|
|
@ -656,7 +657,8 @@ public class BaseReceiptOutServiceImpl extends MpBaseServiceImpl<BaseReceiptOutD |
|
|
|
|
QueryWrapper<BaseTDxOutReason> query = new QueryWrapper<>(); |
|
|
|
|
query.eq("reason_code", record.getOutReason()); |
|
|
|
|
BaseTDxOutReason reason = baseTDxOutReasonDao.selectOne(query); |
|
|
|
|
vo.setReason(reason.getOutReason()); |
|
|
|
|
if (StringUtils.isNotEmpty(reason.getOutReason())) |
|
|
|
|
vo.setReason(reason.getOutReason()); |
|
|
|
|
// 认证日期 string类型的长日期转为string类型的短日期
|
|
|
|
|
String certDate = record.getCertDate(); |
|
|
|
|
Date date = new Date(); |
|
|
|
|