Change Outstanding Value from Invoice

This commit is contained in:
hodianto 2018-08-23 15:43:15 +07:00
parent 48e71ac3c8
commit 330a4d2a00
1 changed files with 1 additions and 1 deletions

View File

@ -135,7 +135,7 @@ public class InvoiceLandedCost extends GenForm {
miniTable.setValueAt(new IDColumn(rs.getInt(1)), row, 0); // C_OrderLandedCost_ID
miniTable.setValueAt(rs.getString(2), row, 1); // DocumentNo
miniTable.setValueAt(rs.getString(3), row, 2); // Name
miniTable.setValueAt(rs.getBigDecimal(4), row, 3); // Amt
miniTable.setValueAt(rs.getBigDecimal(7), row, 3); // Amt
// prepare next
row++;
}