- Author
- llturro
Definition at line 18 of file Vendor.java.
◆ entityId()
Object org.turro.crm.entity.Vendor.entityId |
( |
| ) |
|
◆ getCustomerOwned()
Set<CustomerOwner> org.turro.crm.entity.Vendor.getCustomerOwned |
( |
| ) |
|
Definition at line 34 of file Vendor.java.
35 Dao dao =
new CrmPU();
36 if(
id > 0 && dao.isNotLoaded(customerOwned)) {
37 customerOwned = dao.lazyLoader(Vendor.class,
this,
"customerOwned").customerOwned;
◆ getIContact()
IContact org.turro.crm.entity.Vendor.getIContact |
( |
| ) |
|
Definition at line 100 of file Vendor.java.
101 if(_contact ==
null) {
102 _contact = Contacts.getContactById(idContact);
◆ getId()
long org.turro.crm.entity.Vendor.getId |
( |
| ) |
|
◆ getIdContact()
String org.turro.crm.entity.Vendor.getIdContact |
( |
| ) |
|
◆ getName()
String org.turro.crm.entity.Vendor.getName |
( |
| ) |
|
◆ getVendorProspects()
Set<VendorProspect> org.turro.crm.entity.Vendor.getVendorProspects |
( |
| ) |
|
Definition at line 72 of file Vendor.java.
73 Dao dao =
new CrmPU();
74 if(
id > 0 && dao.isNotLoaded(vendorProspects)) {
75 vendorProspects = dao.lazyLoader(Vendor.class,
this,
"vendorProspects").vendorProspects;
77 return vendorProspects;
◆ isEmpty()
boolean org.turro.crm.entity.Vendor.isEmpty |
( |
| ) |
|
◆ setCustomerOwned()
void org.turro.crm.entity.Vendor.setCustomerOwned |
( |
Set< CustomerOwner > |
customerOwned | ) |
|
Definition at line 42 of file Vendor.java.
43 this.customerOwned = customerOwned;
◆ setIContact()
void org.turro.crm.entity.Vendor.setIContact |
( |
IContact |
contact | ) |
|
Definition at line 107 of file Vendor.java.
109 idContact = _contact !=
null ? _contact.
getId() :
null;
110 name = _contact !=
null ? _contact.
getName() :
null;
◆ setId()
void org.turro.crm.entity.Vendor.setId |
( |
long |
id | ) |
|
◆ setIdContact()
void org.turro.crm.entity.Vendor.setIdContact |
( |
String |
idContact | ) |
|
Definition at line 58 of file Vendor.java.
59 this.idContact = idContact;
void setIContact(IContact contact)
◆ setName()
void org.turro.crm.entity.Vendor.setName |
( |
String |
name | ) |
|
◆ setVendorProspects()
void org.turro.crm.entity.Vendor.setVendorProspects |
( |
Set< VendorProspect > |
vendorProspects | ) |
|
Definition at line 80 of file Vendor.java.
81 this.vendorProspects = vendorProspects;
The documentation for this class was generated from the following file: