Used the wrong endpoint for populating species, changed to to the correct one

also added coupon option to sales
This commit is contained in:
Alex
2026-04-11 23:50:22 -06:00
parent 8ae47ef056
commit 0311887185
12 changed files with 231 additions and 6 deletions

View File

@@ -60,6 +60,17 @@
android:padding="16dp"
android:layout_marginBottom="16dp">
<TextView
android:id="@+id/tvCouponId"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@color/text_light"
android:textSize="11sp"
android:textStyle="italic"
android:layout_gravity="end"
android:layout_marginBottom="8dp"
android:visibility="gone"/>
<!-- Coupon Code -->
<TextView
android:layout_width="wrap_content"

View File

@@ -262,6 +262,66 @@
android:layout_height="wrap_content"
android:orientation="vertical"/>
<LinearLayout
android:id="@+id/llCouponInput"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:layout_marginTop="12dp">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Coupon Code"
android:textColor="@color/text_dark"
android:textSize="12sp"
android:layout_marginBottom="4dp"/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:gravity="center_vertical">
<EditText
android:id="@+id/etCouponCode"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:hint="Enter coupon code"
android:inputType="textCapCharacters"
android:layout_marginEnd="8dp"/>
<Button
android:id="@+id/btnApplyCoupon"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Apply"
android:backgroundTint="@color/primary_medium"
android:textColor="@color/white"/>
<Button
android:id="@+id/btnClearCoupon"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Clear"
android:backgroundTint="@color/accent_coral"
android:textColor="@color/white"
android:layout_marginStart="4dp"
android:visibility="gone"/>
</LinearLayout>
<TextView
android:id="@+id/tvCouponInfo"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="12sp"
android:layout_marginTop="4dp"
android:visibility="gone"/>
</LinearLayout>
<View
android:layout_width="match_parent"
android:layout_height="1dp"