Commit 3302731e by shangshang.dai

针对 备注里有特殊字符的做处理

parent 5899b55c
...@@ -169,6 +169,7 @@ bool FlowControl::_PullOrder() ...@@ -169,6 +169,7 @@ bool FlowControl::_PullOrder()
//新数据 //新数据
orderObject = new OrderObject(this); orderObject = new OrderObject(this);
orderObject->FromJson(jsonObject); orderObject->FromJson(jsonObject);
orderObject->remark.remove("#");
//将 非码Mall 改为 鲜丰App //将 非码Mall 改为 鲜丰App
if(!orderObject->channelName.compare("非码Mall")) if(!orderObject->channelName.compare("非码Mall"))
...@@ -220,6 +221,7 @@ bool FlowControl::_PullOrder() ...@@ -220,6 +221,7 @@ bool FlowControl::_PullOrder()
//旧数据有更新 //旧数据有更新
int oldStatus = orderObject->status; int oldStatus = orderObject->status;
orderObject->FromJson(jsonObject); orderObject->FromJson(jsonObject);
orderObject->remark.remove("#");
//将 非码Mall 改为 鲜丰App //将 非码Mall 改为 鲜丰App
if(!orderObject->channelName.compare("非码Mall")) if(!orderObject->channelName.compare("非码Mall"))
......
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