Commit aec2d237 authored by msharma's avatar msharma

Sorting Column Added in window


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@92004 ce508802-f39f-4f6c-b175-0d175dae99d5
parent e2332391
...@@ -389,6 +389,8 @@ Put a validation chq amount in filter and total of details matches in case heade ...@@ -389,6 +389,8 @@ Put a validation chq amount in filter and total of details matches in case heade
retTabSepStrBuff.append("").append("\t"); retTabSepStrBuff.append("").append("\t");
//INV_AMT //INV_AMT
retTabSepStrBuff.append(rs.getDouble(4)).append("\t"); retTabSepStrBuff.append(rs.getDouble(4)).append("\t");
//Added by manoj dtd 18/10/2012 to display absolute value
retTabSepStrBuff.append(Math.abs(rs.getDouble(4))).append("\t");
// adj_amt // adj_amt
retTabSepStrBuff.append("0").append("\t"); retTabSepStrBuff.append("0").append("\t");
//CHEQUE_NO //CHEQUE_NO
...@@ -483,6 +485,8 @@ Put a validation chq amount in filter and total of details matches in case heade ...@@ -483,6 +485,8 @@ Put a validation chq amount in filter and total of details matches in case heade
} }
//INV_AMT //INV_AMT
retTabSepStrBuff.append(rs.getDouble(4)).append("\t"); retTabSepStrBuff.append(rs.getDouble(4)).append("\t");
//Added by manoj dtd 18/10/2012 to display absolute value
retTabSepStrBuff.append(Math.abs(rs.getDouble(4))).append("\t");
//adj_AMT //adj_AMT
retTabSepStrBuff.append(rs.getDouble("ADJ_AMT")).append("\t"); retTabSepStrBuff.append(rs.getDouble("ADJ_AMT")).append("\t");
//CHEQUE_NO //CHEQUE_NO
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment