ソースを参照

[统计][修改][业态分析添加状态过滤]

release_toaliyun_real
luozukai 6年前
コミット
7e674b376e
2個のファイルの変更6行の追加0行の削除
  1. +5
    -0
      mallinkService/src/main/java/com/iformall/service/impl/WxFlowServiceImpl.java
  2. +1
    -0
      mallinkService/src/main/resources/mapper/WxMerchantMapper.xml

+ 5
- 0
mallinkService/src/main/java/com/iformall/service/impl/WxFlowServiceImpl.java ファイルの表示

@@ -1069,6 +1069,11 @@ public class WxFlowServiceImpl implements WxFlowService {
} else if (isBill(flowType)) { } else if (isBill(flowType)) {
msgReplaceMap.put("bustype", "账单"); msgReplaceMap.put("bustype", "账单");
msgReplaceMap.put("contract", businessId.toString()); msgReplaceMap.put("contract", businessId.toString());
} else if (isCoupon(flowType)) {
wxMsgRecord.setModelType(EnumMsgModel.FLOW_C_REJECT_NODIFY.getCode());
WxCoupon wxCoupon = this.wxCouponMapper.selectByPrimaryKey(businessId);
msgReplaceMap.put("type",EnumCouponType.getEnum(wxCoupon.getType()).getMessage());
msgReplaceMap.put("name",wxCoupon.getTitle());
} }
wxMsgRecord.setDynamicContentMap(msgReplaceMap); wxMsgRecord.setDynamicContentMap(msgReplaceMap);
mqBaseProducer.sendMessage(wxMsgRecord, EnumMsgMqTopic.DEFAULT.getCode(), EnumMsgMqTag.DEFAULT.getCode(), EnumMsgMqKey.DEFAULT.getCode()); mqBaseProducer.sendMessage(wxMsgRecord, EnumMsgMqTopic.DEFAULT.getCode(), EnumMsgMqTag.DEFAULT.getCode(), EnumMsgMqKey.DEFAULT.getCode());


+ 1
- 0
mallinkService/src/main/resources/mapper/WxMerchantMapper.xml ファイルの表示

@@ -254,6 +254,7 @@
and s.is_del = 0 and s.is_del = 0
and ms.is_del = 0 and ms.is_del = 0
and m.status = 1 and m.status = 1
and m.is_del = 0
group by m.business_id group by m.business_id
</select> </select>


読み込み中…
キャンセル
保存