|
@@ -0,0 +1,384 @@
|
|
|
+<?xml version="1.0" encoding="utf-8"?>
|
|
|
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
+ xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
+ xmlns:tools="http://schemas.android.com/tools"
|
|
|
+ android:id="@+id/main"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:background="@color/white"
|
|
|
+ android:orientation="vertical"
|
|
|
+ tools:context=".ui.group_common.commission_confirm.CommissionConfirmActivity">
|
|
|
+
|
|
|
+ <include
|
|
|
+ layout="@layout/layout_title"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content" />
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:background="@color/white"
|
|
|
+ android:orientation="vertical">
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="@dimen/common_padding"
|
|
|
+ android:layout_marginTop="@dimen/common_padding_large"
|
|
|
+ android:layout_marginEnd="@dimen/common_padding">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:text="@string/condition_filter"
|
|
|
+ android:textSize="@dimen/text_size_medium"
|
|
|
+ android:textStyle="bold" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/filter_switch"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:gravity="end"
|
|
|
+ android:text="@string/hide"
|
|
|
+ android:textColor="@color/title_background_color"
|
|
|
+ android:textSize="@dimen/text_size_medium" />
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <View
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="1dp"
|
|
|
+ android:layout_marginStart="@dimen/common_padding"
|
|
|
+ android:layout_marginTop="@dimen/common_padding_large"
|
|
|
+ android:layout_marginEnd="@dimen/common_padding"
|
|
|
+ android:background="@color/line_color" />
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:id="@+id/commission_filter"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_margin="@dimen/common_padding"
|
|
|
+ android:orientation="vertical">
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:orientation="horizontal">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="@string/company_name"
|
|
|
+ android:textSize="@dimen/text_size_small" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/company_name"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="@dimen/common_padding"
|
|
|
+ android:gravity="end"
|
|
|
+ android:textColor="@color/text_color" />
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <View
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="1dp"
|
|
|
+ android:layout_marginTop="@dimen/common_padding"
|
|
|
+ android:layout_marginBottom="@dimen/common_padding"
|
|
|
+ android:background="@color/line_color" />
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:orientation="horizontal"
|
|
|
+ android:baselineAligned="false">
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:layout_marginEnd="@dimen/common_padding_large"
|
|
|
+ android:orientation="horizontal">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="@string/department"
|
|
|
+ android:textSize="@dimen/text_size_small" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/department"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="@dimen/common_padding"
|
|
|
+ android:gravity="end"
|
|
|
+ android:textColor="@color/text_color" />
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:orientation="horizontal">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="@string/staff"
|
|
|
+ android:textSize="@dimen/text_size_small" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/staff"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="@dimen/common_padding"
|
|
|
+ android:gravity="end"
|
|
|
+ android:textColor="@color/text_color" />
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <View
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="1dp"
|
|
|
+ android:layout_marginTop="@dimen/common_padding"
|
|
|
+ android:layout_marginBottom="@dimen/common_padding"
|
|
|
+ android:background="@color/line_color" />
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:baselineAligned="false"
|
|
|
+ android:orientation="horizontal">
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginEnd="@dimen/common_padding_large"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:orientation="horizontal">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="@string/start_time"
|
|
|
+ android:textSize="@dimen/text_size_small" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/start_time"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="@dimen/common_padding"
|
|
|
+ android:gravity="end"
|
|
|
+ android:hint="@string/please_select"
|
|
|
+ android:textColor="@color/text_color"
|
|
|
+ android:textColorHint="@color/hint_text_color" />
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:orientation="horizontal">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="@string/end_time"
|
|
|
+ android:textSize="@dimen/text_size_small" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/end_time"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="@dimen/common_padding"
|
|
|
+ android:gravity="end"
|
|
|
+ android:hint="@string/please_select"
|
|
|
+ android:textColor="@color/text_color"
|
|
|
+ android:textColorHint="@color/hint_text_color" />
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <View
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="1dp"
|
|
|
+ android:layout_marginTop="@dimen/common_padding"
|
|
|
+ android:layout_marginBottom="@dimen/common_padding"
|
|
|
+ android:background="@color/line_color" />
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:orientation="horizontal">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:text="@string/confirm_status"
|
|
|
+ android:textSize="@dimen/text_size_small" />
|
|
|
+
|
|
|
+ <RadioGroup
|
|
|
+ android:id="@+id/confirm_status"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="@dimen/common_padding_heavy"
|
|
|
+ android:layout_marginStart="@dimen/common_padding_large"
|
|
|
+ android:gravity="center"
|
|
|
+ android:orientation="horizontal">
|
|
|
+
|
|
|
+ <RadioButton
|
|
|
+ android:id="@+id/confirm_all"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:background="@drawable/style_selector_sift"
|
|
|
+ android:button="@null"
|
|
|
+ android:checked="true"
|
|
|
+ android:gravity="center"
|
|
|
+ android:text="@string/all"
|
|
|
+ android:textColor="@color/check_text_view_select" />
|
|
|
+
|
|
|
+ <RadioButton
|
|
|
+ android:id="@+id/unconfirmed"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="@dimen/common_padding"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:background="@drawable/style_selector_sift"
|
|
|
+ android:button="@null"
|
|
|
+ android:gravity="center"
|
|
|
+ android:text="@string/unconfirmed"
|
|
|
+ android:textColor="@color/check_text_view_select" />
|
|
|
+
|
|
|
+ <RadioButton
|
|
|
+ android:id="@+id/confirmed"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="@dimen/common_padding"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:background="@drawable/style_selector_sift"
|
|
|
+ android:button="@null"
|
|
|
+ android:gravity="center"
|
|
|
+ android:text="@string/confirmed"
|
|
|
+ android:textColor="@color/check_text_view_select" />
|
|
|
+
|
|
|
+ </RadioGroup>
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <View
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="1dp"
|
|
|
+ android:layout_marginTop="@dimen/common_padding"
|
|
|
+ android:layout_marginBottom="@dimen/common_padding"
|
|
|
+ android:background="@color/line_color" />
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:orientation="horizontal">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:text="@string/deliver_status"
|
|
|
+ android:textSize="@dimen/text_size_small" />
|
|
|
+
|
|
|
+ <RadioGroup
|
|
|
+ android:id="@+id/deliver_status"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="@dimen/common_padding_heavy"
|
|
|
+ android:layout_marginStart="@dimen/common_padding_large"
|
|
|
+ android:gravity="center"
|
|
|
+ android:orientation="horizontal">
|
|
|
+
|
|
|
+ <RadioButton
|
|
|
+ android:id="@+id/deliver_all"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:background="@drawable/style_selector_sift"
|
|
|
+ android:button="@null"
|
|
|
+ android:checked="true"
|
|
|
+ android:gravity="center"
|
|
|
+ android:text="@string/all"
|
|
|
+ android:textColor="@color/check_text_view_select" />
|
|
|
+
|
|
|
+ <RadioButton
|
|
|
+ android:id="@+id/undelivered"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="@dimen/common_padding"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:background="@drawable/style_selector_sift"
|
|
|
+ android:button="@null"
|
|
|
+ android:gravity="center"
|
|
|
+ android:text="@string/unconfirmed"
|
|
|
+ android:textColor="@color/check_text_view_select" />
|
|
|
+
|
|
|
+ <RadioButton
|
|
|
+ android:id="@+id/delivered"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="@dimen/common_padding"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:background="@drawable/style_selector_sift"
|
|
|
+ android:button="@null"
|
|
|
+ android:gravity="center"
|
|
|
+ android:text="@string/confirmed"
|
|
|
+ android:textColor="@color/check_text_view_select" />
|
|
|
+
|
|
|
+ </RadioGroup>
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <View
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="1dp"
|
|
|
+ android:layout_marginTop="@dimen/common_padding"
|
|
|
+ android:layout_marginBottom="@dimen/common_padding"
|
|
|
+ android:background="@color/line_color" />
|
|
|
+
|
|
|
+ <com.pan_american.android.util.CommitButton
|
|
|
+ android:id="@+id/commit"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="@dimen/button_height"
|
|
|
+ android:layout_margin="@dimen/common_padding" />
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <com.scwang.smart.refresh.layout.SmartRefreshLayout
|
|
|
+ android:id="@+id/daily_payment_container"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="0dp"
|
|
|
+ android:layout_margin="@dimen/common_padding"
|
|
|
+ android:layout_weight="1"
|
|
|
+ app:srlEnablePreviewInEditMode="true">
|
|
|
+
|
|
|
+ <com.scwang.smart.refresh.header.ClassicsHeader
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content" />
|
|
|
+
|
|
|
+ <androidx.recyclerview.widget.RecyclerView
|
|
|
+ android:id="@+id/daily_payment_list"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:overScrollMode="never" />
|
|
|
+
|
|
|
+ <com.scwang.smart.refresh.footer.ClassicsFooter
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content" />
|
|
|
+
|
|
|
+ </com.scwang.smart.refresh.layout.SmartRefreshLayout>
|
|
|
+
|
|
|
+</LinearLayout>
|