BrightSide Workbench Full Report + Source Code
SaleProspectListbox.java
Go to the documentation of this file.
1
/*
2
* TurrĂ³ i Cutiller Foundation. License notice.
3
* Copyright (C) 2013 Lluis TurrĂ³ Cutiller <http://www.turro.org/>
4
*
5
* This program is free software: you can redistribute it and/or modify
6
* it under the terms of the GNU Affero General Public License as published by
7
* the Free Software Foundation, either version 3 of the License, or
8
* (at your option) any later version.
9
*
10
* This program is distributed in the hope that it will be useful,
11
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
* GNU Affero General Public License for more details.
14
*
15
* You should have received a copy of the GNU Affero General Public License
16
* along with this program. If not, see <http://www.gnu.org/licenses/>.
17
*/
18
19
package
org.turro.crm.zul.sale;
20
21
import
org.turro.crm.entity.SaleProspect;
22
import
org.turro.i18n.I_;
23
import
org.turro.zkoss.input.CollectionListbox;
24
import
org.zkoss.zul.Listhead;
25
import
org.zkoss.zul.Listheader;
26
31
public
class
SaleProspectListbox
extends
CollectionListbox
<SaleProspect> {
32
33
@Override
34
protected
String
convertToString
(
SaleProspect
v) {
35
if
(v ==
null
)
return
null
;
36
return
v.
getFullDescription
();
37
}
38
39
@Override
40
public
void
afterCompose
() {
41
addHeaders();
42
super.afterCompose();
43
}
44
45
private
void
addHeaders() {
46
if
(getListhead() !=
null
)
return
;
47
Listhead lh =
new
Listhead();
48
lh.setSizable(
true
);
49
lh.appendChild(
new
Listheader(
I_
.
get
(
"Sale prospect"
)));
50
appendChild(lh);
51
}
52
53
}
54
55
org.turro.crm.entity.SaleProspect
Definition:
SaleProspect.java:24
org.turro.crm.entity.SaleProspect.getFullDescription
String getFullDescription()
Definition:
SaleProspect.java:166
org.turro.crm.zul.sale.SaleProspectListbox
Definition:
SaleProspectListbox.java:31
org.turro.crm.zul.sale.SaleProspectListbox.afterCompose
void afterCompose()
Definition:
SaleProspectListbox.java:40
org.turro.crm.zul.sale.SaleProspectListbox.convertToString
String convertToString(SaleProspect v)
Definition:
SaleProspectListbox.java:34
org.turro.i18n.I_
Definition:
I_.java:39
org.turro.i18n.I_.get
static String get(String msg)
Definition:
I_.java:41
org.turro.zkoss.input.CollectionListbox
Definition:
CollectionListbox.java:32
TurroProjects
Public
BrightSide
elephant-crm
src
main
java
org
turro
crm
zul
sale
SaleProspectListbox.java
Generated on Tue Mar 12 2024 07:01:20 for BrightSide by
1.9.1