Fixed getPreviuoslyBilledAmt

This commit is contained in:
Gopi Katwala 2019-07-17 11:11:27 -04:00
parent 8a49720824
commit 003ff7f802

View File

@ -413,7 +413,7 @@ public class SqlDAO extends DAO {
// TODO remainingQuantity not used, need to take it out from signature
System.out.println("Calling create_po_detail Procedure");
double billAmt=0.0;
CallableStatement stmt = conn.prepareCall("{call get_previously_billed_amt(?,?)}");
CallableStatement stmt = conn.prepareCall("{? = call get_previously_billed_amt(?,?)}");
stmt.registerOutParameter(1,Types.DOUBLE);
stmt.setString(2, poNum);
stmt.setString(3, invoiceNumber);