Quellcode durchsuchen

定时同步efast物流信息

liujiankang vor 7 Jahren
Ursprung
Commit
b0f38e2429

+ 2 - 0
watero-rst-service/src/main/java/com/iamberry/rst/service/cm/mapper/reissueMapper.xml

@@ -280,6 +280,8 @@
       <if test="reissueSendStatus != null and reissueSendStatus != ''">
         and reissue_send_status = #{reissueSendStatus}
       </if>
+      AND r.reissue_send_logistics_company != NULL
+      AND r.reissue_send_logistics_no != NULL
     </where>
   </select>
 </mapper>

+ 3 - 1
watero-rst-service/src/main/java/com/iamberry/rst/service/cm/mapper/renewedMapper.xml

@@ -237,8 +237,10 @@
     LEFT JOIN tb_rst_sales_order_info o ON r.renewed_back_efast_order_id = o.sales_orderId
     <where>
       <if test="renewedSendStatus != null and renewedSendStatus != ''">
-        and renewed_send_status = #{renewedSendStatus}
+        and r.renewed_send_status = #{renewedSendStatus}
       </if>
+      AND r.renewed_send_logistics_company != NULL
+      AND r.renewed_send_logistics_no != NULL
     </where>
   </select>
 </mapper>

+ 2 - 0
watero-rst-service/src/main/java/com/iamberry/rst/service/cm/mapper/repairMapper.xml

@@ -267,6 +267,8 @@
       <if test="repairSendStatus != null and repairSendStatus != ''">
         and repair_send_status = #{repairSendStatus}
       </if>
+      AND r.repair_send_logistics_company != NULL
+      AND r.repair_send_logistics_no != NULL
     </where>
   </select>
 </mapper>