diff --git a/Application/Admin/Controller/StatementMangementController.class.php b/Application/Admin/Controller/StatementMangementController.class.php
index 07fadb420..c1040fa63 100644
--- a/Application/Admin/Controller/StatementMangementController.class.php
+++ b/Application/Admin/Controller/StatementMangementController.class.php
@@ -792,4 +792,27 @@ class StatementMangementController extends ThinkController
}
+ public function personOrderDetail() {
+
+ $id = $_REQUEST['id'];
+
+ $map['id'] = $id;
+
+ $data = M('statement','tab_')
+ ->field("second_party_info,statement_info")
+ ->where($map)
+ ->find();
+
+
+ $data['second_party_info'] = json_decode($data['second_party_info'],true);
+ $data['statemnt_info'] = json_decode($data['statement_info'],true);
+
+// dump($data['statemnt_info']);die();
+
+ $this->assign('second_party_info',$data['second_party_info']);
+ $this->assign('statemnt_info',$data['statemnt_info']);
+
+ $this->display();
+ }
+
}
diff --git a/Application/Admin/View/StatementMangement/lists.html b/Application/Admin/View/StatementMangement/lists.html
index 402fd98f8..953b1ca09 100644
--- a/Application/Admin/View/StatementMangement/lists.html
+++ b/Application/Admin/View/StatementMangement/lists.html
@@ -132,7 +132,7 @@
{$data.statement_money} |
未确认确认 |
- 查看
+ 查看
编辑
@@ -259,7 +259,14 @@
});
$(".statement_view").click(function () {
var id = $(this).data("id");
- var url = "/admin.php?s=/VerifyBill/show/id/"+id+"/from/pc";
+
+ var type = $(this).data("type");
+ if (type == 2) {
+ var url = "/admin.php?s=/StatementMangement/personOrderDetail/id/"+id;
+ } else {
+ var url = "/admin.php?s=/VerifyBill/show/id/"+id+"/from/pc";
+ }
+
layer.open({
type: 2,
title: "海南万盟天下科技有限公司",
diff --git a/Application/Admin/View/StatementMangement/personOrderDetail.html b/Application/Admin/View/StatementMangement/personOrderDetail.html
new file mode 100644
index 000000000..ff25f3c40
--- /dev/null
+++ b/Application/Admin/View/StatementMangement/personOrderDetail.html
@@ -0,0 +1,394 @@
+
+
+
+
+
+
+ 充值查询列表|----软件管理平台
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 提现订单号 |
+ 结算时间 |
+ 订单类型 |
+ 会长 |
+
+
+
+
+
+
+
+ aOh! 暂时还没有内容! |
+
+
+
+
+
+ {$withdraw_data.widthdraw_number} |
+ {$withdraw_data.time} |
+ {$withdraw_data.settlement_type} |
+ {$withdraw_data.promote_account} |
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 序号 |
+ 下游名称 |
+ 会长账号 |
+ 市场员 |
+ 下游类型 |
+ 产品 |
+
+ 结算时间 |
+ 推广流水 |
+ 分成比例 |
+ 奖励 |
+ 罚款 |
+ 结算金额 |
+
+ 开户名 |
+ 银行卡号 |
+ 开户支行 |
+
+
+
+
+
+
+
+
+
+ {$data.id} |
+ {$data.company_name} |
+ {$data.promote_account} |
+ {$data.username} |
+ {$data.type} |
+
+ {$data.game_name} |
+ {$data.time|0} |
+ {$data.sum_amount|0} |
+ {$data.selle_ratio|0} |
+ {$data.reward|0} |
+ {$data.forfeit|0} |
+ {$data.real_amount|0} |
+
+ {$data.bank_account} |
+ {$data.bank_card} |
+ {$data.account_openin} |
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 导出
+
+ {$_page|default=''}
+
+
+
+
+
+
+ if(C('COLOR_STYLE')=='blue_color') echo '
+
+ ';
+
+
+
+
+
+
+
+
+
|