Commit a2ad9541 authored by honghy's avatar honghy Committed by wux

需求95 报价单页面和列表调整

parent 25df501c
......@@ -11,6 +11,7 @@ import cn.iocoder.yudao.framework.security.core.util.SecurityFrameworkUtils;
import cn.iocoder.yudao.module.customer.convert.customerFollowup.CustomerFollowupConvert;
import cn.iocoder.yudao.module.customer.dal.dataobject.customerFollowup.CustomerFollowupDO;
import cn.iocoder.yudao.module.customer.service.customerFollowup.CustomerFollowupService;
import cn.iocoder.yudao.module.customer.vo.customerFollowup.CustomerFollowupBackVO;
import cn.iocoder.yudao.module.sale.dal.dataobject.offer.OfferDO;
import cn.iocoder.yudao.module.sale.dal.dataobject.offer.OfferProdDO;
import cn.iocoder.yudao.module.sale.service.offer.OfferProdService;
......@@ -205,7 +206,10 @@ public class OfferController {
.eq(OfferProdDO::getOfferId, respVO.getOfferId())
.orderByDesc(OfferProdDO::getOfferProdId));
if (Objects.nonNull(customerFollowupDO)) {
respVO.setFollowupBackVO(CustomerFollowupConvert.INSTANCE.convert(customerFollowupDO));
CustomerFollowupBackVO convert = CustomerFollowupConvert.INSTANCE.convert(customerFollowupDO);
convert.setCreatorName(customerFollowupDO.getCreator());
convert.setUpdaterName(customerFollowupDO.getUpdater());
respVO.setFollowupBackVO(convert);
}
if (offerProdDOList!=null) {
BigDecimal volume= new BigDecimal(0);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment