增加 成品出库申请列表 规格

master
wanghao 3 weeks ago
parent 5d63919cc1
commit fab4355c84

@ -16,6 +16,7 @@ public class ProductStock extends BaseObservable {
private Long productId;
private String materialCode;
private String materialName;
private String materialSpec;
/**
*
*/
@ -41,6 +42,14 @@ public class ProductStock extends BaseObservable {
private int saleOrderId;
public String getMaterialSpec() {
return materialSpec;
}
public void setMaterialSpec(String materialSpec) {
this.materialSpec = materialSpec;
}
public int getSaleOrderId() {
return saleOrderId;
}

@ -53,6 +53,25 @@
android:text='@{vm.materialName}' />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="35dp">
<TextView
style="@style/item_title_left"
android:layout_width="180dp"
android:layout_height="match_parent"
android:text="规格:" />
<TextView
style="@style/text_info"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text='@{vm.materialSpec}' />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="35dp">

Loading…
Cancel
Save