wpfw_ewei_shopv2/template/web/finance/downloadbill.html
2023-02-14 19:57:32 +08:00

53 lines
2.2 KiB
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{template '_header'}
<div class="page-heading"><h2>下载对账单</h2></div>
<form action="" method="post" class="form-horizontal form" enctype="multipart/form-data">
<div class='alert alert-info'>
<p>每日9:00前完成数据更新当前数据更新至 {php echo date('Y-m-d')}</p>
<p>微信在次日9点启动生成前一天的对账单建议商户10点后再获取</p>
<p>对账单中涉及金额的字段单位为“元”。</p>
<p>下载账单接口为单日期接口,请尽量保持账单时间段不要过长。</p>
</div>
<div class="form-group">
<label class="col-sm-2 control-label">账单类型</label>
<div class="col-sm-9 col-xs-12">
<label class='radio-inline'>
<input type='radio' value='ALL' name='type' checked/> 所有账单
</label>
<label class='radio-inline'>
<input type='radio' value='SUCCESS' name='type'/> 支付账单
</label>
<label class='radio-inline'>
<input type='radio' value='REFUND' name='type'/> 退款帐单
</label>
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label">数据类型</label>
<div class="col-sm-9 col-xs-12">
<label class='radio-inline'>
<input type='radio' value='' name='datatype' checked/> 所有账单
</label>
<label class='radio-inline'>
<input type='radio' value='1' name='datatype'/> 仅商城账单
</label>
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label">账单时间</label>
<div class="col-sm-9 col-xs-12">
{php echo tpl_form_field_eweishop_daterange('time', array('starttime'=>date('Y-m-d', $starttime),'endtime'=>date('Y-m-d', $endtime)));}
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label"></label>
<div class="col-sm-9 col-xs-12">
<input type='hidden' name='token' value="{$_W['token']}"/>
<input name="submit" type="submit" value="下载对账单" class="btn btn-primary span2">
</div>
</div>
</form>
{template '_footer'}