修改 原材料入库界面item

master
wangh 5 months ago
parent a912e9a6ef
commit ec2304bf0f

@ -11,7 +11,7 @@ import java.util.Objects;
* @date 2023-12-20
*/
public class OutstockDetail {
private boolean selectedState=false;
private boolean selectedState = false;
/**
* ID
*/
@ -141,7 +141,16 @@ public class OutstockDetail {
private String taskType;
private String taskCode;
private int index;
private int index;
private String warehouseName;
public String getWarehouseName() {
return warehouseName;
}
public void setWarehouseName(String warehouseName) {
this.warehouseName = warehouseName;
}
public int getIndex() {
return index;

@ -53,7 +53,7 @@
android:layout_width="80dp"
android:layout_height="match_parent"
android:gravity="left|center"
android:text="库位:"
android:text="仓库名称:"
android:textColor="#666666" />
<TextView
@ -61,7 +61,7 @@
android:layout_height="match_parent"
android:layout_weight="1"
android:gravity="left|center"
android:text="@{vm.locationCode}"
android:text="@{vm.warehouseName}"
android:textColor="#666666" />
</LinearLayout>
@ -85,7 +85,7 @@
android:layout_height="match_parent"
android:layout_weight="1"
android:gravity="left|center"
android:text="@{vm.instockBatch}"
android:text="@{vm.materialCode}"
android:textColor="#666666" />
</LinearLayout>

Loading…
Cancel
Save