FR [2987625] - Add more details to Organization
https://sourceforge.net/tracker/?func=detail&atid=879335&aid=2987625&group_id=176962
This commit is contained in:
parent
444691af1b
commit
1bcc707333
|
@ -151,6 +151,32 @@ public interface I_AD_OrgInfo
|
||||||
*/
|
*/
|
||||||
public String getDUNS();
|
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 */
|
/** Column name IsActive */
|
||||||
public static final String COLUMNNAME_IsActive = "IsActive";
|
public static final String COLUMNNAME_IsActive = "IsActive";
|
||||||
|
|
||||||
|
@ -201,6 +227,32 @@ public interface I_AD_OrgInfo
|
||||||
*/
|
*/
|
||||||
public int getParent_Org_ID();
|
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 */
|
/** Column name ReceiptFooterMsg */
|
||||||
public static final String COLUMNNAME_ReceiptFooterMsg = "ReceiptFooterMsg";
|
public static final String COLUMNNAME_ReceiptFooterMsg = "ReceiptFooterMsg";
|
||||||
|
|
||||||
|
|
|
@ -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 */
|
/** Standard Constructor */
|
||||||
public X_AD_OrgInfo (Properties ctx, int AD_OrgInfo_ID, String trxName)
|
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);
|
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.
|
/** Set Logo.
|
||||||
@param Logo_ID Logo */
|
@param Logo_ID Logo */
|
||||||
public void setLogo_ID (int Logo_ID)
|
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();
|
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.
|
/** Set Receipt Footer Msg.
|
||||||
@param ReceiptFooterMsg
|
@param ReceiptFooterMsg
|
||||||
This message will be displayed at the bottom of a receipt when doing a sales or purchase
|
This message will be displayed at the bottom of a receipt when doing a sales or purchase
|
||||||
|
|
Loading…
Reference in New Issue