Parcourir la source

/。 m

release_toaliyun_real
xhxu il y a 4 ans
Parent
révision
81359cc639
1 fichiers modifiés avec 2 ajouts et 1 suppressions
  1. +2
    -1
      mallinkService/src/main/java/com/iformall/service/impl/WxCouponOrderServiceImpl.java

+ 2
- 1
mallinkService/src/main/java/com/iformall/service/impl/WxCouponOrderServiceImpl.java Voir le fichier

@@ -1096,9 +1096,10 @@ public class WxCouponOrderServiceImpl implements WxCouponOrderService {
List<Long> couponIds = null; List<Long> couponIds = null;
String title = StringUtils.trimToNull(wxCouponOrder.getTitle()); String title = StringUtils.trimToNull(wxCouponOrder.getTitle());
if (null != title || null != wxCouponOrder.getType() || null != wxCouponOrder.getBusiness() || null != wxCouponOrder.getSourceType()) {
if (null != wxCouponOrder.getCouponId() || null != title || null != wxCouponOrder.getType() || null != wxCouponOrder.getBusiness() || null != wxCouponOrder.getSourceType()) {
WxCoupon wxCouponQuery = new WxCoupon(); WxCoupon wxCouponQuery = new WxCoupon();
wxCouponQuery.updateTenantInfo(wxCouponOrder); wxCouponQuery.updateTenantInfo(wxCouponOrder);
wxCouponQuery.setId(wxCouponOrder.getId());
wxCouponQuery.setTitle(title); wxCouponQuery.setTitle(title);
wxCouponQuery.setType(wxCouponOrder.getType()); wxCouponQuery.setType(wxCouponOrder.getType());
wxCouponQuery.setBusiness(wxCouponOrder.getBusiness()); wxCouponQuery.setBusiness(wxCouponOrder.getBusiness());


Chargement…
Annuler
Enregistrer