BrightSide Workbench Full Report + Source Code
org.turro.crm.entity.VendorProspect Class Reference
Inheritance diagram for org.turro.crm.entity.VendorProspect:
Collaboration diagram for org.turro.crm.entity.VendorProspect:

Public Member Functions

Formula getAlert ()
 
void setAlert (Formula alert)
 
Formula getComission ()
 
void setComission (Formula comission)
 
long getId ()
 
void setId (long id)
 
Date getProspectDate ()
 
void setProspectDate (Date prospectDate)
 
Set< SaleActiongetSaleActions ()
 
void setSaleActions (Set< SaleAction > saleActions)
 
SaleProspect getSaleProspect ()
 
void setSaleProspect (SaleProspect saleProspect)
 
Vendor getVendor ()
 
void setVendor (Vendor vendor)
 
Object entityId ()
 
boolean isEmpty ()
 
Set< SaleActiongetUpdatedSaleActions ()
 
- Public Member Functions inherited from org.turro.jpa.entity.IDaoEntity
default boolean isNew ()
 
default void prepareSave ()
 
default void prepareDelete ()
 
default void removeEmpties ()
 
default Collection< Collection > collections ()
 

Detailed Description

Author
llturro

Definition at line 16 of file VendorProspect.java.

Member Function Documentation

◆ entityId()

Object org.turro.crm.entity.VendorProspect.entityId ( )

Implements org.turro.jpa.entity.IDaoEntity.

Definition at line 104 of file VendorProspect.java.

104  {
105  return id;
106  }

◆ getAlert()

Formula org.turro.crm.entity.VendorProspect.getAlert ( )

Definition at line 41 of file VendorProspect.java.

41  {
42  return alert;
43  }

◆ getComission()

Formula org.turro.crm.entity.VendorProspect.getComission ( )

Definition at line 49 of file VendorProspect.java.

49  {
50  return comission;
51  }

◆ getId()

long org.turro.crm.entity.VendorProspect.getId ( )

Definition at line 57 of file VendorProspect.java.

57  {
58  return id;
59  }

◆ getProspectDate()

Date org.turro.crm.entity.VendorProspect.getProspectDate ( )

Definition at line 65 of file VendorProspect.java.

65  {
66  return prospectDate;
67  }

◆ getSaleActions()

Set<SaleAction> org.turro.crm.entity.VendorProspect.getSaleActions ( )

Definition at line 73 of file VendorProspect.java.

73  {
74  Dao dao = new CrmPU();
75  if(id > 0 && dao.isNotLoaded(saleActions)) {
76  saleActions = dao.lazyLoader(VendorProspect.class, this, "saleActions").saleActions;
77  }
78  return saleActions;
79  }
Here is the call graph for this function:
Here is the caller graph for this function:

◆ getSaleProspect()

SaleProspect org.turro.crm.entity.VendorProspect.getSaleProspect ( )

Definition at line 85 of file VendorProspect.java.

85  {
86  return saleProspect;
87  }
Here is the caller graph for this function:

◆ getUpdatedSaleActions()

Set<SaleAction> org.turro.crm.entity.VendorProspect.getUpdatedSaleActions ( )

Definition at line 116 of file VendorProspect.java.

116  {
117  Dao dao = new CrmPU();
118  if(id > 0) {
119  saleActions = dao.lazyLoader(VendorProspect.class, this, "saleActions").saleActions;
120  }
121  return saleActions;
122  }

◆ getVendor()

Vendor org.turro.crm.entity.VendorProspect.getVendor ( )

Definition at line 93 of file VendorProspect.java.

93  {
94  return vendor;
95  }
Here is the caller graph for this function:

◆ isEmpty()

boolean org.turro.crm.entity.VendorProspect.isEmpty ( )

Implements org.turro.jpa.entity.IDaoEntity.

Definition at line 109 of file VendorProspect.java.

109  {
110  return saleProspect == null || vendor == null ||
111  comission == null || alert == null;
112  }
Here is the caller graph for this function:

◆ setAlert()

void org.turro.crm.entity.VendorProspect.setAlert ( Formula  alert)

Definition at line 45 of file VendorProspect.java.

45  {
46  this.alert = alert;
47  }
Here is the caller graph for this function:

◆ setComission()

void org.turro.crm.entity.VendorProspect.setComission ( Formula  comission)

Definition at line 53 of file VendorProspect.java.

53  {
54  this.comission = comission;
55  }
Here is the caller graph for this function:

◆ setId()

void org.turro.crm.entity.VendorProspect.setId ( long  id)

Definition at line 61 of file VendorProspect.java.

61  {
62  this.id = id;
63  }

◆ setProspectDate()

void org.turro.crm.entity.VendorProspect.setProspectDate ( Date  prospectDate)

Definition at line 69 of file VendorProspect.java.

69  {
70  this.prospectDate = prospectDate;
71  }

◆ setSaleActions()

void org.turro.crm.entity.VendorProspect.setSaleActions ( Set< SaleAction saleActions)

Definition at line 81 of file VendorProspect.java.

81  {
82  this.saleActions = saleActions;
83  }

◆ setSaleProspect()

void org.turro.crm.entity.VendorProspect.setSaleProspect ( SaleProspect  saleProspect)

Definition at line 89 of file VendorProspect.java.

89  {
90  this.saleProspect = saleProspect;
91  }
Here is the caller graph for this function:

◆ setVendor()

void org.turro.crm.entity.VendorProspect.setVendor ( Vendor  vendor)

Definition at line 97 of file VendorProspect.java.

97  {
98  this.vendor = vendor;
99  }
Here is the caller graph for this function:

The documentation for this class was generated from the following file: