|
|
|
@ -380,7 +380,7 @@
|
|
|
|
|
<td>${it.aggregate_money}</td>
|
|
|
|
|
|
|
|
|
|
{@if it.statement_type==0}
|
|
|
|
|
<td><input type="text" class="txt statementchange" name="first_ratio" data-index ="${index}" data-change="statement_info[${index}]['first_ratio']" value="${it.first_ratio}" style="width: 40px;">%</td>
|
|
|
|
|
<td><input type="text" class="txt statementchange" name="ratio" data-index ="${index}" data-change="statement_info[${index}]['ratio']" value="${it.ratio}" style="width: 40px;">%</td>
|
|
|
|
|
<td><input type="text" class="txt statementchange" name="promote_ratio" data-index ="${index}" data-change="statement_info[${index}]['promote_ratio']" value="${it.promote_ratio}" style="width: 40px;">%</td>
|
|
|
|
|
<td><input type="text" class="txt statementchange" name="fax_ratio" data-index ="${index}" data-change="statement_info[${index}]['fax_ratio']" value="${it.fax_ratio}" style="width: 40px;">%</td>
|
|
|
|
|
<td><input type="text" class="txt statementchange other_amount" name="other_amount" data-index ="${index}" data-change="statement_info[${index}]['other_amount']" value="${it.other_amount?it.other_amount:0}" style="width: 60px;"></td>
|
|
|
|
@ -546,16 +546,16 @@
|
|
|
|
|
var index = $(this).data("index");
|
|
|
|
|
var td = DATAOBJ.statement_info[index];
|
|
|
|
|
|
|
|
|
|
if( $(this).attr("name") == "first_ratio"){
|
|
|
|
|
if( $(this).attr("name") == "ratio"){
|
|
|
|
|
td['second_ratio'] = 100-val;
|
|
|
|
|
}
|
|
|
|
|
if( $(this).attr("name") == "second_ratio"){
|
|
|
|
|
td['first_ratio'] = 100-val;
|
|
|
|
|
td['ratio'] = 100-val;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(DATAOBJ.pay_type == 1){
|
|
|
|
|
//甲方收款
|
|
|
|
|
var ratio = td['first_ratio']/100;
|
|
|
|
|
var ratio = td['ratio']/100;
|
|
|
|
|
}else{
|
|
|
|
|
//乙方
|
|
|
|
|
var ratio = td['second_ratio']/100;
|
|
|
|
|