Commit 6d003efc by 徐高华

Merge branch 'feature/xgh/2406企微托管' into 'developer'

Feature/xgh/2406企微托管

See merge request !1908
parents 509e1335 54df4a06
......@@ -433,12 +433,18 @@ public class QywxOpenTaskController {
}
String s3 = "";
if ("指定门店".equals(name)) {
s3 = this.getStore(oldJson.getString("storeId"), newJson.getString("storeId"));
s3 = this.getStore(oldJson.getString("store"), newJson.getString("store"));
}
return s1 + s3 + s2;
}
private String getStore(String oldStoreId, String newStoreId) {
if (null == oldStoreId) {
oldStoreId = "";
}
if (null == newStoreId) {
newStoreId = "";
}
if (!oldStoreId.equals(newStoreId)) {
String oldName = "--";
if (StringUtils.isNotBlank(oldStoreId)) {
......
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