<#macro 2011年重点税源企业基本信息表>
<script type="text/javascript">
(function(){
try{
var com = new seek.baseCompute();
seek.CheckForm = function(){
var typed = true;
    for(var col = 0; col < 4 ; col++){
if(com.getValue(8,col) < = com.getValue(3,col) * 17%){
typed = true;
}
else{
typed = false;
seek.showError("请正确输入 销项税额");
com.toggleWarning(8, col, typed);
break;
} if(com.getValue(12,col) < = com.getValue(11,col) ){
typed = true;
}
else{
typed = false;
seek.showError("请正确输入 用留抵税额抵顶欠税数额");
com.toggleWarning(12, col, typed);
break;
} if(com.getValue(14,col) < = com.getValue(11,col) ){
typed = true;
}
else{
typed = false;
seek.showError("请正确输入 免抵退货物应退税额");
com.toggleWarning(14, col, typed);
break;
}

}catch(e){}
})();
</script>com.getValue(row,col) 获取第row行第col列的值.为什么报错。