Merge remote-tracking branch 'origin/develop' into develop
This commit is contained in:
commit
78c6e98084
@ -10,8 +10,8 @@ apply plugin: 'com.google.gms.google-services'
|
||||
|
||||
android {
|
||||
|
||||
def appVersionCode = 348
|
||||
def appVersionName = '1.32.08'
|
||||
def appVersionCode = 349
|
||||
def appVersionName = '1.32.09'
|
||||
|
||||
signingConfigs {
|
||||
release {
|
||||
|
||||
@ -138,7 +138,6 @@ public class PVOrdineAcquistoEditViewModel {
|
||||
} catch (Exception e) {
|
||||
this.sendError(e);
|
||||
BarcodeManager.enable();
|
||||
} finally {
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@ -1240,9 +1240,12 @@ public class SpedizioneViewModel {
|
||||
return;
|
||||
}
|
||||
|
||||
var clonedSourceMtbColr = (MtbColr) mtbColrToDispatch.clone();
|
||||
clonedSourceMtbColr.setMtbPartitaMag(null)
|
||||
.setMtbAart(null);
|
||||
MtbColr clonedSourceMtbColr = null;
|
||||
if (mtbColrToDispatch != null) {
|
||||
clonedSourceMtbColr = (MtbColr) mtbColrToDispatch.clone();
|
||||
clonedSourceMtbColr.setMtbPartitaMag(null)
|
||||
.setMtbAart(null);
|
||||
}
|
||||
|
||||
var clonedTargetMtbColt = (MtbColt) mCurrentMtbColt.clone();
|
||||
clonedTargetMtbColt.setMtbColr(null);
|
||||
@ -1341,7 +1344,6 @@ public class SpedizioneViewModel {
|
||||
}, this::sendError);
|
||||
|
||||
|
||||
|
||||
// MtbColt mtbColt = new MtbColt()
|
||||
// .setNumCollo(mtbColrToUpdate.getNumCollo())
|
||||
// .setDataCollo(mtbColrToUpdate.getDataColloS())
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user