inv num to trc num in qr
This commit is contained in:
parent
e4ea98f6e6
commit
fe97613f9b
@ -296,7 +296,9 @@ public class MyBindingAdapter {
|
|||||||
@BindingAdapter({"isTrace"})
|
@BindingAdapter({"isTrace"})
|
||||||
public static void checkIsTraceOrInvoice(TextView textView, PayDetail payDetail) {
|
public static void checkIsTraceOrInvoice(TextView textView, PayDetail payDetail) {
|
||||||
if(payDetail.getTransactionType() == TransactionsType.MMQR.value || payDetail.getTransactionType() == TransactionsType.MMQR_REFUND.value) {
|
if(payDetail.getTransactionType() == TransactionsType.MMQR.value || payDetail.getTransactionType() == TransactionsType.MMQR_REFUND.value) {
|
||||||
textView.setText("INV:"+payDetail.getInvoiceNo());
|
// textView.setText("INV:"+payDetail.getInvoiceNo());
|
||||||
|
//tempo fix for qr trace num
|
||||||
|
textView.setText("TRC:"+payDetail.getVoucherNo());
|
||||||
} else {
|
} else {
|
||||||
textView.setText("TRC:"+payDetail.getVoucherNo());
|
textView.setText("TRC:"+payDetail.getVoucherNo());
|
||||||
}
|
}
|
||||||
|
|||||||
@ -71,7 +71,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_weight="1"
|
android:layout_weight="1"
|
||||||
android:background="@null"
|
android:background="@null"
|
||||||
android:hint="@string/txt_search_rrn_trace"
|
android:hint="@string/txt_search_by_trace"
|
||||||
android:text="@={manageViewModel.txtRRNTrace}"
|
android:text="@={manageViewModel.txtRRNTrace}"
|
||||||
android:textColor="@color/colorPrimary"
|
android:textColor="@color/colorPrimary"
|
||||||
android:textColorHint="@color/colorPrimary"
|
android:textColorHint="@color/colorPrimary"
|
||||||
|
|||||||
@ -118,7 +118,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_weight="1"
|
android:layout_weight="1"
|
||||||
android:background="@null"
|
android:background="@null"
|
||||||
android:hint="@string/txt_search_rrn_trace"
|
android:hint="@string/txt_search_by_trace"
|
||||||
android:textColorHint="@color/colorPrimary"
|
android:textColorHint="@color/colorPrimary"
|
||||||
android:alpha="0.6"
|
android:alpha="0.6"
|
||||||
android:text="@={manageViewModel.txtRRNTrace}"
|
android:text="@={manageViewModel.txtRRNTrace}"
|
||||||
|
|||||||
@ -615,5 +615,6 @@
|
|||||||
<string name="txt_total_qr_transactions">Total QR Transactions</string>
|
<string name="txt_total_qr_transactions">Total QR Transactions</string>
|
||||||
<string name="txt_no_qr_transactions_to_settle">No QR transactions to settle</string>
|
<string name="txt_no_qr_transactions_to_settle">No QR transactions to settle</string>
|
||||||
<string name="txt_settle_qr_transactions">Confirm</string>
|
<string name="txt_settle_qr_transactions">Confirm</string>
|
||||||
|
<string name="txt_search_by_trace">Search By Trace No</string>
|
||||||
|
|
||||||
</resources>
|
</resources>
|
||||||
Loading…
Reference in New Issue
Block a user