Compare commits

...

6 Commits

Author SHA1 Message Date
83fdb89a9e Merge branch 'feature/RefactoringGestioneColli' into master-beta
All checks were successful
WMS - Android (New)/pipeline/head This commit looks good
2025-11-19 10:59:43 +01:00
d99fd542c2 Merge branch 'develop' into feature/RefactoringGestioneColli 2025-11-19 10:59:25 +01:00
c21e856a0f Finish v1.48.01(541) 2025-11-19 10:59:03 +01:00
b673940dd6 Finish v1.48.01(541)
All checks were successful
WMS - Android (New)/pipeline/head This commit looks good
2025-11-19 10:59:03 +01:00
b0ce11cbf7 -> v1.48.01 (541) 2025-11-19 10:58:54 +01:00
f245bb5d1e Fix sitArt null in spedizione 2025-11-19 10:57:55 +01:00
2 changed files with 8 additions and 3 deletions

View File

@@ -11,8 +11,8 @@ apply plugin: 'com.google.gms.google-services'
android {
def appVersionCode = 540
def appVersionName = '1.48.00'
def appVersionCode = 541
def appVersionName = '1.48.01'
signingConfigs {
release {

View File

@@ -1571,6 +1571,11 @@ public class SpedizioneViewModel {
.setMtbAart(null);
}
String codJcom = null;
if (pickingObjectDTO.getSitArtOrdDTO() != null)
codJcom = pickingObjectDTO.getSitArtOrdDTO().getCodJcom();
var insertUDSRowRequestDto = new InsertUDSRowRequestDTO()
.setSourceMtbColr(clonedSourceMtbColr)
.setCodMart(pickingObjectDTO.getMtbAart().getCodMart())
@@ -1578,7 +1583,7 @@ public class SpedizioneViewModel {
.setQtaCnf(qtaCnf)
.setNumCnf(numCnf)
.setPartitaMag(partitaMag)
.setCodJcom(pickingObjectDTO.getSitArtOrdDTO().getCodJcom())
.setCodJcom(codJcom)
.setTargetMtbColt(mCurrentMtbColt.clone(false));
if (dataScad != null)