dlfinance.inc.php
9.65 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
<?php
require_once IA_ROOT . '/addons/zh_cjdianc/inc/config.php';
global $_GPC, $_W;
$action = 'start';
$uid = $_COOKIE["uid"];
$storeid=$_COOKIE["storeid"];
$cur_store = $this->getStoreById($storeid);
$GLOBALS['frames'] = $this->getNaveMenu($storeid, $action,$uid);
$operation = !empty($_GPC['op']) ? $_GPC['op'] : 'display';
$system=pdo_get('cjdc_system',array('uniacid'=>$_W['uniacid']),array('is_wx','is_yhk'));
$type=isset($_GPC['type'])?$_GPC['type']:'today';
$pageindex = max(1, intval($_GPC['page']));
$pagesize=10;
//$sys=pdo_get('cjdc_system',array('uniacid'=>$_W['uniacid']),array('is_wx','is_yhk'));
$data[':uniacid']=$_W['uniacid'];
$data[':store_id']=$storeid;
//获取商家手续费
// $sql="select b.poundage,b.dn_poundage,b.dm_poundage,b.yd_poundage from".tablename('cjdc_store')."a left join ".tablename('cjdc_storetype')." b on a.md_type=b.id where a.id={$storeid}";
// $list4=pdo_fetch($sql);
$list4=$this->storePoundage($storeid);
$where=" where a.uniacid=:uniacid and a.type=1 and a.store_id=:store_id and a.pay_type in (1,2) and a.state in (4,5,10)" ;
//总数统计
$sql2="select sum(money) as 'total_money',sum(ps_money) as ps_money,sum(yhq_money2) as hb_money from" . tablename("cjdc_order") ." as a".$where;
$list2=pdo_fetch($sql2,$data);
//店内订单金额统计
$dnwmcost=pdo_get('cjdc_order', array('store_id'=>$storeid,'dn_state '=>2,'pay_type'=>array(1,2),'type'=>2), array('sum(money) as total_money','sum(yhq_money2) as hb_money'));
//当面付订单金额统计
$dmcost=pdo_get('cjdc_order', array('store_id'=>$storeid,'dm_state '=>2,'pay_type'=>array(1,2),'type'=>4), array('sum(money) as total_money'));
//预约订单金额
$yycost=pdo_get('cjdc_order', array('store_id'=>$storeid,'yy_state '=>3,'pay_type'=>array(1,2),'type'=>3), array('sum(money) as total_money'));
//已申请金额
$total=pdo_get('cjdc_withdrawal', array('store_id'=>$storeid,'state '=>1), array('sum(tx_cost) as tx_cost'));
//已提现金额
$total2=pdo_get('cjdc_withdrawal', array('store_id'=>$storeid,'state '=>2), array('sum(tx_cost) as tx_cost'));
//运费服务费
$sys=pdo_get('cjdc_store',array('id'=>$storeid),'ps_poundage');
$ps_money=number_format($list2['ps_money']*$sys['ps_poundage']/100,1);
//抢购金额
$qg_money=pdo_get('cjdc_qgorder', array('store_id'=>$storeid,'state'=>array(2,3)), array('sum(money) as total_money'));
//拼团金额
$pt_money=pdo_get('cjdc_grouporder', array('store_id'=>$storeid,'state'=>array(3,5)), array('sum(money) as total_money'));
$tuan=$qg_money['total_money']+$pt_money['total_money']-$list4['dn_poundage']*($qg_money['total_money']+$pt_money['total_money'])/100;
//可提现金额
$ktxcost=number_format(($list2['total_money']+$list2['hb_money']+$dnwmcost['total_money']+$dnwmcost['hb_money']+$dmcost['total_money']+$yycost['total_money'])-((($list2['total_money']+$list2['hb_money']-$list2['ps_money'])*$list4['poundage']+($dnwmcost['total_money']+$dnwmcost['hb_money'])*$list4['dn_poundage']+$dmcost['total_money']*$list4['dm_poundage']+$yycost['total_money']*$list4['yd_poundage'])/100)-$total['tx_cost']-$total2['tx_cost']-$ps_money+$tuan,2);
$shytx='0.00';
$shtxz='0.00';
if($total2['tx_cost']){
$shytx=$total2['tx_cost'];
}
if($total['tx_cost']){
$shtxz=$total['tx_cost'];
}
//未入账
$sql3="select sum(money) as 'total_money',sum(ps_money) as ps_money,sum(yhq_money2) as hb_money from" . tablename("cjdc_order") ." where type=1 and store_id={$storeid} and pay_type in (1,2) and state in (2,3,8)";
$list3=pdo_fetch($sql3,$data);
$drzyycost=pdo_get('cjdc_order', array('store_id'=>$storeid,'yy_state '=>2,'pay_type'=>1,'type'=>3), array('sum(money) as total_money'));
$wrz_money=$list3['total_money']+$list3['yhq_money2']+$drzyycost['total_money']-(($list4['poundage']/100*($list3['total_money']+$list3['yhq_money2']-$list3['ps_money'])+($sys['ps_poundage']/100*$item['ps_money'])+($drzyycost['total_money']*$list4['yd_poundage']/100)));
$where2=" where a.store_id={$storeid} ";
if($_GPC['time']){
$start=strtotime($_GPC['time']['start']);
$end=strtotime($_GPC['time']['end']);
$where2.=" and UNIX_TIMESTAMP(a.time) >='{$start}' and UNIX_TIMESTAMP(a.time)<='{$end}'";
}
//提现记录
$sql="SELECT a.*,b.name,b.user_id FROM ".tablename('cjdc_withdrawal') . " a" . " left join " . tablename("cjdc_store") . " b on a.store_id=b.id".$where2." ORDER BY a.time DESC";
$total=pdo_fetchcolumn("SELECT count(*) FROM ".tablename('cjdc_withdrawal') . " a" . " left join " . tablename("cjdc_store") . " b on a.store_id=b.id ".$where2);
$list=pdo_fetchall($sql);
$select_sql =$sql." LIMIT " .($pageindex - 1) * $pagesize.",".$pagesize;
$list=pdo_fetchall($select_sql,$data);
$pager = pagination($total, $pageindex, $pagesize);
if(checksubmit('submit2')){
$data2['name']=$_GPC['name'];
$data2['type']=$_GPC['orderby'];
$data2['time']=date('Y-m-d H:i:s');
$data2['state']=1;
$data2['type']=$_GPC['is_brand'];
$data2['tx_cost']=$_GPC['tx_cost'];
$data2['sj_cost']=$_GPC['tx_cost'];
$data2['store_id']=$storeid;
$data2['uniacid']=$_W['uniacid'];
$data2['yhk_num']=$_GPC['yhk_num'];
$data2['tel']=$_GPC['tel'];
$data2['yh_info']=$_GPC['yh_info'];
$res=pdo_insert('cjdc_withdrawal',$data2);
if($res){
message('添加成功!', $this->createWebUrl('dlfinance'), 'success');
}else{
message('添加失败!','','error');
}
}
if($operation=='adopt'){//审核通过
$id=$_GPC['id'];
$list=pdo_get('cjdc_withdrawal',array('id'=>$_GPC['id']));
$user=pdo_get('cjdc_user',array('id'=>$list['user_id']));
$res=pdo_update('cjdc_withdrawal',array('state'=>2,'sh_time'=>date('Y-m-d H:i:s')),array('id'=>$id));
if($res){
message('审核成功',$this->createWebUrl('finance',array()),'success');
}else{
message('审核失败','','error');
}
}
if($operation=='adopt2'){
$id=$_GPC['id'];
$list=pdo_get('cjdc_withdrawal',array('id'=>$_GPC['id']));
$store=pdo_get('cjdc_store',array('id'=>$list['store_id']));
$user=pdo_get('cjdc_user',array('id'=>$store['user_id']));
////////////////打款//////////////////////
function arraytoxml($data){
$str='<xml>';
foreach($data as $k=>$v) {
$str.='<'.$k.'>'.$v.'</'.$k.'>';
}
$str.='</xml>';
return $str;
}
function xmltoarray($xml) {
//禁止引用外部xml实体
libxml_disable_entity_loader(true);
$xmlstring = simplexml_load_string($xml, 'SimpleXMLElement', LIBXML_NOCDATA);
$val = json_decode(json_encode($xmlstring),true);
return $val;
}
function curl($param = "",$url) {
global $_GPC, $_W;
$postUrl = $url;
$curlPost = $param;
$certPaths = Config::getCertPaths($_W['uniacid']);
$ch = curl_init(); //初始化curl
curl_setopt($ch, CURLOPT_URL,$postUrl); //抓取指定网页
curl_setopt($ch, CURLOPT_HEADER, 0); //设置header
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); //要求结果为字符串且输出到屏幕上
curl_setopt($ch, CURLOPT_POST, 1); //post提交方式
curl_setopt($ch, CURLOPT_POSTFIELDS, $curlPost); // 增加 HTTP Header(头)里的字段
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE); // 终止从服务端进行验证
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE);
curl_setopt($ch,CURLOPT_SSLCERT, $certPaths[0]); //这个是证书的位置绝对路径
curl_setopt($ch,CURLOPT_SSLKEY, $certPaths[1]); //这个也是证书的位置绝对路径
$data = curl_exec($ch); //运行curl
curl_close($ch);
return $data;
}
$system = pdo_get('cjdc_system',array('uniacid'=>$_W['uniacid']));
$psystem = pdo_get('cjdc_pay',array('uniacid'=>$_W['uniacid']));
$data=array(
'mch_appid'=>$system['appid'],//商户账号appid
'mchid'=>$psystem['mchid'],//商户号
'nonce_str'=>rand(1111111111,9999999999),//随机字符串
'partner_trade_no'=>time().rand(11111,99999),//商户订单号
'openid'=>$user['openid'],//用户openid
'check_name'=>'NO_CHECK',//校验用户姓名选项,
're_user_name'=>$list['name'],//收款用户姓名
'amount'=>$list['sj_cost']*100,//金额
'desc'=>'提现打款',//企业付款描述信息
'spbill_create_ip'=>$psystem['ip'],//Ip地址
);
$key=$psystem['wxkey'];///这个就是个API密码。32位的。。随便MD5一下就可以了
// $key=md5($key);
//var_dump($data);die;
$data=array_filter($data);
ksort($data);
$str='';
foreach($data as $k=>$v) {
$str.=$k.'='.$v.'&';
}
$str.='key='.$key;
$data['sign']=md5($str);
$xml=arraytoxml($data);
$url='https://api.mch.weixin.qq.com/mmpaymkttransfers/promotion/transfers';
$res=curl($xml,$url);
$return=xmltoarray($res);
if($return['result_code']=='SUCCESS'){
pdo_update('cjdc_withdrawal',array('state'=>2,'sh_time'=>time()),array('id'=>$id));
message('审核成功',$this->createWebUrl('finance',array()),'success');
}else{
if($return['err_code_des']){
$message=$return['err_code_des'];
}else{
$message='请检查证书是否上传正确!';
}
message($return['err_code_des'],'','error');
}
// print_r($return);
////////////////打款//////////////////////
}
if($operation=='reject'){
$id=$_GPC['id'];
$res=pdo_update('cjdc_withdrawal',array('state'=>3,'sh_time'=>date('Y-m-d H:i:s')),array('id'=>$id));
if($res){
message('拒绝成功',$this->createWebUrl('finance',array()),'success');
}else{
message('拒绝失败','','error');
}
}
include $this->template('web/dlfinance');