Commit ad349bbf by hcy001

1

parent c5395ff2
Showing with 2 additions and 1 deletions
...@@ -166,10 +166,11 @@ class InquiryModel extends Model ...@@ -166,10 +166,11 @@ class InquiryModel extends Model
} }
// 在Redis集合中检查是否有新的报价 // 在Redis集合中检查是否有新的报价
$v['inquiry_alarm'] = "-1";
if ($export == 0){ if ($export == 0){
$res = $Redis->SISMEMBER('frq_quote_urge', $v['id']); $res = $Redis->SISMEMBER('frq_quote_urge', $v['id']);
if ($res) { if ($res) {
$v['inquiry_sn'] = $v['inquiry_sn'] . "<span style='color:red;'>&nbsp;*</span>"; $v['inquiry_alarm'] = "1";
} }
} }
} }
......
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 sign in to comment