BrightSide Workbench Full Report + Source Code
OrderItemComparator.java
Go to the documentation of this file.
1
/*
2
* TurrĂ³ i Cutiller Foundation. License notice.
3
* Copyright (C) 2012 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
20
package
org.turro.erp.purchase;
21
22
import
java.util.Comparator;
23
import
org.turro.erp.entity.OrderItem;
24
import
org.turro.util.CompareUtil;
25
30
public
class
OrderItemComparator
implements
Comparator<OrderItem> {
31
32
@Override
33
public
int
compare
(
OrderItem
o1,
OrderItem
o2) {
34
int
result = CompareUtil.compare(o1.
getProviderId
(), o2.
getProviderId
());
35
if
(result == 0) {
36
result = CompareUtil.compare(o1.
getDocumentDate
(), o2.
getDocumentDate
());
37
}
38
if
(result == 0) {
39
result = CompareUtil.compare(o1.
getDocumentNumber
(), o2.
getDocumentNumber
());
40
}
41
return
result;
42
}
43
44
}
org.turro.erp.entity.OrderItem
Definition:
OrderItem.java:42
org.turro.erp.entity.OrderItem.getDocumentDate
Date getDocumentDate()
Definition:
OrderItem.java:125
org.turro.erp.entity.OrderItem.getProviderId
long getProviderId()
Definition:
OrderItem.java:205
org.turro.erp.entity.OrderItem.getDocumentNumber
String getDocumentNumber()
Definition:
OrderItem.java:141
org.turro.erp.purchase.OrderItemComparator
Definition:
OrderItemComparator.java:30
org.turro.erp.purchase.OrderItemComparator.compare
int compare(OrderItem o1, OrderItem o2)
Definition:
OrderItemComparator.java:33
TurroProjects
Public
BrightSide
bserp-www
src
main
java
org
turro
erp
purchase
OrderItemComparator.java
Generated on Tue Mar 12 2024 07:01:20 for BrightSide by
1.9.1