信呼OA版本v2.3.8

This commit is contained in:
雨中磐石
2022-08-14 16:47:40 +08:00
parent 4640677d27
commit e3fcd913e3
1405 changed files with 133635 additions and 73 deletions

View File

@@ -0,0 +1,64 @@
<?php
/**
* 模块finpiao.发票统计,
*/
defined('HOST') or die ('not access');
?>
<script>
$(document).ready(function(){
var a = $('#view_{rand}').bootstable({
tablename:'finpiao',
url:publicmodeurl('finpiao','piaototal'),
columns:[{
text:'月份',dataIndex:'month'
},{
text:'收到发票金额',dataIndex:'moneyshou'
},{
text:'开出去发票金额',dataIndex:'moneykai'
},{
text:'合计(开出去-收到)的发票',dataIndex:'moneyzong'
}],
load:function(d){
get('dt1_{rand}').value = d.dt1;
get('dt2_{rand}').value = d.dt2;
}
});
var c = {
search:function(){
a.setparams({dt1:get('dt1_{rand}').value,dt2:get('dt2_{rand}').value},true);
},
daochu:function(o1){
publicdaochuobj({
'objtable':a,
'modename':'发票统计',
'btnobj':o1
});
}
};
js.initbtn(c);
});
</script>
<div>
<table width="100%"><tr>
<td nowrap>月份&nbsp;</td>
<td>
<input onclick="js.datechange(this,'month')" style="width:110px" readonly class="form-control datesss" id="dt1_{rand}" >
</td>
<td>&nbsp;至&nbsp;</td>
<td align="left">
<input onclick="js.datechange(this,'month')" style="width:110px" readonly class="form-control datesss" id="dt2_{rand}" >
</td>
<td style="padding-left:10px">
<button class="btn btn-default" click="search" type="button">统计</button>
</td>
<td width="90%"></td>
<td align="right" nowrap>
<button class="btn btn-default" click="daochu,1" type="button">导出 <i class="icon-angle-down"></i></button>
</td>
</tr></table>
</div>
<div class="blank10"></div>
<div id="view_{rand}"></div>