Commit f067ea0d authored by fangxinjiang's avatar fangxinjiang

商险导出--产品临时加的 导出字段-fxj

parent 1b812909
......@@ -187,4 +187,10 @@ public class InsuranceExportListOneVO implements Serializable {
*/
@Schema(description = "是否地市自购")
private String isAdress;
/**
* 派单备注
*/
@Schema(description = "派单备注")
private String remarkDispatch;
}
......@@ -194,4 +194,10 @@ public class InsuranceExportListVO implements Serializable {
@Schema(description = "是否地市自购")
private String isAdress;
/**
* 派单备注
*/
@Schema(description = "派单备注")
private String remarkDispatch;
}
......@@ -1077,6 +1077,7 @@ public class TInsuranceDetailServiceImpl extends ServiceImpl<TInsuranceDetailMap
List<InsuranceExportListOneVO> list = new ArrayList<>();
if(CollectionUtils.isNotEmpty(listVOS)){
for (InsuranceExportListOneVO listVO : listVOS) {
listVO.setRemarkDispatch(listVO.getRemark());
listVO.setRemark(InsurancesConstants.INSERT);
TInsuranceReplace one = tInsuranceReplaceService.getOne(Wrappers.<TInsuranceReplace>query().lambda()
.eq(TInsuranceReplace::getToInsuranceDetailId, listVO.getId())
......@@ -1240,6 +1241,7 @@ public class TInsuranceDetailServiceImpl extends ServiceImpl<TInsuranceDetailMap
List<InsuranceExportListVO> list = new ArrayList<>();
if(CollectionUtils.isNotEmpty(listVOS)){
for (InsuranceExportListVO listVO : listVOS) {
listVO.setRemarkDispatch(listVO.getRemark());
listVO.setRemark(InsurancesConstants.INSERT);
TInsuranceReplace one = tInsuranceReplaceService.getOne(Wrappers.<TInsuranceReplace>query().lambda()
.eq(TInsuranceReplace::getToInsuranceDetailId, listVO.getId())
......
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