Migliorie in rientro merce

This commit is contained in:
2025-06-20 18:48:33 +02:00
parent aa1c3b877d
commit 404716d269
2 changed files with 18 additions and 1 deletions

View File

@@ -323,7 +323,7 @@ public class ProdRientroMerceOrderListFragment extends Fragment {
String testataOrdString = "" + x.getNumOrd();
listModel.setDescription(testataOrdString);
listModel.setSubDescription(x.getDescrizioneProd());
listModel.setSubDescription(x.getCodProd() + " - " + x.getDescrizioneProd());
listModel.setRightDescription(x.getCodJcom() != null ? (x.getDescCommessa() + " (" + x.getCodJcom() + ")") : "");

View File

@@ -189,9 +189,26 @@
</RelativeLayout>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@{view.currentOrder.codProd}"
android:textAppearance="@style/AppTheme.NewMaterial.Text.ExtraSmall"
android:textStyle="bold"
android:textAllCaps="true"
tools:text="Codice prodotto"/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@{view.currentOrder.descrizioneProd}"
android:textAppearance="@style/AppTheme.NewMaterial.Text.Small"
tools:text="Descrizione prodotto"/>
<androidx.appcompat.widget.LinearLayoutCompat
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:weightSum="2">
<androidx.appcompat.widget.LinearLayoutCompat