repay page

This commit is contained in:
CHIEFSOFT\ameye
2025-11-03 14:39:30 -05:00
parent 482612a8a6
commit b58153d059
+19 -14
View File
@@ -93,14 +93,11 @@ export default function RepaymentsCom() {
<th scope="col" className="px-2 py-2"> <th scope="col" className="px-2 py-2">
CustomerID / ID:TrxID CustomerID / ID:TrxID
</th> </th>
{/* <th scope="col" className="px-2"> <th scope="col" className="px-8 ">
Loan Descriptions
</th> */}
<th scope="col" className="px-2">
Added
</th> </th>
<th scope="col" className="px-2 text-right"> <th scope="col" className="px-2 text-right">
Action Date/Result Codes
</th> </th>
</tr> </tr>
</thead> </thead>
@@ -133,18 +130,26 @@ export default function RepaymentsCom() {
<div className="font-normal text-gray-500">{item?.description}</div> <div className="font-normal text-gray-500">{item?.description}</div>
</div> </div>
</td> */} </td> */}
<td className="px-2"> <td className="px-8">
<div className="text-left"> <div className="text-left">
<div
className="font-normal text-gray-500">{getDateFromDateString(item?.created_at)}</div> <div className="font-normal text-gray-500">Repay Date : {getDateFromDateString(item?.repay_date)}</div>
<div className="font-normal">Repay Desc : {item?.repay_description || ''}</div>
<div className="font-normal text-gray-500">Verify Repay Date : {getDateFromDateString(item?.verify_date)}</div>
<div className="font-normal">Verify Repay Desc : {item?.verify_description || ''}</div>
</div> </div>
</td> </td>
<td className="px-2 text-right"> <td className="px-2 text-right">
<div className='flex items-center justify-end gap-3 md:gap-4'> <div className="text-left">
<div <div className="font-normal text-gray-500">{getDateFromDateString(item?.created_at)}</div>
className='p-2 flex justify-center items-center text-slate-500 bg-white-body dark:text-white-body dark:bg-black-body rounded-md'> <div className="font-normal text-red-500">Repay Result :{item?.repay_result || ''}</div>
<Icons name='eye'/> <div className="font-normal text-blue-500">Verify Repay Result :{item?.verify_result || ''}</div>
</div>
</div> </div>
</td> </td>
</tr> </tr>