Finish v1.44.10(479)

This commit is contained in:
Giuseppe Scorrano 2025-03-03 11:52:21 +01:00
commit c3c3d32dfe
2 changed files with 12 additions and 4 deletions

View File

@ -10,8 +10,8 @@ apply plugin: 'com.google.gms.google-services'
android { android {
def appVersionCode = 478 def appVersionCode = 479
def appVersionName = '1.44.09' def appVersionName = '1.44.10'
signingConfigs { signingConfigs {
release { release {

View File

@ -654,9 +654,17 @@ public class AccettazioneOrdiniPickingActivity extends BaseActivity implements A
this.fabPopupMenu.dismiss(); this.fabPopupMenu.dismiss();
this.onLoadingStarted(); this.onLoadingStarted();
executorService.execute(() -> {
try {
//Aggiunto perchè a volte rimaneva il dialog di caricamento avanti a tutto
Thread.sleep(1000);
} catch (InterruptedException e) {
throw new RuntimeException(e);
}
this.mViewModel.createNewLU(null, null, null, false, () -> { this.mViewModel.createNewLU(null, null, null, false, () -> {
this.onLoadingEnded(); this.onLoadingEnded();
}); });
});
} }
public void trackPackaging() { public void trackPackaging() {