Commit cb18715f authored by agping's avatar agping Committed by hujun

6

parent b98e77c1
......@@ -382,6 +382,7 @@
<th class="text-center">状态</th>
<th class="text-center">总监通过时间</th>
<th class="text-center">开业确定时间</th>
<th class="text-center">财务日报日期</th>
<th class="text-center">操作</th>
</tr>
</thead>
......
......@@ -97,7 +97,16 @@ define(['doT', 'text!temp/open_check_template_tpl.html', 'css!style/home.css', '
that.check_id = id ;
that.refundText(id)
});
//点击财务日报日期 缓存店铺名称
_doc.on('click', '.financial-check', function(e) {
e.preventDefault();
e.stopPropagation();
localStorage.setItem('financial_check_string_liu',$(this).attr("data-store"));
var href_='/index/dailyDetailsFinance?time=' + $(this).attr("data-storeTime")+"&storeId="+$(this).attr("data-storeId");
window.open(href_);
});
//重置搜索条件
$(document).on('click','#reset',function(e){
that.resetAll();
......
......@@ -22,6 +22,7 @@
[% } %]
<td>[%= it[item]['disc_time'] %]</td>
<td>[%= it[item]['check_time'] %]</td>
<td><a href="javascript:;" class="financial-check" data-store="[%= it[item]['store_name'] %]" data-storeId="[%= it[item]['store_id'] %]" data-storeTime="[%= it[item]['daily_date'] %]">[%= it[item]['daily_date'] %]</a></td>
<td>
<a class="btn1 btn-success rejected" href="#modal-check" data-toggle="modal" data-id='[%= it[item]["id"] %]'>开业审核</a>
<a class="btn1 btn-success details-btn" href="#modal_detail" data-toggle="modal" data-id='[%= it[item]["bargain_id"] %]'>成交报告</a>
......
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