계좌성명조회
This commit is contained in:
@@ -85,7 +85,7 @@ export const ListItem = ({
|
||||
|
||||
const onClickToNavigate = () => {
|
||||
if(transactionCategory === TransactionCategory.AllTransaction){
|
||||
if(setDetailData && tid){
|
||||
if(setDetailData && !!tid){
|
||||
setDetailData({
|
||||
tid: tid,
|
||||
serviceCode: serviceCode,
|
||||
@@ -94,7 +94,7 @@ export const ListItem = ({
|
||||
}
|
||||
}
|
||||
else if(transactionCategory === TransactionCategory.CashReceipt){
|
||||
if(setDetailData && tid){
|
||||
if(setDetailData && !!tid){
|
||||
setDetailData({
|
||||
tid: tid,
|
||||
detailOn: true
|
||||
@@ -102,7 +102,7 @@ export const ListItem = ({
|
||||
}
|
||||
}
|
||||
else if(transactionCategory === TransactionCategory.Escrow){
|
||||
if(setDetailData && tid){
|
||||
if(setDetailData && !!tid){
|
||||
setDetailData({
|
||||
tid: tid,
|
||||
serviceCode: serviceCode,
|
||||
@@ -111,7 +111,7 @@ export const ListItem = ({
|
||||
}
|
||||
}
|
||||
else if(transactionCategory === TransactionCategory.Billing){
|
||||
if(setDetailData && tid){
|
||||
if(setDetailData && !!tid){
|
||||
setDetailData({
|
||||
tid: tid,
|
||||
detailOn: true
|
||||
|
||||
Reference in New Issue
Block a user