Compare commits

..

No commits in common. "8bf4d6da22d8acfbb69e9a88a67922b384b886ed" and "a449a366e07bea1eecfd878b2142d755b36acd2c" have entirely different histories.

2 changed files with 8 additions and 9 deletions

View File

@ -314,9 +314,8 @@ public class QRTransactionFragment extends DataBindingFragment implements DataBi
retrievedUpdatePayDetail(refLabel, payDetail,false); retrievedUpdatePayDetail(refLabel, payDetail,false);
double realAmount = payDetail.getAmount() / 100.0;
DecimalFormat df = new DecimalFormat("0.00"); DecimalFormat df = new DecimalFormat("0.00");
String amount = df.format(realAmount); String amount = df.format(payDetail.getAmount());
String currentTimeStamp = new java.text.SimpleDateFormat("MMddHHmmss", java.util.Locale.getDefault()) String currentTimeStamp = new java.text.SimpleDateFormat("MMddHHmmss", java.util.Locale.getDefault())
.format(new java.util.Date()); .format(new java.util.Date());

View File

@ -61,13 +61,13 @@
android:text="Original Amount" android:text="Original Amount"
android:textSize="16sp" /> android:textSize="16sp" />
<!-- <RadioButton--> <RadioButton
<!-- android:id="@+id/radio_partial"--> android:id="@+id/radio_partial"
<!-- android:layout_width="0dp"--> android:layout_width="0dp"
<!-- android:layout_height="wrap_content"--> android:layout_height="wrap_content"
<!-- android:layout_weight="1"--> android:layout_weight="1"
<!-- android:text="Partial Amount"--> android:text="Partial Amount"
<!-- android:textSize="16sp" />--> android:textSize="16sp" />
</RadioGroup> </RadioGroup>