785834757 1 hónapja
szülő
commit
0efbc5587b

+ 1 - 0
tenant/insurance/quotation-summary/src/main/java/com/jzg/quotation/summary/service/impl/InsOrdersServiceImpl.java

@@ -286,6 +286,7 @@ public class InsOrdersServiceImpl extends ServiceImpl<InsOrdersMapper, InsOrders
             ordersPolicy.setJyPolicyNo(ordersExternalPolicy.getNoPolicy());
             insOrdersPolicyService.updateByOrderNo(ordersPolicy);
 
+            insFeeAuditService.feeAuditAdd(insOrders,baseController.getSystemCode());
             // 发送订单状态变更消息
             this.orderStatusMessage(insOrders,
                     insOrdersCarInfo, insOrdersCosts,

+ 3 - 3
tenant/insurance/quotation-summary/src/main/resources/mapper/InsOrdersMapper.xml

@@ -1101,9 +1101,9 @@
             <if test="insOrdersParam.orderNo != null and insOrdersParam.orderNo != ''">
                 AND io.id = #{insOrdersParam.orderNo}
             </if>
-            <if test="insOrdersParam.parentId != null">
-                AND io.parent_id = #{insOrdersParam.parentId}
-            </if>
+<!--            <if test="insOrdersParam.parentId != null">-->
+<!--                AND io.parent_id = #{insOrdersParam.parentId}-->
+<!--            </if>-->
             <if test="insOrdersParam.licenseNo != null and insOrdersParam.licenseNo != ''">
                 AND ioci.license_no = #{insOrdersParam.licenseNo}
             </if>

+ 3 - 1
tenant/organization/src/main/java/com/jzg/organization/service/impl/PtlSchemeServiceImpl.java

@@ -166,7 +166,9 @@ public class PtlSchemeServiceImpl extends ServiceImpl<PtlSchemeMapper, PtlScheme
             }
         }
         //校验驾意险座位数范围不可重复
-        validateDrivingIntentionSeatRange(ptlSchemeInsuranceDrivingIntentionList);
+        if(!ptlSchemeSaveVo.getSchemeType().equals("2")) {
+            validateDrivingIntentionSeatRange(ptlSchemeInsuranceDrivingIntentionList);
+        }
         //清空驾意险信息
         cleanDrivingIntention(ptlSchemeInfoList);
         ptlSchemeInsuranceDrivingIntentionMapper.insertOrUpdate(ptlSchemeInsuranceDrivingIntentionList);