Commit 44eedc4f by hcy001

1

parent ad349bbf
Showing with 5 additions and 2 deletions
...@@ -165,14 +165,17 @@ class InquiryModel extends Model ...@@ -165,14 +165,17 @@ class InquiryModel extends Model
} }
} }
$v['inquiry_sn_origin'] = $v["inquiry_sn"];
// 在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_alarm'] = "1"; $v['inquiry_sn'] = $v['inquiry_sn'] . "<span style='color:red;'>&nbsp;*</span>";
} }
} }
} }
$data = $list['data']; $data = $list['data'];
if (@$input["is_export"] == 1) { #如果是导出 if (@$input["is_export"] == 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