mirror of
https://github.com/dyiop/astute.git
synced 2025-04-05 13:00:16 -04:00
Fixed getPreviuoslyBilledAmt
This commit is contained in:
parent
8a49720824
commit
003ff7f802
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue
Block a user