mirror of
https://github.com/dyiop/astute.git
synced 2025-04-05 13:00:16 -04:00
Updated Service Type resource to accept the Request object rather than path paramenters
This commit is contained in:
parent
56fb6591b5
commit
bcebd483f5
|
@ -29,6 +29,12 @@ CREATE TABLE IF NOT EXISTS `change_order` (
|
|||
CONSTRAINT `fk_PO_CO_POnum` FOREIGN KEY (`PO_num`) REFERENCES `po` (`PO_num`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||
|
||||
DROP PROCEDURE IF EXISTS astute.update_contract_amt;
|
||||
CREATE PROCEDURE astute.`update_contract_amt`(PONum varchar(20))
|
||||
BEGIN
|
||||
update po set contract_amt = (SELECT sum(qty*fee) from po_detail where PO_num = PONum) where PO_num = PONum;
|
||||
END;
|
||||
|
||||
-- Dumping data for table astute.change_order: ~0 rows (approximately)
|
||||
/*!40000 ALTER TABLE `change_order` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `change_order` ENABLE KEYS */;
|
||||
|
|
|
@ -161,6 +161,18 @@ public class SqlDAO extends DAO {
|
|||
|
||||
}
|
||||
|
||||
public void updateContractAmount(String PONum) throws AstuteException {
|
||||
try {
|
||||
CallableStatement stmt = conn.prepareCall("{call update_contract_amt(?)}");
|
||||
stmt.setString(1, PONum);
|
||||
stmt.executeUpdate();
|
||||
} catch (SQLException e) {
|
||||
e.printStackTrace();
|
||||
throw new AstuteException(DB_ERROR,e.getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
public void updatePODetail(String POnum, int lineItemNo, String serviceDesc, int feeTypeId, Double qty, Double fee, int serviceTypeId, Double remainingQuantity) throws AstuteException {
|
||||
try {
|
||||
// remainingQuantity is not used , need to take it out from signature eventually
|
||||
|
@ -196,7 +208,9 @@ public class SqlDAO extends DAO {
|
|||
System.out.println(sql);
|
||||
Statement stmt = conn.createStatement();
|
||||
stmt.executeUpdate(sql);
|
||||
updateRemainingQty(POnum,null, lineItemNo); }
|
||||
updateRemainingQty(POnum,null, lineItemNo);
|
||||
}
|
||||
updateContractAmount(POnum);
|
||||
} catch (SQLException e) {
|
||||
e.printStackTrace();
|
||||
throw new AstuteException(DB_ERROR,e.getMessage());
|
||||
|
@ -247,6 +261,7 @@ public class SqlDAO extends DAO {
|
|||
e.printStackTrace();
|
||||
throw new AstuteException(DB_ERROR,e.getMessage());
|
||||
}
|
||||
updateContractAmount(POnum);
|
||||
}
|
||||
|
||||
public void finalizePO(String PONum) throws AstuteException {
|
||||
|
|
Loading…
Reference in New Issue
Block a user