diff --git a/Application/Admin/View/CompanyStatementPool/editSpecialPuPool.html b/Application/Admin/View/CompanyStatementPool/editSpecialPuPool.html
index 02709bf51..6952a47c4 100644
--- a/Application/Admin/View/CompanyStatementPool/editSpecialPuPool.html
+++ b/Application/Admin/View/CompanyStatementPool/editSpecialPuPool.html
@@ -168,19 +168,19 @@
{$com['statement_info'][0]['game_list'][0]['pay_amount']} |
-
+
|
{$com['statement_info'][0]['game_list'][0]['ratio']}% |
- % |
+ % |
{$com['statement_info'][0]['game_list'][0]['sum_money']}
-
- |
+
+
{$com['reward']} |
{$com['fine']} |
-
-
+
+
|
{$com['statement_info'][0]['week_amount']} |
{$com['statement_money']} |
@@ -213,7 +213,7 @@
是 否 |
否 是 |
- |
+ |
@@ -233,10 +233,11 @@
| {$game['game_type_name']} |
{$game['pay_amount']} |
- |
+ |
{$game['ratio']}% |
- % |
- {$game['sum_money']} |
+ % |
+ {$game['sum_money']}
+ |
@@ -263,14 +264,23 @@
{$account['game_list'][0]['pay_amount']} |
- |
+ |
{$account['game_list'][0]['ratio']}% |
- % |
- {$account['game_list'][0]['sum_money']} |
+ % |
+
+ {$account['game_list'][0]['sum_money']}
+
+
+ |
+
+
+ {$account['reward']|default=0} |
+ {$account['fine']|default=0} |
+
+
-
-
+
|
{$account['week_amount']} |
@@ -299,10 +309,13 @@
{$game['pay_amount']} |
- |
+ |
{$game['ratio']}% |
- % |
- {$game['sum_money']} |
+ % |
+
+ {$game['sum_money']}
+
+ |
@@ -494,6 +507,15 @@
var week_amount_find = $(_this).parent().parent();
var old_amount = week_amount_find.find(".sum_money_span").text();
+ //扣款
+ pay_money = parseFloat(pay_money) - parseFloat(refund);
+ var value = (parseFloat(pay_money)*(parseFloat(ratio)/100) + parseFloat(pay_money)*(parseFloat(increment_ratio)/100));
+
+ $(_this).parent().parent().find(".sum_money_span").text(value.toFixed(2));
+ $(_this).parent().parent().find(".sum_money").val(value.toFixed(2));
+
+ var this_amount = week_amount_find.find(".sum_money_span").text();
+
var week_amount = 0;
var i = 0;
for (;;) {
@@ -510,14 +532,14 @@
}
//扣款
- pay_money = parseFloat(pay_money) - parseFloat(refund);
-
- var value = (parseFloat(pay_money)*(parseFloat(increment_ratio)/100));
-
- $(_this).parent().parent().find(".sum_money_span").text(value.toFixed(2));
- $(_this).parent().parent().find(".sum_money").val(value.toFixed(2));
-
- var this_amount = week_amount_find.find(".sum_money_span").text();
+ // pay_money = parseFloat(pay_money) - parseFloat(refund);
+ //
+ // var value = (parseFloat(pay_money)*(parseFloat(increment_ratio)/100));
+ //
+ // $(_this).parent().parent().find(".sum_money_span").text(value.toFixed(2));
+ // $(_this).parent().parent().find(".sum_money").val(value.toFixed(2));
+ //
+ // var this_amount = week_amount_find.find(".sum_money_span").text();
var D_value = parseFloat(old_amount)-parseFloat(this_amount) + parseFloat(withhold-oldwithhold) ;