Finish V1.46.07(495)

This commit is contained in:
Marco Elefante 2025-04-16 12:54:27 +02:00
commit 5c90f22a49
3 changed files with 5 additions and 5 deletions

View File

@ -10,8 +10,8 @@ apply plugin: 'com.google.gms.google-services'
android {
def appVersionCode = 494
def appVersionName = '1.46.06'
def appVersionCode = 495
def appVersionName = '1.46.07'
signingConfigs {
release {

View File

@ -255,9 +255,9 @@ public class DialogInputQuantityV2View extends BaseDialogFragment implements Dia
}
private final RunnableArgs<BarcodeScanDTO> onScanSuccessful = data -> {
this.onLoadingStarted();
handler.post(() -> {
this.onLoadingStarted();
executorService.execute(() -> {
try {
this.mViewModel.processBarcodeDTO(data);
this.onLoadingEnded();

View File

@ -182,7 +182,7 @@ public class DialogScanOrCreateLUViewModel {
} else {
var createUdcRequest = new CreateUDCRequestDTO()
.setBarcodeUl(barcodeScanDTO.getStringValue())
.setBarcodeUl(ean128Model.Sscc)
.setCodMdep(SettingsManager.i().getUserSession().getDepo().getCodMdep());
this.mColliLavorazioneRESTConsumer.createUDC(createUdcRequest, createdMtbColt -> {