Finish v1.32.23(363)
This commit is contained in:
commit
0cc742e103
@ -10,8 +10,8 @@ apply plugin: 'com.google.gms.google-services'
|
|||||||
|
|
||||||
android {
|
android {
|
||||||
|
|
||||||
def appVersionCode = 362
|
def appVersionCode = 363
|
||||||
def appVersionName = '1.32.22'
|
def appVersionName = '1.32.23'
|
||||||
|
|
||||||
signingConfigs {
|
signingConfigs {
|
||||||
release {
|
release {
|
||||||
|
|||||||
@ -119,7 +119,7 @@ public class DialogInfoSituazioneArticoloView extends BaseDialogRowInfoView {
|
|||||||
availableItems = new ArrayList<>();
|
availableItems = new ArrayList<>();
|
||||||
|
|
||||||
availableItems = Stream.of(availableItems)
|
availableItems = Stream.of(availableItems)
|
||||||
.filter(x -> UtilityDate.isAfterToday(x.getDataScad()))
|
.filter(x -> x.getDataScad() == null || UtilityDate.isAfterToday(x.getDataScad()))
|
||||||
.toList();
|
.toList();
|
||||||
|
|
||||||
if(availableItems.isEmpty())
|
if(availableItems.isEmpty())
|
||||||
@ -141,7 +141,7 @@ public class DialogInfoSituazioneArticoloView extends BaseDialogRowInfoView {
|
|||||||
|
|
||||||
var itemListCommessaNotMatchMatch = Stream.of(itemList)
|
var itemListCommessaNotMatchMatch = Stream.of(itemList)
|
||||||
.filter(dialogInfoSituazioneArticoloAvailableListItem -> !dialogInfoSituazioneArticoloAvailableListItem.isCommessaMatch())
|
.filter(dialogInfoSituazioneArticoloAvailableListItem -> !dialogInfoSituazioneArticoloAvailableListItem.isCommessaMatch())
|
||||||
.sortBy(x -> x.getDataScad())
|
.sortBy(x -> x.getDataScad() == null ? UtilityDate.getNow() : x.getDataScad())
|
||||||
.toList();
|
.toList();
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user