| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- <?xml version="1.0" encoding="utf-8"?>
- <!--仓库管理:物料库存核查-->
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:orientation="vertical" android:layout_width="match_parent"
- android:layout_height="match_parent">
- <!--搜索-->
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="@dimen/space_top_8"
- android:layout_marginLeft="@dimen/space_left_8"
- android:layout_marginRight="@dimen/space_right_8">
- <com.uas.hy_electronic.view.ClearableEditText
- android:id="@+id/et_prodcode_whmm"
- android:hint="条码号"
- style="@style/PopWinEditTextStyle"
- android:layout_weight="2"/>
- <TextView
- android:id="@+id/btn_search_whmm"
- style="@style/PopWinButtonStyle"
- android:layout_weight="4"
- android:background="@drawable/search_16"/>
- </LinearLayout>
- <LinearLayout
- android:orientation="horizontal"
- android:layout_width="match_parent"
- android:layout_height="wrap_content">
- </LinearLayout>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content">
- <com.uas.hy_electronic.view.ClearableEditText
- android:layout_marginTop="8dp"
- android:id="@+id/et_whcode_whmm"
- android:layout_marginLeft="@dimen/space_left_8"
- android:layout_marginRight="@dimen/space_right_8"
- style="@style/PopWinEditTextStyle"
- android:layout_weight="1"
- android:hint="仓库" />
- <ImageView
- android:id="@+id/iv_search"
- android:layout_width="@dimen/height_32"
- android:layout_height="@dimen/height_32"
- android:layout_gravity="center_vertical"
- android:background="@drawable/bg_button"
- android:layout_marginLeft="@dimen/space_left_5"
- android:layout_marginRight="@dimen/dp_10"
- android:src="@drawable/search_48"/>
- </LinearLayout>
- <!--中部-->
- <TableLayout
- android:layout_marginTop="@dimen/space_top_8"
- style="@style/CardWhiteStyle_wrapheight">
- <TableRow>
- <TextView
- style="@style/CardContentTextStyle"
- android:text="编号"/>
- <TextView
- android:id="@+id/tv_barprodcode"
- style="@style/CardContentTextStyle"
- android:textColor="@color/text_search"/>
- </TableRow>
- <TableRow>
- <TextView
- style="@style/CardContentTextStyle"
- android:text="@string/text_fragment_whcheck_pr_detail"/>
- <TextView
- android:id="@+id/tv_pr_detail"
- style="@style/CardContentTextStyle"
- android:textColor="@color/text_search"/>
- </TableRow>
- <TableRow>
- <TextView
- style="@style/CardContentTextStyle"
- android:text="@string/text_fragment_whcheck_pr_spec" />
- <TextView
- android:id="@+id/tv_pr_spec"
- style="@style/CardContentTextStyle"
- android:textColor="@color/text_search" />
- </TableRow>
- <TableRow>
- <TextView
- style="@style/CardContentTextStyle"
- android:text="总数" />
- <TextView
- android:id="@+id/tv_pr_qty"
- style="@style/CardContentTextStyle"
- android:textColor="@color/text_search" />
- </TableRow>
- </TableLayout>
- <LinearLayout
- style="@style/CardWhiteSytle_fillheight"
- android:background="@color/white">
- <include layout="@layout/item_list_table"/>
- <!--信息列表-->
- <ScrollView
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:fillViewport="true"
- android:background="@color/transparent">
- <ListView
- android:id="@+id/lv_detail_whmm"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:background="@color/transparent"/>
- </ScrollView>
- </LinearLayout>
- </LinearLayout>
|