|
|
|
@ -9,6 +9,7 @@ import javax.annotation.Resource; |
|
|
|
|
|
|
|
|
|
import com.dxhy.common.util.AmountFormatUtil; |
|
|
|
|
import com.dxhy.core.service.export.PoolPaperService; |
|
|
|
|
import org.apache.commons.lang3.StringUtils; |
|
|
|
|
import org.springframework.beans.factory.annotation.Value; |
|
|
|
|
import org.springframework.stereotype.Service; |
|
|
|
|
|
|
|
|
@ -202,7 +203,7 @@ public class RzFpxxServiceImpl extends MpBaseServiceImpl<FpxxZhDao, FpRzRespVO> |
|
|
|
|
fpVo.setCompCode(vo.getCompCode()); |
|
|
|
|
fpVo.setBzdh(vo.getBzdh()); |
|
|
|
|
fpVo.setBzr(vo.getBzr()); |
|
|
|
|
fpVo.setPostingTime(vo.getPostingTime().replace("T"," ")); |
|
|
|
|
fpVo.setPostingTime(StringUtils.isNotEmpty(vo.getPostingTime()) ? vo.getPostingTime().replace("T"," ") : ""); |
|
|
|
|
fpVo.setImageNumber(vo.getImageNumber()); |
|
|
|
|
if("1".equals(vo.getInaccountStatus())){ |
|
|
|
|
fpVo.setInAccountStatus("已入账"); |
|
|
|
|