* SQL - Fixed get_outstanding_balance method, fixed create_customer_contact function to have phone/fax as string

* Fixed Customer contact phone/fax to be String in Web Service code
This commit is contained in:
Gopi Katwala 2019-07-16 16:33:27 -04:00
parent b897d2cc1b
commit bcc9a5425c
6 changed files with 42 additions and 42 deletions

View File

@ -39,7 +39,7 @@ END;
/*!40000 ALTER TABLE `change_order` DISABLE KEYS */; /*!40000 ALTER TABLE `change_order` DISABLE KEYS */;
/*!40000 ALTER TABLE `change_order` ENABLE KEYS */; /*!40000 ALTER TABLE `change_order` ENABLE KEYS */;
CREATE FUNCTION astute.`create_customer_contact_fun`(customer_id_in varchar(20), name varchar(100), title varchar(50), work_phone int, work_phone_ext int, mobile int, fax int, email varchar(100), address varchar(500)) RETURNS varchar(20) CHARSET utf8 CREATE FUNCTION astute.`create_customer_contact_fun`(customer_id_in varchar(20), name varchar(100), title varchar(50), work_phone varchar(20), work_phone_ext int, mobile varchar(20), fax varchar(20), email varchar(100), address varchar(500)) RETURNS varchar(20) CHARSET utf8
BEGIN BEGIN
DECLARE last_inserted_id varchar(20); DECLARE last_inserted_id varchar(20);
DECLARE new_contact_id int; DECLARE new_contact_id int;
@ -52,12 +52,13 @@ else
SET new_contact_id = 1; SET new_contact_id = 1;
end if; end if;
INSERT INTO astute.customer_contact INSERT INTO astute.customer_contact
(customer_id, contact_id, name, title, work_phone, work_phone_ext, mobile, fax, email, address) (customer_id, contact_id, name, title, work_phone, work_phone_ext, mobile, fax, email, address)
VALUES (customer_id_in, new_contact_id, name, title, work_phone, work_phone_ext, mobile, fax, email, address); VALUES (customer_id_in, new_contact_id, name, title, work_phone, work_phone_ext, mobile, fax, email, address);
SELECT LAST_INSERT_ID() into last_inserted_id; SELECT LAST_INSERT_ID() into last_inserted_id;
return last_inserted_id; return last_inserted_id;
END; END;
-- Dumping structure for function astute.create_customer_fun -- Dumping structure for function astute.create_customer_fun
DELIMITER // DELIMITER //
CREATE FUNCTION astute.`create_customer_fun`(customerid varchar(20), customerName varchar(100), billToDept varchar(100), add1In varchar(100), add2In varchar(100), cityIn varchar(50), stateIn varchar(20), zipIn int(5), zipLast4In int(4), emailIn varchar(50), phoneIn varchar(20), extIn int(6), faxIn varchar(20)) RETURNS varchar(20) CHARSET utf8 CREATE FUNCTION astute.`create_customer_fun`(customerid varchar(20), customerName varchar(100), billToDept varchar(100), add1In varchar(100), add2In varchar(100), cityIn varchar(50), stateIn varchar(20), zipIn int(5), zipLast4In int(4), emailIn varchar(50), phoneIn varchar(20), extIn int(6), faxIn varchar(20)) RETURNS varchar(20) CHARSET utf8
@ -363,14 +364,13 @@ DELIMITER ;
-- Dumping structure for function astute.get_outstanding_inv_balance -- Dumping structure for function astute.get_outstanding_inv_balance
DELIMITER // DELIMITER //
CREATE DEFINER=`root`@`localhost` FUNCTION `get_outstanding_inv_balance`(invno varchar(20)) RETURNS double(10,2) CREATE FUNCTION astute.`get_outstanding_inv_balance`(invno varchar(20)) RETURNS double(10,2)
BEGIN BEGIN
declare outstanding_amt double(10,2); declare outstanding_amt double(10,2);
SELECT invoice.bill_amt - sum(invoice_amount) INTO outstanding_amt SELECT invoice.bill_amt - ifnull(sum(invoice_amount),0) INTO outstanding_amt
FROM invoice join invoice_payment on invoice.inv_no = invoice_payment.inv_no FROM invoice join invoice_payment on invoice.inv_no = invoice_payment.inv_no
where invoice.inv_no = invno where invoice.inv_no = invno;
group by invoice_payment.inv_no;
return outstanding_amt; return outstanding_amt;
END// END//
DELIMITER ; DELIMITER ;

View File

@ -166,9 +166,9 @@ public abstract class DAO {
*/ */
public abstract List<CustomerContact> getCustomerContacts(String customerId) throws AstuteException; public abstract List<CustomerContact> getCustomerContacts(String customerId) throws AstuteException;
public abstract String createCustomerContact(String customerId, String name,String title,int workPhone,int phExt,int mobile, int fax, String email, String address) throws AstuteException; public abstract String createCustomerContact(String customerId, String name,String title,String workPhone,int phExt,String mobile, String fax, String email, String address) throws AstuteException;
public abstract void updateCustomerContact(String customerId, int contactId, String name,String title,int workPhone,int phExt,int mobile, int fax, String email, String address) throws AstuteException; public abstract void updateCustomerContact(String customerId, int contactId, String name,String title,String workPhone,int phExt,String mobile, String fax, String email, String address) throws AstuteException;
public abstract void deleteCustomerContact(String customerId, int contactId) throws AstuteException; public abstract void deleteCustomerContact(String customerId, int contactId) throws AstuteException;

View File

@ -984,10 +984,10 @@ public class SqlDAO extends DAO {
int contactId = rs.getInt(2); int contactId = rs.getInt(2);
String name = rs.getString(3); String name = rs.getString(3);
String title = rs.getString(4); String title = rs.getString(4);
int workPhone = rs.getInt(5); String workPhone = rs.getString(5);
int phoneExt = rs.getInt(6); int phoneExt = rs.getInt(6);
int mobile = rs.getInt(7); String mobile = rs.getString(7);
int fax = rs.getInt(8); String fax = rs.getString(8);
String email = rs.getString(9); String email = rs.getString(9);
String address = rs.getString(10); String address = rs.getString(10);
CustomerContact contact = new CustomerContact(customerID, contactId, name, title, workPhone, phoneExt, mobile, fax, email, address); CustomerContact contact = new CustomerContact(customerID, contactId, name, title, workPhone, phoneExt, mobile, fax, email, address);
@ -1000,17 +1000,17 @@ public class SqlDAO extends DAO {
} }
} }
public String createCustomerContact(String customerId, String name,String title, int workPhone,int phExt,int mobile, int fax, String email, String address) throws AstuteException { public String createCustomerContact(String customerId, String name,String title, String workPhone,int phExt,String mobile, String fax, String email, String address) throws AstuteException {
try { try {
CallableStatement stmt = conn.prepareCall("{? = call create_customer_contact_fun(?,?,?,?,?,?,?,?,?)}"); CallableStatement stmt = conn.prepareCall("{? = call create_customer_contact_fun(?,?,?,?,?,?,?,?,?)}");
stmt.registerOutParameter(1, Types.INTEGER); stmt.registerOutParameter(1, Types.INTEGER);
stmt.setString(2, customerId); stmt.setString(2, customerId);
stmt.setString(3, name); stmt.setString(3, name);
stmt.setString(4, title); stmt.setString(4, title);
stmt.setInt(5, workPhone); stmt.setString(5, workPhone);
stmt.setInt(6, phExt); stmt.setInt(6, phExt);
stmt.setInt(7, mobile); stmt.setString(7, mobile);
stmt.setInt(8, fax); stmt.setString(8, fax);
stmt.setString(9, email); stmt.setString(9, email);
stmt.setString(10, address); stmt.setString(10, address);
stmt.executeUpdate(); stmt.executeUpdate();
@ -1021,7 +1021,7 @@ public class SqlDAO extends DAO {
throw new AstuteException(DB_ERROR,e.getMessage()); throw new AstuteException(DB_ERROR,e.getMessage());
} }
} }
public void updateCustomerContact(String customerId, int contactId, String name,String title,int workPhone,int phExt,int mobile, int fax, String email, String address) throws public void updateCustomerContact(String customerId, int contactId, String name,String title,String workPhone,int phExt,String mobile, String fax, String email, String address) throws
AstuteException { AstuteException {
try { try {
String sql = "UPDATE CUSTOMER_CONTACT "; String sql = "UPDATE CUSTOMER_CONTACT ";
@ -1035,10 +1035,10 @@ public class SqlDAO extends DAO {
updateClause = updateClause + " name = '" + name + "',"; updateClause = updateClause + " name = '" + name + "',";
updateClause = updateClause + " title = '" + title + "',"; updateClause = updateClause + " title = '" + title + "',";
updateClause = updateClause + " work_phone = " + workPhone + ","; updateClause = updateClause + " work_phone = '" + workPhone + "',";
updateClause = updateClause + " work_phone_ext = " + phExt + ","; updateClause = updateClause + " work_phone_ext = " + phExt + ",";
updateClause = updateClause + " mobile = " + mobile + ","; updateClause = updateClause + " mobile = '" + mobile + "',";
updateClause = updateClause + " fax = " + fax + ","; updateClause = updateClause + " fax = '" + fax + "',";
updateClause = updateClause + " address = '" + address + "',"; updateClause = updateClause + " address = '" + address + "',";
updateClause = updateClause + " email = '" + email + "',"; updateClause = updateClause + " email = '" + email + "',";
if (!updateClause.equalsIgnoreCase(" SET ")) { if (!updateClause.equalsIgnoreCase(" SET ")) {

View File

@ -5,14 +5,14 @@ public class CustomerContact {
int contactId; int contactId;
String name; String name;
String title; String title;
int workPhone; String workPhone;
int phExt; int phExt;
int mobile; String mobile;
int fax; String fax;
String email; String email;
String address; String address;
public CustomerContact(String customerId,int contactId,String name,String title,int workPhone,int phExt,int mobile, int fax, String email, String address) { public CustomerContact(String customerId,int contactId,String name,String title,String workPhone,int phExt,String mobile, String fax, String email, String address) {
this.customerId = customerId; this.customerId = customerId;
this.contactId = contactId; this.contactId = contactId;
this.name = name; this.name = name;
@ -57,11 +57,11 @@ public class CustomerContact {
this.title = title; this.title = title;
} }
public int getWorkPhone() { public String getWorkPhone() {
return workPhone; return workPhone;
} }
public void setWorkPhone(int workPhone) { public void setWorkPhone(String workPhone) {
this.workPhone = workPhone; this.workPhone = workPhone;
} }
@ -73,19 +73,19 @@ public class CustomerContact {
this.phExt = phExt; this.phExt = phExt;
} }
public int getMobile() { public String getMobile() {
return mobile; return mobile;
} }
public void setMobile(int mobile) { public void setMobile(String mobile) {
this.mobile = mobile; this.mobile = mobile;
} }
public int getFax() { public String getFax() {
return fax; return fax;
} }
public void setFax(int fax) { public void setFax(String fax) {
this.fax = fax; this.fax = fax;
} }

View File

@ -5,17 +5,17 @@ public class CustomerContactRequest {
int contactId; int contactId;
String name; String name;
String title; String title;
int workPhone; String workPhone;
int phExt; int phExt;
int mobile; String mobile;
int fax; String fax;
String email; String email;
String address; String address;
public CustomerContactRequest() { public CustomerContactRequest() {
} }
public CustomerContactRequest(String customerId,int contactId,String name,String title,int workPhone,int phExt,int mobile, int fax, String email, String address) { public CustomerContactRequest(String customerId,int contactId,String name,String title,String workPhone,int phExt,String mobile, String fax, String email, String address) {
this.customerId = customerId; this.customerId = customerId;
this.contactId = contactId; this.contactId = contactId;
this.name = name; this.name = name;
@ -60,11 +60,11 @@ public class CustomerContactRequest {
this.title = title; this.title = title;
} }
public int getWorkPhone() { public String getWorkPhone() {
return workPhone; return workPhone;
} }
public void setWorkPhone(int workPhone) { public void setWorkPhone(String workPhone) {
this.workPhone = workPhone; this.workPhone = workPhone;
} }
@ -76,19 +76,19 @@ public class CustomerContactRequest {
this.phExt = phExt; this.phExt = phExt;
} }
public int getMobile() { public String getMobile() {
return mobile; return mobile;
} }
public void setMobile(int mobile) { public void setMobile(String mobile) {
this.mobile = mobile; this.mobile = mobile;
} }
public int getFax() { public String getFax() {
return fax; return fax;
} }
public void setFax(int fax) { public void setFax(String fax) {
this.fax = fax; this.fax = fax;
} }

View File

@ -17,11 +17,11 @@ public class CustomerContactService extends Service{
return getDao().getCustomerContacts(customerId); return getDao().getCustomerContacts(customerId);
} }
public String createCustomerContact(String customerId, String name,String title,int workPhone,int phExt,int mobile, int fax, String email, String address) throws AstuteException { public String createCustomerContact(String customerId, String name,String title,String workPhone,int phExt,String mobile, String fax, String email, String address) throws AstuteException {
return getDao().createCustomerContact(customerId, name, title, workPhone, phExt, mobile, fax, email, address); return getDao().createCustomerContact(customerId, name, title, workPhone, phExt, mobile, fax, email, address);
} }
public void updateCustomerContact(String customerId, int contactId, String name,String title,int workPhone,int phExt,int mobile, int fax, String email, String address) throws AstuteException { public void updateCustomerContact(String customerId, int contactId, String name,String title,String workPhone,int phExt,String mobile, String fax, String email, String address) throws AstuteException {
getDao().updateCustomerContact(customerId, contactId, name,title,workPhone,phExt,mobile, fax, email, address); getDao().updateCustomerContact(customerId, contactId, name,title,workPhone,phExt,mobile, fax, email, address);
} }