Risolta anomalia del filtro ordine quando si recupera una UL.

Risolta anomalia dello spazio nel campo del Lotto.
This commit is contained in:
2020-12-17 13:03:00 +01:00
parent 5be3fd9c25
commit 9ac96ac8fd
3 changed files with 5 additions and 3 deletions

View File

@@ -171,7 +171,7 @@ public class Converters {
view.addTextChangedListener(watcher);
}
String newValue = observableString.get();
String viewValue = view.getText().toString().trim();
String viewValue = view.getText().toString();
if(!viewValue.equalsIgnoreCase(newValue)) {
view.setText(newValue);

View File

@@ -1445,6 +1445,8 @@ public class SpedizioneViewModel {
this.mCurrentMtbColt = mtbColt;
mMtbColtSessionID = this.mColliDataRecoverService.startNewSession(mtbColt, mTestateOrdini);
this.mCurrentMtbColt.generaFiltroOrdineFromDTO(mDefaultFiltroOrdine);
this.resetMatchedRows();
this.sendLUOpened(this.mCurrentMtbColt);
}