Finish v1.32.23(363)

This commit is contained in:
Giuseppe Scorrano 2023-03-29 16:47:02 +02:00
commit 0cc742e103
2 changed files with 4 additions and 4 deletions

View File

@ -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 {

View File

@ -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();