mirror of
https://github.com/dyiop/astute.git
synced 2025-04-05 21:10:16 -04:00
Add files via upload
This commit is contained in:
parent
f10e3f323a
commit
58658a93c2
|
@ -178,8 +178,7 @@ public class SqlDAO extends DAO {
|
|||
updateClause += " fee_type_id = " + feeTypeId + ",";
|
||||
updateClause += " qty = " + qty + ",";
|
||||
updateClause += " fee = " + fee + ",";
|
||||
updateClause += " service_type_id = " + serviceTypeId + ",";
|
||||
updateClause += " remaining_qty = get_remaining_qty_fun('" + POnum + "'," + lineItemNo + ")";
|
||||
updateClause += " service_type_id = " + serviceTypeId;
|
||||
|
||||
if (!updateClause.equalsIgnoreCase(" SET ")) {
|
||||
sql = sql + trimLastCharacter(updateClause, ",") + whereClause;
|
||||
|
@ -190,7 +189,7 @@ public class SqlDAO extends DAO {
|
|||
System.out.println(sql);
|
||||
Statement stmt = conn.createStatement();
|
||||
stmt.executeUpdate(sql);
|
||||
}
|
||||
updateRemainingQty(POnum,null, lineItemNo); }
|
||||
} catch (SQLException e) {
|
||||
e.printStackTrace();
|
||||
throw new AstuteException(DB_ERROR,e.getMessage());
|
||||
|
|
Loading…
Reference in New Issue
Block a user