...
|
...
|
@@ -16,9 +16,12 @@ public class OrderAssist { |
|
|
return new StringBuilder().append(storageId).append("_").append(salePrice).toString();
|
|
|
}
|
|
|
|
|
|
public static boolean skupIsAdvance(Integer attribute){
|
|
|
return Objects.nonNull(attribute) && SkupType.ADVANCE.getCode() == attribute;
|
|
|
}
|
|
|
|
|
|
public static String getSkupIsAdvance(Integer attribute){
|
|
|
return Objects.nonNull(attribute) && SkupType.ADVANCE.getCode() == attribute ? Y : N;
|
|
|
return skupIsAdvance(attribute) ? Y : N;
|
|
|
}
|
|
|
|
|
|
public static String getOrderIsAdvance(Integer attribute){
|
...
|
...
|
|