BrightSide Workbench Full Report + Source Code
org.turro.crm.zul.sale.ActionStatus Class Reference

Static Public Member Functions

static String getStringStatus (int status)
 
static String getStringStatus (SaleAction sa)
 

Detailed Description

Author
Lluis TurrĂ³ Cutiller lluis.nosp@m.@tur.nosp@m.ro.or.nosp@m.g

Definition at line 28 of file ActionStatus.java.

Member Function Documentation

◆ getStringStatus() [1/2]

static String org.turro.crm.zul.sale.ActionStatus.getStringStatus ( int  status)
static

Definition at line 30 of file ActionStatus.java.

30  {
31  if(status == SaleAction.SA_PENDING) {
32  return I_.get("To do");
33  } else if(status == SaleAction.SA_DONE) {
34  return I_.get("Done");
35  } else if(status == SaleAction.SA_CANCELLED) {
36  return I_.get("Cancelled");
37  }
38  return null;
39  }
Here is the call graph for this function:
Here is the caller graph for this function:

◆ getStringStatus() [2/2]

static String org.turro.crm.zul.sale.ActionStatus.getStringStatus ( SaleAction  sa)
static

Definition at line 41 of file ActionStatus.java.

41  {
42  return getStringStatus(sa.getStatus());
43  }
static String getStringStatus(int status)
Here is the call graph for this function:

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