#!/bin/bash
echo -n "Enter Product 1: "
read product1
echo -n "\nEnter Price: $"
read price1
echo -n "Enter Product 2: "
read product2
echo -n "Enter Price: $"
read price2
echo -n "Enter Product 3: "
read product3
echo -n "Enter Price: $"
read price3
echo -e "\nInput Mode of Payment Terms\n"
echo "Cash Discount: 10"
echo " You input 10% for Cash Discount"
echo "3 Months Installment: 5"
echo " You input 5% for 3 Months Installment"
echo "6 Months Installment: 10"
echo " You input 10% for 6 Months Installment"
echo "12 Months Installment: 20"
echo " You input 20% for 12 Months Installment"
echo -e "\nMain Menu"
printf "Press I: %-30s \$%'.2f\n" "$product1" "$price1"
printf "Press S: %-30s \$%'.2f\n" "$product2" "$price2"
printf "Press X: %-30s \$%'.2f\n" "$product3" "$price3"
echo -e "\nEnter Item: \c"
read item
case $item in
I|i) selected_product=$product1; selected_price=$price1 ;;
S|s) selected_product=$product2; selected_price=$price2 ;;
X|x) selected_product=$product3; selected_price=$price3 ;;
*) echo "Invalid selection"; exit 1 ;;
esac
echo -e "\nYour Item is $selected_product"
printf "Price: \$%'.2f\n" "$selected_price"
echo -e "\nSelect Mode of Payment"
echo "Press 1: Cash 10% Discount"
echo "Press 2: 3 Months Installment 5% Interest"
echo "Press 3: 6 Months Installment 10% Interest"
echo "Press 4: 12 Months Installment 20% Interest"
echo -e "\nEnter Mode of Payment: \c"
read payment
case $payment in
1) discount=10; term="Cash";;
2) discount=5; term="3 Months Installment";;
3) discount=10; term="6 Months Installment";;
4) discount=20; term="12 Months Installment";;
*) echo "Invalid selection"; exit 1 ;;
esac
price_numeric=$(echo "$selected_price" | tr -d ',') # Remove comma
discount_amount=$(echo "$price_numeric * $discount / 100" | bc)
if [ "$payment" -eq 1 ]; then
total_amount=$(echo "$price_numeric - $discount_amount" | bc)
else
total_amount=$(echo "$price_numeric + $discount_amount" | bc)
months=$(echo "$term" | awk '{print $1}') # Extracts months from term
monthly=$(echo "$total_amount / $months" | bc)
fi
echo -e "\nMode of Payment: $term"
echo "Item: $selected_product"
printf "Price: \$%'.2f\n" "$selected_price"
printf "Discount/Interest: \$%'.2f\n" "$discount_amount"
printf "Total Amount: \$%'.2f\n" "$total_amount"
if [ "$payment" -ne 1 ]; then
printf "Monthly: \$%'.2f\n" "$monthly"
fi