You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

370 lines
13 KiB

  1. <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="cusRBACalcDetails.aspx.cs" Inherits="Swift.web.Remit.RiskBaseAnalysis.cusRBACalcDetails" %>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <head runat="server">
  5. <title></title>
  6. <link href="../../Css/style.css" rel="Stylesheet" type="text/css" />
  7. <style type="text/css">
  8. .header
  9. {
  10. font-size: 20px;
  11. background: red;
  12. color: White;
  13. height: 40px;
  14. }
  15. .sub-header
  16. {
  17. font-size: 15px;
  18. background: black;
  19. color: White;
  20. height: 20px;
  21. }
  22. table
  23. {
  24. /*width:80%;*/
  25. border-collapse: collapse;
  26. }
  27. table, th
  28. {
  29. font-size: 18px;
  30. font:Verdana;
  31. text-decoration:none;
  32. border: 1px solid black;
  33. }
  34. table, td
  35. {
  36. font-size: 13px;
  37. font:Verdana;
  38. text-decoration:none;
  39. border: 1px solid black;
  40. padding:4px;
  41. }
  42. .clear-fix
  43. {
  44. clear:both;
  45. height:15px;
  46. }
  47. .low
  48. {
  49. background-color: Green;
  50. }
  51. .high
  52. {
  53. background-color:Red;
  54. }
  55. .medium
  56. {
  57. background-color: Yellow;
  58. }
  59. lable
  60. {
  61. font-size: 11px;
  62. font:Verdana;
  63. text-decoration:none;
  64. }
  65. </style>
  66. </head>
  67. <body>
  68. <form id="form1" runat="server">
  69. <div>
  70. <div class="breadCrumb">
  71. Risk Base Analysis » RBA Calculation Details - Customer Periodic RBA </div>
  72. <div class="clear-fix"></div>
  73. <div style="margin-left:10px">
  74. <div>
  75. <table style="width:80%;">
  76. <tr class="header">
  77. <th nowrap="nowrap">
  78. RBA Level:
  79. </th>
  80. <th nowrap="nowrap">
  81. <asp:Label runat="server" ID="rbaLevel"></asp:Label>
  82. </th>
  83. <th nowrap="nowrap">
  84. RBA Rating:
  85. </th>
  86. <th nowrap="nowrap">
  87. <asp:Label runat="server" ID="rbaRating"></asp:Label>
  88. </th>
  89. </tr>
  90. <tr>
  91. <td>
  92. <strong>Full Name:</strong>
  93. </td>
  94. <td>
  95. <asp:Label runat="server" ID="fullName"></asp:Label>
  96. </td>
  97. <td>
  98. <strong>DOB:</strong>
  99. </td>
  100. <td>
  101. <asp:Label runat="server" ID="dob"></asp:Label>
  102. </td>
  103. </tr>
  104. <tr>
  105. <td>
  106. <strong>Gender:</strong>
  107. </td>
  108. <td>
  109. <asp:Label runat="server" ID="gender"></asp:Label>
  110. </td>
  111. <td>
  112. <strong>Native Country:</strong>
  113. </td>
  114. <td>
  115. <asp:Label runat="server" ID="nativeCountry"></asp:Label>
  116. </td>
  117. </tr>
  118. <tr>
  119. <td>
  120. <strong>Id Type:</strong>
  121. </td>
  122. <td>
  123. <asp:Label runat="server" ID="idType"></asp:Label>
  124. </td>
  125. <td>
  126. <strong>Id Number:</strong>
  127. </td>
  128. <td>
  129. <asp:Label runat="server" ID="idNumber"></asp:Label>
  130. </td>
  131. </tr>
  132. <tr>
  133. <td>
  134. <strong>Country:</strong>
  135. </td>
  136. <td>
  137. <asp:Label runat="server" ID="country"></asp:Label>
  138. </td>
  139. <td>
  140. <strong>State:</strong>
  141. </td>
  142. <td>
  143. <asp:Label runat="server" ID="state"></asp:Label>
  144. </td>
  145. </tr>
  146. <tr>
  147. <td>
  148. <strong>City:</strong>
  149. </td>
  150. <td>
  151. <asp:Label runat="server" ID="city"></asp:Label>
  152. </td>
  153. <td>
  154. <strong>Address:</strong>
  155. </td>
  156. <td>
  157. <asp:Label runat="server" ID="address"></asp:Label>
  158. </td>
  159. </tr>
  160. <tr>
  161. <td>
  162. <strong>Mobile No:</strong>
  163. </td>
  164. <td>
  165. <asp:Label runat="server" ID="mobileNo"></asp:Label>
  166. </td>
  167. <td>
  168. <strong>E-mail:</strong>
  169. </td>
  170. <td>
  171. <asp:Label runat="server" ID="email"></asp:Label>
  172. </td>
  173. </tr>
  174. </table>
  175. </div>
  176. <div class="clear-fix">
  177. </div>
  178. <div>
  179. <table id="tblCusRBA" runat="server">
  180. <tr class="header">
  181. <th colspan="4">
  182. RBA Calculation Summary - Periodic Assessement
  183. </th>
  184. </tr>
  185. <tr class="sub-header">
  186. <th style="width: 250px;">
  187. Criteria
  188. </th>
  189. <th style="width: 100px;">
  190. Rating
  191. </th>
  192. <th style="width: 100px;">
  193. Weight
  194. </th>
  195. <th style="width: 100px;">
  196. Score
  197. </th>
  198. </tr>
  199. <tr>
  200. <td>
  201. Number of TXN for the period
  202. </td>
  203. <td style="text-align:right;">
  204. <asp:Label ID="txnCountRating" runat="server" ></asp:Label>
  205. </td>
  206. <td style="text-align:right;">
  207. <asp:Label ID="txnCountWeight" runat="server" ></asp:Label>
  208. </td>
  209. <td style="text-align:right;">
  210. <asp:Label ID="txnCountScore" runat="server" ></asp:Label>
  211. </td>
  212. </tr>
  213. <tr>
  214. <td>Volume (Amount) of TXN for the period</td>
  215. <td style="text-align:right;">
  216. <asp:Label ID="txnAmountRating" runat="server" ></asp:Label>
  217. </td>
  218. <td style="text-align:right;">
  219. <asp:Label ID="txnAmountWeight" runat="server" ></asp:Label>
  220. </td>
  221. <td style="text-align:right;">
  222. <asp:Label ID="txnAmountScore" runat="server" ></asp:Label>
  223. </td>
  224. </tr>
  225. <tr>
  226. <td>Number of Outlets used for the period</td>
  227. <td style="text-align:right;">
  228. <asp:Label ID="outletsUsedRating" runat="server" ></asp:Label>
  229. </td>
  230. <td style="text-align:right;">
  231. <asp:Label ID="outletsUsedWeight" runat="server"></asp:Label>
  232. </td>
  233. <td style="text-align:right;">
  234. <asp:Label ID="outletsUsedScore" runat="server" ></asp:Label>
  235. </td>
  236. </tr>
  237. <tr>
  238. <td>Number of Beneficiary Country</td>
  239. <td style="text-align:right;">
  240. <asp:Label ID="bnfcountrycountRating" runat="server" ></asp:Label>
  241. </td>
  242. <td style="text-align:right;">
  243. <asp:Label ID="bnfcountrycountWeight" runat="server" ></asp:Label>
  244. </td>
  245. <td style="text-align:right;">
  246. <asp:Label ID="bnfcountrycountScore" runat="server" ></asp:Label>
  247. </td>
  248. </tr>
  249. <tr>
  250. <td>Number of Beneficiary</td>
  251. <td style="text-align:right;">
  252. <asp:Label ID="bnfcountRating" runat="server" ></asp:Label>
  253. </td>
  254. <td style="text-align:right;">
  255. <asp:Label ID="bnfcountWeight" runat="server" ></asp:Label>
  256. </td>
  257. <td style="text-align:right;">
  258. <asp:Label ID="bnfcountScore" runat="server" ></asp:Label>
  259. </td>
  260. </tr>
  261. <tr>
  262. <td style="text-align:center;font-weight:bold;">TOTAL</td>
  263. <td style="text-align:right;font-weight:bold;">
  264. <asp:Label ID="ratingTotal" runat="server"></asp:Label>
  265. </td>
  266. <td style="text-align:right;font-weight:bold;">
  267. <asp:Label ID="weightTotal" runat="server">100.00</asp:Label>
  268. </td>
  269. <td style="text-align:right;font-weight:bold;">
  270. <asp:Label ID="ScoreTotal" runat="server"></asp:Label>&nbsp;<asp:Label ID="Rating" runat="server"></asp:Label>
  271. </td>
  272. </tr>
  273. </table>
  274. </div>
  275. <div class="clear-fix">
  276. </div>
  277. <div>
  278. <table id="tblRBASummary" runat="server">
  279. <tr class="header">
  280. <th colspan="4">
  281. RBA Calculation Summary
  282. </th>
  283. </tr>
  284. <tr class="sub-header">
  285. <th style="width: 253px;">
  286. Description
  287. </th>
  288. <th>
  289. Rating
  290. </th>
  291. <th>
  292. Weight
  293. </th>
  294. <th>
  295. Score
  296. </th>
  297. </tr>
  298. <tr>
  299. <th>
  300. Transaction Assesement
  301. </th>
  302. <td style="text-align:right;">
  303. <asp:Label runat="server" ID="taRating"></asp:Label>
  304. </td>
  305. <td style="text-align:right;">
  306. <asp:Label runat="server" ID="taWeight"></asp:Label>
  307. </td>
  308. <td style="text-align:right;">
  309. <asp:Label runat="server" ID="taScore"></asp:Label>
  310. </td>
  311. </tr>
  312. <tr>
  313. <th>
  314. Periodic Assesement
  315. </th>
  316. <td style="text-align:right;">
  317. <asp:Label runat="server" ID="paRating"></asp:Label>
  318. </td>
  319. <td style="text-align:right;">
  320. <asp:Label runat="server" ID="paWeight"></asp:Label>
  321. </td>
  322. <td style="text-align:right;">
  323. <asp:Label runat="server" ID="paScore"></asp:Label>
  324. </td>
  325. </tr>
  326. <tr>
  327. <td style="text-align: center; font-weight: bold;">
  328. TOTAL
  329. </td>
  330. <td style="text-align: right; font-weight: bold;">
  331. </td>
  332. <td style="text-align: right; font-weight: bold;">
  333. <asp:Label ID="rbaSummaryWeight" runat="server">100.00</asp:Label>
  334. </td>
  335. <td style="text-align: right; font-weight: bold;">
  336. <asp:Label ID="rbaSummaryTotal" runat="server"></asp:Label>&nbsp;<asp:Label ID="rbaSummaryRating" runat="server"></asp:Label>
  337. </td>
  338. </tr>
  339. </table>
  340. </div>
  341. </div>
  342. </form>
  343. </body>
  344. </html>