1.网银收款核销计算错误问题。

This commit is contained in:
zhangbb 2018-11-23 13:45:35 +08:00
parent c3b023ee91
commit ae4216754e
3 changed files with 9 additions and 2 deletions

View File

@ -28,7 +28,6 @@
<script type="text/javascript">
window.onload = function(){
setItemValue(0,0,"CERTTYPE_CF","Ind01");
debugger;
var type = getItemValue(0,0,"customertype");
if(type=="03"||type==""||type==null){
hideItem(0,"CERTTYPE_CC");

View File

@ -49,6 +49,15 @@
<script type="text/javascript">
var oldFactMoney = 0;
var newFactMoney = 0;
$(function(){
for(var i=0;i<DZ[0][2].length;i++){
oldFactMoney = eval(oldFactMoney + "+" + removeFomatedNumber(getItemValue(0,i,"CORPUS")));
oldFactMoney = eval(oldFactMoney + "+" + removeFomatedNumber(getItemValue(0,i,"INTEREST")));
oldFactMoney = eval(oldFactMoney + "+" + removeFomatedNumber(getItemValue(0,i,"PENALTY")));
}
oldFactMoney = oldFactMoney.toFixed(2);
newFactMoney = oldFactMoney;
})
function updateEbankAndEbankProcessOfDel(){
var rows = getItemValueArray(0,"ID")+"";
if(rows == ""){

View File

@ -172,7 +172,6 @@
}
function createRundIncome(){
debugger;
var id = getItemValueArray(0,"id")+","+TablePage.getCheckedItemValueArrayWithOtherPage("id",s_c_p[0]);
if("," == id){
alert("请先选择需要收款的租金计划");