From 1bcc7073335e5003b72577b9eb9ac3bfb20da665 Mon Sep 17 00:00:00 2001 From: trifonnt Date: Tue, 20 Apr 2010 10:33:10 +0000 Subject: [PATCH] FR [2987625] - Add more details to Organization https://sourceforge.net/tracker/?func=detail&atid=879335&aid=2987625&group_id=176962 --- base/src/org/compiere/model/I_AD_OrgInfo.java | 52 ++++++++++++++ base/src/org/compiere/model/X_AD_OrgInfo.java | 70 ++++++++++++++++++- 2 files changed, 121 insertions(+), 1 deletion(-) diff --git a/base/src/org/compiere/model/I_AD_OrgInfo.java b/base/src/org/compiere/model/I_AD_OrgInfo.java index 47782c82b5..1d12b40a3f 100644 --- a/base/src/org/compiere/model/I_AD_OrgInfo.java +++ b/base/src/org/compiere/model/I_AD_OrgInfo.java @@ -151,6 +151,32 @@ public interface I_AD_OrgInfo */ public String getDUNS(); + /** Column name EMail */ + public static final String COLUMNNAME_EMail = "EMail"; + + /** Set EMail Address. + * Electronic Mail Address + */ + public void setEMail (String EMail); + + /** Get EMail Address. + * Electronic Mail Address + */ + public String getEMail(); + + /** Column name Fax */ + public static final String COLUMNNAME_Fax = "Fax"; + + /** Set Fax. + * Facsimile number + */ + public void setFax (String Fax); + + /** Get Fax. + * Facsimile number + */ + public String getFax(); + /** Column name IsActive */ public static final String COLUMNNAME_IsActive = "IsActive"; @@ -201,6 +227,32 @@ public interface I_AD_OrgInfo */ public int getParent_Org_ID(); + /** Column name Phone */ + public static final String COLUMNNAME_Phone = "Phone"; + + /** Set Phone. + * Identifies a telephone number + */ + public void setPhone (String Phone); + + /** Get Phone. + * Identifies a telephone number + */ + public String getPhone(); + + /** Column name Phone2 */ + public static final String COLUMNNAME_Phone2 = "Phone2"; + + /** Set 2nd Phone. + * Identifies an alternate telephone number. + */ + public void setPhone2 (String Phone2); + + /** Get 2nd Phone. + * Identifies an alternate telephone number. + */ + public String getPhone2(); + /** Column name ReceiptFooterMsg */ public static final String COLUMNNAME_ReceiptFooterMsg = "ReceiptFooterMsg"; diff --git a/base/src/org/compiere/model/X_AD_OrgInfo.java b/base/src/org/compiere/model/X_AD_OrgInfo.java index a079a5cacd..3a2014a26e 100644 --- a/base/src/org/compiere/model/X_AD_OrgInfo.java +++ b/base/src/org/compiere/model/X_AD_OrgInfo.java @@ -29,7 +29,7 @@ public class X_AD_OrgInfo extends PO implements I_AD_OrgInfo, I_Persistent /** * */ - private static final long serialVersionUID = 20090915L; + private static final long serialVersionUID = 20100419L; /** Standard Constructor */ public X_AD_OrgInfo (Properties ctx, int AD_OrgInfo_ID, String trxName) @@ -201,6 +201,40 @@ public class X_AD_OrgInfo extends PO implements I_AD_OrgInfo, I_Persistent return (String)get_Value(COLUMNNAME_DUNS); } + /** Set EMail Address. + @param EMail + Electronic Mail Address + */ + public void setEMail (String EMail) + { + set_Value (COLUMNNAME_EMail, EMail); + } + + /** Get EMail Address. + @return Electronic Mail Address + */ + public String getEMail () + { + return (String)get_Value(COLUMNNAME_EMail); + } + + /** Set Fax. + @param Fax + Facsimile number + */ + public void setFax (String Fax) + { + set_Value (COLUMNNAME_Fax, Fax); + } + + /** Get Fax. + @return Facsimile number + */ + public String getFax () + { + return (String)get_Value(COLUMNNAME_Fax); + } + /** Set Logo. @param Logo_ID Logo */ public void setLogo_ID (int Logo_ID) @@ -272,6 +306,40 @@ public class X_AD_OrgInfo extends PO implements I_AD_OrgInfo, I_Persistent return ii.intValue(); } + /** Set Phone. + @param Phone + Identifies a telephone number + */ + public void setPhone (String Phone) + { + set_Value (COLUMNNAME_Phone, Phone); + } + + /** Get Phone. + @return Identifies a telephone number + */ + public String getPhone () + { + return (String)get_Value(COLUMNNAME_Phone); + } + + /** Set 2nd Phone. + @param Phone2 + Identifies an alternate telephone number. + */ + public void setPhone2 (String Phone2) + { + set_Value (COLUMNNAME_Phone2, Phone2); + } + + /** Get 2nd Phone. + @return Identifies an alternate telephone number. + */ + public String getPhone2 () + { + return (String)get_Value(COLUMNNAME_Phone2); + } + /** Set Receipt Footer Msg. @param ReceiptFooterMsg This message will be displayed at the bottom of a receipt when doing a sales or purchase