Compare commits
43 Commits
b6c9ee4bf8
...
report_mig
| Author | SHA1 | Date | |
|---|---|---|---|
| 2c5a7f0311 | |||
| c308171de5 | |||
| 03dfdd6218 | |||
| a757799724 | |||
| 61bea5fb6e | |||
| c835a9deb0 | |||
| b862a3f686 | |||
| bc00515c1b | |||
| 60f9aa05a0 | |||
| 4705649ae8 | |||
| 5acaffc224 | |||
| 0a1b901b12 | |||
| 440c13cc49 | |||
| 9b9557105c | |||
| af360d7793 | |||
| 452e6189e4 | |||
| 7e4fb66fc6 | |||
| 213f560c4a | |||
| 8449578424 | |||
| 1adcc04efc | |||
| 0e5de99f55 | |||
| 0dae53017d | |||
| 934937feb0 | |||
| dcb6850306 | |||
| f264f90f3b | |||
| cd11b389e5 | |||
| b3836639bf | |||
| 6f1fb56670 | |||
| 8ef8bf5d92 | |||
| d684931bc5 | |||
| 3cf5c83264 | |||
| ebeaaa2629 | |||
| b84dbc9a56 | |||
| 1817d02c31 | |||
| 4afe00e1f8 | |||
| 60f5450f47 | |||
| d6dc33d9b1 | |||
| a4daf7e204 | |||
| dcb40473da | |||
| 4cbd510b85 | |||
| f0481d090c | |||
| 4f7c06ed97 | |||
| 46183766e5 |
7
.gitignore
vendored
7
.gitignore
vendored
@@ -27,3 +27,10 @@
|
||||
/dist/
|
||||
/nbdist/
|
||||
/.nb-gradle/
|
||||
/cygnus-onprem-app/target
|
||||
/cygnus-cloud-client/target
|
||||
/cygnus-cloud-service/target
|
||||
/cygnus-installer/src/target
|
||||
/cygnus-installer/target
|
||||
/cygnus-onprem-db/target
|
||||
/cygnus-lib/target
|
||||
|
||||
70
.vscode/launch.json
vendored
70
.vscode/launch.json
vendored
@@ -3,20 +3,78 @@
|
||||
"configurations": [
|
||||
{
|
||||
"type": "java",
|
||||
"name": "Matrix - Tomcat 10 (JDK 21)",
|
||||
"name": "Cygnus Cloud Service (JDK 21)",
|
||||
"request": "launch",
|
||||
"mainClass": "com.cygnus.cloud.CygnusCloudServiceApplication",
|
||||
"projectName": "cygnus-cloud-service",
|
||||
"cwd": "${workspaceFolder}/cygnus-cloud-service",
|
||||
"console": "integratedTerminal",
|
||||
"env": {
|
||||
"JAVA_HOME": "/Users/maddy/Library/Java/JavaVirtualMachines/ms-21.0.8/Contents/Home",
|
||||
"DB_HOST": "103.125.129.116",
|
||||
"DB_PORT": "5333",
|
||||
"DB_NAME": "matrix",
|
||||
"DB_USER": "postgres",
|
||||
"DB_PASSWORD": "M@triXPostgr3s@6202",
|
||||
"DB_SSL": "false",
|
||||
"REDIS_HOST": "103.125.129.116",
|
||||
"REDIS_PORT": "7901",
|
||||
"REDIS_PASSWORD": "M@triXR3d1s@6202",
|
||||
"CYGNUS_CLOUD_PORT": "8090",
|
||||
"CYGNUS_SECURITY_ENABLED": "true",
|
||||
"CYGNUS_JWT_ISSUER_URI": "http://localhost:8090",
|
||||
"CYGNUS_JWT_AUDIENCE": "cygnus-cloud-api",
|
||||
"CYGNUS_TOKEN_AUDIENCE": "http://localhost:8090/oauth2/token",
|
||||
"CYGNUS_ASSERTION_DECRYPTION_PRIVATE_KEY": "file:${workspaceFolder}/config/keys/assertion-decryption-private.pem",
|
||||
"CYGNUS_ACCESS_TOKEN_PRIVATE_KEY": "file:${workspaceFolder}/config/keys/access-token-private.pem",
|
||||
"CYGNUS_ACCESS_TOKEN_PUBLIC_KEY": "file:${workspaceFolder}/config/keys/access-token-public.pem",
|
||||
"CYGNUS_LOGIN_KEY_ID": "cygnus-login-2026-01",
|
||||
"CYGNUS_LOGIN_PRIVATE_KEY": "file:${workspaceFolder}/config/keys/login-private.pem",
|
||||
"CYGNUS_MAIL_HOST": "smtp.gmail.com",
|
||||
"CYGNUS_MAIL_PORT": "587",
|
||||
"CYGNUS_MAIL_USERNAME": "technobeesolutions@gmail.com",
|
||||
"CYGNUS_MAIL_PASSWORD": "lrideibfakickldg",
|
||||
"CYGNUS_MAIL_SMTP_AUTH": "true",
|
||||
"CYGNUS_MAIL_STARTTLS": "true",
|
||||
"CYGNUS_REGISTRATION_EMAIL_FROM": "technobeesolutions@gmail.com"
|
||||
},
|
||||
"shortenCommandLine": "argfile"
|
||||
},
|
||||
{
|
||||
"type": "java",
|
||||
"name": "Cygnus On-Prem - Tomcat 10 (JDK 21)",
|
||||
"request": "launch",
|
||||
"mainClass": "matrix.nimble.EmbeddedTomcatServer",
|
||||
"projectName": "matrix",
|
||||
"cwd": "${workspaceFolder}",
|
||||
"cwd": "${workspaceFolder}/cygnus-onprem-app",
|
||||
"console": "integratedTerminal",
|
||||
"preLaunchTask": "matrix: package",
|
||||
"preLaunchTask": "cygnus: dev compile",
|
||||
"classPaths": [
|
||||
"$Test"
|
||||
],
|
||||
"env": {
|
||||
"JAVA_HOME": "/Users/maddy/Library/Java/JavaVirtualMachines/ms-21.0.8/Contents/Home"
|
||||
"JAVA_HOME": "/Users/maddy/Library/Java/JavaVirtualMachines/ms-21.0.8/Contents/Home",
|
||||
"MATRIX_DB_URL": "jdbc:postgresql://103.125.129.116:5333/matrix",
|
||||
"MATRIX_DB_USERNAME": "postgres",
|
||||
"MATRIX_DB_PASSWORD": "M@triXPostgr3s@6202",
|
||||
"REDIS_HOST": "103.125.129.116",
|
||||
"REDIS_PORT": "7901",
|
||||
"REDIS_PASSWORD": "M@triXR3d1s@6202",
|
||||
"REDIS_DATABASE": "1",
|
||||
"REDIS_SSL": "false",
|
||||
"CYGNUS_QUERY_CACHE_ENABLED": "false",
|
||||
"CYGNUS_CLOUD_BASE_URL": "http://localhost:8090",
|
||||
"CYGNUS_TOKEN_URL": "http://localhost:8090/oauth2/token",
|
||||
"CYGNUS_CLIENT_ID": "matrix",
|
||||
"CYGNUS_INSTALLATION_ID": "matrix-delhi-cygnus-01",
|
||||
"CYGNUS_CLIENT_ASSERTION": "file:${workspaceFolder}/config/clients/matrix/matrix-matrix-delhi-cygnus-01-assertion.jwt",
|
||||
"CYGNUS_LOGIN_KEY_ID": "cygnus-login-2026-01",
|
||||
"CYGNUS_LOGIN_PUBLIC_KEY": "file:${workspaceFolder}/config/keys/login-public.pem",
|
||||
"CYGNUS_PAYLOAD_PRIVATE_KEY": "file:${workspaceFolder}/config/keys/case-save-private.pem",
|
||||
"CYGNUS_PAYLOAD_PUBLIC_KEY": "file:${workspaceFolder}/config/keys/case-save-public.pem",
|
||||
"CYGNUS_CLOUD_REQUEST_TIMEOUT": "PT30S",
|
||||
"CYGNUS_TOKEN_REFRESH_SKEW": "PT30S"
|
||||
},
|
||||
"vmArgs": "-Dserver.port=8080 -Djava.awt.headless=true",
|
||||
"vmArgs": "-Dserver.port=8080 -Djava.awt.headless=true -Dmatrix.webapp=${workspaceFolder}/cygnus-onprem-app/build/WebContent -Dmatrix.classes=${workspaceFolder}/cygnus-onprem-app/target/classes",
|
||||
"shortenCommandLine": "argfile"
|
||||
},
|
||||
{
|
||||
|
||||
3
.vscode/settings.json
vendored
3
.vscode/settings.json
vendored
@@ -1,3 +1,4 @@
|
||||
{
|
||||
"java.configuration.updateBuildConfiguration": "automatic"
|
||||
"java.configuration.updateBuildConfiguration": "automatic",
|
||||
"java.compile.nullAnalysis.mode": "automatic"
|
||||
}
|
||||
4
.vscode/tasks.json
vendored
4
.vscode/tasks.json
vendored
@@ -2,11 +2,11 @@
|
||||
"version": "2.0.0",
|
||||
"tasks": [
|
||||
{
|
||||
"label": "matrix: package",
|
||||
"label": "cygnus: dev compile",
|
||||
"type": "shell",
|
||||
"command": "mvn",
|
||||
"args": [
|
||||
"package",
|
||||
"test-compile",
|
||||
"-DskipTests"
|
||||
],
|
||||
"options": {
|
||||
|
||||
359
Cygnus_Architecture_Overview.svg
Normal file
359
Cygnus_Architecture_Overview.svg
Normal file
@@ -0,0 +1,359 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="1920" height="3720" viewBox="0 0 1920 3720" role="img" aria-labelledby="title description">
|
||||
<title id="title">Cygnus on-premises to cloud authentication architecture overview</title>
|
||||
<desc id="description">Complete architecture, request flow, sequence diagram, security layers, code navigation, data access, session mapping, and failure behavior for Cygnus cloud identity authentication.</desc>
|
||||
|
||||
<defs>
|
||||
<linearGradient id="pageBg" x1="0" y1="0" x2="0" y2="1">
|
||||
<stop offset="0" stop-color="#eaf2f8"/>
|
||||
<stop offset="1" stop-color="#d9e7f1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="heroBg" x1="0" y1="0" x2="1" y2="1">
|
||||
<stop offset="0" stop-color="#173b5f"/>
|
||||
<stop offset="1" stop-color="#28679b"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="cloudBg" x1="0" y1="0" x2="1" y2="1">
|
||||
<stop offset="0" stop-color="#e7f2fb"/>
|
||||
<stop offset="1" stop-color="#d2e7f7"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="onpremBg" x1="0" y1="0" x2="1" y2="1">
|
||||
<stop offset="0" stop-color="#eef8f2"/>
|
||||
<stop offset="1" stop-color="#dcefe3"/>
|
||||
</linearGradient>
|
||||
<filter id="shadow" x="-20%" y="-20%" width="140%" height="150%">
|
||||
<feDropShadow dx="0" dy="5" stdDeviation="8" flood-color="#1c3448" flood-opacity=".16"/>
|
||||
</filter>
|
||||
<marker id="arrowBlue" markerWidth="12" markerHeight="12" refX="10" refY="6" orient="auto" markerUnits="strokeWidth">
|
||||
<path d="M0,0 L12,6 L0,12 z" fill="#28679b"/>
|
||||
</marker>
|
||||
<marker id="arrowGreen" markerWidth="12" markerHeight="12" refX="10" refY="6" orient="auto" markerUnits="strokeWidth">
|
||||
<path d="M0,0 L12,6 L0,12 z" fill="#26845b"/>
|
||||
</marker>
|
||||
<marker id="arrowOrange" markerWidth="12" markerHeight="12" refX="10" refY="6" orient="auto" markerUnits="strokeWidth">
|
||||
<path d="M0,0 L12,6 L0,12 z" fill="#d47b17"/>
|
||||
</marker>
|
||||
<style>
|
||||
text { font-family: Inter, "Segoe UI", Arial, sans-serif; fill: #22303d; }
|
||||
.hero-title { font-size: 46px; font-weight: 750; fill: #fff; letter-spacing: .2px; }
|
||||
.hero-sub { font-size: 22px; fill: #d7eafb; }
|
||||
.section-title { font-size: 30px; font-weight: 750; fill: #173b5f; }
|
||||
.section-sub { font-size: 17px; fill: #536777; }
|
||||
.box-title { font-size: 20px; font-weight: 750; }
|
||||
.box-sub { font-size: 14px; fill: #5a6f7f; }
|
||||
.body { font-size: 16px; }
|
||||
.small { font-size: 14px; }
|
||||
.tiny { font-size: 12px; }
|
||||
.mono { font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace; font-size: 13px; }
|
||||
.white { fill: #fff; }
|
||||
.muted { fill: #64798a; }
|
||||
.blue { fill: #28679b; }
|
||||
.green { fill: #26845b; }
|
||||
.orange { fill: #c76c0f; }
|
||||
.red { fill: #b74646; }
|
||||
.bold { font-weight: 700; }
|
||||
.card { fill: #fff; stroke: #b8cad8; stroke-width: 1.4; rx: 12; filter: url(#shadow); }
|
||||
.soft-card { fill: #f7fafc; stroke: #c5d5e1; stroke-width: 1.2; rx: 10; }
|
||||
.onprem { fill: url(#onpremBg); stroke: #83b99b; stroke-width: 1.5; rx: 12; }
|
||||
.cloud { fill: url(#cloudBg); stroke: #81b2d5; stroke-width: 1.5; rx: 12; }
|
||||
.security { fill: #fff6e7; stroke: #e2ae62; stroke-width: 1.4; rx: 10; }
|
||||
.database { fill: #f2ecfa; stroke: #a991c6; stroke-width: 1.4; rx: 10; }
|
||||
.line-blue { stroke: #28679b; stroke-width: 3; fill: none; marker-end: url(#arrowBlue); }
|
||||
.line-green { stroke: #26845b; stroke-width: 3; fill: none; marker-end: url(#arrowGreen); }
|
||||
.line-orange { stroke: #d47b17; stroke-width: 3; fill: none; marker-end: url(#arrowOrange); }
|
||||
.dash { stroke-dasharray: 8 7; }
|
||||
.lane { stroke: #9bb0bf; stroke-width: 1.5; stroke-dasharray: 6 6; }
|
||||
.step-circle { fill: #28679b; stroke: #fff; stroke-width: 3; }
|
||||
.step-number { font-size: 14px; font-weight: 750; fill: #fff; text-anchor: middle; dominant-baseline: central; }
|
||||
.chip { fill: #e5eff7; stroke: #aec4d5; stroke-width: 1; rx: 14; }
|
||||
</style>
|
||||
</defs>
|
||||
|
||||
<rect width="1920" height="3720" fill="url(#pageBg)"/>
|
||||
|
||||
<!-- Hero -->
|
||||
<rect x="50" y="42" width="1820" height="190" rx="20" fill="url(#heroBg)" filter="url(#shadow)"/>
|
||||
<text x="105" y="112" class="hero-title">Cygnus Architecture Overview</text>
|
||||
<text x="105" y="157" class="hero-sub">Secure on-premises → cloud identity authentication while operational and applicant data remain on customer infrastructure</text>
|
||||
<rect x="105" y="180" width="212" height="30" class="chip" opacity=".22"/>
|
||||
<text x="123" y="201" class="small white bold">JDK 21 · Spring MVC</text>
|
||||
<rect x="330" y="180" width="245" height="30" class="chip" opacity=".22"/>
|
||||
<text x="348" y="201" class="small white bold">Spring WebFlux client</text>
|
||||
<rect x="588" y="180" width="280" height="30" class="chip" opacity=".22"/>
|
||||
<text x="606" y="201" class="small white bold">Spring Boot cloud service</text>
|
||||
<rect x="881" y="180" width="260" height="30" class="chip" opacity=".22"/>
|
||||
<text x="899" y="201" class="small white bold">PostgreSQL + Vert.x</text>
|
||||
<rect x="1154" y="180" width="212" height="30" class="chip" opacity=".22"/>
|
||||
<text x="1172" y="201" class="small white bold">Redis replay guard</text>
|
||||
|
||||
<!-- Architecture overview -->
|
||||
<text x="70" y="292" class="section-title">1 · Architecture overview</text>
|
||||
<text x="70" y="322" class="section-sub">The browser-facing application remains on-premises. Authentication and menu ownership are delegated to the cloud through a reusable client.</text>
|
||||
|
||||
<rect x="70" y="352" width="1780" height="490" class="card"/>
|
||||
<rect x="95" y="377" width="1050" height="440" class="onprem"/>
|
||||
<text x="125" y="414" class="box-title green">CUSTOMER PREMISES</text>
|
||||
<text x="125" y="439" class="box-sub">Applicant PII, punching, operations, reporting/MIS, JSP UI and HTTP session</text>
|
||||
|
||||
<rect x="130" y="480" width="210" height="126" class="soft-card"/>
|
||||
<text x="235" y="520" class="box-title" text-anchor="middle">Browser</text>
|
||||
<text x="235" y="550" class="small" text-anchor="middle">Login form / JSP UI</text>
|
||||
<text x="235" y="576" class="tiny muted" text-anchor="middle">POST /ver/authenticatelogin</text>
|
||||
|
||||
<rect x="430" y="455" width="300" height="178" class="soft-card"/>
|
||||
<text x="580" y="495" class="box-title" text-anchor="middle">cygnus-onprem-app</text>
|
||||
<text x="580" y="524" class="small" text-anchor="middle">Spring MVC + embedded Tomcat</text>
|
||||
<text x="580" y="552" class="tiny muted" text-anchor="middle">SessionController</text>
|
||||
<text x="580" y="575" class="tiny muted" text-anchor="middle">CloudAuthenticationGateway</text>
|
||||
<text x="580" y="598" class="tiny muted" text-anchor="middle">CloudSessionMapper</text>
|
||||
|
||||
<rect x="820" y="455" width="290" height="178" class="security"/>
|
||||
<text x="965" y="495" class="box-title" text-anchor="middle">cygnus-cloud-client</text>
|
||||
<text x="965" y="524" class="small" text-anchor="middle">Reusable WebClient gateway</text>
|
||||
<text x="965" y="552" class="tiny muted" text-anchor="middle">OAuthMachineTokenProvider</text>
|
||||
<text x="965" y="575" class="tiny muted" text-anchor="middle">LoginEnvelopeEncryptor</text>
|
||||
<text x="965" y="598" class="tiny muted" text-anchor="middle">CloudIdentityClient</text>
|
||||
|
||||
<path d="M340 543 H420" class="line-green"/>
|
||||
<text x="380" y="528" class="tiny green" text-anchor="middle">credentials</text>
|
||||
<path d="M730 543 H810" class="line-green"/>
|
||||
<text x="770" y="528" class="tiny green" text-anchor="middle">delegate</text>
|
||||
|
||||
<rect x="130" y="676" width="980" height="102" class="soft-card"/>
|
||||
<text x="155" y="711" class="box-title">Existing on-premises application behavior retained</text>
|
||||
<text x="155" y="741" class="small">Cloud response → legacy SessionValues + menu HTML → existing authorization, controllers, JSP pages and operational database access.</text>
|
||||
|
||||
<rect x="1190" y="377" width="635" height="440" class="cloud"/>
|
||||
<text x="1220" y="414" class="box-title blue">CYGNUS CLOUD</text>
|
||||
<text x="1220" y="439" class="box-sub">Vendor-controlled machine authorization, identity, permissions and menu data</text>
|
||||
|
||||
<rect x="1225" y="470" width="260" height="140" class="security"/>
|
||||
<text x="1355" y="507" class="box-title" text-anchor="middle">OAuth endpoint</text>
|
||||
<text x="1355" y="536" class="small" text-anchor="middle">POST /oauth2/token</text>
|
||||
<text x="1355" y="564" class="tiny muted" text-anchor="middle">Validate nested machine assertion</text>
|
||||
<text x="1355" y="586" class="tiny muted" text-anchor="middle">Issue short-lived RS256 JWT</text>
|
||||
|
||||
<rect x="1525" y="470" width="265" height="140" class="cloud"/>
|
||||
<text x="1657" y="507" class="box-title" text-anchor="middle">Identity API</text>
|
||||
<text x="1657" y="536" class="small" text-anchor="middle">POST /api/v1/identity/login</text>
|
||||
<text x="1657" y="564" class="tiny muted" text-anchor="middle">Decrypt login envelope</text>
|
||||
<text x="1657" y="586" class="tiny muted" text-anchor="middle">Authenticate and load menu</text>
|
||||
|
||||
<rect x="1225" y="660" width="260" height="110" class="database"/>
|
||||
<text x="1355" y="699" class="box-title" text-anchor="middle">Redis</text>
|
||||
<text x="1355" y="728" class="small" text-anchor="middle">Nonce replay protection</text>
|
||||
<text x="1355" y="751" class="tiny muted" text-anchor="middle">Atomic claim + short TTL</text>
|
||||
|
||||
<rect x="1525" y="660" width="265" height="110" class="database"/>
|
||||
<text x="1657" y="699" class="box-title" text-anchor="middle">PostgreSQL</text>
|
||||
<text x="1657" y="728" class="small" text-anchor="middle">matrix.identity schema</text>
|
||||
<text x="1657" y="751" class="tiny muted" text-anchor="middle">Vert.x prepared queries</text>
|
||||
|
||||
<path d="M1110 520 C1160 520 1160 520 1215 520" class="line-blue"/>
|
||||
<text x="1162" y="504" class="tiny blue" text-anchor="middle">machine assertion</text>
|
||||
<path d="M1110 585 C1320 625 1420 570 1515 540" class="line-blue"/>
|
||||
<text x="1320" y="605" class="tiny blue" text-anchor="middle">Bearer JWT + encrypted login</text>
|
||||
<path d="M1657 610 V650" class="line-blue"/>
|
||||
<path d="M1600 610 C1515 640 1450 670 1490 710" class="line-blue"/>
|
||||
|
||||
<!-- Responsibility split -->
|
||||
<text x="70" y="912" class="section-title">2 · Responsibility and data boundary</text>
|
||||
<text x="70" y="942" class="section-sub">The split is deliberate: identity and non-PI control data can be cloud-managed without transferring loan-applicant PII.</text>
|
||||
<rect x="70" y="972" width="855" height="265" class="card"/>
|
||||
<text x="105" y="1014" class="box-title green">Remains on customer premises</text>
|
||||
<text x="115" y="1054" class="body">• Punching and applicant intake</text>
|
||||
<text x="115" y="1086" class="body">• Operational allocation, scanning, telecalling and reports</text>
|
||||
<text x="115" y="1118" class="body">• Applicant PII, addresses, documents, photos and verification content</text>
|
||||
<text x="115" y="1150" class="body">• MIS generation and existing JSP/HTTP-session application behavior</text>
|
||||
<text x="115" y="1182" class="body">• Existing operational SQL, functions and views unrelated to cloud identity</text>
|
||||
|
||||
<rect x="945" y="972" width="905" height="265" class="card"/>
|
||||
<text x="980" y="1014" class="box-title blue">Managed by Cygnus cloud</text>
|
||||
<text x="990" y="1054" class="body">• Customer installation identity and machine authorization</text>
|
||||
<text x="990" y="1086" class="body">• Application users, groups, companies and branches required at login</text>
|
||||
<text x="990" y="1118" class="body">• Page permissions, denied pages and menu structure</text>
|
||||
<text x="990" y="1150" class="body">• Authentication audit entry and cloud access-token issuance</text>
|
||||
<text x="990" y="1182" class="body">• Redis nonce state used to reject replayed login envelopes</text>
|
||||
|
||||
<!-- Full runtime sequence -->
|
||||
<text x="70" y="1307" class="section-title">3 · Full authentication sequence</text>
|
||||
<text x="70" y="1337" class="section-sub">Every arrow below is part of one browser login. The access token is cached and reused until shortly before expiry.</text>
|
||||
|
||||
<rect x="70" y="1367" width="1780" height="1040" class="card"/>
|
||||
|
||||
<!-- Lane headers -->
|
||||
<rect x="90" y="1390" width="220" height="62" class="soft-card"/>
|
||||
<rect x="385" y="1390" width="245" height="62" class="onprem"/>
|
||||
<rect x="705" y="1390" width="245" height="62" class="security"/>
|
||||
<rect x="1025" y="1390" width="230" height="62" class="security"/>
|
||||
<rect x="1330" y="1390" width="240" height="62" class="cloud"/>
|
||||
<rect x="1640" y="1390" width="185" height="62" class="database"/>
|
||||
<text x="200" y="1428" class="box-title" text-anchor="middle">Browser</text>
|
||||
<text x="507" y="1428" class="box-title" text-anchor="middle">On-prem MVC</text>
|
||||
<text x="827" y="1428" class="box-title" text-anchor="middle">Cloud client</text>
|
||||
<text x="1140" y="1428" class="box-title" text-anchor="middle">OAuth service</text>
|
||||
<text x="1450" y="1428" class="box-title" text-anchor="middle">Identity service</text>
|
||||
<text x="1732" y="1428" class="box-title" text-anchor="middle">Redis / DB</text>
|
||||
|
||||
<line x1="200" y1="1452" x2="200" y2="2365" class="lane"/>
|
||||
<line x1="507" y1="1452" x2="507" y2="2365" class="lane"/>
|
||||
<line x1="827" y1="1452" x2="827" y2="2365" class="lane"/>
|
||||
<line x1="1140" y1="1452" x2="1140" y2="2365" class="lane"/>
|
||||
<line x1="1450" y1="1452" x2="1450" y2="2365" class="lane"/>
|
||||
<line x1="1732" y1="1452" x2="1732" y2="2365" class="lane"/>
|
||||
|
||||
<!-- Sequence messages -->
|
||||
<circle cx="95" cy="1500" r="15" class="step-circle"/><text x="95" y="1500" class="step-number">1</text>
|
||||
<path d="M200 1500 H497" class="line-green"/>
|
||||
<text x="348" y="1483" class="small bold" text-anchor="middle">POST login ID + password</text>
|
||||
<text x="348" y="1523" class="tiny muted" text-anchor="middle">/ver/authenticatelogin</text>
|
||||
|
||||
<circle cx="95" cy="1575" r="15" class="step-circle"/><text x="95" y="1575" class="step-number">2</text>
|
||||
<path d="M507 1575 H817" class="line-green"/>
|
||||
<text x="662" y="1558" class="small bold" text-anchor="middle">CloudAuthenticationGateway.authenticate()</text>
|
||||
<text x="662" y="1598" class="tiny muted" text-anchor="middle">Synchronous MVC → reactive client boundary</text>
|
||||
|
||||
<circle cx="95" cy="1650" r="15" class="step-circle"/><text x="95" y="1650" class="step-number">3</text>
|
||||
<path d="M827 1650 H1130" class="line-orange"/>
|
||||
<text x="978" y="1633" class="small bold" text-anchor="middle">POST machine assertion</text>
|
||||
<text x="978" y="1673" class="tiny muted" text-anchor="middle">Only when cached access token is absent/expiring</text>
|
||||
|
||||
<circle cx="95" cy="1725" r="15" class="step-circle"/><text x="95" y="1725" class="step-number">4</text>
|
||||
<path d="M1140 1725 H1440" class="line-orange"/>
|
||||
<text x="1290" y="1708" class="small bold" text-anchor="middle">Decrypt JWE + verify signed inner JWT</text>
|
||||
<text x="1290" y="1748" class="tiny muted" text-anchor="middle">Validate client ID, installation, audience and expiry</text>
|
||||
|
||||
<circle cx="95" cy="1800" r="15" class="step-circle"/><text x="95" y="1800" class="step-number">5</text>
|
||||
<path d="M1140 1800 H837" class="line-orange"/>
|
||||
<text x="988" y="1783" class="small bold" text-anchor="middle">Return short-lived RS256 access JWT</text>
|
||||
<text x="988" y="1823" class="tiny muted" text-anchor="middle">Claims: client_id, installation_id, scope, issuer, audience, expiry</text>
|
||||
|
||||
<circle cx="95" cy="1885" r="15" class="step-circle"/><text x="95" y="1885" class="step-number">6</text>
|
||||
<path d="M827 1885 H1440" class="line-blue"/>
|
||||
<text x="1133" y="1868" class="small bold" text-anchor="middle">Bearer JWT + encrypted login envelope</text>
|
||||
<text x="1133" y="1908" class="tiny muted" text-anchor="middle">AES-256-GCM payload; AES key wrapped by RSA-OAEP-256</text>
|
||||
|
||||
<circle cx="95" cy="1970" r="15" class="step-circle"/><text x="95" y="1970" class="step-number">7</text>
|
||||
<path d="M1450 1970 H1722" class="line-blue"/>
|
||||
<text x="1586" y="1953" class="small bold" text-anchor="middle">Atomically claim nonce in Redis</text>
|
||||
<text x="1586" y="1993" class="tiny muted" text-anchor="middle">Reject duplicate; apply short TTL</text>
|
||||
|
||||
<circle cx="95" cy="2045" r="15" class="step-circle"/><text x="95" y="2045" class="step-number">8</text>
|
||||
<path d="M1450 2045 H1722" class="line-blue"/>
|
||||
<text x="1586" y="2028" class="small bold" text-anchor="middle">Vert.x prepared SQL queries</text>
|
||||
<text x="1586" y="2068" class="tiny muted" text-anchor="middle">User → password check → menu → login audit</text>
|
||||
|
||||
<circle cx="95" cy="2120" r="15" class="step-circle"/><text x="95" y="2120" class="step-number">9</text>
|
||||
<path d="M1450 2120 H837" class="line-blue"/>
|
||||
<text x="1143" y="2103" class="small bold" text-anchor="middle">Authenticated identity + structured menu</text>
|
||||
<text x="1143" y="2143" class="tiny muted" text-anchor="middle">User, group, company, branch, permissions and login time</text>
|
||||
|
||||
<circle cx="95" cy="2195" r="15" class="step-circle"/><text x="95" y="2195" class="step-number">10</text>
|
||||
<path d="M827 2195 H517" class="line-green"/>
|
||||
<text x="672" y="2178" class="small bold" text-anchor="middle">Map cloud response to legacy SessionValues</text>
|
||||
<text x="672" y="2218" class="tiny muted" text-anchor="middle">Render menu HTML and preserve existing JSP expectations</text>
|
||||
|
||||
<circle cx="95" cy="2270" r="15" class="step-circle"/><text x="95" y="2270" class="step-number">11</text>
|
||||
<path d="M507 2270 H210" class="line-green"/>
|
||||
<text x="358" y="2253" class="small bold" text-anchor="middle">Store HTTP session and return home</text>
|
||||
<text x="358" y="2293" class="tiny muted" text-anchor="middle">Existing authorization and UI flow continues</text>
|
||||
|
||||
<rect x="118" y="2330" width="1684" height="52" class="security"/>
|
||||
<text x="960" y="2362" class="small bold" text-anchor="middle">Cloud identity is mandatory: there is no local password fallback. A cloud outage returns a controlled temporary-unavailable login message.</text>
|
||||
|
||||
<!-- Security model -->
|
||||
<text x="70" y="2477" class="section-title">4 · Security model</text>
|
||||
<text x="70" y="2507" class="section-sub">Machine identity, transport security, application-layer encryption and replay protection are separate layers.</text>
|
||||
<rect x="70" y="2537" width="1780" height="410" class="card"/>
|
||||
|
||||
<rect x="95" y="2570" width="405" height="330" class="security"/>
|
||||
<text x="125" y="2610" class="box-title orange">A · Machine assertion</text>
|
||||
<text x="125" y="2645" class="small">1. Inner JWT signed by installation private key</text>
|
||||
<text x="125" y="2674" class="small">2. Identifies client + installation</text>
|
||||
<text x="125" y="2703" class="small">3. Nested inside RSA-OAEP-256 JWE</text>
|
||||
<text x="125" y="2732" class="small">4. Cloud decrypts with assertion private key</text>
|
||||
<text x="125" y="2761" class="small">5. Signature checked using registered client key</text>
|
||||
<text x="125" y="2790" class="small">6. Assertion may be long-lived and is used only</text>
|
||||
<text x="143" y="2816" class="small">to obtain short-lived access tokens</text>
|
||||
<rect x="125" y="2845" width="335" height="34" class="chip"/>
|
||||
<text x="292" y="2868" class="tiny bold" text-anchor="middle">Customer-specific asymmetric identity</text>
|
||||
|
||||
<rect x="530" y="2570" width="405" height="330" class="security"/>
|
||||
<text x="560" y="2610" class="box-title orange">B · Access token</text>
|
||||
<text x="560" y="2645" class="small">• RS256 signed by the cloud</text>
|
||||
<text x="560" y="2674" class="small">• Short expiry; cached until refresh skew</text>
|
||||
<text x="560" y="2703" class="small">• Bound to client ID and installation ID</text>
|
||||
<text x="560" y="2732" class="small">• Carries identity.login scope</text>
|
||||
<text x="560" y="2761" class="small">• Issuer and audience validated</text>
|
||||
<text x="560" y="2790" class="small">• Required by Spring Security before the</text>
|
||||
<text x="578" y="2816" class="small">cloud identity controller executes</text>
|
||||
<rect x="560" y="2845" width="335" height="34" class="chip"/>
|
||||
<text x="727" y="2868" class="tiny bold" text-anchor="middle">Machine authorization, not user session</text>
|
||||
|
||||
<rect x="965" y="2570" width="405" height="330" class="security"/>
|
||||
<text x="995" y="2610" class="box-title orange">C · Login envelope</text>
|
||||
<text x="995" y="2645" class="small">• Fresh random AES-256 key per request</text>
|
||||
<text x="995" y="2674" class="small">• Credentials encrypted with AES-GCM</text>
|
||||
<text x="995" y="2703" class="small">• AES key encrypted by cloud RSA key</text>
|
||||
<text x="995" y="2732" class="small">• GCM detects ciphertext tampering</text>
|
||||
<text x="995" y="2761" class="small">• Payload contains nonce and timestamp</text>
|
||||
<text x="995" y="2790" class="small">• Client/installation values must match</text>
|
||||
<text x="1013" y="2816" class="small">the authenticated access-token claims</text>
|
||||
<rect x="995" y="2845" width="335" height="34" class="chip"/>
|
||||
<text x="1162" y="2868" class="tiny bold" text-anchor="middle">Application encryption in addition to TLS</text>
|
||||
|
||||
<rect x="1400" y="2570" width="405" height="330" class="security"/>
|
||||
<text x="1430" y="2610" class="box-title orange">D · Replay and transport</text>
|
||||
<text x="1430" y="2645" class="small">• Redis SET-if-absent claims each nonce</text>
|
||||
<text x="1430" y="2674" class="small">• Duplicate nonce is rejected</text>
|
||||
<text x="1430" y="2703" class="small">• Timestamp freshness window enforced</text>
|
||||
<text x="1430" y="2732" class="small">• HTTPS is mandatory outside local dev</text>
|
||||
<text x="1430" y="2761" class="small">• Credentials and tokens are not logged</text>
|
||||
<text x="1430" y="2790" class="small">• Private keys and assertions require</text>
|
||||
<text x="1448" y="2816" class="small">owner-only storage and rotation controls</text>
|
||||
<rect x="1430" y="2845" width="335" height="34" class="chip"/>
|
||||
<text x="1597" y="2868" class="tiny bold" text-anchor="middle">Captured requests cannot be reused</text>
|
||||
|
||||
<!-- Cloud login internals -->
|
||||
<text x="70" y="3017" class="section-title">5 · Cloud login internals and session compatibility</text>
|
||||
<text x="70" y="3047" class="section-sub">Prepared SQL retrieves only the identity data needed to preserve the existing SessionValues contract.</text>
|
||||
<rect x="70" y="3077" width="1095" height="500" class="card"/>
|
||||
<text x="105" y="3120" class="box-title blue">Cloud identity processing</text>
|
||||
|
||||
<circle cx="125" cy="3170" r="14" class="step-circle"/><text x="125" y="3170" class="step-number">1</text>
|
||||
<text x="155" y="3176" class="body">Decrypt payload and validate machine binding, timestamp and nonce.</text>
|
||||
<circle cx="125" cy="3225" r="14" class="step-circle"/><text x="125" y="3225" class="step-number">2</text>
|
||||
<text x="155" y="3231" class="body">Load active user by case-insensitive login ID from identity.app_user.</text>
|
||||
<circle cx="125" cy="3280" r="14" class="step-circle"/><text x="125" y="3280" class="step-number">3</text>
|
||||
<text x="155" y="3286" class="body">Verify password using the compatible legacy password verifier.</text>
|
||||
<circle cx="125" cy="3335" r="14" class="step-circle"/><text x="125" y="3335" class="step-number">4</text>
|
||||
<text x="155" y="3341" class="body">Load group, company and branch details.</text>
|
||||
<circle cx="125" cy="3390" r="14" class="step-circle"/><text x="125" y="3390" class="step-number">5</text>
|
||||
<text x="155" y="3396" class="body">Load visible permitted pages and exclude explicitly denied pages.</text>
|
||||
<circle cx="125" cy="3445" r="14" class="step-circle"/><text x="125" y="3445" class="step-number">6</text>
|
||||
<text x="155" y="3451" class="body">Insert cloud login audit row and return structured identity/menu response.</text>
|
||||
<rect x="105" y="3490" width="1025" height="58" class="database"/>
|
||||
<text x="617" y="3514" class="small bold" text-anchor="middle">Vert.x prepared queries keep values separate from SQL text</text>
|
||||
<text x="617" y="3538" class="tiny muted" text-anchor="middle">Tables: identity.app_user · user_group · company · company_branch · permission · pages · denied_pages · user_loginhistory</text>
|
||||
|
||||
<rect x="1195" y="3077" width="655" height="500" class="card"/>
|
||||
<text x="1230" y="3120" class="box-title green">Legacy compatibility mapping</text>
|
||||
<text x="1230" y="3158" class="small bold">CloudSessionMapper populates:</text>
|
||||
<text x="1250" y="3192" class="small">• User ID, login ID and display name</text>
|
||||
<text x="1250" y="3222" class="small">• Group ID and group name</text>
|
||||
<text x="1250" y="3252" class="small">• Company ID, name and code</text>
|
||||
<text x="1250" y="3282" class="small">• Branch ID, name, code and location</text>
|
||||
<text x="1250" y="3312" class="small">• Login timestamp in the legacy format</text>
|
||||
<text x="1250" y="3342" class="small">• Menu HTML rendered from cloud menu records</text>
|
||||
<rect x="1230" y="3380" width="585" height="116" class="onprem"/>
|
||||
<text x="1522" y="3414" class="small bold" text-anchor="middle">No local password query or fallback remains</text>
|
||||
<text x="1522" y="3443" class="small" text-anchor="middle">Existing JSP controllers keep reading SessionValues</text>
|
||||
<text x="1522" y="3472" class="small" text-anchor="middle">Operational authorization continues without UI rewrites</text>
|
||||
<text x="1230" y="3535" class="tiny muted">Logout currently invalidates the local HTTP session. A cloud logout/audit API is the future option if logout timestamps are required.</text>
|
||||
|
||||
<!-- Code navigation and failures -->
|
||||
<text x="70" y="3647" class="section-title">6 · Code navigation</text>
|
||||
<text x="70" y="3677" class="section-sub">Primary implementation points: SessionController → CloudAuthenticationGateway → OAuthMachineTokenProvider / LoginEnvelopeEncryptor → CloudLoginController → IdentityAuthenticationService → IdentityRepository → CloudSessionMapper.</text>
|
||||
|
||||
<!-- Footer strip overlays final area intentionally within document bounds -->
|
||||
<rect x="50" y="3695" width="1820" height="1" fill="#9eb5c5"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 26 KiB |
BIN
Cygnus_OnPrem_to_Cloud_Authentication_Workflow.docx
Normal file
BIN
Cygnus_OnPrem_to_Cloud_Authentication_Workflow.docx
Normal file
Binary file not shown.
@@ -1,169 +0,0 @@
|
||||
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
|
||||
pageEncoding="ISO-8859-1"%>
|
||||
<%@page language="java" session="true" %>
|
||||
<%@taglib uri="http://www.springframework.org/tags/form" prefix="form"%>
|
||||
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
||||
<title>Nimble 1.0 | Branch Detail </title>
|
||||
<script language="javascript" src="/matrix/js/lib/constants.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/jquery1.7.2.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/ui/uifuncs.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/lib/jsfuncs.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/ui/msgdialog.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/ui/select.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/appjs/belt.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/validator.js" type="text/javascript"></script>
|
||||
|
||||
<link href="/matrix/css/button.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/div.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/textbox.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/select.css" rel="stylesheet" type="text/css" />
|
||||
</head>
|
||||
|
||||
<body style="font-family:Tahoma;background-color:#fff;font-size:10pt">
|
||||
<div id='PageFrame'>
|
||||
<div id="formcontainer" style="width:393px;margin-top:10px;position:absolute;z-index:-1">
|
||||
<form:form method="post" modelAttribute="branchdetail" >
|
||||
<!-- Verifier Details (Section1) -->
|
||||
<div>
|
||||
<!-- Title -->
|
||||
<div id='title' class="title">
|
||||
<img id="icon" src="/matrix/images/ear_details.png" align="absmiddle" />
|
||||
<span id="title" align="absmiddle">Branch Detail</span>
|
||||
</div>
|
||||
<!-- -->
|
||||
<!-- Form (Section1) -->
|
||||
<div id="FormPanel1" class="FormPanel">
|
||||
<table align="center" id="FormControls" width="99%">
|
||||
<tr>
|
||||
<td>
|
||||
<form:hidden path="branchid"/>
|
||||
<form:hidden path="bankbranchid"/>
|
||||
<form:hidden path="portfolio"/>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="width:100px">
|
||||
<font color="red">*</font>Bank
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<div class="divselect" id="divportfolio" style="width:235px;">
|
||||
<form:select path="bank" multiple="false" style="width:258px" onblur="validate(this,'t','')" >
|
||||
<option value="-1" selected>---</option>
|
||||
<c:forEach items="${banklist}" var="bank">
|
||||
<form:option value="${bank[0]}" label="${bank[1]}" />
|
||||
</c:forEach>
|
||||
</form:select>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="width:100px">
|
||||
<font color="red">*</font>Branch Name
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<form:input path="branchname" maxlength="30" style="width:220px" onblur="validate(this,'t','PersonName')" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="width:100px">
|
||||
<font color="red">*</font>Branch Code
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<form:input path="branchcode" maxlength="7" style="width:220px" onblur="validate(this,'t','AlphaOnly')" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="width:100px">
|
||||
<font color="red">*</font>Plot No
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<form:input path="address1" maxlength="40" style="width:220px" onblur="validate(this,'t','SplInstruction')" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="width:100px">
|
||||
Locality
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<form:input path="address2" maxlength="40" style="width:220px" onblur="validate(this,'f','SplInstruction')" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="width:100px">
|
||||
Area/City
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<form:input path="address3" maxlength="40" style="width:220px" onblur="validate(this,'f','SplInstruction')" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="width:100px">
|
||||
<font color="red">*</font>State
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<form:input path="state" maxlength="25" style="width:220px" onblur="validate(this,'t','PersonName')" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="width:100px">
|
||||
<font color="red">*</font>Pincode
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<form:input path="pincode" maxlength="6" style="width:220px" onblur="validate(this,'f','Pincode')" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="width:100px">
|
||||
GST
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<form:input path="gstno" maxlength="20" style="width:220px" onblur="validate(this,'f','AlphaNumericOnly')" />
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<!-- -->
|
||||
</div>
|
||||
<!-- -->
|
||||
<form:hidden path="suuid" />
|
||||
|
||||
<!-- -->
|
||||
<input type="hidden" id="invalidfields" value="0" />
|
||||
<input type="button" class="button" name="btnsave" style="margin-top:5px;float:right" value="Save" id="btnsave" accesskey="S" onclick="ValidateSubmitBranch();" />
|
||||
</form:form>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
<!-- Page Load Javascript -->
|
||||
<script language="javascript" type="text/javascript">
|
||||
centerDivBoth("formcontainer","H");
|
||||
document.getElementById("branchname").focus();
|
||||
|
||||
function ValidateSubmitBranch()
|
||||
{
|
||||
validate(document.getElementById("bank"),'t','');
|
||||
validate(document.getElementById("branchname"),'t','PersonName');
|
||||
validate(document.getElementById("branchcode"),'t','AlphaOnly');
|
||||
validate(document.getElementById("address1"),'t','SplInstruction');
|
||||
validate(document.getElementById("state"),'t','SplInstruction');
|
||||
if(checkForm())
|
||||
{
|
||||
SubmitForm('updateportbranch','_parent','branchdetail');
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<!-- -->
|
||||
<!-- Process Message -->
|
||||
<c:if test="${not empty msg}">
|
||||
<script language="javascript" type="text/javascript"> CallMessage('${msg}',3000,200,300); </script>
|
||||
<c:if test="${stat==true}">
|
||||
<script language="javascript" type="text/javascript">window.returnValue='${retval}'; window.close(); </script>
|
||||
</c:if>
|
||||
</c:if>
|
||||
<!-- -->
|
||||
</html>
|
||||
@@ -1,177 +0,0 @@
|
||||
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
|
||||
pageEncoding="ISO-8859-1"%>
|
||||
<%@page language="java" session="true" %>
|
||||
<%@taglib uri="http://www.springframework.org/tags/form" prefix="form"%>
|
||||
<%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
|
||||
<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %>
|
||||
<%@taglib prefix="spring" uri="http://www.springframework.org/tags" %>
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
||||
<link href="/matrix/css/jquery-ui.css" rel="stylesheet" type="text/css" />
|
||||
|
||||
<script language="javascript" src="/matrix/js/lib/constants.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/jquery.min.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/ui/jquery-ui.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/ui/uifuncs.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/lib/jsfuncs.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/ui/msgdialog.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/appjs/user.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/ui/select.js" type="text/javascript"></script>
|
||||
|
||||
<link href="/matrix/css/matrix.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/menu.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/button.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/div.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/textbox.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/select.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/table.css" rel="stylesheet" type="text/css" />
|
||||
|
||||
<title>Nimble 1.0 | Manage Branch</title>
|
||||
</head>
|
||||
<body>
|
||||
<div id='PageFrame'>
|
||||
<!-- Title Bar -->
|
||||
<div id='title' class="title">
|
||||
<img id="icon" src="/matrix/images/optmale.png" />
|
||||
<img id="close" src="/matrix/images/close.jpg" onclick="javascript:closewindow();" />
|
||||
<span id="title">Nimble 1.0 ${Sessvals.getCompanyCode() } (${Sessvals.getBranchLocation() }) ${Sessvals.getUserDisplayName()} (${Sessvals.getUserGroupName()}) </span>
|
||||
</div>
|
||||
<!-- -->
|
||||
<!-- Dynamic Menu -->
|
||||
<jsp:include page='../../usermenu/menu_${Sessvals.getUserID()}.html' />
|
||||
<!-- -->
|
||||
<div id="formcontainer" style="width:990px;margin-top:5px;position:absolute;z-index:-1">
|
||||
<!-- Title -->
|
||||
<div id='title' class="title">
|
||||
<img id="icon" src="/matrix/images/optmale.png" align="absmiddle" />
|
||||
<span id="title" align="absmiddle">Manage Branch</span>
|
||||
<img id="close" src="/matrix/images/reload.png" title="Refresh Grid" onclick="SubmitForm('initportbranch','_parent','branchform')"/>
|
||||
</div>
|
||||
<!-- -->
|
||||
<div id="FormPanel" class="FormPanel">
|
||||
<form:form method="post" modelAttribute="branchform" >
|
||||
<input type="hidden" id="suuid" name="suuid" value = "<%=session.getAttribute("UUID").toString() %>" />
|
||||
<input type="hidden" id="usid" value="${Sessvals.getUserID()}" />
|
||||
<table align="center" id="filtertab" style="width:980px;border:1px solid #a7abb4" cellspacing="0">
|
||||
<tr>
|
||||
<td>
|
||||
<div class="widget" style="width:98%">
|
||||
<div class="lblcontainer" style="width:85px">
|
||||
Portfolio
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<div class="divselect" id="divportfolio" style="width:265px;">
|
||||
<form:select path="portfolio" multiple="false" style="width:283px" onblur="validate(this,'t','')" onchange="SubmitForm('getportbranchlist','_parent','branchform')" >
|
||||
<option value="-1" selected>---</option>
|
||||
<c:forEach items="${portlist}" var="port">
|
||||
<form:option value="${port[0]}" label="${port[1]}" />
|
||||
</c:forEach>
|
||||
</form:select>
|
||||
</div>
|
||||
</div>
|
||||
<c:if test="${branchform.portfolio gt 0}">
|
||||
<div class="widget" style="float:right">
|
||||
<div class="lblcontainer" style="font-size:small;line-height:30px;text-transform:none;font-weight:bold">
|
||||
<input type="button" id="adduser" onclick="showBranchInfo(0)" class="button" value="New Branch" style="line-height:20px" />
|
||||
</div>
|
||||
</div>
|
||||
</c:if>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</form:form>
|
||||
<div id="TablePanel" class="tableContainer">
|
||||
<table border="0" cellspacing="0" width="100%" id="userlist">
|
||||
<thead class="thead">
|
||||
<tr title="Row Title">
|
||||
<td width="10" style="font-size:9pt">S.No</td>
|
||||
<td style="font-size:9pt" width="150">Branch Name</td>
|
||||
<td style="font-size:9pt">Address</td>
|
||||
<td style="font-size:9pt" width="130">GST No</td>
|
||||
<td style="font-size:9pt;text-align:center" width="80">Status</td>
|
||||
<td style="font-size:9pt;text-align:center" width="80">Action</td>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody id="userlistbody" class="scrollContent" >
|
||||
<c:forEach items="${branchform.branchlist}" var="lc" varStatus="status">
|
||||
<tr>
|
||||
<td style="font-size:8pt;font-weight:normal">${status.count}</td>
|
||||
<td style="font-size:8pt;font-weight:normal">${lc[1]}</td>
|
||||
<td style="font-size:8pt;font-weight:normal">${lc[2]}</td>
|
||||
<td style="font-size:8pt;font-weight:normal">${lc[3]}</td>
|
||||
<td style="font-size:8pt;text-align:center">
|
||||
<c:choose>
|
||||
<c:when test="${lc[4] eq 'Active'}">
|
||||
<input type="button" id="activebranch" target-data = "${lc[0]}" style="width:80px" onclick="changeBranchStatus(this)" class="button" value="Active" />
|
||||
</c:when>
|
||||
<c:otherwise>
|
||||
<input type="button" id="inactivebranch" target-data = "${lc[0]}" style="width:80px" onclick="changeBranchStatus(this)" class="button" value="Inactive" />
|
||||
</c:otherwise>
|
||||
</c:choose>
|
||||
</td>
|
||||
<td style="font-size:8pt;text-align:center">
|
||||
<c:if test="${lc[4] eq 'Active'}">
|
||||
<input type="button" id="btnedit" class="button" onclick="showBranchInfo(${lc[0]})" value="Edit" />
|
||||
</c:if>
|
||||
</td>
|
||||
</tr>
|
||||
</c:forEach>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
<input type="hidden" id="bid" value="${Sessvals.getBranchID()}" />
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
<!-- Page Load Javascript -->
|
||||
<script language="javascript" type="text/javascript">
|
||||
centerDivBoth("formcontainer","H");
|
||||
function changeBranchStatus(btnElm){
|
||||
var branch = $(btnElm).attr("target-data");
|
||||
var btnid = $(btnElm).attr("id");
|
||||
$.ajax({
|
||||
type: "POST",
|
||||
url: "changebranchstatus",
|
||||
data: "branch="+branch+"&oprby="+$("#usid").val(),
|
||||
success: function(response){
|
||||
jsonObj = JSON.parse(response);
|
||||
if(jsonObj.status == 'failed'){
|
||||
CallMessage(jsonObj.message,3000,200,300);
|
||||
}
|
||||
else{
|
||||
CallMessage('USRCS02:info:Status changed successfully',3000,200,300);
|
||||
$(btnElm).attr("id",btnid == 'activebranch' ? 'inactivebranch' : 'activebranch');
|
||||
if(btnid == 'activebranch'){
|
||||
$(btnElm).closest("td").next().html('');
|
||||
$(btnElm).val('Inactive');
|
||||
}else{
|
||||
$(btnElm).closest("td").next().html('<input type="button" id="btnedit" class="button" onclick="showBranchInfo('+branch+')" value="Edit" />');
|
||||
$(btnElm).val('Active');
|
||||
}
|
||||
}
|
||||
},
|
||||
error: function(e){
|
||||
CallMessage('USRCS02:error:'+e.responseText,3000,200,300);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
function showBranchInfo(bid)
|
||||
{
|
||||
QueryStr="pid="+$('#portfolio').val()+"&bid="+bid+"&suuid="+$("#suuid").val();
|
||||
var x = (window.screen.availWidth - 550)/2;
|
||||
var y = (window.screen.availHeight - 370)/2;
|
||||
var retVal=window.showModalDialog("branchdetail?"+QueryStr,'',"dialogWidth:550px; dialogHeight:370px; dialogTop:"+y+"px; dialogLeft:"+x+"px; center:no; status:no");
|
||||
|
||||
if(retVal && retVal!="")
|
||||
{
|
||||
SubmitForm('getportbranchlist','_parent','branchform');
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<!-- -->
|
||||
</html>
|
||||
@@ -1,174 +0,0 @@
|
||||
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
|
||||
pageEncoding="ISO-8859-1"%>
|
||||
<%@page language="java" session="true" %>
|
||||
<%@taglib uri="http://www.springframework.org/tags/form" prefix="form"%>
|
||||
<%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
|
||||
<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %>
|
||||
<%@taglib prefix="spring" uri="http://www.springframework.org/tags" %>
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
||||
<link href="/matrix/css/jquery-ui.css" rel="stylesheet" type="text/css" />
|
||||
|
||||
<script language="javascript" src="/matrix/js/lib/constants.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/jquery.min.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/ui/jquery-ui.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/ui/uifuncs.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/lib/jsfuncs.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/ui/msgdialog.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/appjs/user.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/ui/select.js" type="text/javascript"></script>
|
||||
|
||||
<link href="/matrix/css/matrix.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/menu.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/button.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/div.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/textbox.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/select.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/table.css" rel="stylesheet" type="text/css" />
|
||||
|
||||
<title>Nimble 1.0 | Manage Users</title>
|
||||
</head>
|
||||
<body>
|
||||
<div id='PageFrame'>
|
||||
<!-- Title Bar -->
|
||||
<div id='title' class="title">
|
||||
<img id="icon" src="/matrix/images/optmale.png" />
|
||||
<img id="close" src="/matrix/images/close.jpg" onclick="javascript:closewindow();" />
|
||||
<span id="title">Nimble 1.0 ${Sessvals.getCompanyCode() } (${Sessvals.getBranchLocation() }) ${Sessvals.getUserDisplayName()} (${Sessvals.getUserGroupName()}) </span>
|
||||
</div>
|
||||
<!-- -->
|
||||
<!-- Dynamic Menu -->
|
||||
<jsp:include page='../../usermenu/menu_${Sessvals.getUserID()}.html' />
|
||||
<!-- -->
|
||||
<div id="formcontainer" style="width:990px;margin-top:5px;position:absolute;z-index:-1">
|
||||
<!-- Title -->
|
||||
<div id='title' class="title">
|
||||
<img id="icon" src="/matrix/images/optmale.png" align="absmiddle" />
|
||||
<span id="title" align="absmiddle">Manage Users</span>
|
||||
<img id="close" src="/matrix/images/reload.png" title="Refresh Grid" onclick="SubmitForm('inituser','_parent','filterform')"/>
|
||||
</div>
|
||||
<!-- -->
|
||||
<div id="FormPanel" class="FormPanel">
|
||||
<form name="filterform" method="post" id="filterform">
|
||||
<input type="hidden" id="suuid" name="suuid" value = "<%=session.getAttribute("UUID").toString() %>" />
|
||||
<input type="hidden" id="usid" value="${Sessvals.getUserID()}" />
|
||||
<table align="center" id="filtertab" style="width:980px;border:1px solid #a7abb4" cellspacing="0">
|
||||
<tr>
|
||||
<td>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="padding-top:7px">
|
||||
Search
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<input type="text" class="textbox" name="customername" id="customername" value="" style="width:300px;" onkeyup="FilterList('userlistbody','1!C0L!2!C0L!3',this.value);" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="font-size:small;line-height:24px;text-transform:none;font-weight:bold">
|
||||
<b>(Enter Login ID / Name / Status)</b>
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget" style="float:right">
|
||||
<div class="lblcontainer" style="font-size:small;line-height:30px;text-transform:none;font-weight:bold">
|
||||
<input type="button" id="adduser" onclick="showUserInfo(0)" class="button" value="New User" style="line-height:20px" />
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
||||
<div id="TablePanel" class="tableContainer">
|
||||
<table border="0" cellspacing="0" width="100%" id="userlist">
|
||||
<thead class="thead">
|
||||
<tr title="Row Title">
|
||||
<td width="10" style="font-size:9pt">S.No</td>
|
||||
<td style="font-size:9pt" width="70">Login ID</td>
|
||||
<td style="font-size:9pt">Name</td>
|
||||
<td style="font-size:9pt">Group</td>
|
||||
<td style="font-size:9pt;text-align:center">Status</td>
|
||||
<td style="font-size:9pt;text-align:center">Action</td>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody id="userlistbody" class="scrollContent" >
|
||||
<c:forEach items="${userlist}" var="lc" varStatus="status">
|
||||
<tr>
|
||||
<td style="font-size:8pt;font-weight:normal">${status.count}</td>
|
||||
<td style="font-size:8pt;font-weight:normal">${lc[1]}</td>
|
||||
<td style="font-size:8pt;font-weight:normal">${lc[2]}</td>
|
||||
<td style="font-size:8pt;font-weight:normal">${lc[3]}</td>
|
||||
<td style="font-size:8pt;text-align:center">
|
||||
<c:choose>
|
||||
<c:when test="${lc[4] eq 'Active'}">
|
||||
<input type="button" id="activeuser" target-data = "${lc[0]}" style="width:80px" onclick="changeUserStatus(this)" class="button" value="Active" />
|
||||
</c:when>
|
||||
<c:otherwise>
|
||||
<input type="button" id="inactiveuser" target-data = "${lc[0]}" style="width:80px" onclick="changeUserStatus(this)" class="button" value="Inactive" />
|
||||
</c:otherwise>
|
||||
</c:choose>
|
||||
|
||||
|
||||
</td>
|
||||
<td style="font-size:8pt;text-align:center">
|
||||
<input type="button" id="btnedit" class="button" onclick="showUserInfo(${lc[0]})" value="Edit" />
|
||||
</td>
|
||||
</tr>
|
||||
</c:forEach>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
<input type="hidden" id="bid" value="${Sessvals.getBranchID()}" />
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
<!-- Page Load Javascript -->
|
||||
<script language="javascript" type="text/javascript">
|
||||
centerDivBoth("formcontainer","H");
|
||||
function changeUserStatus(btnElm){
|
||||
var user = $(btnElm).attr("target-data");
|
||||
var btnid = $(btnElm).attr("id");
|
||||
$.ajax({
|
||||
type: "POST",
|
||||
url: "changeuserstatus",
|
||||
data: "user="+user+"&oprby="+$("#usid").val(),
|
||||
success: function(response){
|
||||
jsonObj = JSON.parse(response);
|
||||
if(jsonObj.status == 'failed'){
|
||||
CallMessage(jsonObj.message,3000,200,300);
|
||||
}
|
||||
else{
|
||||
CallMessage('USRCS02:info:Status changed successfully',3000,200,300);
|
||||
$(btnElm).attr("id",btnid == 'activeuser' ? 'inactiveuser' : 'activeuser');
|
||||
|
||||
if(btnid == 'activeuser'){
|
||||
$(btnElm).closest("td").next().html('');
|
||||
$(btnElm).val('Inactive');
|
||||
}else{
|
||||
$(btnElm).closest("td").next().html('<input type="button" id="btnedit" class="button" onclick="showUserInfo('+branch+')" value="Edit" />');
|
||||
$(btnElm).val('Active');
|
||||
}
|
||||
}
|
||||
},
|
||||
error: function(e){
|
||||
CallMessage('USRCS02:error:'+e.responseText,3000,200,300);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
function showUserInfo(uid)
|
||||
{
|
||||
QueryStr="uid="+uid+"&suuid="+$("#suuid").val();
|
||||
var x = (window.screen.availWidth - 550)/2;
|
||||
var y = (window.screen.availHeight - 225)/2;
|
||||
var retVal=window.showModalDialog("userdetail?"+QueryStr,'',"dialogWidth:550px; dialogHeight:250px; dialogTop:"+y+"px; dialogLeft:"+x+"px; center:no; status:no");
|
||||
|
||||
if(retVal && retVal!="")
|
||||
{
|
||||
SubmitForm('inituser','_parent','filterform');
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<!-- -->
|
||||
</html>
|
||||
@@ -1,148 +0,0 @@
|
||||
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
|
||||
pageEncoding="ISO-8859-1"%>
|
||||
<%@page language="java" session="true" %>
|
||||
<%@taglib uri="http://www.springframework.org/tags/form" prefix="form"%>
|
||||
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
||||
<title>Nimble 1.0 | User Detail </title>
|
||||
<script language="javascript" src="/matrix/js/lib/constants.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/jquery1.7.2.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/ui/uifuncs.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/lib/jsfuncs.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/ui/msgdialog.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/ui/select.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/appjs/belt.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/validator.js" type="text/javascript"></script>
|
||||
|
||||
<link href="/matrix/css/button.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/div.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/textbox.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/select.css" rel="stylesheet" type="text/css" />
|
||||
</head>
|
||||
|
||||
<body style="font-family:Tahoma;background-color:#fff;font-size:10pt">
|
||||
<div id='PageFrame'>
|
||||
<div id="formcontainer" style="width:393px;margin-top:10px;position:absolute;z-index:-1">
|
||||
<form:form method="post" name="userdetail" id="userdetail" modelAttribute="userdetail" >
|
||||
<!-- Verifier Details (Section1) -->
|
||||
<div>
|
||||
<!-- Title -->
|
||||
<div id='title' class="title">
|
||||
<img id="icon" src="/matrix/images/ear_details.png" align="absmiddle" />
|
||||
<span id="title" align="absmiddle">User Detail</span>
|
||||
</div>
|
||||
<!-- -->
|
||||
<!-- Form (Section1) -->
|
||||
<div id="FormPanel1" class="FormPanel">
|
||||
<table align="center" id="FormControls" width="99%">
|
||||
<tr>
|
||||
<td>
|
||||
<form:hidden path="uid"/>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="width:85px">
|
||||
<font color="red">*</font>Login ID
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<form:input path="loginid" maxlength="20" style="width:250px" onblur="validate(this,'t','AlphaOnly')" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="width:85px">
|
||||
<font color="red">*</font>Name
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<form:input path="displayname" maxlength="30" style="width:250px" onblur="validate(this,'t','PersonName')" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="width:85px">
|
||||
<font color="red">*</font>Group
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<div class="divselect" id="divgroup" style="width:265px;">
|
||||
<form:select path="group" multiple="false" style="width:283px" onblur="validate(this,'t','')" >
|
||||
<option value="-1" selected>---</option>
|
||||
<c:forEach items="${grouplist}" var="group">
|
||||
<form:option value="${group[0]}" label="${group[1]}" />
|
||||
</c:forEach>
|
||||
</form:select>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="width:85px">
|
||||
<font color="red">*</font>Email ID
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<div class="divselect" id="divemailid" style="width:265px;">
|
||||
<form:select path="emailid" multiple="false" style="width:283px" onblur="validate(this,'t','')" >
|
||||
<option value="-1" selected>---</option>
|
||||
<c:forEach items="${emailist}" var="mailid">
|
||||
<form:option value="${mailid[0]}" label="${mailid[1]}" />
|
||||
</c:forEach>
|
||||
</form:select>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="inputcontainer">
|
||||
<input type="checkbox" name="selall" id="selall" onclick="resetPassword(this)" />
|
||||
</div>
|
||||
<div class="lblcontainer" style="width:300px">
|
||||
<form:hidden path="resetpass" />
|
||||
<font color="red">*</font>Reset Password to root
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<!-- -->
|
||||
</div>
|
||||
<!-- -->
|
||||
<form:hidden path="suuid" />
|
||||
|
||||
<!-- -->
|
||||
<input type="hidden" id="invalidfields" value="0" />
|
||||
<input type="button" class="button" name="btnsave" style="margin-top:5px;float:right" value="Save" id="btnsave" accesskey="S" onclick="ValidateSubmitUser();" />
|
||||
</form:form>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
<!-- Page Load Javascript -->
|
||||
<script language="javascript" type="text/javascript">
|
||||
centerDivBoth("formcontainer","H");
|
||||
document.getElementById("loginid").focus();
|
||||
|
||||
function ValidateSubmitUser()
|
||||
{
|
||||
validate(document.getElementById("loginid"),'t','AlphaOnly');
|
||||
validate(document.getElementById("displayname"),'t','PersonName');
|
||||
validate(document.getElementById("group"),'t','');
|
||||
if(checkForm())
|
||||
{
|
||||
SubmitForm('updateuser','_parent','userdetail');
|
||||
}
|
||||
}
|
||||
function resetPassword(elm){
|
||||
|
||||
if(elm.checked)
|
||||
$('#resetpass').val("1");
|
||||
else
|
||||
$('#resetpass').val("0");
|
||||
}
|
||||
</script>
|
||||
|
||||
<!-- -->
|
||||
<!-- Process Message -->
|
||||
<c:if test="${not empty msg}">
|
||||
<script language="javascript" type="text/javascript"> CallMessage('${msg}',3000,200,300); </script>
|
||||
<c:if test="${stat==true}">
|
||||
<script language="javascript" type="text/javascript">window.returnValue='${retval}'; window.close(); </script>
|
||||
</c:if>
|
||||
</c:if>
|
||||
<!-- -->
|
||||
</html>
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,111 +0,0 @@
|
||||
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
|
||||
pageEncoding="ISO-8859-1"%>
|
||||
<%@page language="java" session="true" %>
|
||||
<%@taglib uri="http://www.springframework.org/tags/form" prefix="form"%>
|
||||
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
||||
<script language="javascript" src="/matrix/js/lib/constants.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/jquery1.7.2.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/ui/uifuncs.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/lib/jsfuncs.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/ui/msgdialog.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/ui/select.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/appjs/dedupedo.js" type="text/javascript"></script>
|
||||
|
||||
<link href="/matrix/css/menu.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/div.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/select.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/table.css" rel="stylesheet" type="text/css" />
|
||||
|
||||
<title>Nimble 1.0 | Dedupe Do</title>
|
||||
</head>
|
||||
<body style="font-family:Tahoma;background-color:#fff;font-size:10pt">
|
||||
<div id='PageFrame'>
|
||||
<!-- Title Bar -->
|
||||
<div id='title' class="title">
|
||||
<img id="icon" src="/matrix/images/optmale.png" />
|
||||
<img id="close" src="/matrix/images/close.jpg" onclick="javascript:closewindow();" />
|
||||
<span id="title">Nimble 1.0 ${Sessvals.getCompanyCode() } (${Sessvals.getBranchLocation() }) ${Sessvals.getUserDisplayName()} (${Sessvals.getUserGroupName()}) </span>
|
||||
</div>
|
||||
<!-- -->
|
||||
<!-- Dynamic Menu -->
|
||||
<jsp:include page='../../usermenu/menu_${Sessvals.getUserID()}.html' />
|
||||
<!-- -->
|
||||
<div id="formcontainer" style="width:95%;margin-top:5px;position:absolute;z-index:-1">
|
||||
<form:form method="post" name="caseGrid" id="caseGrid" modelAttribute="caseGrid" >
|
||||
<!-- Common Details (Section1) Visible for all portfolios-->
|
||||
<div>
|
||||
<!-- Title -->
|
||||
<div id='title' class="title">
|
||||
<img id="icon" src="/matrix/images/commondet.png" align="absmiddle" />
|
||||
<span id="title" align="absmiddle">List of Cases</span>
|
||||
<div class="divselect" id="divportfolio" style="width:167px;position:absolute;top:3px;right:30px;">
|
||||
<form:select path="PortfolioId" multiple="false" id="portlist" style="width:185px" onchange="SubmitForm('dedupecaselist','_parent','caseGrid')">
|
||||
<form:option value="-1" label="SELECT PORTFOLIO" selected="true"/>
|
||||
<c:forEach items="${portlist}" var="port">
|
||||
<form:option value="${port[0]}" label="${port[1]}" />
|
||||
</c:forEach>
|
||||
</form:select>
|
||||
</div>
|
||||
<img id="close" src="/matrix/images/reload.png" title="Refresh Grid" onclick="SubmitForm('dedupecaselist','_parent','caseGrid')"/>
|
||||
</div>
|
||||
<!-- -->
|
||||
<div id="TablePanel" class="tableContainer">
|
||||
<table border="0" cellspacing="0" width="100%" id="casetable">
|
||||
<thead class="thead">
|
||||
<tr title="Row Title">
|
||||
<td>S.No</td>
|
||||
<td>MV Code</td>
|
||||
<td>File No.</td>
|
||||
<td>Customer Name</td>
|
||||
<td>Type</td>
|
||||
<td>RV</td>
|
||||
<td>OV</td>
|
||||
<td>PV</td>
|
||||
<td>Received Date</td>
|
||||
<td>Done</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody class="scrollContent">
|
||||
<c:forEach items="${caseList}" var="casedet" varStatus="status">
|
||||
<tr id="row${status.count}">
|
||||
<td>
|
||||
<input type="hidden" name="uuid" id="row${status.count}uuid" value="${casedet[0]}" />
|
||||
<input type="hidden" name="portid" id="row${status.count}portid" value="${casedet[1]}" />
|
||||
${status.count}</td>
|
||||
<td>${casedet[2]}</td>
|
||||
<td>${casedet[3]}</td>
|
||||
<td>${casedet[4]}</td>
|
||||
<td>${casedet[5]}</td>
|
||||
<td>${casedet[6]}</td>
|
||||
<td>${casedet[7]}</td>
|
||||
<td>${casedet[8]}</td>
|
||||
<td>${casedet[9]}</td>
|
||||
<td>${casedet[10]}</td>
|
||||
<td id="row${status.count}col"></td>
|
||||
</tr>
|
||||
</c:forEach>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</form:form>
|
||||
</div>
|
||||
</body>
|
||||
<!-- Page Load Javascript -->
|
||||
<script language="javascript" type="text/javascript">
|
||||
centerDivBoth("formcontainer","H");
|
||||
InitPage();
|
||||
</script>
|
||||
<!-- -->
|
||||
|
||||
<!-- Process Message -->
|
||||
<c:if test="${not empty caseGrid.getErrMsg()}">
|
||||
<script language="javascript" type="text/javascript"> CallMessage('${caseGrid.getErrMsg()}',3000,200,300); </script>
|
||||
</c:if>
|
||||
<!-- -->
|
||||
</html>
|
||||
@@ -1,176 +0,0 @@
|
||||
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
|
||||
pageEncoding="ISO-8859-1"%>
|
||||
<%@page language="java" session="true" %>
|
||||
<%@taglib uri="http://www.springframework.org/tags/form" prefix="form"%>
|
||||
<%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
|
||||
<%@taglib prefix="spring" uri="http://www.springframework.org/tags" %>
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
||||
<script language="javascript" src="/matrix/js/lib/constants.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/jquery1.7.2.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/ui/uifuncs.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/lib/jsfuncs.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/ui/msgdialog.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/ui/progressbar.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/ui/select.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/appjs/deduperun.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/validator.js" type="text/javascript"></script>
|
||||
|
||||
<link href="/matrix/css/matrix.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/menu.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/button.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/div.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/select.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/table.css" rel="stylesheet" type="text/css" />
|
||||
<title>Nimble 1.0 | Dedupe</title>
|
||||
</head>
|
||||
<body>
|
||||
<div id='PageFrame'>
|
||||
<!-- Title Bar -->
|
||||
<div id='title' class="title">
|
||||
<img id="icon" src="/matrix/images/optmale.png" />
|
||||
<img id="close" src="/matrix/images/close.jpg" onclick="javascript:closewindow();" />
|
||||
<span id="title">Nimble 1.0 ${Sessvals.getCompanyCode() } (${Sessvals.getBranchLocation() }) ${Sessvals.getUserDisplayName()} (${Sessvals.getUserGroupName()}) </span>
|
||||
</div>
|
||||
<!-- -->
|
||||
<!-- Dynamic Menu -->
|
||||
<jsp:include page='../../usermenu/menu_${Sessvals.getUserID()}.html' />
|
||||
<!-- -->
|
||||
<div id="formcontainer" style="width:650px;margin-top:5px;position:absolute;z-index:-1">
|
||||
<form:form method="post" name="deduperun" id="deduperun" modelAttribute="dedupeRun" >
|
||||
<input type="hidden" name="curu" id="curu" value="${Sessvals.getUserID()}" />
|
||||
<div>
|
||||
<!-- Title -->
|
||||
<div id='title' class="title">
|
||||
<img id="icon" src="/matrix/images/dedupe.png" align="absmiddle" />
|
||||
<span id="title" align="absmiddle">Dedupe Run</span>
|
||||
<img id="close" src="/matrix/images/reload.png" title="Refresh Grid" onclick="SubmitForm('rundedupe','_parent','deduperun')"/>
|
||||
</div>
|
||||
<!-- -->
|
||||
<div id="TablePanel" class="tableContainer">
|
||||
<table border="0" cellspacing="0" width="100%" id="cutlist">
|
||||
<thead class="thead">
|
||||
<tr title="Row Title">
|
||||
<td width="6%">S.No</td>
|
||||
<td width="30%">Cut-Off Time</td>
|
||||
<td align="center">No of Addresses</td>
|
||||
<td align="center">No of Cases</td>
|
||||
<td align="center">Action</td>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody class="scrollContent">
|
||||
<c:forEach items="${dedupeRun.dedupelist}" var="record" varStatus="mystatus">
|
||||
<tr title="${record.lockedby}">
|
||||
<td>${mystatus.count}</td>
|
||||
<td id="parent${mystatus.count}" onclick="ExpandList(this.id)" >
|
||||
<form:hidden path="dedupelist[${mystatus.index}].lockedby" id="locby${mystatus.count}" value="${status.value}"/>
|
||||
<form:hidden path="dedupelist[${mystatus.index}].cutoffon" id="cuttime${mystatus.count}" value="${status.value}"/>
|
||||
<span class="customLink" style="cursor:pointer">${record.cutoffon}</span>
|
||||
</td>
|
||||
<td align="center">
|
||||
<form:hidden path="dedupelist[${mystatus.index}].totaddr" id="totaddr${mystatus.count}" value="${status.value}"/>${record.totaddr}
|
||||
</td>
|
||||
<td align="center">
|
||||
<form:hidden path="dedupelist[${mystatus.index}].totcase" id="totcase${mystatus.count}" value="${status.value}"/>${record.totcase}
|
||||
</td>
|
||||
<td align="center">
|
||||
<form:hidden path="dedupelist[${mystatus.index}].islocked" id="locked${mystatus.count}" value="${status.value}" />
|
||||
<c:choose>
|
||||
<c:when test="${record.islocked gt 0}">
|
||||
<img src="/matrix/images/locked.png"/>
|
||||
</c:when>
|
||||
<c:otherwise>
|
||||
<input type="button" id="btndedupe" class="button" value="Run Earlier & Negative" onclick="showDedupePanel('cutlist${mystatus.count}')" />
|
||||
</c:otherwise>
|
||||
</c:choose>
|
||||
</td>
|
||||
</tr>
|
||||
<tr style="display:none" id="parent${mystatus.count}child" >
|
||||
<c:choose>
|
||||
<c:when test="${record.islocked gt 0}">
|
||||
<td colspan="6" style="text-align:center;font-style: italic;color:#232323;text-transform: capitalize;">You can't see records locked by another user.</td>
|
||||
</c:when>
|
||||
<c:otherwise>
|
||||
<td colspan="6" align="right">
|
||||
<table id="cutlist${mystatus.count}" cellspacing="0" cellpadding="0" border="0" width="94%" style="border-color: #49a5df">
|
||||
<thead class="thead">
|
||||
<tr title="Heading">
|
||||
<td width="6%">S.No</td>
|
||||
<td>MV Code</td>
|
||||
<td>Appl No.</td>
|
||||
<td>Customer Name</td>
|
||||
<td>Type</td>
|
||||
<td>RV</td>
|
||||
<td>OV</td>
|
||||
<td>PV</td>
|
||||
<td>Ear</td>
|
||||
<td>Neg</td>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody class="scrollContent">
|
||||
<c:forEach items="${record.sublist}" var="record1" varStatus="mystatus1">
|
||||
<tr title="${record1.lockedby}child" id="row${mystatus1.count}${mystatus.count}">
|
||||
<td>${mystatus1.count}</td>
|
||||
<td>
|
||||
<form:hidden path="dedupelist[${mystatus.index}].sublist[${mystatus1.index}].lockedby" id="locby${mystatus1.count}child" value="${status.value}"/>
|
||||
<form:hidden path="dedupelist[${mystatus.index}].sublist[${mystatus1.index}].mvcode" id="mvcode${mystatus1.count}child" value="${status.value}"/>
|
||||
<form:hidden path="dedupelist[${mystatus.index}].sublist[${mystatus1.index}].uuid" id="uuid${mystatus1.count}${mystatus.count}" value="${status.value}"/>
|
||||
<span>${record1.mvcode}</span>
|
||||
</td>
|
||||
<td>
|
||||
<form:hidden path="dedupelist[${mystatus.index}].sublist[${mystatus1.index}].applno" id="applno${mystatus1.count}child" value="${status.value}"/>${record1.applno}
|
||||
</td>
|
||||
<td>
|
||||
<form:hidden path="dedupelist[${mystatus.index}].sublist[${mystatus1.index}].customername" id="cname${mystatus1.count}child" value="${status.value}"/>${record1.customername}
|
||||
</td>
|
||||
<td>
|
||||
<form:hidden path="dedupelist[${mystatus.index}].sublist[${mystatus1.index}].apptype" id="ctype${mystatus1.count}child" value="${status.value}"/>${record1.apptype}
|
||||
</td>
|
||||
<td>
|
||||
<form:hidden path="dedupelist[${mystatus.index}].sublist[${mystatus1.index}].totrv" id="totrv${mystatus1.count}child" value="${status.value}"/>${record1.totrv}
|
||||
</td>
|
||||
<td>
|
||||
<form:hidden path="dedupelist[${mystatus.index}].sublist[${mystatus1.index}].totov" id="totov${mystatus1.count}child" value="${status.value}"/>${record1.totov}
|
||||
</td>
|
||||
<td>
|
||||
<form:hidden path="dedupelist[${mystatus.index}].sublist[${mystatus1.index}].totpv" id="totpv${mystatus1.count}child" value="${status.value}"/>${record1.totpv}
|
||||
</td>
|
||||
<td id="td${mystatus1.count}${mystatus.count}ear">
|
||||
<form:hidden path="dedupelist[${mystatus.index}].sublist[${mystatus1.index}].earlier" id="row${mystatus1.count}${mystatus.count}ear" value="${status.value}"/><span id="sp${mystatus1.count}${mystatus.count}ear">${record1.earlier}</span>
|
||||
</td>
|
||||
<td id="td${mystatus1.count}${mystatus.count}neg">
|
||||
<form:hidden path="dedupelist[${mystatus.index}].sublist[${mystatus1.index}].negative" id="row${mystatus1.count}${mystatus.count}neg" value="${status.value}"/><span id="sp${mystatus1.count}${mystatus.count}neg">${record1.negative}</span>
|
||||
</td>
|
||||
</tr>
|
||||
</c:forEach>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
</c:otherwise>
|
||||
</c:choose>
|
||||
</tr>
|
||||
</c:forEach>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
<form:hidden path="SessUUID" value="${dedupeRun.getSessUUID()}"/>
|
||||
</form:form>
|
||||
<input type="hidden" id="invalidfields" value="0" />
|
||||
<input type="hidden" id="selectedports" value="0" />
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
<!-- Page Load Javascript -->
|
||||
<script language="javascript" type="text/javascript">
|
||||
centerDivBoth("formcontainer","H");
|
||||
</script>
|
||||
<!-- -->
|
||||
<!-- Process Message -->
|
||||
<c:if test="${not empty dedupeRun.getErrMsg()}">
|
||||
<script language="javascript" type="text/javascript"> CallMessage('${dedupeRun.getErrMsg()}',5000,200,300); </script>
|
||||
</c:if>
|
||||
<!-- -->
|
||||
</html>
|
||||
@@ -1,116 +0,0 @@
|
||||
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
|
||||
pageEncoding="ISO-8859-1"%>
|
||||
<%@page language="java" session="true" %>
|
||||
<%@taglib uri="http://www.springframework.org/tags/form" prefix="form"%>
|
||||
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
||||
<script language="javascript" src="/matrix/js/lib/constants.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/jquery1.7.2.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/ui/uifuncs.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/lib/jsfuncs.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/ui/msgdialog.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/appjs/dedupedo.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/ui/select.js" type="text/javascript"></script>
|
||||
|
||||
<link href="/matrix/css/menu.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/button.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/div.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/select.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/table.css" rel="stylesheet" type="text/css" />
|
||||
|
||||
<title>Nimble 1.0 | Send Dedupe</title>
|
||||
</head>
|
||||
<body style="font-family:Tahoma;background-color:#fff;font-size:10pt">
|
||||
<div id='PageFrame'>
|
||||
<!-- Title Bar -->
|
||||
<div id='title' class="title">
|
||||
<img id="icon" src="/matrix/images/optmale.png" />
|
||||
<img id="close" src="/matrix/images/close.jpg" onclick="javascript:closewindow();" />
|
||||
<span id="title">Nimble 1.0 ${Sessvals.getCompanyCode() } (${Sessvals.getBranchLocation() }) ${Sessvals.getUserDisplayName()} (${Sessvals.getUserGroupName()}) </span>
|
||||
</div>
|
||||
<!-- -->
|
||||
<!-- Dynamic Menu -->
|
||||
<jsp:include page='../../usermenu/menu_${Sessvals.getUserID()}.html' />
|
||||
<!-- -->
|
||||
<div id="formcontainer" style="width:95%;margin-top:5px;position:absolute;z-index:-1">
|
||||
<form:form method="post" name="senddedupe" id="senddedupe" modelAttribute="senddedupe" >
|
||||
<!-- Common Details (Section1) Visible for all portfolios-->
|
||||
<div>
|
||||
<!-- Title -->
|
||||
<div id='title' class="title">
|
||||
<img id="icon" src="/matrix/images/commondet.png" align="absmiddle" />
|
||||
<span id="title" align="absmiddle">List of Cases</span>
|
||||
<div class="divselect" id="divportfolio" style="width:167px;position:absolute;top:3px;right:30px;">
|
||||
<form:select path="portfolioid" multiple="false" id="portlist" style="width:185px" onchange="SubmitForm('dedupetosend','_parent','senddedupe')">
|
||||
<form:option value="-1" label="SELECT PORTFOLIO" selected="true"/>
|
||||
<c:forEach items="${portlist}" var="port">
|
||||
<form:option value="${port[0]}" label="${port[1]}" />
|
||||
</c:forEach>
|
||||
</form:select>
|
||||
</div>
|
||||
<img id="close" src="/matrix/images/reload.png" title="Refresh Grid" onclick="SubmitForm('senddedupe','_parent','senddedupe')"/>
|
||||
</div>
|
||||
<!-- -->
|
||||
<div id="TablePanel" class="tableContainer">
|
||||
<table border="0" cellspacing="0" width="100%" id="casetobesend">
|
||||
<thead class="thead">
|
||||
<tr title="Row Title">
|
||||
<td>S.No</td>
|
||||
<td>MV Code</td>
|
||||
<td>File No.</td>
|
||||
<td>Customer Name</td>
|
||||
<td>Type</td>
|
||||
<td>Product</td>
|
||||
<td>Ear</td>
|
||||
<td>Neg</td>
|
||||
<td>Ded-Cut Time</td>
|
||||
<td>Branch</td>
|
||||
<td align="center"><input type="checkbox" name="selall" id="selall" onclick="ToggleChecks('chkrow',this.checked)" checked /></td>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody class="scrollContent">
|
||||
<c:forEach items="${senddedupe.caselist}" var="casedet" varStatus="status">
|
||||
<tr id="row${status.count}">
|
||||
<td>
|
||||
<input type="hidden" name="uuid" id="row${status.count}uuid" value="${casedet[0]}" />
|
||||
${status.count}</td>
|
||||
<td>${casedet[1]}</td>
|
||||
<td>${casedet[2]}</td>
|
||||
<td>${casedet[3]}</td>
|
||||
<td>${casedet[4]}</td>
|
||||
<td>${casedet[5]}</td>
|
||||
<td>${casedet[6]}</td>
|
||||
<td>${casedet[7]}</td>
|
||||
<td>${casedet[8]}</td>
|
||||
<td>${casedet[9]}</td>
|
||||
<td align="center"><input type="checkbox" name="chkrow${status.count}" id="chkrow${status.count}" checked onclick="checkList('chkrow','selall')" /></td>
|
||||
</tr>
|
||||
</c:forEach>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<input type="button" class="button" name="btngenreport" style="float:right;margin-top:10px" value="Generate Report" id="btngenreport" accesskey="G" onclick="return ValidateSendDedupe('senddedupe');" />
|
||||
</div>
|
||||
<form:hidden path="uuids" id="hfdelstat" />
|
||||
<form:hidden path="suuid" />
|
||||
<form:hidden path="dqid" />
|
||||
<form:hidden path="fid" />
|
||||
</form:form>
|
||||
</div>
|
||||
</body>
|
||||
<!-- Page Load Javascript -->
|
||||
<script language="javascript" type="text/javascript">
|
||||
centerDivBoth("formcontainer","H");
|
||||
InitSendDedupe();
|
||||
</script>
|
||||
<!-- -->
|
||||
|
||||
<!-- Process Message -->
|
||||
<c:if test="${not empty msg}">
|
||||
<script language="javascript" type="text/javascript">contentType="html"; CallMessage('${msg}',3000,200,300); </script>
|
||||
</c:if>
|
||||
<!-- -->
|
||||
</html>
|
||||
@@ -1,278 +0,0 @@
|
||||
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
|
||||
pageEncoding="ISO-8859-1"%>
|
||||
<%@page language="java" session="true" %>
|
||||
<%@taglib uri="http://www.springframework.org/tags/form" prefix="form"%>
|
||||
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
||||
<title>Nimble 1.0 | Dedupe Viewer</title>
|
||||
<script language="javascript" src="/matrix/js/lib/constants.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/jquery1.7.2.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/ui/uifuncs.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/lib/jsfuncs.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/ui/msgdialog.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/appjs/dedupedo.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/validator.js" type="text/javascript"></script>
|
||||
|
||||
|
||||
<link href="/matrix/css/button.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/div.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/textbox.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/table.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/select.css" rel="stylesheet" type="text/css" />
|
||||
</head>
|
||||
|
||||
<body style="font-family:Tahoma;background-color:#fff;font-size:10pt">
|
||||
<div id='PageFrame'>
|
||||
<!-- Title Bar -->
|
||||
<div id='title' class="title">
|
||||
<img id="icon" src="/matrix/images/optmale.png" />
|
||||
<img id="close" src="/matrix/images/close.jpg" onclick="javascript:closewindow();" />
|
||||
<span id="title">Nimble 1.0 ${Sessvals.getCompanyCode() } (${Sessvals.getBranchLocation() }) ${Sessvals.getUserDisplayName()} (${Sessvals.getUserGroupName()}) </span>
|
||||
</div>
|
||||
<!-- -->
|
||||
<div id="formcontainer" style="width:95%;margin-top:5px;position:absolute;z-index:-1">
|
||||
<form:form method="post" name="dedupeDetails" id="dedupeDetails" modelAttribute="dedupeDetails" >
|
||||
<!-- Parent Record Details -->
|
||||
<div>
|
||||
<form:hidden path="customername"/>
|
||||
<form:hidden path="dob" id="cdob"/>
|
||||
<form:hidden path="mobile" id="mob"/>
|
||||
<form:hidden path="resiphone"/>
|
||||
<form:hidden path="offphone"/>
|
||||
<form:hidden path="resiaddress" id="raddress" />
|
||||
<form:hidden path="offaddress" id="oaddress"/>
|
||||
<!-- Title -->
|
||||
<div id='title' class="title">
|
||||
<img id="icon" src="/matrix/images/page.png" />
|
||||
<span id="title">Source Record (MV Code - ${dedupeDetails.mvcode}) (Category - ${dedupeDetails.category})</span>
|
||||
</div>
|
||||
<!-- -->
|
||||
<!-- Form (Source Record) -->
|
||||
<div id="FormPanel1" class="FormPanel">
|
||||
<table align="center" id="FormControls" width="98%">
|
||||
<tr>
|
||||
<td>Customer Name</td>
|
||||
<td>DOB</td>
|
||||
<td>Residence Phone</td>
|
||||
<td>Office Phone</td>
|
||||
<td>Mobile</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><input style="width:230px;font-size:10pt;padding:3px" id="name" readonly="readonly" value="${dedupeDetails.customername}" /></td>
|
||||
<td><input style="width:130px;font-size:12pt" id="dob" readonly="readonly" value="${dedupeDetails.dob}" /></td>
|
||||
<td><input style="width:160px;font-size:12pt" id="rphone" readonly="readonly" value="${dedupeDetails.resiphone}" /></td>
|
||||
<td><input style="width:160px;font-size:12pt" id="ophone" readonly="readonly" value="${dedupeDetails.offphone}" /></td>
|
||||
<td><input style="width:160px;font-size:12pt" id="mobile" readonly="readonly" value="${dedupeDetails.mobile}" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Residence Address</td>
|
||||
<td colspan="4"><input style="width:677px;font-size:10pt" id="resiaddress" readonly="readonly" value="${dedupeDetails.resiaddress}" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Office / Business Address</td>
|
||||
<td colspan="4"><input style="width:677px;font-size:10pt" id="offaddress" readonly="readonly" value="${dedupeDetails.offaddress}" /></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<!-- -->
|
||||
</div>
|
||||
<!-- -->
|
||||
<!-- Earlier / Negative Details Container -->
|
||||
<div style="border:1px solid #a7abb4;">
|
||||
<table style="width:100%" border="0" cellspacing="0" >
|
||||
<tr>
|
||||
<td style="width:50%" valign="top">
|
||||
<!-- Title -->
|
||||
<div id='title' class="title">
|
||||
<img id="icon" src="/matrix/images/ear_details.png" align="absmiddle" />
|
||||
<span id="title">Earlier Details <span id='efound'></span></span>
|
||||
</div>
|
||||
<!-- -->
|
||||
<!-- Form (Section Earlier) -->
|
||||
<div id="FormPanel2" class="FormPanel">
|
||||
<table align="center" id="FormControls" width="98%">
|
||||
<tr>
|
||||
<td>Customer Name</td>
|
||||
<td></td>
|
||||
<td>DOB</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2"><input style="width:305px;font-size:10pt;padding:3px" id="earname" readonly="readonly" /></td>
|
||||
<td colspan="2"><input style="width:112px;font-size:12pt" id="eardob" readonly="readonly" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Address</td>
|
||||
<td></td>
|
||||
<td colspan="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="4"><textarea style="width:443px;font-size:12pt" rows="4" id="earaddress" readonly="readonly" ></textarea></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Residence Phone</td>
|
||||
<td>Office Phone</td>
|
||||
<td>Mobile Number</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><input style="width:150px;font-size:12pt" id="earrphone" readonly="readonly" /></td>
|
||||
<td><input style="width:150px;font-size:12pt" id="earophone" readonly="readonly" /></td>
|
||||
<td><input style="width:112px;font-size:12pt" id="earmobile" readonly="readonly" /></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="4">
|
||||
<input type="button" class="button" name="btnfirst1" style="margin-top:5px;float:left" value="" id="btnfirst" accesskey="H" onclick="findRecord(1,1)" />
|
||||
<input type="button" class="button" name="btnprev1" style="margin-top:5px;float:left" value="" id="btnprev" accesskey="J" onclick="findRecord(2,1)" />
|
||||
<input type="button" class="button" name="btnnext1" style="margin-top:5px;float:left" value="" id="btnnext" accesskey="K" onclick="findRecord(3,1)" />
|
||||
<input type="button" class="button" name="btnlast1" style="margin-top:5px;float:left" value="" id="btnlast" accesskey="L" onclick="findRecord(4,1)" />
|
||||
<input type="button" class="button" name="btnear" style="margin-top:5px;float:right;margin-right:7px" value="Match Found" id="btnear" accesskey="9" onclick="addRemarks(1,'earremarks')" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2" id="efoundon" style="padding-top:10px"><b>No Match Found</b></td>
|
||||
<td colspan="2" id="ecurrecord" style="padding-top:10px"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<!-- -->
|
||||
</td>
|
||||
<td valign="top" style="width:50%" id="tdneg">
|
||||
<!-- Title -->
|
||||
<div id='title' class="title">
|
||||
<img id="icon" src="/matrix/images/neg_details.png" align="absmiddle" />
|
||||
<span id="title">Negative Details <span id='nfound'></span></span>
|
||||
</div>
|
||||
<!-- -->
|
||||
<!-- Form (Section Earlier) -->
|
||||
<div id="FormPanel2" class="FormPanel">
|
||||
<table align="center" id="FormControls" width="98%">
|
||||
<tr>
|
||||
<td>Customer Name</td>
|
||||
<td></td>
|
||||
<td>DOB</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2"><input style="width:305px;font-size:10pt;padding:3px" id="negname" readonly="readonly" /></td>
|
||||
<td colspan="2"><input style="width:112px;font-size:12pt" id="negdob" readonly="readonly" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Address</td>
|
||||
<td></td>
|
||||
<td colspan="2"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="4"><textarea style="width:438px;font-size:12pt" rows="4" id="negaddress" readonly="readonly" ></textarea></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Residence Phone</td>
|
||||
<td>Office Phone</td>
|
||||
<td>Mobile Number</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><input style="width:150px;font-size:12pt" id="negrphone" readonly="readonly" /></td>
|
||||
<td><input style="width:150px;font-size:12pt" id="negophone" readonly="readonly" /></td>
|
||||
<td><input style="width:112px;font-size:12pt" id="negmobile" readonly="readonly" /></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="4">
|
||||
<input type="button" class="button" name="btnfirst" style="margin-top:5px;float:left" value="" id="btnfirst" accesskey="U" onclick="findRecord(1,2)" />
|
||||
<input type="button" class="button" name="btnprev" style="margin-top:5px;float:left" value="" id="btnprev" accesskey="I" onclick="findRecord(2,2)" />
|
||||
<input type="button" class="button" name="btnnext" style="margin-top:5px;float:left" value="" id="btnnext" accesskey="O" onclick="findRecord(3,2)" />
|
||||
<input type="button" class="button" name="btnlast" style="margin-top:5px;float:left" value="" id="btnlast" accesskey="P" onclick="findRecord(4,2)" />
|
||||
<input type="button" class="button" name="btnear" style="margin-top:5px;float:right;margin-right:7px" value="Match Found" id="btnneg" accesskey="0" onclick="addRemarks(2,'negremarks')" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2" id="nfoundon" style="padding-top:10px"><b>No Match Found</b></td>
|
||||
<td colspan="2" id="ncurrecord" style="padding-top:10px"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<!-- -->
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<!-- -->
|
||||
<!-- Earlier / Negative Details Container -->
|
||||
<div style="border:1px solid #a7abb4;">
|
||||
<table style="width:100%" border="0" cellspacing="0" >
|
||||
<tr>
|
||||
<td style="width:50%" valign="top">
|
||||
<!-- Title -->
|
||||
<div id='title' class="title">
|
||||
<img id="icon" src="/matrix/images/ear_rem.png" id="earimg" align="absmiddle" onclick="editRemarks('earremarks')" />
|
||||
<span id="title">Earlier Match Remarks</span>
|
||||
<div class="nedtrem" id="ctrldiv">
|
||||
<img src="/matrix/images/edit_rem.png" align="absmiddle" onclick="editRemarks('earremarks',1)" title="Remove current record remarks" />
|
||||
</div>
|
||||
</div>
|
||||
<!-- -->
|
||||
<!-- Form (Section Earlier) -->
|
||||
<div id="FormPanel2" class="FormPanel">
|
||||
<table align="center" id="FormControls" style="width:100%">
|
||||
<tr>
|
||||
<td><form:textarea path="earremarks" style="width:98%" rows="3" readonly="true" ></form:textarea></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<!-- -->
|
||||
</td>
|
||||
<td style="width:50%" valign="top">
|
||||
<!-- Title -->
|
||||
<div id='title' class="title">
|
||||
<img id="icon" src="/matrix/images/neg_rem.png" align="absmiddle" />
|
||||
<span id="title">Negative Match Remarks</span>
|
||||
<div class="nedtrem" id="ctrldiv">
|
||||
<img src="/matrix/images/edit_rem.png" align="absmiddle" onclick="editRemarks('negremarks',2)" title="Remove current record remarks" />
|
||||
</div>
|
||||
</div>
|
||||
<!-- -->
|
||||
<!-- Form (Section Earlier) -->
|
||||
<div id="FormPanel2" class="FormPanel">
|
||||
<table align="center" id="FormControls" style="width:100%">
|
||||
<tr>
|
||||
<td><form:textarea path="negremarks" style="width:98%" rows="3" readonly="true" ></form:textarea></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<!-- -->
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<!-- -->
|
||||
|
||||
<form:hidden path="sessuuid" />
|
||||
<form:hidden path="uuid" />
|
||||
<!-- -->
|
||||
<input type="hidden" id="invalidfields" value="0" />
|
||||
<input type="button" class="button" name="btncancel" style="margin-left:1px;margin-top:5px;float:right" value="Close" id="btncancel" accesskey="C" onclick="window.returnValue=0;window.close()" />
|
||||
<input type="button" class="button" name="btnsave" style="margin-top:5px;float:right" value="Save" id="btnsave" accesskey="S" onclick="return SubmitForm('updatededupe','_parent','dedupeDetails');" />
|
||||
</form:form>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
<!-- Page Load Javascript -->
|
||||
<script language="javascript" type="text/javascript">
|
||||
centerDivBoth("formcontainer","H");
|
||||
FindMatchedRecords('${dedupeDetails.uuid}');
|
||||
</script>
|
||||
<!-- -->
|
||||
<!-- Process Message -->
|
||||
<c:if test="${not empty msg}">
|
||||
<script language="javascript" type="text/javascript"> CallMessage('${msg}',3000,200,300); </script>
|
||||
<c:if test="${status == true}">
|
||||
<script language="javascript" type="text/javascript">window.returnValue=1; window.close(); </script>
|
||||
</c:if>
|
||||
</c:if>
|
||||
<!-- -->
|
||||
</html>
|
||||
@@ -1,682 +0,0 @@
|
||||
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
|
||||
pageEncoding="ISO-8859-1"%>
|
||||
<%@page language="java" session="true" %>
|
||||
<%@taglib uri="http://www.springframework.org/tags/form" prefix="form"%>
|
||||
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
||||
<title>Nimble 1.0 |
|
||||
<c:if test="${caseDetails.getFormMode() eq 1}">Add Cases</c:if>
|
||||
<c:if test="${caseDetails.getFormMode() eq 2}">Edit Details</c:if>
|
||||
</title>
|
||||
<script language="javascript" src="/matrix/js/lib/constants.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/jquery1.7.2.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/ui/uifuncs.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/lib/jsfuncs.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/ui/msgdialog.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/ui/select.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/appjs/punching.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/validator.js?ver=2" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/ajax.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/ajax-dynamic-list.js" type="text/javascript"></script>
|
||||
|
||||
<link href="/matrix/css/menu.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/button.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/div.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/textbox.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/select.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/table.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/autocomplete.css" rel="stylesheet" type="text/css" />
|
||||
</head>
|
||||
|
||||
<body style="font-family:Tahoma;background-color:#fff;font-size:10pt">
|
||||
<div id='PageFrame'>
|
||||
<c:if test="${caseDetails.getFormMode() eq 1}">
|
||||
<!-- Title Bar -->
|
||||
<div id='title' class="title">
|
||||
<img id="icon" src="/matrix/images/optmale.png" />
|
||||
<img id="close" src="/matrix/images/close.jpg" onclick="javascript:closewindow();" />
|
||||
<span id="title">Nimble 1.0 ${Sessvals.getCompanyCode() } (${Sessvals.getBranchLocation() }) ${Sessvals.getUserDisplayName()} (${Sessvals.getUserGroupName()}) </span>
|
||||
</div>
|
||||
<!-- -->
|
||||
<!-- Dynamic Menu -->
|
||||
<jsp:include page='../../usermenu/menu_${Sessvals.getUserID()}.html' />
|
||||
<!-- -->
|
||||
</c:if>
|
||||
|
||||
<div id="formcontainer" style="width:980px;margin-top:5px;position:absolute;z-index:-1">
|
||||
<form:form method="post" name="caseDetails" id="caseDetails" modelAttribute="caseDetails" >
|
||||
<!-- Common Details (Section1) Visible for all portfolios-->
|
||||
<div>
|
||||
<!-- Title -->
|
||||
<div id='title' class="title">
|
||||
<img id="icon" src="/matrix/images/commondet.png" align="absmiddle" />
|
||||
<span id="title" align="absmiddle">Common Details</span>
|
||||
<c:choose>
|
||||
<c:when test="${caseDetails.getFormMode() eq 1}">
|
||||
<div class="divselect" id="divportfolio" style="width:167px;position:absolute;top:3px;right:13px;">
|
||||
<form:select path="PortfolioId" multiple="false" id="portlist" style="width:185px" onchange="SubmitForm('casedet','_parent','caseDetails')">
|
||||
<form:option value="-1" label="SELECT PORTFOLIO" selected="true"/>
|
||||
<c:forEach items="${portlist}" var="port">
|
||||
<form:option value="${port[0]}" label="${port[1]}" />
|
||||
</c:forEach>
|
||||
</form:select>
|
||||
</div>
|
||||
</c:when>
|
||||
<c:otherwise>
|
||||
<form:hidden path="PortfolioId" id="portlist" />
|
||||
</c:otherwise>
|
||||
</c:choose>
|
||||
</div>
|
||||
<!-- -->
|
||||
<!-- Form (Section1) -->
|
||||
<div id="FormPanel1" class="FormPanel">
|
||||
<table align="center" id="FormControls" width="99%">
|
||||
<tr>
|
||||
<td>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer">
|
||||
MV Code
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<form:input style="width:65px;text-transform:uppercase" readonly="true" path="MvCode" value="${caseDeails.getMvCode()}" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer">
|
||||
Appl No.
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<form:input maxlength="25" style="width:115px;text-transform:uppercase" id="ApplNo" path="ApplNo" value="${caseDetails.getApplNo()}" onblur="if(validate(this,'t','AlphaNumeric')){FindSameDet(this,'A','CustomerName');}" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer">
|
||||
Bank Code
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<form:input maxlength="25" style="width:70px;text-transform:uppercase" path="BankCode" value="${caseDetails.getBankCode()}" onblur="validate(this,'f','AlphaNumeric');" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer">
|
||||
Branch
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<div class="divselect" id="divbranch" style="width:135px;">
|
||||
<form:select path="BankBranchId" multiple="false" id="branchlist" style="width:153px" onblur="validate(this,'t','');">
|
||||
<form:option value="-1" label="SELECT" selected="true"/>
|
||||
<c:forEach items="${branchlist}" var="brnch">
|
||||
<form:option value="${brnch[0]}" label="${brnch[1]}" />
|
||||
</c:forEach>
|
||||
</form:select>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer">
|
||||
Product
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<div class="divselect" id="divproduct" style="width:132px;">
|
||||
<form:select path="Product" multiple="false" id="prodlist" style="width:150px" onblur="validate(this,'t','');">
|
||||
<form:option value="-1" label="SELECT" selected="true"/>
|
||||
<c:forEach items="${prodlist}" var="prod">
|
||||
<form:option value="${prod[0]}" label="${prod[1]}" />
|
||||
</c:forEach>
|
||||
</form:select>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer">
|
||||
Name
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<form:input maxlength="60" style="width:200px" path="CustomerName" value="${caseDetails.getCustomerName()}" onblur="validate(this,'t','AlphaSpace');" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer">
|
||||
Father Name
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<form:input maxlength="25" style="width:145px" path="FatherName" value="${caseDetails.getFatherName()}" onblur="validate(this,'f','AlphaSpace');" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer">
|
||||
App Type
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<div class="divselect" id="divapptype" style="width:135px;">
|
||||
<form:select path="CustomerType" multiple="false" id="typelist" style="width:153px" onchange="ToggleChks((this.value.toUpperCase()!='APPLICANT' && this.value.toUpperCase()!='-1'),'chksresi!C0L!chksoff!C0L!chksprop!C0L!','!C0L!')" onblur="validate(this,'t','');">
|
||||
<form:option value="-1" label="SELECT" selected="true"/>
|
||||
<c:forEach items="${typelist}" var="type">
|
||||
<form:option value="${type[0]}" label="${type[1]}" />
|
||||
</c:forEach>
|
||||
</form:select>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer">
|
||||
Category
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<div class="divselect" id="divcategory" style="width:115px;">
|
||||
<form:select path="Category" multiple="false" id="catlist" style="width:133px">
|
||||
<form:option value="-1" label="SELECT" selected="true"/>
|
||||
<c:forEach items="${catlist}" var="cat">
|
||||
<form:option value="${cat[0]}" label="${cat[1]}" />
|
||||
</c:forEach>
|
||||
</form:select>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer">
|
||||
DOB
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<form:input maxlength="10" style="width:80px" path="DOB" id="dob" value="${caseDetails.getDOB()}" onkeydown="return addSlashes(this,event)" onblur="validate(this,'f','Date')" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer">
|
||||
Mobile No.
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<form:input maxlength="21" style="width:120px" path="MobileNo" value="${caseDetails.getMobileNo()}" onblur="validate(this,'f','AllowWrong');" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer">
|
||||
Loan Amt
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<form:input maxlength="15" style="width:100px" path="LoanAmount" value="${caseDetails.getLoanAmount()}" onblur="validate(this,'f','LoanAmount');" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer">
|
||||
C Person
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<form:input maxlength="25" style="width:200px" path="ContactPerson" value="${caseDetails.getContactPerson()}" onblur="validate(this,'f','AlphaSpace');" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer">
|
||||
Special Inst.
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<form:input maxlength="50" id="splist" style="width:833px" path="SpecialInst" value="${caseDetails.getSpecialInst()}" onblur="validate(this,'f','SplInstruction')" />
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<!-- -->
|
||||
</div>
|
||||
<!-- -->
|
||||
|
||||
<!-- Residence Details (Section2) Visible for portfolios in which residence visit/ residence TVR could be initiated-->
|
||||
<div id="section2">
|
||||
<!-- Title -->
|
||||
<div id='title' class="title">
|
||||
<img id="icon" src="/matrix/images/resdet.png" />
|
||||
<span id="title">Residence Details</span>
|
||||
<div class="divchk" id="ctrldiv">
|
||||
<form:checkbox path="Rvr" id="chkresi" onclick="HandleClick(this)" />RVR
|
||||
<form:checkbox path="SameResi" id="chksresi" onclick="return FindSameDet(this,'R','ResiPhone')" /><span id="chksresi">Same Resi</span>
|
||||
<form:checkbox path="Rtvr" id="chkteler" onclick="HandleClick(this)" /><span id="chkteler">RTV</span>
|
||||
</div>
|
||||
</div>
|
||||
<!-- -->
|
||||
<!-- Form (Section2) -->
|
||||
<div id="FormPanel2" class="FormPanel">
|
||||
<table align="center" id="FormControls" style="width:100%">
|
||||
<tr>
|
||||
<td>
|
||||
<div class="widget" style="margin-left:2px">
|
||||
<div class="lblcontainer" style="padding:1px">
|
||||
House No.
|
||||
</div>
|
||||
<br >
|
||||
<div class="inputcontainer" style="padding:1px">
|
||||
<form:input readonly="true" maxlength="20" style="width:70px" path="ResiAdd1" value="${caseDetails.getResiAdd1()}" onblur="validate(this,document.getElementById('chkresi').checked ? 't':'f','SplInstruction')" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget" style="margin-left:2px">
|
||||
<div class="lblcontainer" style="padding:1px">
|
||||
Sub Locality
|
||||
</div>
|
||||
<br >
|
||||
<div class="inputcontainer" style="padding:1px">
|
||||
<form:input readonly="true" maxlength="70" style="width:180px" path="ResiAdd2" value="${caseDetails.getResiAdd2()}" onblur="validate(this,'f','SplInstruction')" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget" style="margin-left:2px">
|
||||
<div class="lblcontainer" style="padding:1px">
|
||||
City
|
||||
</div>
|
||||
<br >
|
||||
<div class="inputcontainer" style="padding:1px">
|
||||
<div class="divselect" id="divrcity" style="width:110px;">
|
||||
<form:select path="ResiCity" multiple="false" id="ResiAdd3_citylist" style="width:128px" onblur="validate(this,document.getElementById('chkresi').checked ? 't':'f','')" >
|
||||
<form:option value="-1" label="Select" selected="true"/>
|
||||
<form:option value="Unknown" label="Unknown"/>
|
||||
<c:forEach items="${citylist}" var="city">
|
||||
<form:option value="${city[0]}" label="${city[1]}" />
|
||||
</c:forEach>
|
||||
</form:select>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget" style="margin-left:2px">
|
||||
<div class="lblcontainer" style="padding:1px">
|
||||
Locality
|
||||
</div>
|
||||
<br >
|
||||
<div class="inputcontainer" style="padding:1px">
|
||||
<form:input readonly="true" maxlength="50" style="width:180px" path="ResiAdd3" value="${caseDetails.getResiAdd3()}" onkeyup="ajax_showOptions(this,event)" onblur="onLocalityBlur(this,document.getElementById('chkresi').checked ? 't':'f')" />
|
||||
<form:hidden path="ResiLoc" id="ResiAdd3_hidden" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget" style="margin-left:2px">
|
||||
<div class="lblcontainer" style="padding:1px">
|
||||
Landmark
|
||||
</div>
|
||||
<br >
|
||||
<div class="inputcontainer" style="padding:1px">
|
||||
<form:input readonly="true" maxlength="50" style="width:150px" path="ResiLandmark" value="${caseDetails.getResiLandmark()}" onblur="validate(this,'f','SplInstruction')" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget" style="margin-left:2px">
|
||||
<div class="lblcontainer" style="padding:1px">
|
||||
Pincode
|
||||
</div>
|
||||
<br >
|
||||
<div class="inputcontainer" style="padding:1px">
|
||||
<form:input readonly="true" maxlength="6" style="width:45px" id="ResiAdd3_Pincode" path="ResiPincode" value="${caseDetails.getResiPincode()}" onblur="validate(this,document.getElementById('chkresi').checked ? 't':'f','Pincode')" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget" style="margin-left:2px">
|
||||
<div class="lblcontainer" style="padding:1px">
|
||||
Phone No.
|
||||
</div>
|
||||
<br >
|
||||
<div class="inputcontainer" style="padding:1px">
|
||||
<form:input maxlength="25" style="width:107px" path="ResiPhone" value="${caseDetails.getResiPhone()}" onblur="validate(this,document.getElementById('chkteler').checked ? 't':'f','Phone')" />
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<!-- -->
|
||||
</div>
|
||||
<!-- -->
|
||||
|
||||
<!-- Office Details (Section3) Visible for portfolios in which office visit/ office TVR could be initiated-->
|
||||
<div id="section3">
|
||||
<!-- Title -->
|
||||
<div id='title' class="title">
|
||||
<img id="icon" src="/matrix/images/optmale.png" />
|
||||
<span id="title">Office Details</span>
|
||||
<div class="divchk" id="ctrldiv">
|
||||
<form:checkbox path="Ovr" id="chkoffice" onclick="HandleClick(this)" />OVR
|
||||
<form:checkbox path="RCO" id="chkrco" style="display:none" onclick="HandleClick(this)" /><span id="chkrco">RCO</span>
|
||||
<form:checkbox path="SameOffice" id="chksoff" onclick="return FindSameDet(this,'O','OffPhone')" /><span id="chksoff">Same Office</span>
|
||||
<form:checkbox path="Otvr" id="chkteleo" onclick="HandleClick(this)" /><span id="chkteleo">OTV</span>
|
||||
</div>
|
||||
</div>
|
||||
<!-- -->
|
||||
<!-- Form (Section3) -->
|
||||
<div id="FormPanel3" class="FormPanel">
|
||||
<table align="center" id="FormControls">
|
||||
<tr>
|
||||
<td>
|
||||
<div class="widget" style="margin-left:2px">
|
||||
<div class="lblcontainer" style="padding:1px">
|
||||
Company
|
||||
</div>
|
||||
<br >
|
||||
<div class="inputcontainer" style="padding:1px">
|
||||
<form:input maxlength="50" style="width:215px" path="CompanyName" value="${caseDetails.getCompanyName()}" onblur="validate(this,'f','SplInstruction')" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget" style="margin-left:2px">
|
||||
<div class="lblcontainer" style="padding:1px">
|
||||
Plot No.
|
||||
</div>
|
||||
<br >
|
||||
<div class="inputcontainer" style="padding:1px">
|
||||
<form:input readonly="true" maxlength="20" style="width:90px" path="OffAdd1" value="${caseDetails.getOffAdd1()}" onblur="validate(this,document.getElementById('chkoffice').checked ? 't':'f','SplInstruction')" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget" style="margin-left:2px">
|
||||
<div class="lblcontainer" style="padding:1px">
|
||||
Sub Locality
|
||||
</div>
|
||||
<br >
|
||||
<div class="inputcontainer" style="padding:1px">
|
||||
<form:input readonly="true" maxlength="70" style="width:200px" path="OffAdd2" value="${caseDetails.getOffAdd2()}" onblur="validate(this,'f','SplInstruction')" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget" style="margin-left:2px">
|
||||
<div class="lblcontainer" style="padding:1px">
|
||||
City
|
||||
</div>
|
||||
<br >
|
||||
<div class="inputcontainer" style="padding:1px">
|
||||
<div class="divselect" id="divocity" style="width:110px;">
|
||||
<form:select path="OffCity" multiple="false" id="OffAdd3_citylist" style="width:128px" onblur="validate(this,document.getElementById('chkoffice').checked ? 't':'f','')">
|
||||
<form:option value="-1" label="Select" selected="true"/>
|
||||
<form:option value="Unknown" label="Unknown"/>
|
||||
<c:forEach items="${citylist}" var="city">
|
||||
<form:option value="${city[0]}" label="${city[1]}" />
|
||||
</c:forEach>
|
||||
</form:select>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget" style="margin-left:2px">
|
||||
<div class="lblcontainer" style="padding:1px">
|
||||
Locality
|
||||
</div>
|
||||
<br >
|
||||
<div class="inputcontainer" style="padding:1px">
|
||||
<form:input readonly="true" maxlength="50" style="width:200px" path="OffAdd3" value="${caseDetails.getOffAdd3()}" onkeyup="ajax_showOptions(this,event)" onblur="validate(this,document.getElementById('chkoffice').checked ? 't':'f','SplInstruction')" />
|
||||
<form:hidden path="OffLoc" id="OffAdd3_hidden" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget" style="margin-left:2px">
|
||||
<div class="lblcontainer" style="padding:1px">
|
||||
Pincode
|
||||
</div>
|
||||
<br >
|
||||
<div class="inputcontainer" style="padding:1px">
|
||||
<form:input readonly="true" maxlength="6" style="width:45px" id="OffAdd3_Pincode" path="OffPincode" value="${caseDetails.getOffPincode()}" onblur="validate(this,document.getElementById('chkoffice').checked ? 't':'f','Pincode')" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget" style="margin-left:2px">
|
||||
<div class="lblcontainer" style="padding:1px">
|
||||
Landmark
|
||||
</div>
|
||||
<br >
|
||||
<div class="inputcontainer" style="padding:1px">
|
||||
<form:input maxlength="50" style="width:215px" path="OffLandmark" value="${caseDetails.getOffLandmark()}" onblur="validate(this,'f','SplInstruction')" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget" style="margin-left:2px">
|
||||
<div class="lblcontainer" style="padding:1px">
|
||||
Department
|
||||
</div>
|
||||
<br >
|
||||
<div class="inputcontainer" style="padding:1px">
|
||||
<form:input maxlength="25" style="width:200px" path="Department" value="${caseDetails.getDepartment()}" onblur="validate(this,'f','SplInstruction')" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget" style="margin-left:2px">
|
||||
<div class="lblcontainer" style="padding:1px">
|
||||
Designation
|
||||
</div>
|
||||
<br >
|
||||
<div class="inputcontainer" style="padding:1px">
|
||||
<form:input maxlength="25" style="width:210px" path="Designation" value="${caseDetails.getDesignation()}" onblur="validate(this,'f','SplInstruction')" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget" style="margin-left:2px">
|
||||
<div class="lblcontainer" style="padding:1px">
|
||||
Office Phone-Extn
|
||||
</div>
|
||||
<br >
|
||||
<div class="inputcontainer" style="padding:1px">
|
||||
<form:input maxlength="25" style="width:150px" path="OffPhone" value="${caseDetails.getOffPhone()}" onblur="validate(this,document.getElementById('chkteleo').checked ? 't':'f','Phone')" />-<form:input type="text" style="width:23px" path="Extension" value="${caseDetails.getExtension()}" onblur="validate(this,'f','Extension')" />
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<!-- -->
|
||||
</div>
|
||||
<!-- -->
|
||||
|
||||
<!-- Property Details (Section4) Visible for portfolios in which property visit could be initiated-->
|
||||
<div id="section4">
|
||||
<!-- Title -->
|
||||
<div id='title' class="title">
|
||||
<img id="icon" src="/matrix/images/resdet.png" />
|
||||
<span id="title">Property Details</span>
|
||||
<div class="divchk" id="ctrldiv">
|
||||
<form:checkbox path="Pvr" id="chkprop" onclick="HandleClick(this)" />PVR
|
||||
<form:checkbox path="RCP" id="chkrcp" style="display:none" onclick="HandleClick(this)" /><span id="chkrcp">RCP</span>
|
||||
<form:checkbox path="OCP" id="chkocp" style="display:none" onclick="HandleClick(this)" /><span id="chkocp">OCP</span>
|
||||
<form:checkbox path="SameProp" id="chksprop" onclick="return FindSameDet(this,'P','PropAdd3_Pincode')" /><span id="chksprop">Same Property</span>
|
||||
</div>
|
||||
</div>
|
||||
<!-- -->
|
||||
<!-- Form (Section4) -->
|
||||
<div id="FormPanel4" class="FormPanel">
|
||||
<table align="center" id="FormControls">
|
||||
<tr>
|
||||
<td>
|
||||
<div class="widget" style="margin-left:2px">
|
||||
<div class="lblcontainer" style="padding:1px">
|
||||
House / Plot No.
|
||||
</div>
|
||||
<br >
|
||||
<div class="inputcontainer" style="padding:1px">
|
||||
<form:input readonly="true" maxlength="20" style="width:120px" path="PropAdd1" value="${caseDetails.getPropAdd1()}" onblur="validate(this,document.getElementById('chkprop').checked ? 't':'f','SplInstruction')" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget" style="margin-left:2px">
|
||||
<div class="lblcontainer" style="padding:1px">
|
||||
Sub Locality
|
||||
</div>
|
||||
<br >
|
||||
<div class="inputcontainer" style="padding:1px">
|
||||
<form:input readonly="true" maxlength="70" style="width:200px" path="PropAdd2" value="${caseDetails.getPropAdd2()}" onblur="validate(this,'f','SplInstruction')" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget" style="margin-left:2px">
|
||||
<div class="lblcontainer" style="padding:1px">
|
||||
City
|
||||
</div>
|
||||
<br >
|
||||
<div class="inputcontainer" style="padding:1px">
|
||||
<div class="divselect" id="divpcity" style="width:110px;">
|
||||
<form:select path="PropCity" multiple="false" id="PropAdd3_citylist" style="width:128px" onblur="validate(this,document.getElementById('chkprop').checked ? 't':'f','')">
|
||||
<form:option value="-1" label="Select" selected="true"/>
|
||||
<form:option value="Unknown" label="Unknown"/>
|
||||
<c:forEach items="${citylist}" var="city">
|
||||
<form:option value="${city[0]}" label="${city[1]}" />
|
||||
</c:forEach>
|
||||
</form:select>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget" style="margin-left:2px">
|
||||
<div class="lblcontainer" style="padding:1px">
|
||||
Locality
|
||||
</div>
|
||||
<br >
|
||||
<div class="inputcontainer" style="padding:1px">
|
||||
<form:input readonly="true" maxlength="50" style="width:200px" path="PropAdd3" value="${caseDetails.getPropAdd3()}" onkeyup="ajax_showOptions(this,event)" onblur="validate(this,document.getElementById('chkprop').checked ? 't':'f','SplInstruction')" />
|
||||
<form:hidden path="PropLoc" id="PropAdd3_hidden" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget" style="margin-left:2px">
|
||||
<div class="lblcontainer" style="padding:1px">
|
||||
Landmark
|
||||
</div>
|
||||
<br >
|
||||
<div class="inputcontainer" style="padding:1px">
|
||||
<form:input readonly="true" maxlength="50" style="width:180px" path="PropLandmark" value="${caseDetails.getPropLandmark()}" onblur="validate(this,'f','SplInstruction')" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget" style="margin-left:2px">
|
||||
<div class="lblcontainer" style="padding:1px">
|
||||
Pincode
|
||||
</div>
|
||||
<br >
|
||||
<div class="inputcontainer" style="padding:1px">
|
||||
<form:input readonly="true" maxlength="6" style="width:45px" id="PropAdd3_Pincode" path="PropPincode" value="${caseDetails.getResiPincode()}" onblur="validate(this,document.getElementById('chkprop').checked ? 't':'f','Pincode')" />
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<!-- -->
|
||||
</div>
|
||||
<!-- -->
|
||||
|
||||
<!-- Reference Details (Section5) Visible for portfolios in which reference calling could be initiated-->
|
||||
<div id="section5">
|
||||
<!-- Title -->
|
||||
<div id='title' class="title">
|
||||
<img id="icon" src="/matrix/images/ref.png" />
|
||||
<span id="title">Reference Details</span>
|
||||
<div class="divchk" id="ctrldiv">
|
||||
<form:checkbox path="Refvr" id="chkref" onclick="setFormValidation(this,'FormPanel5','Ref1Name,Ref1Address,Ref1Contactno','t,f,t','AlphaSpace,SplInstruction,Phone',false)" />Ref Check
|
||||
</div>
|
||||
</div>
|
||||
<!-- -->
|
||||
<!-- Form (Section5) -->
|
||||
<div id="FormPanel5" class="FormPanel">
|
||||
<table align="center" id="FormControls">
|
||||
<tr>
|
||||
<td> </td>
|
||||
<td>Name</td>
|
||||
<td>Address</td>
|
||||
<td>Contact Numbers</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Reference 1 </td>
|
||||
<td><form:input maxlength="30" style="width:200px" path="Ref1Name" value="${caseDetails.getRef1Name()}" onblur="validate(this,document.getElementById('chkref').checked ? 't':'f','AlphaSpace')" /></td>
|
||||
<td><form:input maxlength="100" style="width:450px" path="Ref1Address" value="${caseDetails.getRef1Address()}" onblur="validate(this,'f','SplInstruction')" /></td>
|
||||
<td><form:input maxlength="25" style="width:160px" path="Ref1Contactno" value="${caseDetails.getRef1Contactno()}" onblur="validate(this,document.getElementById('chkref').checked ? 't':'f','Phone')" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> </td>
|
||||
<td>Name</td>
|
||||
<td>Address</td>
|
||||
<td>Contact Numbers</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Reference 2 </td>
|
||||
<td><form:input maxlength="30" style="width:200px" path="Ref2Name" value="${caseDetails.getRef2Name()}" onblur="validate(this,'f','AlphaSpace')" /></td>
|
||||
<td><form:input maxlength="100" style="width:450px" path="Ref2Address" value="${caseDetails.getRef2Address()}" onblur="validate(this,'f','SplInstruction')" /></td>
|
||||
<td><form:input maxlength="25" style="width:160px" path="Ref2Contactno" value="${caseDetails.getRef2Contactno()}" onblur="validate(this,'f','Phone')" /></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<!-- -->
|
||||
</div>
|
||||
<!-- -->
|
||||
|
||||
<!-- Dynamic Form (Section6). All controls under this section will be generated dynamically during runtime-->
|
||||
<div id="section6">
|
||||
<!-- Title -->
|
||||
<div id='title' class="title">
|
||||
<img id="icon" src="/matrix/images/othdet.png" />
|
||||
<span id="title">Other Details</span>
|
||||
</div>
|
||||
<!-- -->
|
||||
<div id="FormPanel6" class="FormPanel">
|
||||
${caseDetails.getDynamicPanel()}
|
||||
</div>
|
||||
</div>
|
||||
<!-- -->
|
||||
|
||||
<!-- Document Details (Section7) Visible for portfolios in which document verification could be done-->
|
||||
<div id="section7">
|
||||
<!-- Title -->
|
||||
<div id='title' class="title">
|
||||
<img id="icon" src="/matrix/images/documents.png" />
|
||||
<span id="title">Document Details</span>
|
||||
<div class="divchk" id="ctrldiv">
|
||||
<form:checkbox path="Docvr" id="chkdoc" onclick="hideForm(this.id,'FormPanel7')" />Doc VR
|
||||
</div>
|
||||
</div>
|
||||
<!-- -->
|
||||
<!-- Form (Section7) -->
|
||||
<div id="FormPanel7" class="FormPanel">
|
||||
<table align="center" id="FormControls">
|
||||
<tr>
|
||||
<td>Document</td>
|
||||
<td>Vendor</td>
|
||||
<td>Service Provider</td>
|
||||
<td>Name</td>
|
||||
<td>Unique No.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="divselect" id="divdoclist" style="width:90px;">
|
||||
<select id="doclist" style="width:108px">
|
||||
<option value="-1" selected="true">
|
||||
<c:forEach items="${doclist}" var="doc">
|
||||
<option value="${doc[0]}" >${doc[1]}</option>
|
||||
</c:forEach>
|
||||
</select>
|
||||
</div>
|
||||
</td>
|
||||
<td><input type="text" style="width:150px" value="" id="vendor" /></td>
|
||||
<td><input type="text" style="width:200px" value="" id="serviceprovider" /></td>
|
||||
<td><input type="text" style="width:200px" value="" id="name" /></td>
|
||||
<td><input type="text" style="width:180px" value="" id="uniqueno" /></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<!-- -->
|
||||
</div>
|
||||
<form:hidden path="DynamicFields" value="${caseDetails.getDynamicFields()}" />
|
||||
<form:hidden path="VisibleContents" value="${caseDetails.getVisibleContents()}" />
|
||||
<form:hidden path="FormMode" />
|
||||
<form:hidden path="UUID" />
|
||||
<form:hidden path="CaseId" />
|
||||
<!-- -->
|
||||
<input type="hidden" id="invalidfields" value="0" />
|
||||
<c:if test="${caseDetails.getFormMode() eq 2}">
|
||||
<input type="button" class="button" name="btncancel" style="margin-left:1px;margin-top:5px;float:right" value="Cancel" id="btncancel" accesskey="C" onclick="window.returnValue=0;window.close()" />
|
||||
</c:if>
|
||||
<input type="button" class="button" name="btnsave" style="margin-top:5px;float:right" value="Save" id="btnsave" accesskey="S" onclick="return ValidateSubmitForm('caseDetails');" />
|
||||
</form:form>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
<!-- Page Load Javascript -->
|
||||
<script language="javascript" type="text/javascript">
|
||||
centerDivBoth("formcontainer","H");
|
||||
HideSections('rtv');
|
||||
HideSections('otv');
|
||||
HideSections('section');
|
||||
UnhideSections('${visibleContents}','!C0L!');
|
||||
hideForm('chkresi','FormPanel2');
|
||||
hideForm('chkoffice','FormPanel3');
|
||||
hideForm('chkprop','FormPanel4');
|
||||
hideForm('chkref','FormPanel5');
|
||||
hideForm('chkdoc','FormPanel7');
|
||||
ToggleChks((document.getElementById('chkresi').checked && document.getElementById('chkoffice').checked),'chkrco'+ColDelim,ColDelim);
|
||||
ToggleChks((document.getElementById('chkresi').checked),'chkrcp'+ColDelim,ColDelim);
|
||||
ToggleChks((document.getElementById('chkoffice').checked),'chkocp'+ColDelim,ColDelim);
|
||||
ToggleChks((document.getElementById('typelist').value.toUpperCase()!='APPLICANT' && document.getElementById('typelist').value.toUpperCase()!='-1'),'chksresi!C0L!chksoff!C0L!chksprop!C0L!','!C0L!');
|
||||
document.getElementById('ApplNo').focus();
|
||||
</script>
|
||||
<!-- -->
|
||||
<!-- Process Message -->
|
||||
<c:if test="${not empty caseDetails.getErrMsg()}">
|
||||
<script language="javascript" type="text/javascript"> CallMessage('${caseDetails.getErrMsg()}',3000,200,300); </script>
|
||||
<c:if test="${caseDetails.isProcessFlag()==true and caseDetails.getFormMode()==2}">
|
||||
<script language="javascript" type="text/javascript">window.returnValue=1; window.close(); </script>
|
||||
</c:if>
|
||||
</c:if>
|
||||
<!-- -->
|
||||
</html>
|
||||
@@ -1,681 +0,0 @@
|
||||
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
|
||||
pageEncoding="ISO-8859-1"%>
|
||||
<%@page language="java" session="true" %>
|
||||
<%@taglib uri="http://www.springframework.org/tags/form" prefix="form"%>
|
||||
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
||||
<title>Nimble 1.0 | Case Initiation</title>
|
||||
<script language="javascript" src="/matrix/js/lib/constants.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/jquery1.7.2.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/ui/uifuncs.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/lib/jsfuncs.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/ui/msgdialog.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/ui/select.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/appjs/punching.js?ver=4" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/validator.js?ver=2" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/ajax.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/ajax-dynamic-list.js?ver=2" type="text/javascript"></script>
|
||||
|
||||
<link href="/matrix/css/menu.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/button.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/div.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/textbox.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/select.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/table.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/autocomplete.css" rel="stylesheet" type="text/css" />
|
||||
</head>
|
||||
|
||||
<body style="font-family:Tahoma;background-color:#fff;font-size:10pt">
|
||||
<div id='PageFrame'>
|
||||
<!-- Title Bar -->
|
||||
<div id='title' class="title">
|
||||
<img id="icon" src="/matrix/images/optmale.png" />
|
||||
<img id="close" src="/matrix/images/close.jpg" onclick="javascript:closewindow();" />
|
||||
<span id="title">Nimble 1.0 ${Sessvals.getCompanyCode() } (${Sessvals.getBranchLocation() }) ${Sessvals.getUserDisplayName()} (${Sessvals.getUserGroupName()}) </span>
|
||||
</div>
|
||||
<!-- -->
|
||||
<c:if test="${formmode!=2}">
|
||||
<!-- Dynamic Menu -->
|
||||
<jsp:include page='../../usermenu/menu_${Sessvals.getUserID()}.html' />
|
||||
<!-- -->
|
||||
</c:if>
|
||||
<div id="formcontainer" style="width:980px;margin-top:5px;position:absolute;z-index:-1">
|
||||
<form method="post" name="casedetails" id="casedetails" >
|
||||
<!-- Common Details (Section1) Visible for all portfolios-->
|
||||
<div>
|
||||
<!-- Title -->
|
||||
<div id='title' class="title">
|
||||
<img id="icon" src="/matrix/images/commondet.png" align="absmiddle" />
|
||||
<span id="title">Common Details <span id='recfound'></span> Skip To <input type="text" class="textbox" style="width:30px;margin-top:-3px" onkeypress="return NumberOnly(event)" onblur="GotoRecord(this,'recno')"></span>
|
||||
Search By File No <input type="text" class="textbox" style="width:100px;margin-top:-3px" onblur="GotoRecord(this,'query')">
|
||||
<!-- Checkbox for AUTO CUT diabled for now -->
|
||||
<input type="checkbox" checked name="autocut" id="autocut" />
|
||||
<c:if test="${formmode==2}">
|
||||
<input type="hidden" id="portfolio_id" name="portfolio_id" value="-1" />
|
||||
</c:if>
|
||||
<c:if test="${formmode!=2}">
|
||||
<div class="divselect" id="divportfolio" style="width:217px;position:absolute;top:3px;right:13px;">
|
||||
<select id="portfolio_id" name="portfolio_id" style="width:235px" onchange="SubmitForm('caseadd','_parent','casedetails')">
|
||||
<option value="-1" selected >SELECT PORTFOLIO</option>
|
||||
<c:forEach items="${portlist}" var="port">
|
||||
<option value="${port[0]}">${port[1]}</option>
|
||||
</c:forEach>
|
||||
</select>
|
||||
</div>
|
||||
</c:if>
|
||||
</div>
|
||||
<!-- -->
|
||||
<!-- Form (Section1) -->
|
||||
<div id="FormPanel1" class="FormPanel">
|
||||
<table align="center" id="FormControls" width="99%">
|
||||
<tr>
|
||||
<td>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer">
|
||||
MV Code
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<input readonly="readonly" type="text" id="mvcode" name="mvcode" style="width:65px;text-transform:uppercase" value="" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer">
|
||||
Appl No.
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<input type="text" id="applno" name="applno" maxlength="25" style="width:115px;text-transform:uppercase" value="" onblur="if(validate(this,'t','AlphaNumeric')){FindSameDet(this,'A','customername');}" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer">
|
||||
Bank Code
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<input type="text" maxlength="25" id="bankcode" name="bankcode" style="width:70px;text-transform:uppercase" value="" onblur="validate(this,'f','AlphaNumeric');" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer">
|
||||
Branch
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<div class="divselect" id="divbranch" style="width:135px;">
|
||||
<select id="bank_branch_id" name="bank_branch_id" style="width:153px" onblur="validate(this,'t','');">
|
||||
<option value="-1" selected >SELECT</option>
|
||||
<c:forEach items="${branchlist}" var="brnch">
|
||||
<option value="${brnch[0]}">${brnch[1]}</option>
|
||||
</c:forEach>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer">
|
||||
Product
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<div class="divselect" id="divproduct" style="width:132px;">
|
||||
<select id="product" name="product" style="width:150px" onblur="validate(this,'t','');">
|
||||
<option value="-1" selected >SELECT</option>
|
||||
<c:forEach items="${prodlist}" var="prod">
|
||||
<option value="${prod[0]}">${prod[1]}</option>
|
||||
</c:forEach>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer">
|
||||
Name
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<input type="text" id="customername" name="customername" maxlength="100" style="width:200px" value="" onblur="validate(this,'t','AlphaSpace');" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer">
|
||||
Father Name
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<input type="text" id="fathername" name="fathername" maxlength="50" style="width:145px" value="" onblur="validate(this,'f','AlphaSpace');" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer">
|
||||
App Type
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<div class="divselect" id="divapptype" style="width:135px;">
|
||||
<select id="apptype" name="apptype" style="width:153px" onchange="ToggleChks((this.value.toUpperCase()!='APPLICANT' && this.value.toUpperCase()!='-1'),'sradd!C0L!soadd!C0L!spadd!C0L!','!C0L!')" onblur="validate(this,'t','');">
|
||||
<option value="-1" selected>SELECT</option>
|
||||
<c:forEach items="${typelist}" var="type">
|
||||
<option value="${type[0]}">${type[1]}</option>
|
||||
</c:forEach>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer">
|
||||
Category
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<div class="divselect" id="divcategory" style="width:115px;">
|
||||
<select id="category" name="category" style="width:133px">
|
||||
<option value="-1" selected>SELECT</option>
|
||||
<c:forEach items="${catlist}" var="cat">
|
||||
<option value="${cat[0]}">${cat[1]}</option>
|
||||
</c:forEach>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer">
|
||||
DOB
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<input type="text" id="dob" name="dob" maxlength="10" style="width:80px" value="" onkeydown="return addSlashes(this,event)" onblur="validate(this,'f','Date')" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer">
|
||||
Mobile No.
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<input type="text" id="mobileno" name="mobileno" maxlength="50" style="width:120px" value="" onblur="validate(this,'f','AllowWrong');" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer">
|
||||
Loan Amt
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<input type="text" id="loanamount" name="loanamount" maxlength="15" style="width:100px" value="" onblur="validate(this,'f','LoanAmount');" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer">
|
||||
C Person
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<input type="text" id="contactperson" name="contactperson" maxlength="50" style="width:200px" value="" onblur="validate(this,'f','AlphaSpace');" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer">
|
||||
Special Inst.
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<input type="text" id="specialinst" name="specialinst" maxlength="100" style="width:833px" value="" onblur="validate(this,'f','SplInstruction')" />
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<!-- -->
|
||||
</div>
|
||||
<!-- -->
|
||||
|
||||
<!-- Residence Details (Section2) Visible for portfolios in which residence visit/ residence TVR could be initiated-->
|
||||
<div id="section2">
|
||||
<!-- Title -->
|
||||
<div id='title' class="title">
|
||||
<img id="icon" src="/matrix/images/resdet.png" />
|
||||
<span id="title">Residence Details</span>
|
||||
<div class="divchk" id="ctrldiv">
|
||||
<input type="checkbox" id="rv" name="rv" onclick="HandleClick(this)" />RVR
|
||||
<input type="checkbox" id="sradd" name="rv" onclick="return FindSameDet(this,'R','rphone')" /><span id="sradd">Same Resi</span>
|
||||
<input type="checkbox" id="rtv" name="rv" onclick="HandleClick(this)" /><span id="rtv">RTV</span>
|
||||
</div>
|
||||
</div>
|
||||
<!-- -->
|
||||
<!-- Form (Section2) -->
|
||||
<div id="FormPanel2" class="FormPanel">
|
||||
<table align="center" id="FormControls" style="width:100%">
|
||||
<tr>
|
||||
<td>
|
||||
<div class="widget" style="margin-left:2px">
|
||||
<div class="lblcontainer" style="padding:1px">
|
||||
House No.
|
||||
</div>
|
||||
<br >
|
||||
<div class="inputcontainer" style="padding:1px">
|
||||
<input type="text" id="raddr1" name="raddr1" readonly="readonly" maxlength="20" style="width:140px" value="" onblur="validate(this,document.getElementById('rv').checked ? 't':'f','SplInstruction')" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget" style="margin-left:2px">
|
||||
<div class="lblcontainer" style="padding:1px">
|
||||
Sub Locality
|
||||
</div>
|
||||
<br >
|
||||
<div class="inputcontainer" style="padding:1px">
|
||||
<input type="text" id="raddr2" name="raddr2" readonly="readonly" maxlength="70" style="width:290px" value="" onblur="validate(this,'f','SplInstruction')" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget" style="margin-left:2px">
|
||||
<div class="lblcontainer" style="padding:1px">
|
||||
Area
|
||||
</div>
|
||||
<br >
|
||||
<div class="inputcontainer" style="padding:1px">
|
||||
<input type="text" id="raddr3" name="raddr3" readonly="readonly" maxlength="50" style="width:202px" value="" onblur="validate(this,'f','SplInstruction')" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget" style="margin-left:2px">
|
||||
<div class="lblcontainer" style="padding:1px">
|
||||
City
|
||||
</div>
|
||||
<br >
|
||||
<div class="inputcontainer" style="padding:1px">
|
||||
<div class="divselect" id="divrcity" style="width:110px;">
|
||||
<select id="rcity" name="colr_citylist" style="width:128px" onblur="HandleBlur(this)" >
|
||||
<option value="-1">Select</option>
|
||||
<option value="Unknown">Unknown</option>
|
||||
<c:forEach items="${citylist}" var="city">
|
||||
<option value="${city[0]}">${city[1]}</option>
|
||||
</c:forEach>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget" style="margin-left:2px">
|
||||
<div class="lblcontainer" style="padding:1px">
|
||||
Colony
|
||||
</div>
|
||||
<br >
|
||||
<div class="inputcontainer" style="padding:1px">
|
||||
<input type="text" id="colr" name="colr" readonly="readonly" maxlength="50" style="width:120px;background-color: #fae8c3" value="" onkeyup="ajax_showOptions(this,event)" onblur="HandleBlur(this)" />
|
||||
<input type="hidden" id="Rcolony" name="colr_hidden" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget" style="margin-left:2px">
|
||||
<div class="lblcontainer" style="padding:1px">
|
||||
Pincode
|
||||
</div>
|
||||
<br >
|
||||
<div class="inputcontainer" style="padding:1px">
|
||||
<input type="text" id="rpincode" name="colr_pincode" readonly="readonly" maxlength="6" style="width:45px" value="" onblur="validate(this,document.getElementById('rv').checked ? 't':'f','Pincode')" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget" style="margin-left:2px">
|
||||
<div class="lblcontainer" style="padding:1px">
|
||||
Landmark
|
||||
</div>
|
||||
<br >
|
||||
<div class="inputcontainer" style="padding:1px">
|
||||
<input type="text" id="rlandmark" name="rlandmark" readonly="readonly" maxlength="50" style="width:190px" value="" onblur="validate(this,'f','SplInstruction')" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget" style="margin-left:2px">
|
||||
<div class="lblcontainer" style="padding:1px">
|
||||
Phone No.
|
||||
</div>
|
||||
<br >
|
||||
<div class="inputcontainer" style="padding:1px">
|
||||
<input type="text" id="rphone" name="rphone" maxlength="30" style="width:107px" value="" onblur="validate(this,document.getElementById('rtv').checked ? 't':'f','Phone')" />
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<!-- -->
|
||||
</div>
|
||||
<!-- -->
|
||||
|
||||
<!-- Office Details (Section3) Visible for portfolios in which office visit/ office TVR could be initiated-->
|
||||
<div id="section3">
|
||||
<!-- Title -->
|
||||
<div id='title' class="title">
|
||||
<img id="icon" src="/matrix/images/optmale.png" />
|
||||
<span id="title">Office Details</span>
|
||||
<div class="divchk" id="ctrldiv">
|
||||
<input type="checkbox" id="ov" onclick="HandleClick(this)" />OVR
|
||||
<input type="checkbox" id="rco" style="display:none" onclick="HandleClick(this)" /><span id="rco">RCO</span>
|
||||
<input type="checkbox" id="soadd" onclick="return FindSameDet(this,'O','ophone')" /><span id="soadd">Same Office</span>
|
||||
<input type="checkbox" id="otv" onclick="HandleClick(this)" /><span id="otv">OTV</span>
|
||||
</div>
|
||||
</div>
|
||||
<!-- -->
|
||||
<!-- Form (Section3) -->
|
||||
<div id="FormPanel3" class="FormPanel">
|
||||
<table align="center" id="FormControls">
|
||||
<tr>
|
||||
<td>
|
||||
<div class="widget" style="margin-left:2px">
|
||||
<div class="lblcontainer" style="padding:1px">
|
||||
Company
|
||||
</div>
|
||||
<br >
|
||||
<div class="inputcontainer" style="padding:1px">
|
||||
<input type="text" id="companyname" name="companyname" maxlength="100" style="width:230px" onblur="validate(this,'f','SplInstruction')" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget" style="margin-left:2px">
|
||||
<div class="lblcontainer" style="padding:1px">
|
||||
Plot No.
|
||||
</div>
|
||||
<br >
|
||||
<div class="inputcontainer" style="padding:1px">
|
||||
<input type="text" id="oaddr1" name="oaddr1" readonly="readonly" maxlength="30" style="width:140px" value="" onblur="validate(this,document.getElementById('ov').checked ? 't':'f','SplInstruction')" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget" style="margin-left:2px">
|
||||
<div class="lblcontainer" style="padding:1px">
|
||||
Sub Locality
|
||||
</div>
|
||||
<br >
|
||||
<div class="inputcontainer" style="padding:1px">
|
||||
<input type="text" id="oaddr2" name="oaddr2" readonly="readonly" maxlength="70" style="width:290px" value="" onblur="validate(this,'f','SplInstruction')" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget" style="margin-left:2px">
|
||||
<div class="lblcontainer" style="padding:1px">
|
||||
Area
|
||||
</div>
|
||||
<br >
|
||||
<div class="inputcontainer" style="padding:1px">
|
||||
<input type="text" id="oaddr3" name="oaddr3" readonly="readonly" maxlength="50" style="width:212px" value="" onblur="validate(this,'f','SplInstruction')" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget" style="margin-left:2px">
|
||||
<div class="lblcontainer" style="padding:1px">
|
||||
City
|
||||
</div>
|
||||
<br >
|
||||
<div class="inputcontainer" style="padding:1px">
|
||||
<div class="divselect" id="divocity" style="width:110px;">
|
||||
<select id="ocity" name="colo_citylist" style="width:128px" onblur="HandleBlur(this)" >
|
||||
<option value="-1">Select</option>
|
||||
<option value="Unknown">Unknown</option>
|
||||
<c:forEach items="${citylist}" var="city">
|
||||
<option value="${city[0]}">${city[1]}</option>
|
||||
</c:forEach>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget" style="margin-left:2px">
|
||||
<div class="lblcontainer" style="padding:1px">
|
||||
Colony
|
||||
</div>
|
||||
<br >
|
||||
<div class="inputcontainer" style="padding:1px">
|
||||
<input type="text" id="colo" name="colo" readonly="readonly" maxlength="50" style="width:120px;background-color: #fae8c3" value="" onkeyup="ajax_showOptions(this,event)" onblur="HandleBlur(this)" />
|
||||
<input type="hidden" id="Ocolony" name="colo_hidden" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget" style="margin-left:2px">
|
||||
<div class="lblcontainer" style="padding:1px">
|
||||
Pincode
|
||||
</div>
|
||||
<br >
|
||||
<div class="inputcontainer" style="padding:1px">
|
||||
<input type="text" id="opincode" name="colo_pincode" readonly="readonly" maxlength="6" style="width:45px" value="" onblur="validate(this,document.getElementById('ov').checked ? 't':'f','Pincode')" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget" style="margin-left:2px">
|
||||
<div class="lblcontainer" style="padding:1px">
|
||||
Landmark
|
||||
</div>
|
||||
<br >
|
||||
<div class="inputcontainer" style="padding:1px">
|
||||
<input type="text" id="olandmark" name="olandmark" maxlength="50" style="width:190px" value="" onblur="validate(this,'f','SplInstruction')" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget" style="margin-left:2px">
|
||||
<div class="lblcontainer" style="padding:1px">
|
||||
Department
|
||||
</div>
|
||||
<br >
|
||||
<div class="inputcontainer" style="padding:1px">
|
||||
<input type="text" id="department" name="designation" maxlength="50" style="width:100px" value="" onblur="validate(this,'f','SplInstruction')" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget" style="margin-left:2px">
|
||||
<div class="lblcontainer" style="padding:1px">
|
||||
Designation
|
||||
</div>
|
||||
<br >
|
||||
<div class="inputcontainer" style="padding:1px">
|
||||
<input type="text" id="designation" name="designation" maxlength="50" style="width:120px" value="" onblur="validate(this,'f','SplInstruction')" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget" style="margin-left:2px">
|
||||
<div class="lblcontainer" style="padding:1px">
|
||||
Office Phone-Extn
|
||||
</div>
|
||||
<br >
|
||||
<div class="inputcontainer" style="padding:1px">
|
||||
<input type="text" id="ophone" name="ophone" maxlength="25" style="width:100px" value="" onblur="validate(this,document.getElementById('otv').checked ? 't':'f','Phone')" />-<input type="text" id="extension" name="extension" style="width:23px" maxlength="10" value="" onblur="validate(this,'f','Extension')" />
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<!-- -->
|
||||
</div>
|
||||
<!-- -->
|
||||
|
||||
<!-- Property Details (Section4) Visible for portfolios in which property visit could be initiated-->
|
||||
<div id="section4">
|
||||
<!-- Title -->
|
||||
<div id='title' class="title">
|
||||
<img id="icon" src="/matrix/images/resdet.png" />
|
||||
<span id="title">Property Details</span>
|
||||
<div class="divchk" id="ctrldiv">
|
||||
<input type="checkbox" id="pv" onclick="HandleClick(this)" />PVR
|
||||
<input type="checkbox" id="rcp" style="display:none" onclick="HandleClick(this)" /><span id="rcp">RCP</span>
|
||||
<input type="checkbox" id="ocp" style="display:none" onclick="HandleClick(this)" /><span id="ocp">OCP</span>
|
||||
<input type="checkbox" id="spadd" onclick="return FindSameDet(this,'P','ppincode')" /><span id="spadd">Same Property</span>
|
||||
</div>
|
||||
</div>
|
||||
<!-- -->
|
||||
<!-- Form (Section4) -->
|
||||
<div id="FormPanel4" class="FormPanel">
|
||||
<table align="center" id="FormControls" style="width:100%">
|
||||
<tr>
|
||||
<td>
|
||||
<div class="widget" style="margin-left:2px">
|
||||
<div class="lblcontainer" style="padding:1px">
|
||||
House No.
|
||||
</div>
|
||||
<br >
|
||||
<div class="inputcontainer" style="padding:1px">
|
||||
<input type="text" id="paddr1" name="paddr1" readonly="readonly" maxlength="20" style="width:90px" value="" onblur="validate(this,document.getElementById('rv').checked ? 't':'f','SplInstruction')" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget" style="margin-left:2px">
|
||||
<div class="lblcontainer" style="padding:1px">
|
||||
Sub Locality
|
||||
</div>
|
||||
<br >
|
||||
<div class="inputcontainer" style="padding:1px">
|
||||
<input type="text" id="paddr2" name="paddr2" readonly="readonly" maxlength="70" style="width:200px" value="" onblur="validate(this,'f','SplInstruction')" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget" style="margin-left:2px">
|
||||
<div class="lblcontainer" style="padding:1px">
|
||||
Area
|
||||
</div>
|
||||
<br >
|
||||
<div class="inputcontainer" style="padding:1px">
|
||||
<input type="text" id="paddr3" name="paddr3" readonly="readonly" maxlength="50" style="width:150px" value="" onblur="validate(this,'f','SplInstruction')" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget" style="margin-left:2px">
|
||||
<div class="lblcontainer" style="padding:1px">
|
||||
City
|
||||
</div>
|
||||
<br >
|
||||
<div class="inputcontainer" style="padding:1px">
|
||||
<div class="divselect" id="divpcity" style="width:110px;">
|
||||
<select id="pcity" name="colp_citylist" style="width:128px" onblur="HandleBlur(this)" >
|
||||
<option value="-1">Select</option>
|
||||
<option value="Unknown">Unknown</option>
|
||||
<c:forEach items="${citylist}" var="city">
|
||||
<option value="${city[0]}">${city[1]}</option>
|
||||
</c:forEach>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget" style="margin-left:2px">
|
||||
<div class="lblcontainer" style="padding:1px">
|
||||
Colony
|
||||
</div>
|
||||
<br >
|
||||
<div class="inputcontainer" style="padding:1px">
|
||||
<input type="text" id="colp" name="colp" readonly="readonly" maxlength="50" style="width:120px;background-color: #fae8c3" value="" onkeyup="ajax_showOptions(this,event)" onblur="HandleBlur(this)" />
|
||||
<input type="hidden" id="Pcolony" name="colp_hidden" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget" style="margin-left:2px">
|
||||
<div class="lblcontainer" style="padding:1px">
|
||||
Pincode
|
||||
</div>
|
||||
<br >
|
||||
<div class="inputcontainer" style="padding:1px">
|
||||
<input type="text" id="ppincode" name="colp_pincode" readonly="readonly" maxlength="6" style="width:45px" value="" onblur="validate(this,document.getElementById('rv').checked ? 't':'f','Pincode')" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget" style="margin-left:2px">
|
||||
<div class="lblcontainer" style="padding:1px">
|
||||
Landmark
|
||||
</div>
|
||||
<br >
|
||||
<div class="inputcontainer" style="padding:1px">
|
||||
<input type="text" id="plandmark" name="plandmark" readonly="readonly" maxlength="50" style="width:110px" value="" onblur="validate(this,'f','SplInstruction')" />
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<!-- -->
|
||||
</div>
|
||||
<!-- -->
|
||||
|
||||
<!-- Reference Details (Section5) Visible for portfolios in which reference calling could be initiated-->
|
||||
<div id="section5">
|
||||
<!-- Title -->
|
||||
<div id='title' class="title">
|
||||
<img id="icon" src="/matrix/images/ref.png" />
|
||||
<span id="title">Reference Details</span>
|
||||
<div class="divchk" id="ctrldiv">
|
||||
<input type="checkbox" id="refv" name="refv" onclick="HandleClick(this)" />Ref Check
|
||||
</div>
|
||||
</div>
|
||||
<!-- -->
|
||||
<!-- Form (Section5) -->
|
||||
<div id="FormPanel5" class="FormPanel">
|
||||
<table align="center" id="FormControls">
|
||||
<tr>
|
||||
<td> </td>
|
||||
<td>Name</td>
|
||||
<td>Address</td>
|
||||
<td>Contact Numbers</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Reference 1 </td>
|
||||
<td><input type="text" id="refname1" name="refname1" maxlength="50" style="width:200px" value="" onblur="validate(this,document.getElementById('refv').checked ? 't':'f','AlphaSpace')" /></td>
|
||||
<td><input type="text" id="refaddress1" name="refaddress1" maxlength="100" style="width:450px" value="" onblur="validate(this,'f','SplInstruction')" /></td>
|
||||
<td><input type="text" id="refcontactno1" name="refcontactno1" maxlength="25" style="width:160px" value="" onblur="validate(this,document.getElementById('refv').checked ? 't':'f','Phone')" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> </td>
|
||||
<td>Name</td>
|
||||
<td>Address</td>
|
||||
<td>Contact Numbers</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Reference 2 </td>
|
||||
<td><input type="text" id="refname2" name="refname2" maxlength="50" style="width:200px" value="" onblur="validate(this,'f','AlphaSpace')" /></td>
|
||||
<td><input type="text" id="refaddress2" name="refaddress2" maxlength="100" style="width:450px" value="" onblur="validate(this,'f','SplInstruction')" /></td>
|
||||
<td><input type="text" id="refcontactno2" name="refcontactno2" maxlength="25" style="width:160px" value="" onblur="validate(this,'f','Phone')" /></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<!-- -->
|
||||
</div>
|
||||
<!-- -->
|
||||
|
||||
<!-- Dynamic Form (Section6). All controls under this section will be generated dynamically during runtime-->
|
||||
<div id="section6">
|
||||
<!-- Title -->
|
||||
<div id='title' class="title">
|
||||
<img id="icon" src="/matrix/images/othdet.png" />
|
||||
<span id="title">Other Details</span>
|
||||
</div>
|
||||
<!-- -->
|
||||
<div id="FormPanel6" class="FormPanel">
|
||||
${dynamichtml}
|
||||
<br/>
|
||||
<br/>
|
||||
<br/>
|
||||
<br/>
|
||||
</div>
|
||||
</div>
|
||||
<!-- -->
|
||||
|
||||
<!-- Document Details (Section7) Visible for portfolios in which document verification could be done-->
|
||||
<div id="section7">
|
||||
<!-- Title -->
|
||||
<div id='title' class="title">
|
||||
<img id="icon" src="/matrix/images/documents.png" />
|
||||
<span id="title">Document Details</span>
|
||||
<div class="divchk" id="ctrldiv">
|
||||
<input type="checkbox" name="docv" id="docv" />Doc VR
|
||||
</div>
|
||||
</div>
|
||||
<!-- -->
|
||||
</div>
|
||||
<br />
|
||||
<br />
|
||||
<br />
|
||||
<input type="hidden" id="dynamicfields" name="dynamicfields" value="${dynamicfields}" />
|
||||
<input type="hidden" id="visiblecontents" name="visiblecontents" value="${visiblecontents}" />
|
||||
<input type="hidden" id="uuid" name="uuid" value="${duuid}" />
|
||||
<input type="hidden" id="case_id" name="case_id" value="" />
|
||||
<input type="hidden" id="company_id" name="company_id" value="${Sessvals.getCompanyID()}" />
|
||||
<input type="hidden" id="branch_id" name="branch_id" value="${Sessvals.getBranchID()}" />
|
||||
<input type="hidden" id="status" name="status" value="" />
|
||||
<!-- -->
|
||||
<input type="hidden" id="invalidfields" value="0" />
|
||||
<c:if test="${formmode gt 0}">
|
||||
<div style="position:fixed;text-align:right;bottom:0px;width:980px;" class="buttonbar">
|
||||
<input type="hidden" id="invalidfields" value="0" />
|
||||
<input type="button" class="button" name="btnfirst" style="margin-left:5px;margin-top:-2px;float:left;width:80px" value="" id="btnfirst" accesskey="F" onclick="findRecord(1)" />
|
||||
<input type="button" class="button" name="btnprev" style="margin-top:-2px;float:left;width:80px" value="" id="btnprev" accesskey="P" onclick="findRecord(2)" />
|
||||
<input type="button" class="button" name="btnnext" style="margin-top:-2px;float:left;width:80px" value="" id="btnnext" accesskey="N" onclick="findRecord(3)" />
|
||||
<input type="button" class="button" name="btnlast" style="margin-top:-2px;float:left;width:80px" value="" id="btnlast" accesskey="L" onclick="findRecord(4)" />
|
||||
<input type="button" class="button" name="btnsave" style="float:right" value="Save" id="btnsave" accesskey="S" onclick="return ValidateSubmitForm('casedetails');" />
|
||||
<c:if test="${formmode!=2}">
|
||||
<input type="button" class="button" name="btnadd" style="float:right" value="Add" id="btnadd" accesskey="A" onclick="return AddNewRecord();" />
|
||||
</c:if>
|
||||
</div>
|
||||
</c:if>
|
||||
</form>
|
||||
<input type="hidden" id="formmode" name="formmode" value="${formmode}" />
|
||||
<input type="hidden" id="usid" name="usid" value="${usid}" />
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
<!-- Page Load Javascript -->
|
||||
<script language="javascript" type="text/javascript">
|
||||
InitPage('${portfolio_id}','${visiblecontents}');
|
||||
$("#autocut").hide();
|
||||
</script>
|
||||
<!-- -->
|
||||
<!-- Process Message -->
|
||||
<c:if test="${not empty msg}">
|
||||
<script language="javascript" type="text/javascript"> CallMessage('${msg}',3000,200,300); </script>
|
||||
</c:if>
|
||||
<!-- -->
|
||||
</html>
|
||||
@@ -1,325 +0,0 @@
|
||||
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
|
||||
pageEncoding="ISO-8859-1"%>
|
||||
<%@page language="java" session="true" %>
|
||||
<%@taglib uri="http://www.springframework.org/tags/form" prefix="form"%>
|
||||
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
||||
<title>Nimble 1.0 | Document Initiation </title>
|
||||
<script language="javascript" src="/matrix/js/lib/constants.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/jquery1.7.2.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/ui/uifuncs.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/lib/jsfuncs.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/ui/msgdialog.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/ui/select.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/ajax.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/ajax-dynamic-list.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/appjs/punchingdoc.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/validator.js" type="text/javascript"></script>
|
||||
|
||||
<link href="/matrix/css/menu.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/button.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/div.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/textbox.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/select.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/table.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/autocomplete.css" rel="stylesheet" type="text/css" />
|
||||
</head>
|
||||
|
||||
<body style="font-family:Tahoma;background-color:#fff;font-size:10pt">
|
||||
<div id='PageFrame'>
|
||||
<!-- Title Bar -->
|
||||
<div id='title' class="title">
|
||||
<img id="icon" src="/matrix/images/optmale.png" />
|
||||
<img id="close" src="/matrix/images/close.jpg" onclick="javascript:closewindow();" />
|
||||
<span id="title">Nimble 1.0 ${Sessvals.getCompanyCode() } (${Sessvals.getBranchLocation() }) ${Sessvals.getUserDisplayName()} (${Sessvals.getUserGroupName()}) </span>
|
||||
</div>
|
||||
<!-- -->
|
||||
<!-- Dynamic Menu -->
|
||||
<jsp:include page='../../usermenu/menu_${Sessvals.getUserID()}.html' />
|
||||
<!-- -->
|
||||
<div id="formcontainer" style="width:980px;margin-top:5px;position:absolute;z-index:-1">
|
||||
<form method="post" name="docdetails" id="docdetails" >
|
||||
<!-- Common Details (Section1) Visible for all portfolios-->
|
||||
<div>
|
||||
<!-- Title -->
|
||||
<div id='title' class="title">
|
||||
<img id="icon" src="/matrix/images/commondet.png" align="absmiddle" />
|
||||
<span id="title">Common Details <span id='recfound'></span> Skip To <input type="text" class="textbox" style="width:30px;margin-top:-3px" onkeypress="return NumberOnly(event)" onblur="GotoRecord(this)"></span>
|
||||
Search by File No <input type="text" class="textbox" style="width:200px;margin-top:-3px" onblur="SearchRecord(this)"></span>
|
||||
<!-- Checkbox for AUTO CUT diabled for now -->
|
||||
<!-- <input type="checkbox" name="autocut" id="autocut" /> Automatic Cut-Off -->
|
||||
<div class="divselect" id="divportfolio" style="width:167px;position:absolute;top:3px;right:13px;">
|
||||
<select id="portfolio_id" name="portfolio_id" style="width:185px" onchange="SubmitForm('docadd','_parent','docdetails')">
|
||||
<option value="-1" selected >SELECT PORTFOLIO</option>
|
||||
<c:forEach items="${portlist}" var="port">
|
||||
<option value="${port[0]}">${port[1]}</option>
|
||||
</c:forEach>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
<!-- -->
|
||||
<!-- Form (Section1) -->
|
||||
<div id="FormPanel1" class="FormPanel">
|
||||
<table align="center" id="FormControls" width="99%">
|
||||
<tr>
|
||||
<td>
|
||||
<div style="height:auto;width:16px;float:right;margin-top:4px;">
|
||||
<div id="btnbedit" onclick="EditBasicDetails()" title="edit basic details" style="background:url('/matrix/images/edit_form.png');height:auto;width:16px;cursor:pointer;margin-top:2px"> </div>
|
||||
<div id="btnbsave" onclick="SaveBasicDetails()" title="save details" style="background:url('/matrix/images/disk.png');height:auto;width:16px;cursor:pointer;margin-top:2px"> </div>
|
||||
<div id="btnbcancel" onclick="CancelEdit()" title="cancel" style="background:url('/matrix/images/msgerror.png');height:auto;width:16px;cursor:pointer;margin-top:6px"> </div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer">
|
||||
Appl No.
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<input type="text" id="applno" name="applno" maxlength="25" style="width:150px;text-transform:uppercase" value="" disabled="disabled" onblur="if(validate(this,'t','AlphaNumeric')){FindSameDet(this,'A','customername');}" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer">
|
||||
Name
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<input type="text" id="customername" name="customername" maxlength="100" style="width:275px" value="" onblur="validate(this,'t','AlphaSpace');" disabled="disabled" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer">
|
||||
DOB
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<input type="text" id="dob" name="dob" maxlength="10" style="width:80px" value="" onkeydown="return addSlashes(this,event)" onblur="validate(this,'f','Date')" disabled="disabled" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer">
|
||||
Loan Amt
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<input type="text" id="loanamount" name="loanamount" maxlength="15" style="width:115px" value="" onblur="validate(this,'f','LoanAmount');" disabled="disabled" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer">
|
||||
Branch
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<div class="divselect" id="divbranch" style="width:235px;">
|
||||
<select id="bank_branch_id" name="bank_branch_id" style="width:253px" onblur="validate(this,'t','');" disabled="disabled">
|
||||
<option value="-1" selected >SELECT</option>
|
||||
<c:forEach items="${branchlist}" var="brnch">
|
||||
<option value="${brnch[0]}">${brnch[1]}</option>
|
||||
</c:forEach>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer">
|
||||
Product
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<div class="divselect" id="divproduct" style="width:132px;">
|
||||
<select id="product" name="product" style="width:150px" onblur="validate(this,'t','');" disabled="disabled">
|
||||
<option value="-1" selected >SELECT</option>
|
||||
<c:forEach items="${prodlist}" var="prod">
|
||||
<option value="${prod[0]}">${prod[1]}</option>
|
||||
</c:forEach>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer">
|
||||
App Type
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<div class="divselect" id="divapptype" style="width:135px;">
|
||||
<select id="apptype" name="apptype" style="width:153px" onblur="validate(this,'t','');" disabled="disabled">
|
||||
<option value="-1" selected>SELECT</option>
|
||||
<c:forEach items="${typelist}" var="type">
|
||||
<option value="${type[0]}">${type[1]}</option>
|
||||
</c:forEach>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer">
|
||||
Category
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<div class="divselect" id="divcategory" style="width:115px;">
|
||||
<select id="category" name="category" style="width:133px" disabled="disabled">
|
||||
<option value="-1" selected>SELECT</option>
|
||||
<c:forEach items="${catlist}" var="cat">
|
||||
<option value="${cat[0]}">${cat[1]}</option>
|
||||
</c:forEach>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
${dynamichtml}
|
||||
<input type="button" class="button" name="btnsave" style="float:right" value="Add Docs" id="btnsave" onclick="return AddDocs();" />
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<!-- -->
|
||||
</div>
|
||||
<!-- -->
|
||||
<!-- Document Details Visible for portfolios in which document verification could be done-->
|
||||
<div id="section7">
|
||||
<!-- Title -->
|
||||
<div id='title' class="title">
|
||||
<img id="icon" src="/matrix/images/documents.png" />
|
||||
<span id="title">Document Details</span>
|
||||
</div>
|
||||
<!-- -->
|
||||
<!-- Form (Section1) -->
|
||||
<div id="FormPanel1" class="FormPanel">
|
||||
<table align="center" id="FormControls" width="99%">
|
||||
<tr>
|
||||
<td>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer">
|
||||
Document
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<div class="divselect" id="divdoctype" style="width:170px;">
|
||||
<select id="doctype" name="doctype" style="width:188px" onchange="changeLabel(this)" onblur="validate(this,'t','')">
|
||||
<option value="-1" uniqueidentifier="Unique No." sprovider="Service Provider" validuno="xxx" ymon="A.Y/Month" validymon="" defsprovider="" genlist="0" selected>SELECT</option>
|
||||
<c:forEach items="${doclist}" var="doc">
|
||||
<option value="${doc[0]}" uniqueidentifier="${doc[2]}" sprovider="${doc[3]}" validuno="${doc[4]}" ymon="${doc[5]}" validymon="${doc[6]}" defsprovider="${doc[7]}" genlist="${doc[8]}">${doc[1]}</option>
|
||||
</c:forEach>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer">
|
||||
Name
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<input type="text" id="docholdername" name="docholdername" maxlength="100" style="width:200px" value="" onblur="validate(this,'t','AlphaSpace');" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" id="sprovider">
|
||||
Serivce Provider
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<input type="text" id="serviceprovider" name="serviceprovider" maxlength="100" style="width:200px" value="" onblur="validate(this,'t','SplInstruction');" />
|
||||
<input type="hidden" id="bank_id" name="serviceprovider_hidden" value="0" />
|
||||
<input type="hidden" id="serviceprovider_citylist" name="serviceprovider_citylist" value="0" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" id="uniqueidentifier">
|
||||
Unique No.
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<input type="text" id="uniqueno" name="uniqueno" maxlength="50" style="width:140px" value="" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" id="yearmon">
|
||||
A.Y/Month
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<input type="text" id="yearmonth" name="yearmonth" maxlength="100" style="width:180px" value="" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer">
|
||||
Location
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<div class="divselect" id="divcity" style="width:120px;" >
|
||||
<select id="city" name="city" style="width:138px" onblur="validate(this,'t','');">
|
||||
<option value="-1" selected>SELECT</option>
|
||||
<option value="CITY" selected>CITY</option>
|
||||
<option value="SATELLITE CITY">SATELLITE CITY</option>
|
||||
<option value="OUT STATION">OUT STATION</option>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer">
|
||||
Vendor
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<div class="divselect" id="divvendor" style="width:120px;">
|
||||
<select id="vendor_id" name="vendor_id" style="width:138px" onblur="validate(this,'f','');">
|
||||
<option value="-1" selected>SELECT</option>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
${docdynamichtml}
|
||||
<input type="button" class="button" name="btnadd" style="float:right" value="Add" id="btnadd" onclick="return AddNewDoc();" />
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div id="FormPanel2" class="FormPanel">
|
||||
<table border="0" cellspacing="0" width="100%" id="casetable">
|
||||
<thead class="thead">
|
||||
<tr title="Row Title" id="rowtitle">
|
||||
<td style="font-size:12px;width:20px">S.No</td>
|
||||
<td style="font-size:12px;width:150px">Name</td>
|
||||
<td style="font-size:12px;width:150px">Document</td>
|
||||
<td style="font-size:12px;width:150px">Provider</td>
|
||||
<td style="font-size:12px;width:150px">Unique No.</td>
|
||||
<td style="font-size:12px;width:100px">Extra</td>
|
||||
<td style="font-size:12px;width:50px">Location</td>
|
||||
<td style="font-size:12px;width:50px">Vendor</td>
|
||||
<td style="font-size:12px">Action</td>
|
||||
</tr>
|
||||
</thead>
|
||||
</table>
|
||||
</div>
|
||||
<!-- -->
|
||||
</div>
|
||||
<input type="hidden" id="dynamicfields" name="dynamicfields" value="${dynamicfields}" />
|
||||
<input type="hidden" id="docdynamicfields" name="dynamicfields" value="${docdynamicfields}" />
|
||||
<input type="hidden" id="uuid" name="uuid" value="" />
|
||||
<input type="hidden" id="case_id" name="case_id" value="" />
|
||||
<input type="hidden" id="company_id" name="company_id" value="${Sessvals.getCompanyID()}" />
|
||||
<input type="hidden" id="branch_id" name="branch_id" value="${Sessvals.getBranchID()}" />
|
||||
<input type="hidden" id="status" name="status" value="" />
|
||||
<input type="hidden" id="docv" name="docv" value="0" />
|
||||
<!-- -->
|
||||
<input type="hidden" id="invalidfields" value="0" />
|
||||
<c:if test="${formmode gt 0}">
|
||||
<div style="position:fixed;text-align:right;bottom:0px;width:980px;" class="buttonbar">
|
||||
<input type="hidden" id="invalidfields" value="0" />
|
||||
<input type="button" class="button" name="btnfirst" style="margin-left:5px;margin-top:-2px;float:left;width:80px" value="" id="btnfirst" accesskey="F" onclick="findRecord(1)" />
|
||||
<input type="button" class="button" name="btnprev" style="margin-top:-2px;float:left;width:80px" value="" id="btnprev" accesskey="P" onclick="findRecord(2)" />
|
||||
<input type="button" class="button" name="btnnext" style="margin-top:-2px;float:left;width:80px" value="" id="btnnext" accesskey="N" onclick="findRecord(3)" />
|
||||
<input type="button" class="button" name="btnlast" style="margin-top:-2px;float:left;width:80px" value="" id="btnlast" accesskey="L" onclick="findRecord(4)" />
|
||||
<input type="button" class="button" name="btnadd" style="float:right" value="Add New Record" id="btnadd" accesskey="A" onclick="return AddNewRecord();" />
|
||||
</div>
|
||||
</c:if>
|
||||
</form>
|
||||
<input type="hidden" id="formmode" name="formmode" value="${formmode}" />
|
||||
<input type="hidden" id="usid" name="usid" value="${usid}" />
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
<!-- Page Load Javascript -->
|
||||
<script language="javascript" type="text/javascript">
|
||||
InitPage('${portfolio_id}');
|
||||
</script>
|
||||
<!-- -->
|
||||
<!-- Process Message -->
|
||||
<c:if test="${not empty msg}">
|
||||
<script language="javascript" type="text/javascript"> CallMessage('${msg}',3000,200,300); </script>
|
||||
</c:if>
|
||||
<!-- -->
|
||||
</html>
|
||||
@@ -1,167 +0,0 @@
|
||||
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
|
||||
pageEncoding="ISO-8859-1"%>
|
||||
<%@page language="java" session="true" %>
|
||||
<%@taglib uri="http://www.springframework.org/tags/form" prefix="form"%>
|
||||
<%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
|
||||
<%@taglib prefix="spring" uri="http://www.springframework.org/tags" %>
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
||||
<script language="javascript" src="/matrix/js/lib/constants.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/jquery1.7.2.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/ui/uifuncs.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/lib/jsfuncs.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/ui/msgdialog.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/ui/select.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/appjs/cutoff.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/validator.js" type="text/javascript"></script>
|
||||
|
||||
<link href="/matrix/css/matrix.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/menu.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/button.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/div.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/select.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/table.css" rel="stylesheet" type="text/css" />
|
||||
<title>Nimble 1.0 | Cutoff Pending</title>
|
||||
</head>
|
||||
<body>
|
||||
<div id='PageFrame'>
|
||||
<!-- Title Bar -->
|
||||
<div id='title' class="title">
|
||||
<img id="icon" src="/matrix/images/optmale.png" />
|
||||
<img id="close" src="/matrix/images/close.jpg" onclick="javascript:closewindow();" />
|
||||
<span id="title">Nimble 1.0 ${Sessvals.getCompanyCode() } (${Sessvals.getBranchLocation() }) ${Sessvals.getUserDisplayName()} (${Sessvals.getUserGroupName()}) </span>
|
||||
</div>
|
||||
<!-- -->
|
||||
<!-- Dynamic Menu -->
|
||||
<jsp:include page='../../usermenu/menu_${Sessvals.getUserID()}.html' />
|
||||
<!-- -->
|
||||
<div id="formcontainer" style="width:650px;margin-top:5px;position:absolute;z-index:-1">
|
||||
<form:form method="post" name="cutoffpending" id="cutoffpending" modelAttribute="cutoffpending" >
|
||||
<!-- Common Details (Section1) Visible for all portfolios-->
|
||||
<div>
|
||||
<!-- Title -->
|
||||
<div id='title' class="title">
|
||||
<img id="icon" src="/matrix/images/cutlist.png" align="absmiddle" />
|
||||
<span id="title" align="absmiddle">Cut-Off Pending</span>
|
||||
<img id="close" src="/matrix/images/reload.png" title="Refresh Grid" onclick="SubmitForm('cutoffpending','_parent','cutoffpending')"/>
|
||||
</div>
|
||||
<!-- -->
|
||||
<div id="TablePanel" class="tableContainer">
|
||||
<table border="0" cellspacing="0" width="100%" id="cutlist">
|
||||
<thead class="thead">
|
||||
<tr title="Row Title">
|
||||
<td width="6%">S.No</td>
|
||||
<td width="65%">Cutoff Time</td>
|
||||
<td>Allocation</td>
|
||||
<td>Telesheet</td>
|
||||
<td>Earlier</td>
|
||||
<td>Negative</td>
|
||||
<td>CutOff</td>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody class="scrollContent">
|
||||
<c:forEach items="${cutoffpending.pendinglist}" var="record" varStatus="mystatus">
|
||||
<tr title="parent">
|
||||
<td>${mystatus.count}</td>
|
||||
<td id="parent${mystatus.count}" onclick="ExpandList(this.id)" >
|
||||
<form:hidden path="pendinglist[${mystatus.index}].cutofftime" id="cutofftime${mystatus.count}" value="${status.value}"/>
|
||||
<form:hidden path="pendinglist[${mystatus.index}].total" id="total${mystatus.count}" value="${status.value}"/>
|
||||
<span class="customLink" style="cursor:pointer">${record.cutofftime} <b>(${record.total})</b></span>
|
||||
</td>
|
||||
<td>
|
||||
<form:checkbox path="pendinglist[${mystatus.index}].allocation" id="chkalloc${mystatus.count}" value="false" onclick="ToggleChecks('chkalloc${mystatus.count}child',this.checked);checkUncheckList('chkalloc${mystatus.count}child,chktelesheet${mystatus.count}child,chkear${mystatus.count}child,chkneg${mystatus.count}child,chkcutoff${mystatus.count}child','chkalloc${mystatus.count},chktelesheet${mystatus.count},chkear${mystatus.count},chkneg${mystatus.count},chkcutoff${mystatus.count}',',',',',${record.total},0);" />
|
||||
</td>
|
||||
<td>
|
||||
<form:checkbox path="pendinglist[${mystatus.index}].telesheet" id="chktelesheet${mystatus.count}" value="false" onclick="ToggleChecks('chktelesheet${mystatus.count}child',this.checked);checkUncheckList('chkalloc${mystatus.count}child,chktelesheet${mystatus.count}child,chkear${mystatus.count}child,chkneg${mystatus.count}child,chkcutoff${mystatus.count}child','chkalloc${mystatus.count},chktelesheet${mystatus.count},chkear${mystatus.count},chkneg${mystatus.count},chkcutoff${mystatus.count}',',',',',${record.total},0);" />
|
||||
</td>
|
||||
<td>
|
||||
<form:checkbox path="pendinglist[${mystatus.index}].earlier" id="chkear${mystatus.count}" value="false" onclick="ToggleChecks('chkear${mystatus.count}child',this.checked);checkUncheckList('chkalloc${mystatus.count}child,chktelesheet${mystatus.count}child,chkear${mystatus.count}child,chkneg${mystatus.count}child,chkcutoff${mystatus.count}child','chkalloc${mystatus.count},chktelesheet${mystatus.count},chkear${mystatus.count},chkneg${mystatus.count},chkcutoff${mystatus.count}',',',',',${record.total},0);" />
|
||||
</td>
|
||||
<td>
|
||||
<form:checkbox path="pendinglist[${mystatus.index}].negative" id="chkneg${mystatus.count}" value="false" onclick="ToggleChecks('chkneg${mystatus.count}child',this.checked);checkUncheckList('chkalloc${mystatus.count}child,chktelesheet${mystatus.count}child,chkear${mystatus.count}child,chkneg${mystatus.count}child,chkcutoff${mystatus.count}child','chkalloc${mystatus.count},chktelesheet${mystatus.count},chkear${mystatus.count},chkneg${mystatus.count},chkcutoff${mystatus.count}',',',',',${record.total},0);" />
|
||||
</td>
|
||||
<td>
|
||||
<form:checkbox path="pendinglist[${mystatus.index}].cutoff" id="chkcutoff${mystatus.count}" value="false" onclick="ToggleMatrix('chkalloc${mystatus.count}child,chktelesheet${mystatus.count}child,chkear${mystatus.count}child,chkneg${mystatus.count}child,chkcutoff${mystatus.count}child',this.checked,',');checkUncheckList('chkalloc${mystatus.count}child,chktelesheet${mystatus.count}child,chkear${mystatus.count}child,chkneg${mystatus.count}child,chkcutoff${mystatus.count}child','chkalloc${mystatus.count},chktelesheet${mystatus.count},chkear${mystatus.count},chkneg${mystatus.count},chkcutoff${mystatus.count}',',',',',${record.total},0);" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr style="display:none" id="parent${mystatus.count}child" >
|
||||
<c:choose>
|
||||
<c:when test="${record.total lt 1}">
|
||||
<td colspan="6" style="text-align:center;font-style: italic;color:#232323;text-transform: capitalize;">There are no Records.</td>
|
||||
</c:when>
|
||||
<c:otherwise>
|
||||
<td colspan="8" align="right">
|
||||
<table cellspacing="0" cellpadding="0" border="0" width="94%" style="border-color: #49a5df">
|
||||
<thead class="thead">
|
||||
<tr title="Heading">
|
||||
<td width="6%">S.No</td>
|
||||
<td>Portfolio</td>
|
||||
<td width="60%">Name</td>
|
||||
<td>Allocation</td>
|
||||
<td>Telesheet</td>
|
||||
<td>Earlier</td>
|
||||
<td>Negative</td>
|
||||
<td>Cutoff</td>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody class="scrollContent">
|
||||
<c:forEach items="${record.pendingsublist}" var="record1" varStatus="mystatus1">
|
||||
<tr title="child">
|
||||
<td>${mystatus1.count}</td>
|
||||
<td>
|
||||
<form:hidden path="pendinglist[${mystatus.index}].pendingsublist[${mystatus1.index}].uuid" id="uuid${mystatus1.count}child" value="${status.value}"/>
|
||||
<span>${record1.portfolio}</span>
|
||||
</td>
|
||||
<td>
|
||||
<span>${record1.customername}</span>
|
||||
</td>
|
||||
<td>
|
||||
<form:checkbox path="pendinglist[${mystatus.index}].pendingsublist[${mystatus1.index}].allocation" id="chkalloc${mystatus.count}child${mystatus1.count}" value="${status.value}" onclick="checkList('chkalloc${mystatus.count}child','chkalloc${mystatus.count}');checkUncheckList('chkalloc${mystatus.count}child,chktelesheet${mystatus.count}child,chkear${mystatus.count}child,chkneg${mystatus.count}child,chkcutoff${mystatus.count}child','chkalloc${mystatus.count},chktelesheet${mystatus.count},chkear${mystatus.count},chkneg${mystatus.count},chkcutoff${mystatus.count}',',',',',${record.total},0);"/>
|
||||
</td>
|
||||
<td>
|
||||
<form:checkbox path="pendinglist[${mystatus.index}].pendingsublist[${mystatus1.index}].telesheet" id="chktelesheet${mystatus.count}child${mystatus1.count}" value="${status.value}" onclick="checkList('chktelesheet${mystatus.count}child','chktelesheet${mystatus.count}');checkUncheckList('chkalloc${mystatus.count}child,chktelesheet${mystatus.count}child,chkear${mystatus.count}child,chkneg${mystatus.count}child,chkcutoff${mystatus.count}child','chkalloc${mystatus.count},chktelesheet${mystatus.count},chkear${mystatus.count},chkneg${mystatus.count},chkcutoff${mystatus.count}',',',',',${record.total},0);"/>
|
||||
</td>
|
||||
<td>
|
||||
<form:checkbox path="pendinglist[${mystatus.index}].pendingsublist[${mystatus1.index}].earlier" id="chkear${mystatus.count}child${mystatus1.count}" value="${status.value}" onclick="checkList('chkear${mystatus.count}child','chkear${mystatus.count}');checkUncheckList('chkalloc${mystatus.count}child,chktelesheet${mystatus.count}child,chkear${mystatus.count}child,chkneg${mystatus.count}child,chkcutoff${mystatus.count}child','chkalloc${mystatus.count},chktelesheet${mystatus.count},chkear${mystatus.count},chkneg${mystatus.count},chkcutoff${mystatus.count}',',',',',${record.total},0);"/>
|
||||
</td>
|
||||
<td>
|
||||
<form:checkbox path="pendinglist[${mystatus.index}].pendingsublist[${mystatus1.index}].negative" id="chkneg${mystatus.count}child${mystatus1.count}" value="${status.value}" onclick="checkList('chkneg${mystatus.count}child','chkneg${mystatus.count}');checkUncheckList('chkalloc${mystatus.count}child,chktelesheet${mystatus.count}child,chkear${mystatus.count}child,chkneg${mystatus.count}child,chkcutoff${mystatus.count}child','chkalloc${mystatus.count},chktelesheet${mystatus.count},chkear${mystatus.count},chkneg${mystatus.count},chkcutoff${mystatus.count}',',',',',${record.total},0);"/>
|
||||
</td>
|
||||
<td>
|
||||
<form:checkbox path="pendinglist[${mystatus.index}].pendingsublist[${mystatus1.index}].cutoff" id="chkcutoff${mystatus.count}child${mystatus1.count}" value="${status.value}" onclick="checkList('chkcutoff${mystatus.count}child','chkcutoff${mystatus.count}');checkRowList('chkalloc${mystatus.count}child,chktelesheet${mystatus.count}child,chkear${mystatus.count}child,chkneg${mystatus.count}child,chkcutoff${mystatus.count}child',',',this.checked,${mystatus1.count});"/>
|
||||
</td>
|
||||
</tr>
|
||||
</c:forEach>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
</c:otherwise>
|
||||
</c:choose>
|
||||
</tr>
|
||||
</c:forEach>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
<input type="button" class="button" name="btnsave" style="margin-top:5px;float:right" value="Save" id="btnsave" accesskey="S" onclick="return SubmitForm('savecutoffpending','_parent','cutoffpending');" />
|
||||
<form:hidden path="SessUUID" value=""/>
|
||||
</form:form>
|
||||
<input type="hidden" id="invalidfields" value="0" />
|
||||
<input type="hidden" id="selectedports" value="0" />
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
<!-- Page Load Javascript -->
|
||||
<script language="javascript" type="text/javascript">
|
||||
centerDivBoth("formcontainer","H");
|
||||
InitPage();
|
||||
</script>
|
||||
|
||||
<!-- Process Message -->
|
||||
<c:if test="${not empty cutoffpending.getErrMsg()}">
|
||||
<script language="javascript" type="text/javascript">contentType="html"; CallMessage('${cutoffpending.getErrMsg()}',8000,200,300); </script>
|
||||
</c:if>
|
||||
|
||||
</html>
|
||||
@@ -1,44 +0,0 @@
|
||||
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
|
||||
pageEncoding="ISO-8859-1"%>
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
||||
<script language="javascript" src="/matrix/js/lib/constants.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/lib/jsfuncs.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/jquery1.7.2.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/ui/uifuncs.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/validator.js" type="text/javascript"></script>
|
||||
|
||||
<link href="/matrix/css/matrix.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/div.css" rel="stylesheet" type="text/css" />
|
||||
<title>Nimble 1.0 | 404 Error</title>
|
||||
</head>
|
||||
<body>
|
||||
<div id='PageFrame'>
|
||||
<div id="formcontainer" style="width:500px;margin-top:5px;position:absolute;z-index:-1">
|
||||
<div>
|
||||
<div id="FormPanel" class="FormPanel">
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="color:red;font-weight:bold;padding:20px">
|
||||
404 Error : Unauthorized access or requested page could not be found.
|
||||
</div>
|
||||
</div>
|
||||
<br />
|
||||
<br />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<form method="post" name="unaccess" id="unaccess">
|
||||
<center>
|
||||
<font color="blue"><b><a href="javascript:SubmitForm('logout', '_parent', 'unaccess');">Login Again</a></b></font>
|
||||
</center>
|
||||
</form>
|
||||
</body>
|
||||
<!-- Page Load Javascript -->
|
||||
<script language="javascript" type="text/javascript">
|
||||
centerDivBoth("formcontainer","B");
|
||||
</script>
|
||||
<!-- -->
|
||||
</html>
|
||||
@@ -1,125 +0,0 @@
|
||||
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
|
||||
pageEncoding="ISO-8859-1"%>
|
||||
<%@page language="java" session="true" %>
|
||||
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
||||
<title>Nimble 1.0 | Mailbox </title>
|
||||
<script language="javascript" src="/matrix/js/lib/constants.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/jquery1.7.2.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/ui/uifuncs.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/lib/jsfuncs.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/ui/select.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/flexigrid.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/jquery.tablesorter.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/appjs/mailbox.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/validator.js" type="text/javascript"></script>
|
||||
|
||||
<link href="/matrix/css/div.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/menu.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/textbox.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/select.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/button.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/table.css" rel="stylesheet" type="text/css" />
|
||||
<!--[if gte IE 9]>
|
||||
<style type="text/css">
|
||||
.gradient {
|
||||
filter: none;
|
||||
}
|
||||
</style>
|
||||
<![endif]-->
|
||||
</head>
|
||||
|
||||
<body style="font-family:Tahoma;background-color:#fff;font-size:10pt">
|
||||
<div id='PageFrame'>
|
||||
<!-- Title Bar -->
|
||||
<div id='title' class="title">
|
||||
<img id="icon" src="/matrix/images/optmale.png" />
|
||||
<img id="close" src="/matrix/images/close.jpg" onclick="javascript:closewindow();" />
|
||||
<span id="title">Nimble 1.0 ${Sessvals.getCompanyCode() } (${Sessvals.getBranchLocation() }) ${Sessvals.getUserDisplayName()} (${Sessvals.getUserGroupName()}) </span>
|
||||
</div>
|
||||
<!-- -->
|
||||
<!-- Dynamic Menu -->
|
||||
<jsp:include page='../usermenu/menu_${Sessvals.getUserID()}.html' />
|
||||
<!-- -->
|
||||
<div id="formcontainer" style="width:800px;margin-top:5px;position:absolute;z-index:-1">
|
||||
<form onsubmit="return false" method="post" name="mailbox" id="mailbox" >
|
||||
<div>
|
||||
<!-- Title -->
|
||||
<div id='title' class="title">
|
||||
<img id="icon" src="/matrix/images/email.png" align="absmiddle" />
|
||||
<span id="title" align="absmiddle">Mailbox</span><div style="display:inline-block;margin-top:-4px;margin-left:25px"><img src="/matrix/images/find.png" align="absmiddle" /> <input type="text" id="txtskey" name="txtskey" value="" style="width:200px;margin-bottom:10px" class="textbox" onkeyup="filterEmaillist(this.value)" /></div>
|
||||
<div class="toolbaricon" style="float:right;margin-right:35px;margin-top:-3px;border:1px solid #dfdfdf;height:18px;width:25px" onclick="ResendEmail()" id="btnresend">
|
||||
<img src="/matrix/images/resend_email.png" align="absmiddle" title="resend email" />
|
||||
</div>
|
||||
<input type="button" class="button" name="btnfilter" tabindex="4" style="float:right;margin-right:55px;margin-top:-2px" value="Filter" id="btnfilter" accesskey="F" tabindex="1" onclick="ValidateSearch();" />
|
||||
<div style="line-height:auto;width:auto;margin-top:-2px;float:right;margin-right:2px">
|
||||
<input type="text" id="txtfrom" name="txtfrom" value="" onkeydown="return addSlashes(this,event)" onblur="validate(this,'f','Date')" tabindex="2" style="width:80px" class="textbox" /> To <input type="text" id="txtto" tabindex="3" name="txtto" onkeydown="return addSlashes(this,event)" onblur="validate(this,'f','Date')" value="" style="width:80px" class="textbox" />
|
||||
</div>
|
||||
<img id="close" src="/matrix/images/reload.png" title="Refresh Grid" onclick="SubmitForm('emails','_parent','mailbox')"/>
|
||||
</div>
|
||||
<!-- -->
|
||||
<!-- Form (Filter) -->
|
||||
<table border="0" style="width:100%" cellspacing="0">
|
||||
<tr>
|
||||
<td id="filter" valign="top" style="border:1px solid #a7abb4;">
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<!-- -->
|
||||
<div id="TablePanel" class="tableContainer" style="overflow:auto;height:305px">
|
||||
<table border="0" cellspacing="0" style="width:788px" id="emaillist">
|
||||
<thead class="thead">
|
||||
<tr>
|
||||
<th width="15"><input type="checkbox" name="selall" id="selall" onclick="ToggleChecks('chkrow',this.checked)" /></th>
|
||||
<th width="150"><b>To</b></th>
|
||||
<th width="400"><b>Subject</b></th>
|
||||
<th width="110"><b>Sent On</b></th>
|
||||
<th width="42"><b>Status</b></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody id="tabbody" class="scrollContent">
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<div style="border:1px solid #a7abb4;overflow:auto;height:280px">
|
||||
<div class="FormPanel" style="height:30px;border-bottom:2px solid #a7abb4" id="detaildiv">
|
||||
<div class="widget" style="width:725px;overflow:auto;height:28px">
|
||||
<div id="senderinfo" style="width:707px;font-size:8pt;margin-top:1px">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div class="toolbaricon" style="float:right;" id="btnattachment">
|
||||
<img src="/matrix/images/attach.png" align="absmiddle" style="margin-top:3px" />
|
||||
</div>
|
||||
</div>
|
||||
<div id="popup" class="popup">
|
||||
<div id="popupitem">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div style="border:1px solid #a7abb4;overflow:auto;height:244px">
|
||||
<div id="mailcontent" style="padding:10px">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- -->
|
||||
<input type="hidden" id="usid" value="${Sessvals.getUserID()}" />
|
||||
<input type="hidden" id="branch" value="${Sessvals.getBranchID()}" />
|
||||
<input type="hidden" id="mailtype" value="${mailtype}" />
|
||||
<input type="hidden" id="invalidfields" value="0" />
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
<!-- Page Load Javascript -->
|
||||
<script language="javascript" type="text/javascript">
|
||||
centerDivBoth("formcontainer","H");
|
||||
InitPage();
|
||||
</script>
|
||||
<!-- -->
|
||||
</html>
|
||||
@@ -1,35 +0,0 @@
|
||||
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
|
||||
pageEncoding="ISO-8859-1"%>
|
||||
<%@taglib uri="http://www.springframework.org/tags/form" prefix="form"%>
|
||||
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
||||
<link href="/matrix/css/bootstrap.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/menu.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/div.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/open-iconic-bootstrap.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/dataTables.bootstrap4.min.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/font-awesome.min.css" rel="stylesheet" type="text/css" />
|
||||
<script language="javascript" src="/matrix/js/jquery.min.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/lib/jsfuncs.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/ui/uifuncs.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/bootstrap.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/jquery.dataTables.min.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/dataTables.bootstrap4.min.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/Chart.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/appjs/dashageing.js?ver=8" type="text/javascript"></script>
|
||||
<title>Nimble 1.0</title>
|
||||
</head>
|
||||
<body style="font-family:Tahoma;background-color:#fff">
|
||||
<input type="hidden" value=${Sessvals.getUserGroupID()} id="usgid"/>
|
||||
<div id='titlebar' class="title">
|
||||
<img id="icon" src="/matrix/images/optmale.png" />
|
||||
<img id="close" src="/matrix/images/close.jpg" onclick="javascript:closewindow();" />
|
||||
<span id="title">Nimble 1.0 ${Sessvals.getCompanyCode() } (${Sessvals.getBranchLocation() }) ${Sessvals.getUserDisplayName()} (${Sessvals.getUserGroupName()}) </span>
|
||||
</div>
|
||||
<jsp:include page='usermenu/menu_${Sessvals.getUserID()}.html' />
|
||||
<input type="hidden" value="${Sessvals.getUserID()}" id="usid" />
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,123 +0,0 @@
|
||||
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
|
||||
pageEncoding="ISO-8859-1"%>
|
||||
<%@taglib uri="http://www.springframework.org/tags/form" prefix="form"%>
|
||||
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<link href="/matrix/css/div.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/textbox.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/table.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/button.css" rel="stylesheet" type="text/css" />
|
||||
<script language="javascript" src="/matrix/js/ui/uifuncs.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/lib/jsfuncs.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/ui/msgdialog.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/jquery1.7.2.js" type="text/javascript"></script>
|
||||
<title>Nimble 1.0 | Login</title>
|
||||
</head>
|
||||
<body style="font-family:Tahoma;">
|
||||
|
||||
|
||||
<div id="banner1" style="height:100px;width:80%;">
|
||||
<img src="/matrix/images/bannerlogo.png" />
|
||||
|
||||
</div>
|
||||
<div id="banner" style="height:100px;width:80%;">
|
||||
|
||||
</div>
|
||||
<div id='loginframe' style="height:180px;width:290px;text-align:center">
|
||||
<div id='titlebar' class="title">
|
||||
<img id="icon" src="/matrix/images/optmale.png" />
|
||||
<img id="close" src="/matrix/images/close.jpg" onclick="javascript:closewindow();" />
|
||||
<span id="title">Sign In</span>
|
||||
</div>
|
||||
<div class="gardientGrey" style="height:150px;text-align:left;">
|
||||
<form:form id="loginform" method="post" action="authenticatelogin" modelAttribute="login">
|
||||
<table class="formtable" style="font-size:11pt" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td style="width:80px"> </td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
Username
|
||||
</td>
|
||||
<td>
|
||||
<form:input type="text" path="Loginid" value="${login.loginid}" class="textbox" id="username" style="width:150px;background-color:#FFFFFF" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
Password
|
||||
</td>
|
||||
<td>
|
||||
<form:input type="password" path="Password" class="textbox" id="password" style="width: 150px" />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>
|
||||
<input type="submit" class="button" name="btnlogin" id="btnlogin" value="Login" />
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</form:form>
|
||||
</div>
|
||||
</div>
|
||||
<div id="important" style="bottom:50px;color:#333333;width:90%;background-color:#c5d7ed;" class="notice">
|
||||
<font color="red"><b><u>Important!</u></b></font> We do not ask you to share personal information other than your user ID and PASSWORD when you log into software. Please do not disclose your User ID/Password in any written or oral communication with anyone.
|
||||
</div>
|
||||
<div id="footer">
|
||||
Copyright <20> 2006 Matrix Credit Risk Controls Pvt. Ltd. All rights reserved.
|
||||
</div>
|
||||
<script language="javascript" type="text/javascript">
|
||||
var QueryStr="val0="+1+"&val1="+5;
|
||||
centerDivBoth('banner','H');
|
||||
centerDivBoth('loginframe','B');
|
||||
centerDivBoth('important','H');
|
||||
CallMessage('${login.getErrMsg()}',3000,200,300);
|
||||
RunAjax("POST","fetchdob",QueryStr,15);
|
||||
|
||||
function AfterResponse(AjaxResponse,OprID)
|
||||
{
|
||||
|
||||
if(OprID==15)
|
||||
{
|
||||
|
||||
var htmlresult="";
|
||||
|
||||
|
||||
if(AjaxResponse.search('Error')>=0)
|
||||
{
|
||||
|
||||
CallMessage(AjaxResponse,3000,200,300);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
var rows=AjaxResponse.split("!R0W!");
|
||||
|
||||
for(indx=0;indx<rows.length-1;indx++)
|
||||
{
|
||||
|
||||
|
||||
var cols=rows[indx].split("!C0L!");
|
||||
|
||||
htmlresult+="<div align='center' style='height:50px;width:30%;'><font color='red'><b><u>"+cols[0]+"!</u></b></font></div><img hight='150px' width=150px src='/matrix/images/dob/"+cols[1]+".jpg'/>";
|
||||
|
||||
|
||||
}
|
||||
|
||||
$("#banner").html(htmlresult);
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,499 +0,0 @@
|
||||
<%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%>
|
||||
<%@ page language="java" session="true" %>
|
||||
<%@taglib uri="http://www.springframework.org/tags/form" prefix="form"%>
|
||||
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
|
||||
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>Bootstrap Example</title>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="stylesheet" href="/matrix/css/bootstrap.min.css">
|
||||
<!-- <link rel="stylesheet" href="/matrix/css/plugins/ekko-lightbox.css"> -->
|
||||
<link rel="stylesheet" href="/matrix/css/file.css">
|
||||
<link rel="stylesheet" href="/matrix/js/plugins/iviewer/jquery.iviewer.css?ver=1" />
|
||||
|
||||
<script type="text/javascript" src="/matrix/js/plugins/iviewer/jquery-3.6.0.min.js" ></script>
|
||||
<script type="text/javascript" src="/matrix/js/jquery-ui.min.js" ></script>
|
||||
<script type="text/javascript" src="/matrix/js/plugins/iviewer/jquery.iviewer.js" ></script>
|
||||
<script type="text/javascript" src="/matrix/js/plugins/iviewer/jquery.mousewheel.js"></script>
|
||||
|
||||
<script src="/matrix/js/bootstrap.min.js"></script>
|
||||
<script type="text/javascript" src="/matrix/js/plugins/bootstrap-filestyle.min.js"></script>
|
||||
|
||||
<!-- <script src="/matrix/js/plugins/ekko-lightbox.js"></script> -->
|
||||
|
||||
<script type="text/javascript" src="/matrix/js/lib/jsfuncs.js"></script>
|
||||
<script language="javascript" src="/matrix/js/jquery.form.js" type="text/javascript"></script>
|
||||
<script type="text/javascript" src="/matrix/js/lib/ajaxfileupload.js"></script>
|
||||
<style type="text/css">
|
||||
.hovereffect {
|
||||
float:left;
|
||||
overflow:hidden;
|
||||
position:relative;
|
||||
text-align:center;
|
||||
cursor:default;
|
||||
}
|
||||
|
||||
.hovereffect .overlay {
|
||||
width:50px;
|
||||
height:50px;
|
||||
position:absolute;
|
||||
overflow:hidden;
|
||||
bottom:0;
|
||||
left:0;
|
||||
padding:10px 0px;
|
||||
opacity:0;
|
||||
background-color:rgba(0,0,0,0.5);
|
||||
-webkit-transition:all .4s ease-in-out;
|
||||
transition:all .4s ease-in-out
|
||||
}
|
||||
|
||||
.hovereffect img {
|
||||
display:block;
|
||||
position:relative;
|
||||
-webkit-transition:all .4s linear;
|
||||
transition:all .4s linear;
|
||||
}
|
||||
.hovereffect div.info {
|
||||
text-decoration:none;
|
||||
display:inline-block;
|
||||
text-transform:uppercase;
|
||||
color:#fff;
|
||||
border:1px solid #fff;
|
||||
background-color:transparent;
|
||||
opacity:0;
|
||||
filter:alpha(opacity=0);
|
||||
-webkit-transition:all .2s ease-in-out;
|
||||
transition:all .2s ease-in-out;
|
||||
}
|
||||
|
||||
.hovereffect div.info:hover {
|
||||
box-shadow:0 0 5px #fff;
|
||||
}
|
||||
|
||||
.hovereffect:hover img {
|
||||
-ms-transform:scale(1.2);
|
||||
-webkit-transform:scale(1.2);
|
||||
transform:scale(1.2);
|
||||
}
|
||||
|
||||
.hovereffect:hover .overlay {
|
||||
opacity:0.7;
|
||||
filter:alpha(opacity=70);
|
||||
}
|
||||
|
||||
.hovereffect:hover div.info {
|
||||
opacity:1;
|
||||
filter:alpha(opacity=100);
|
||||
-ms-transform:translatey(0);
|
||||
-webkit-transform:translatey(0);
|
||||
transform:translatey(0);
|
||||
}
|
||||
|
||||
.hovereffect:hover div.info {
|
||||
-webkit-transition-delay:.2s;
|
||||
transition-delay:.2s;
|
||||
}
|
||||
|
||||
.viewer-content
|
||||
{
|
||||
width: 570px;
|
||||
height: 500px;
|
||||
position:relative;
|
||||
}
|
||||
|
||||
.wrapper-prev
|
||||
{
|
||||
width: 570px;
|
||||
overflow: hidden;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div>
|
||||
<div class="row">
|
||||
<div class="col-sm-12 bg-success">
|
||||
<form:form class="form-inline" action="ajxuploadvdoc" method="post" enctype="multipart/form-data" modelAttribute="docTagger">
|
||||
<!-- Submit Data -->
|
||||
<input type="hidden" id="usid" name="usid" value='${Sessvals.getUserID()}' />
|
||||
<form:hidden path="uuid" />
|
||||
<form:hidden path="reptype" />
|
||||
<form:hidden path="portfolio" />
|
||||
<!-- Submit Data Ends -->
|
||||
<div class="form-group">
|
||||
<label for="sel1" class="input-sm">Document Type</label>
|
||||
<select class="form-control" id="doctype" name="doctype">
|
||||
<c:if test="${photoreq gt 0}">
|
||||
<option value="MNIMBLE" ext="jpg|png|jpeg|bmp|gpj">MNIMBLE</option>
|
||||
</c:if>
|
||||
<option value="REP_ATTACH" ext="jpg|png|jpeg|bmp|gpj">REPORT ATTACHMENT</option>
|
||||
<option value="POV" ext="jpg|png|jpeg|bmp">POV</option>
|
||||
<option value="ADD_PROOF" ext="jpg|png|jpeg|bmp">ADDRESS PROOF</option>
|
||||
<option value="KYC" ext="jpg|png|jpeg|bmp|pdf">KYC DOCS</option>
|
||||
<option value="BANK_STATEMENT" ext="jpg|png|jpeg|bmp|pdf">BANK STATEMENT</option>
|
||||
<option value="FINANCIALS" ext="jpg|png|jpeg|pdf">FINANCIALS</option>
|
||||
<option value="DIRECTORS" ext="jpg|png|jpeg|pdf">DIRECTORS</option>
|
||||
<option value="INDEX" ext="jpg|png|jpeg|pdf">INDEX</option>
|
||||
<option value="OTHERS" ext="jpg|png|jpeg|bmp|pdf|txt|xls|doc">OTHERS</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="form-group" style="margin-top:2px">
|
||||
<label for="document" class="input-sm">Select Doc</label>
|
||||
<input type="file" id="updoc" name="updoc">
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="filename" class="input-sm">Doc Name</label>
|
||||
<input type="text" id="filename" name="filename" value="" placeholder="File name if leave it blank" style="width:140px" class="form-control">
|
||||
</div>
|
||||
<div class="form-group" style="margin-top:-1px">
|
||||
<button type="button" class="btn btn-primary input-md" onclick="uploadFile(document.getElementById('updoc'),'docTagger',$('option:selected', $('#doctype')).attr('ext'))">Submit</button>
|
||||
</div>
|
||||
</form:form>
|
||||
</div> <!-- DIV COL -->
|
||||
<c:set var="acttab" scope="session" value="class='active'"/>
|
||||
<div class="col-sm-12">
|
||||
<div class="container col-sm-12">
|
||||
<ul class="nav nav-tabs">
|
||||
<c:if test="${photoreq gt 0}">
|
||||
<li ><a data-toggle="tab" href="#MNIMBLE">Mnimble(${fn:length(docTagger.mnimble)})</a></li>
|
||||
</c:if>
|
||||
<li ${acttab}><a data-toggle="tab" href="#REP_ATTACH">Report Attachment(${fn:length(docTagger.repattach)})</a></li>
|
||||
<li><a data-toggle="tab" href="#POV">POV(${fn:length(docTagger.pov)})</a></li>
|
||||
<li><a data-toggle="tab" href="#ADD_PROOF">Add Proof(${fn:length(docTagger.addproof)})</a></li>
|
||||
<li><a data-toggle="tab" href="#KYC">KYC(${fn:length(docTagger.kyc)})</a></li>
|
||||
<li><a data-toggle="tab" href="#BANK_STATEMENT">Bank Statement(${fn:length(docTagger.bstatement)})</a></li>
|
||||
<li><a data-toggle="tab" href="#FINANCIALS">Financials(${fn:length(docTagger.financials)})</a></li>
|
||||
<li><a data-toggle="tab" href="#DIRECTORS">Directors(${fn:length(docTagger.financials)})</a></li>
|
||||
<li><a data-toggle="tab" href="#INDEX">Index(${fn:length(docTagger.financials)})</a></li>
|
||||
<li><a data-toggle="tab" href="#OTHERS">Others(${fn:length(docTagger.others)})</a></li>
|
||||
</ul>
|
||||
<div class="tab-content col-sm-12">
|
||||
<c:if test="${photoreq gt 0}">
|
||||
<div id="MNIMBLE" class="tab-pane fade">
|
||||
<h3>Mnimble Photos</h3>
|
||||
<div class="row">
|
||||
<div class="container col-sm-12 img-hover">
|
||||
<c:forEach items="${docTagger.mnimble}" var="rattach" varStatus="status">
|
||||
<div id="doc_${rattach[0]}_" class="col-sm-4 hovereffect" style="padding-left: 0px; padding-right: 0px;">
|
||||
<a href="${rattach[2]}" data-toggle="lightbox" data-gallery="example-gallery" data-type="image" data-title="${rattach[5]}" data-footer="Uploadedon: ${rattach[3]}, Uploaded by: ${rattach[4]}">
|
||||
<img src="${rattach[2]}" class="img-responsive img-thumbnail img-fluid">
|
||||
</a>
|
||||
<div class="overlay img-rounded">
|
||||
<div class="btn btn-primary" data-href="deletedoc?id=${rattach[0]}" data-toggle="modal" data-docid="${rattach[0]}" data-target="#confirm-delete"><span id="btn-tag-untag" class='glyphicon glyphicon-trash'></span></div>
|
||||
</div>
|
||||
</div>
|
||||
</c:forEach>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</c:if>
|
||||
|
||||
<div id="REP_ATTACH" class="tab-pane fade in active">
|
||||
<h3>Report Attachments</h3>
|
||||
<div class="row">
|
||||
<div class="container col-sm-12 img-hover">
|
||||
<c:forEach items="${docTagger.repattach}" var="rattach" varStatus="status">
|
||||
<div id="doc_${rattach[0]}_" class="col-sm-4 hovereffect" style="padding-left: 0px; padding-right: 0px;">
|
||||
<div data-toggle="modal" data-target="#imagePreviewIviewer" data-href="${docTagger.dserver}${rattach[2]}" data-title="${rattach[5]}" data-footer="Uploadedon: ${rattach[3]}, Uploaded by: ${rattach[4]}">
|
||||
<img id="img_${rattach[0]}_" src="${docTagger.dserver}${rattach[2]}" class="img-responsive img-thumbnail img-fluid" />
|
||||
</div>
|
||||
<!-- <a href="${docTagger.dserver}${rattach[2]}" data-toggle="lightbox" data-gallery="example-gallery" data-type="image" data-title="${rattach[5]}" data-footer="Uploadedon: ${rattach[3]}, Uploaded by: ${rattach[4]}">
|
||||
<img src="${docTagger.dserver}${rattach[2]}" class="img-responsive img-thumbnail img-fluid">
|
||||
</a>-->
|
||||
<div class="overlay img-rounded">
|
||||
<c:choose>
|
||||
<c:when test="${rattach[6] > 0}">
|
||||
<c:set var = "glyphicon" value = "glyphicon-remove"/>
|
||||
<c:set var = "btnclass" value = "btn-danger"/>
|
||||
</c:when>
|
||||
<c:otherwise>
|
||||
<c:set var = "glyphicon" value = "glyphicon-tag"/>
|
||||
<c:set var = "btnclass" value = "btn-primary"/>
|
||||
</c:otherwise>
|
||||
</c:choose>
|
||||
<div id="btn-tag-untag-holder-${rattach[0]}" class='btn <c:out value = "${btnclass}" />' data-href="deletedoc?id=${rattach[0]}" data-toggle="modal" data-status="${rattach[6]}" data-docid="${rattach[0]}" data-target="#confirm-delete"><span id="btn-tag-untag-${rattach[0]}" class='glyphicon <c:out value = "${glyphicon}"/>'></span></div>
|
||||
</div>
|
||||
</div>
|
||||
</c:forEach>
|
||||
</div>
|
||||
</div> <!-- ROW -->
|
||||
</div>
|
||||
<div id="POV" class="tab-pane fade">
|
||||
<h3>Proof Of Visit</h3>
|
||||
<div class="row">
|
||||
<div class="container col-sm-12 img-hover">
|
||||
<c:forEach items="${docTagger.pov}" var="rattach" varStatus="status">
|
||||
<div id="doc_${rattach[0]}_" class="col-sm-4 hovereffect" style="padding-left: 0px; padding-right: 0px;">
|
||||
<a href="${docTagger.dserver}${rattach[2]}" data-toggle="lightbox" data-gallery="example-gallery" data-type="image" data-title="${rattach[5]}" data-footer="Uploadedon: ${rattach[3]}, Uploaded by: ${rattach[4]}">
|
||||
<img src="${docTagger.dserver}${rattach[2]}" class="img-responsive img-thumbnail img-fluid">
|
||||
</a>
|
||||
<div class="overlay img-rounded">
|
||||
<div class="btn btn-primary" data-href="deletedoc?id=${rattach[0]}" data-toggle="modal" data-docid="${rattach[0]}" data-target="#confirm-delete"><span class="glyphicon glyphicon-trash"></span></div>
|
||||
</div>
|
||||
</div>
|
||||
</c:forEach>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="ADD_PROOF" class="tab-pane fade">
|
||||
<h3>Address Proof</h3>
|
||||
<div class="row">
|
||||
<div class="container col-sm-12 img-hover">
|
||||
<c:forEach items="${docTagger.addproof}" var="rattach" varStatus="status">
|
||||
<div id="doc_${rattach[0]}_" class="col-sm-4 hovereffect" style="padding-left: 0px; padding-right: 0px;">
|
||||
<a href="${docTagger.dserver}${rattach[2]}" data-toggle="lightbox" data-gallery="example-gallery" data-type="image" data-title="${rattach[5]}" data-footer="Uploadedon: ${rattach[3]}, Uploaded by: ${rattach[4]}">
|
||||
<img src="${docTagger.dserver}${rattach[2]}" class="img-responsive img-thumbnail img-fluid">
|
||||
</a>
|
||||
<div class="overlay img-rounded">
|
||||
<div class="btn btn-primary" data-href="deletedoc?id=${rattach[0]}" data-toggle="modal" data-docid="${rattach[0]}" data-target="#confirm-delete"><span class="glyphicon glyphicon-trash"></span></div>
|
||||
</div>
|
||||
</div>
|
||||
</c:forEach>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="KYC" class="tab-pane fade">
|
||||
<h3>KYC Documents</h3>
|
||||
<div class="row">
|
||||
<div class="container col-sm-12 img-hover">
|
||||
<c:forEach items="${docTagger.kyc}" var="rattach" varStatus="status">
|
||||
<div id="doc_${rattach[0]}_" class="col-sm-4 hovereffect" style="padding-left: 0px; padding-right: 0px;">
|
||||
<a href="${docTagger.dserver}${rattach[2]}" data-toggle="lightbox" data-gallery="example-gallery" data-type="image" data-title="${rattach[5]}" data-footer="Uploadedon: ${rattach[3]}, Uploaded by: ${rattach[4]}">
|
||||
<img src="${docTagger.dserver}${rattach[2]}" class="img-responsive img-thumbnail img-fluid">
|
||||
</a>
|
||||
<div class="overlay img-rounded">
|
||||
<div class="btn btn-primary" data-href="deletedoc?id=${rattach[0]}" data-toggle="modal" data-status="${rattach[0]}" data-docid="${rattach[0]}" data-target="#confirm-delete"><span class="glyphicon glyphicon-trash"></span></div>
|
||||
</div>
|
||||
</div>
|
||||
</c:forEach>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="BANK_STATEMENT" class="tab-pane fade">
|
||||
<h3>Bank Statement</h3>
|
||||
<div class="row">
|
||||
<div class="container col-sm-12 img-hover">
|
||||
<c:forEach items="${docTagger.bstatement}" var="rattach" varStatus="status">
|
||||
<div id="doc_${rattach[0]}_" class="col-sm-4 hovereffect" style="padding-left: 0px; padding-right: 0px;">
|
||||
<a href="${docTagger.dserver}${rattach[2]}" data-toggle="lightbox" data-gallery="example-gallery" data-type="image" data-title="${rattach[5]}" data-footer="Uploadedon: ${rattach[3]}, Uploaded by: ${rattach[4]}">
|
||||
<img src="${docTagger.dserver}${rattach[2]}" class="img-responsive img-thumbnail img-fluid">
|
||||
</a>
|
||||
<div class="overlay img-rounded">
|
||||
<div class="btn btn-primary" data-href="deletedoc?id=${rattach[0]}" data-toggle="modal" data-docid="${rattach[0]}" data-target="#confirm-delete"><span class="glyphicon glyphicon-trash"></span></div>
|
||||
</div>
|
||||
</div>
|
||||
</c:forEach>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="FINANCIALS" class="tab-pane fade">
|
||||
<h3>Financials</h3>
|
||||
<div class="row">
|
||||
<div class="container col-sm-12 img-hover">
|
||||
<c:forEach items="${docTagger.financials}" var="rattach" varStatus="status">
|
||||
<div id="doc_${rattach[0]}_" class="col-sm-4 hovereffect" style="padding-left: 0px; padding-right: 0px;">
|
||||
<a href="${docTagger.dserver}${rattach[2]}" data-toggle="lightbox" data-gallery="example-gallery" data-type="image" data-title="${rattach[5]}" data-footer="Uploadedon: ${rattach[3]}, Uploaded by: ${rattach[4]}">
|
||||
<img src="${docTagger.dserver}${rattach[2]}" class="img-responsive img-thumbnail img-fluid">
|
||||
</a>
|
||||
<div class="overlay img-rounded">
|
||||
<div class="btn btn-primary" data-href="deletedoc?id=${rattach[0]}" data-toggle="modal" data-docid="${rattach[0]}" data-target="#confirm-delete"><span class="glyphicon glyphicon-trash"></span></div>
|
||||
</div>
|
||||
</div>
|
||||
</c:forEach>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="DIRECTORS" class="tab-pane fade">
|
||||
<h3>Directors</h3>
|
||||
<div class="row">
|
||||
<div class="container col-sm-12 img-hover">
|
||||
<c:forEach items="${docTagger.directors}" var="rattach" varStatus="status">
|
||||
<div id="doc_${rattach[0]}_" class="col-sm-4 hovereffect" style="padding-left: 0px; padding-right: 0px;">
|
||||
<a href="${docTagger.dserver}${rattach[2]}" data-toggle="lightbox" data-gallery="example-gallery" data-type="image" data-title="${rattach[5]}" data-footer="Uploadedon: ${rattach[3]}, Uploaded by: ${rattach[4]}">
|
||||
<img src="${docTagger.dserver}${rattach[2]}" class="img-responsive img-thumbnail img-fluid">
|
||||
</a>
|
||||
<div class="overlay img-rounded">
|
||||
<div class="btn btn-primary" data-href="deletedoc?id=${rattach[0]}" data-toggle="modal" data-docid="${rattach[0]}" data-target="#confirm-delete"><span class="glyphicon glyphicon-trash"></span></div>
|
||||
</div>
|
||||
</div>
|
||||
</c:forEach>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="INDEX" class="tab-pane fade">
|
||||
<h3>Index</h3>
|
||||
<div class="row">
|
||||
<div class="container col-sm-12 img-hover">
|
||||
<c:forEach items="${docTagger.index}" var="rattach" varStatus="status">
|
||||
<div id="doc_${rattach[0]}_" class="col-sm-4 hovereffect" style="padding-left: 0px; padding-right: 0px;">
|
||||
<a href="${docTagger.dserver}${rattach[2]}" data-toggle="lightbox" data-gallery="example-gallery" data-type="image" data-title="${rattach[5]}" data-footer="Uploadedon: ${rattach[3]}, Uploaded by: ${rattach[4]}">
|
||||
<img src="${docTagger.dserver}${rattach[2]}" class="img-responsive img-thumbnail img-fluid">
|
||||
</a>
|
||||
<div class="overlay img-rounded">
|
||||
<div class="btn btn-primary" data-href="deletedoc?id=${rattach[0]}" data-toggle="modal" data-docid="${rattach[0]}" data-target="#confirm-delete"><span class="glyphicon glyphicon-trash"></span></div>
|
||||
</div>
|
||||
</div>
|
||||
</c:forEach>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="OTHERS" class="tab-pane fade">
|
||||
<h3>Other Documents</h3>
|
||||
<div class="row">
|
||||
<div class="container col-sm-12 img-hover">
|
||||
<c:forEach items="${docTagger.others}" var="rattach" varStatus="status">
|
||||
<div id="doc_${rattach[0]}_" class="col-sm-4 hovereffect" style="padding-left: 0px; padding-right: 0px;">
|
||||
<a href="${docTagger.dserver}${rattach[2]}" data-toggle="lightbox" data-gallery="example-gallery" data-type="image" data-title="${rattach[5]}" data-footer="Uploadedon: ${rattach[3]}, Uploaded by: ${rattach[4]}">
|
||||
<img src="${docTagger.dserver}${rattach[2]}" class="img-responsive img-thumbnail img-fluid">
|
||||
</a>
|
||||
<div class="overlay img-rounded">
|
||||
<div id="btn-tag-untag-holder" class="btn btn-primary" data-href="deletedoc?id=${rattach[0]}" data-toggle="modal" data-docid="${rattach[0]}" data-target="#confirm-delete"><span class="glyphicon glyphicon-trash"></span></div>
|
||||
</div>
|
||||
</div>
|
||||
</c:forEach>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div> <!-- Container -->
|
||||
</div> <!-- DIV COL -->
|
||||
</div> <!-- DIV ROW -->
|
||||
</div>
|
||||
<div class="modal fade" id="confirm-delete" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
|
||||
<div class="modal-dialog">
|
||||
<div class="modal-content">
|
||||
<div class="modal-header">
|
||||
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
|
||||
<h4 class="modal-title" id="myModalLabel">Confirm</h4>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
<p>Do you want to proceed?</p>
|
||||
</div>
|
||||
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button>
|
||||
<a class="btn btn-danger btn-ok" data-doc_id="0" data-dismiss="modal">Yes</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="mask" id="mask">
|
||||
</div>
|
||||
<div id="uploadprogress" class="row row-centered">
|
||||
<div id="progbar">
|
||||
<div id="bar"></div>
|
||||
<div id="percent">0%</div >
|
||||
</div>
|
||||
</div>
|
||||
<div class="modal fade" id="imagePreviewIviewer" tabindex="-1" role="dialog" aria-labelledby="myPreivewModal" aria-hidden="true">
|
||||
<div class="modal-dialog">
|
||||
<div class="modal-content">
|
||||
<div class="modal-header">
|
||||
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
|
||||
<h4 class="modal-title" id="myPreivewLabel"></h4>
|
||||
</div>
|
||||
<div class="modal-body" style="align-content:center;width:590px">
|
||||
<div class="wrapper-prev">
|
||||
<div id="viewer-content" class="viewer-content"></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<h5 id="preivewFooterLabel"></h5>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript">
|
||||
var docid = 0;
|
||||
var docstatus = 0;
|
||||
$('#updoc').filestyle({
|
||||
buttonName : 'btn-success',
|
||||
buttonText : ' Upload'
|
||||
});
|
||||
$(document).on('click', '[data-toggle="lightbox"]', function(event) {
|
||||
event.preventDefault();
|
||||
$(this).ekkoLightbox();
|
||||
});
|
||||
|
||||
$('#confirm-delete').on('show.bs.modal', function(e) {
|
||||
docid=e.relatedTarget.dataset.docid;
|
||||
docstatus=e.relatedTarget.dataset.status;
|
||||
});
|
||||
|
||||
$('#imagePreviewIviewer').on('show.bs.modal', function(e) {
|
||||
$("#myPreivewLabel").html(e.relatedTarget.dataset.title);
|
||||
$("#preivewFooterLabel").html(e.relatedTarget.dataset.footer);
|
||||
initIviewer(e.relatedTarget.dataset.href);
|
||||
});
|
||||
|
||||
$( document ).on('click', '.btn-ok', function(event) {
|
||||
subFunction(docid,docstatus);
|
||||
});
|
||||
|
||||
function subFunction(docid,docstatus)
|
||||
{
|
||||
var saverequest = $.ajax({
|
||||
type: "POST",
|
||||
url: "untag-doc",
|
||||
data: "docid="+docid+"&usid="+$("#usid").val()
|
||||
});
|
||||
saverequest.done(function(msg)
|
||||
{
|
||||
if(msg=='success')
|
||||
{
|
||||
var btn = $("#btn-tag-untag-"+docid);
|
||||
var btnholder = $("#btn-tag-untag-holder-"+docid);
|
||||
|
||||
if(docstatus == 1){
|
||||
$(btn).removeClass('glyphicon-remove').addClass( "glyphicon-tag" );
|
||||
$(btnholder).attr("data-status","0");
|
||||
$(btnholder).removeClass('btn-danger').addClass('btn-primary');
|
||||
}else{
|
||||
$(btn).removeClass('glyphicon-tag').addClass( "glyphicon-remove" );
|
||||
$(btnholder).attr("data-status","1");
|
||||
$(btnholder).removeClass('btn-primary').addClass('btn-danger');
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
alert(msg);
|
||||
}
|
||||
});
|
||||
saverequest.fail(function(jqXHR, textStatus)
|
||||
{
|
||||
alert( "Unable to process your request (" + textStatus +"-"+ jqXHR.status+")." );
|
||||
});
|
||||
}
|
||||
function activaTab(tab){
|
||||
$('.nav-tabs a[href="#' + tab + '"]').tab('show');
|
||||
};
|
||||
function promptpath(pathtoimg)
|
||||
{
|
||||
$("#doctype").val("REP_ATTACH");
|
||||
window.prompt("Copy to clipboard: Ctrl+C, Enter", pathtoimg);
|
||||
}
|
||||
function startUpload(felem)
|
||||
{
|
||||
}
|
||||
</script>
|
||||
<script type="text/javascript">
|
||||
var $ = jQuery;
|
||||
function initIviewer(imgsrc){
|
||||
var iv1 = $("#viewer-content").iviewer({
|
||||
src: imgsrc,
|
||||
update_on_resize: true,
|
||||
zoom_animation: false,
|
||||
mousewheel: true
|
||||
});
|
||||
iv1.iviewer('loadImage', imgsrc);
|
||||
iv1.iviewer('fit');
|
||||
}
|
||||
</script>
|
||||
</html>
|
||||
@@ -1,551 +0,0 @@
|
||||
<%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%>
|
||||
<%@ page language="java" session="true" %>
|
||||
<%@taglib uri="http://www.springframework.org/tags/form" prefix="form"%>
|
||||
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
|
||||
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>Bootstrap Example</title>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="stylesheet" href="/matrix/css/bootstrap.min.css">
|
||||
<!-- <link rel="stylesheet" href="/matrix/css/plugins/ekko-lightbox.css"> -->
|
||||
<link rel="stylesheet" href="/matrix/css/file.css">
|
||||
<link rel="stylesheet" href="/matrix/js/plugins/iviewer/jquery.iviewer.css" />
|
||||
|
||||
<script type="text/javascript" src="/matrix/js/plugins/iviewer/jquery-3.6.0.min.js" ></script>
|
||||
<script type="text/javascript" src="/matrix/js/jquery-ui.min.js" ></script>
|
||||
<script type="text/javascript" src="/matrix/js/plugins/iviewer/jquery.iviewer.js" ></script>
|
||||
<script type="text/javascript" src="/matrix/js/plugins/iviewer/jquery.mousewheel.js"></script>
|
||||
|
||||
<script src="/matrix/js/bootstrap.min.js"></script>
|
||||
<script type="text/javascript" src="/matrix/js/plugins/bootstrap-filestyle.min.js"></script>
|
||||
|
||||
<!-- <script src="/matrix/js/plugins/ekko-lightbox.js"></script> -->
|
||||
|
||||
<script type="text/javascript" src="/matrix/js/lib/jsfuncs.js"></script>
|
||||
<script language="javascript" src="/matrix/js/jquery.form.js" type="text/javascript"></script>
|
||||
<script type="text/javascript" src="/matrix/js/lib/ajaxfileupload.js"></script>
|
||||
<style type="text/css">
|
||||
.hovereffect {
|
||||
float:left;
|
||||
overflow:hidden;
|
||||
position:relative;
|
||||
text-align:center;
|
||||
cursor:default;
|
||||
}
|
||||
|
||||
.hovereffect .overlay {
|
||||
width:50px;
|
||||
height:40px;
|
||||
position:relative;
|
||||
overflow:hidden;
|
||||
bottom:0;
|
||||
left:0;
|
||||
padding:5px 5px;
|
||||
opacity:0;
|
||||
background-color:rgba(0,0,0,1);
|
||||
-webkit-transition:all .4s ease-in-out;
|
||||
transition:all .4s ease-in-out
|
||||
}
|
||||
|
||||
.hovereffect img {
|
||||
display:block;
|
||||
position:relative;
|
||||
-webkit-transition:all .4s linear;
|
||||
transition:all .4s linear;
|
||||
}
|
||||
.hovereffect div.info {
|
||||
text-decoration:none;
|
||||
display:inline-block;
|
||||
text-transform:uppercase;
|
||||
color:#fff;
|
||||
border:1px solid #fff;
|
||||
background-color:transparent;
|
||||
opacity:0.5;
|
||||
filter:alpha(opacity=0.5);
|
||||
-webkit-transition:all .2s ease-in-out;
|
||||
transition:all .2s ease-in-out;
|
||||
}
|
||||
|
||||
.hovereffect div.info:hover {
|
||||
box-shadow:0 0 5px #fff;
|
||||
}
|
||||
|
||||
.hovereffect:hover img {
|
||||
-ms-transform:scale(1.2);
|
||||
-webkit-transform:scale(1.2);
|
||||
transform:scale(1.2);
|
||||
}
|
||||
|
||||
.hovereffect:hover .overlay {
|
||||
opacity:0.8;
|
||||
filter:alpha(opacity=80);
|
||||
}
|
||||
|
||||
.hovereffect:hover div.info {
|
||||
opacity:1;
|
||||
filter:alpha(opacity=100);
|
||||
-ms-transform:translatey(0);
|
||||
-webkit-transform:translatey(0);
|
||||
transform:translatey(0);
|
||||
}
|
||||
|
||||
.hovereffect:hover div.info {
|
||||
-webkit-transition-delay:.2s;
|
||||
transition-delay:.2s;
|
||||
}
|
||||
|
||||
.viewer-content
|
||||
{
|
||||
width: 570px;
|
||||
height: 500px;
|
||||
position:relative;
|
||||
}
|
||||
|
||||
.wrapper-prev
|
||||
{
|
||||
width: 570px;
|
||||
overflow: hidden;
|
||||
}
|
||||
.flex-container {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
flex-wrap: nowrap;
|
||||
justify-content: normal;
|
||||
align-items: normal;
|
||||
align-content: normal;
|
||||
}
|
||||
|
||||
.flex-items:nth-child(1),
|
||||
.flex-items:nth-child(2) {
|
||||
display: block;
|
||||
flex-grow: 0;
|
||||
flex-shrink: 1;
|
||||
flex-basis: auto;
|
||||
align-self: auto;
|
||||
order: 0;
|
||||
}
|
||||
</style>
|
||||
<script>
|
||||
function converToPdf(elm){
|
||||
var postData = {
|
||||
status: $("#usid").val(),
|
||||
message: "",
|
||||
filepath: $(elm).attr("data-href")
|
||||
};
|
||||
console.log(JSON.stringify(postData));
|
||||
$.ajax({
|
||||
url: "http://192.168.10.68:9183/api/converter/pjpegtopdf",
|
||||
method: "POST",
|
||||
dataType: "json", // Corrected dataType
|
||||
contentType: "application/json", // Set content type to JSON
|
||||
data: JSON.stringify(postData),
|
||||
success: function (response) {
|
||||
console.log(response);
|
||||
$("#pdf-url").html("");
|
||||
if(response.status == 200){
|
||||
$("#pdf-url").html(response.filepath);
|
||||
}else{
|
||||
$("#pdf-url").html(response.message);
|
||||
}
|
||||
},
|
||||
error: function (xhr, status, error) {
|
||||
console.error("Error status:", status);
|
||||
console.error("Error:", error);
|
||||
console.log("Response Text:", xhr);
|
||||
console.log("Response JSON:", xhr.responseJSON);
|
||||
}
|
||||
});
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<div>
|
||||
<div class="row">
|
||||
<div class="col-sm-12 bg-success">
|
||||
<form:form class="form-inline" action="ajxuploadvdoc" method="post" enctype="multipart/form-data" modelAttribute="docTagger">
|
||||
<!-- Submit Data -->
|
||||
<input type="hidden" id="usid" name="usid" value='${Sessvals.getUserID()}' />
|
||||
<form:hidden path="uuid" />
|
||||
<form:hidden path="reptype" />
|
||||
<form:hidden path="portfolio" />
|
||||
<!-- Submit Data Ends -->
|
||||
<div class="form-group">
|
||||
<label for="sel1" class="input-sm">Document Type</label>
|
||||
<select class="form-control" id="doctype" name="doctype">
|
||||
<c:if test="${photoreq gt 0}">
|
||||
<option value="MNIMBLE" ext="jpg|png|jpeg|bmp|gpj">MNIMBLE</option>
|
||||
</c:if>
|
||||
<option value="REP_ATTACH" ext="jpg|png|jpeg|bmp|gpj">REPORT ATTACHMENT</option>
|
||||
<option value="POV" ext="jpg|png|jpeg|bmp">POV</option>
|
||||
<option value="ADD_PROOF" ext="jpg|png|jpeg|bmp">ADDRESS PROOF</option>
|
||||
<option value="KYC" ext="jpg|png|jpeg|bmp|pdf">KYC DOCS</option>
|
||||
<option value="BANK_STATEMENT" ext="jpg|png|jpeg|bmp|pdf">BANK STATEMENT</option>
|
||||
<option value="FINANCIALS" ext="jpg|png|jpeg|pdf">FINANCIALS</option>
|
||||
<option value="DIRECTORS" ext="jpg|png|jpeg|pdf">DIRECTORS</option>
|
||||
<option value="INDEX" ext="jpg|png|jpeg|pdf">INDEX</option>
|
||||
<option value="OTHERS" ext="jpg|png|jpeg|bmp|pdf|txt|xls|doc">OTHERS</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="form-group" style="margin-top:2px">
|
||||
<label for="document" class="input-sm">Select Doc</label>
|
||||
<input type="file" id="updoc" name="updoc">
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="filename" class="input-sm">Doc Name</label>
|
||||
<input type="text" id="filename" name="filename" value="" placeholder="File name if leave it blank" style="width:140px" class="form-control">
|
||||
</div>
|
||||
<div class="form-group" style="margin-top:-1px">
|
||||
<button type="button" class="btn btn-primary input-md" onclick="uploadFile(document.getElementById('updoc'),'docTagger',$('option:selected', $('#doctype')).attr('ext'))">Submit</button>
|
||||
</div>
|
||||
</form:form>
|
||||
</div> <!-- DIV COL -->
|
||||
<c:set var="acttab" scope="session" value="class='active'"/>
|
||||
<div class="col-sm-12">
|
||||
<div class="container col-sm-12">
|
||||
<ul class="nav nav-tabs">
|
||||
<c:if test="${photoreq gt 0}">
|
||||
<li ><a data-toggle="tab" href="#MNIMBLE">Mnimble(${fn:length(docTagger.mnimble)})</a></li>
|
||||
</c:if>
|
||||
<li ${acttab}><a data-toggle="tab" href="#REP_ATTACH">Report Attachment(${fn:length(docTagger.repattach)})</a></li>
|
||||
<li><a data-toggle="tab" href="#POV">POV(${fn:length(docTagger.pov)})</a></li>
|
||||
<li><a data-toggle="tab" href="#ADD_PROOF">Add Proof(${fn:length(docTagger.addproof)})</a></li>
|
||||
<li><a data-toggle="tab" href="#KYC">KYC(${fn:length(docTagger.kyc)})</a></li>
|
||||
<li><a data-toggle="tab" href="#BANK_STATEMENT">Bank Statement(${fn:length(docTagger.bstatement)})</a></li>
|
||||
<li><a data-toggle="tab" href="#FINANCIALS">Financials(${fn:length(docTagger.financials)})</a></li>
|
||||
<li><a data-toggle="tab" href="#DIRECTORS">Directors(${fn:length(docTagger.financials)})</a></li>
|
||||
<li><a data-toggle="tab" href="#INDEX">Index(${fn:length(docTagger.financials)})</a></li>
|
||||
<li><a data-toggle="tab" href="#OTHERS">Others(${fn:length(docTagger.others)})</a></li>
|
||||
</ul>
|
||||
<div class="tab-content col-sm-12">
|
||||
<c:if test="${photoreq gt 0}">
|
||||
<div id="MNIMBLE" class="tab-pane fade">
|
||||
<h3>Mnimble Photos</h3>
|
||||
<div class="row">
|
||||
<div class="container col-sm-12 img-hover">
|
||||
<c:forEach items="${docTagger.mnimble}" var="rattach" varStatus="status">
|
||||
<div id="doc_${rattach[0]}_" class="col-sm-4 hovereffect" style="padding-left: 0px; padding-right: 0px;">
|
||||
<a href="${rattach[2]}" data-toggle="lightbox" data-gallery="example-gallery" data-type="image" data-title="${rattach[5]}" data-footer="Uploadedon: ${rattach[3]}, Uploaded by: ${rattach[4]}">
|
||||
<img src="${rattach[2]}" class="img-responsive img-thumbnail img-fluid">
|
||||
</a>
|
||||
<div class="overlay img-rounded">
|
||||
<div class="btn btn-primary" data-href="deletedoc?id=${rattach[0]}" data-toggle="modal" data-docid="${rattach[0]}" data-target="#confirm-delete"><span id="btn-tag-untag" class='glyphicon glyphicon-trash'></span></div>
|
||||
</div>
|
||||
</div>
|
||||
</c:forEach>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</c:if>
|
||||
|
||||
<div id="REP_ATTACH" class="tab-pane fade in active">
|
||||
<h3>Report Attachments <label id="pdf-url" class="badge badge-primary sm"></label></h3>
|
||||
<div class="row">
|
||||
<div class="container col-sm-12 img-hover">
|
||||
<c:forEach items="${docTagger.repattach}" var="rattach" varStatus="status">
|
||||
<div id="doc_${rattach[0]}_" class="col-sm-4 hovereffect" style="padding-left: 0px; padding-right: 0px;">
|
||||
<div data-toggle="modal" data-target="#imagePreviewIviewer" data-href="${docTagger.dserver}${rattach[2]}" data-title="${rattach[5]}" data-footer="Uploadedon: ${rattach[3]}, Uploaded by: ${rattach[4]}">
|
||||
<img id="img_${rattach[0]}_" src="${docTagger.dserver}${rattach[2]}" class="img-responsive img-thumbnail img-fluid" />
|
||||
</div>
|
||||
<div class="flex-container">
|
||||
<div class="overlay img-rounded flex-items">
|
||||
<c:choose>
|
||||
<c:when test="${rattach[6] > 0}">
|
||||
<c:set var = "glyphicon" value = "glyphicon-remove"/>
|
||||
<c:set var = "btnclass" value = "btn-danger"/>
|
||||
</c:when>
|
||||
<c:otherwise>
|
||||
<c:set var = "glyphicon" value = "glyphicon-tag"/>
|
||||
<c:set var = "btnclass" value = "btn-primary"/>
|
||||
</c:otherwise>
|
||||
</c:choose>
|
||||
<div id="btn-tag-untag-holder-${rattach[0]}" class='btn <c:out value = "${btnclass}" />' data-href="deletedoc?id=${rattach[0]}" data-toggle="modal" data-status="${rattach[6]}" data-docid="${rattach[0]}" data-target="#confirm-delete"><span id="btn-tag-untag-${rattach[0]}" class='glyphicon <c:out value = "${glyphicon}"/>'></span></div>
|
||||
</div>
|
||||
<div class="overlay img-rounded flex-items">
|
||||
<div class="btn btn-info" data-href="${docTagger.dserver}${rattach[2]}" onclick="converToPdf(this)" ><span id="btn-tag-untag-${rattach[0]}" class='glyphicon glyphicon-copy'></span></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</c:forEach>
|
||||
</div>
|
||||
</div> <!-- ROW -->
|
||||
</div>
|
||||
<div id="POV" class="tab-pane fade">
|
||||
<h3>Proof Of Visit</h3>
|
||||
<div class="row">
|
||||
<div class="container col-sm-12 img-hover">
|
||||
<c:forEach items="${docTagger.pov}" var="rattach" varStatus="status">
|
||||
<div id="doc_${rattach[0]}_" class="col-sm-4 hovereffect" style="padding-left: 0px; padding-right: 0px;">
|
||||
<a href="${docTagger.dserver}${rattach[2]}" data-toggle="lightbox" data-gallery="example-gallery" data-type="image" data-title="${rattach[5]}" data-footer="Uploadedon: ${rattach[3]}, Uploaded by: ${rattach[4]}">
|
||||
<img src="${docTagger.dserver}${rattach[2]}" class="img-responsive img-thumbnail img-fluid">
|
||||
</a>
|
||||
<div class="overlay img-rounded">
|
||||
<div class="btn btn-primary" data-href="deletedoc?id=${rattach[0]}" data-toggle="modal" data-docid="${rattach[0]}" data-target="#confirm-delete"><span class="glyphicon glyphicon-trash"></span></div>
|
||||
</div>
|
||||
</div>
|
||||
</c:forEach>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="ADD_PROOF" class="tab-pane fade">
|
||||
<h3>Address Proof</h3>
|
||||
<div class="row">
|
||||
<div class="container col-sm-12 img-hover">
|
||||
<c:forEach items="${docTagger.addproof}" var="rattach" varStatus="status">
|
||||
<div id="doc_${rattach[0]}_" class="col-sm-4 hovereffect" style="padding-left: 0px; padding-right: 0px;">
|
||||
<a href="${docTagger.dserver}${rattach[2]}" data-toggle="lightbox" data-gallery="example-gallery" data-type="image" data-title="${rattach[5]}" data-footer="Uploadedon: ${rattach[3]}, Uploaded by: ${rattach[4]}">
|
||||
<img src="${docTagger.dserver}${rattach[2]}" class="img-responsive img-thumbnail img-fluid">
|
||||
</a>
|
||||
<div class="overlay img-rounded">
|
||||
<div class="btn btn-primary" data-href="deletedoc?id=${rattach[0]}" data-toggle="modal" data-docid="${rattach[0]}" data-target="#confirm-delete"><span class="glyphicon glyphicon-trash"></span></div>
|
||||
</div>
|
||||
</div>
|
||||
</c:forEach>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="KYC" class="tab-pane fade">
|
||||
<h3>KYC Documents</h3>
|
||||
<div class="row">
|
||||
<div class="container col-sm-12 img-hover">
|
||||
<c:forEach items="${docTagger.kyc}" var="rattach" varStatus="status">
|
||||
<div id="doc_${rattach[0]}_" class="col-sm-4 hovereffect" style="padding-left: 0px; padding-right: 0px;">
|
||||
<a href="${docTagger.dserver}${rattach[2]}" data-toggle="lightbox" data-gallery="example-gallery" data-type="image" data-title="${rattach[5]}" data-footer="Uploadedon: ${rattach[3]}, Uploaded by: ${rattach[4]}">
|
||||
<img src="${docTagger.dserver}${rattach[2]}" class="img-responsive img-thumbnail img-fluid">
|
||||
</a>
|
||||
<div class="overlay img-rounded">
|
||||
<div class="btn btn-primary" data-href="deletedoc?id=${rattach[0]}" data-toggle="modal" data-status="${rattach[0]}" data-docid="${rattach[0]}" data-target="#confirm-delete"><span class="glyphicon glyphicon-trash"></span></div>
|
||||
</div>
|
||||
</div>
|
||||
</c:forEach>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="BANK_STATEMENT" class="tab-pane fade">
|
||||
<h3>Bank Statement</h3>
|
||||
<div class="row">
|
||||
<div class="container col-sm-12 img-hover">
|
||||
<c:forEach items="${docTagger.bstatement}" var="rattach" varStatus="status">
|
||||
<div id="doc_${rattach[0]}_" class="col-sm-4 hovereffect" style="padding-left: 0px; padding-right: 0px;">
|
||||
<a href="${docTagger.dserver}${rattach[2]}" data-toggle="lightbox" data-gallery="example-gallery" data-type="image" data-title="${rattach[5]}" data-footer="Uploadedon: ${rattach[3]}, Uploaded by: ${rattach[4]}">
|
||||
<img src="${docTagger.dserver}${rattach[2]}" class="img-responsive img-thumbnail img-fluid">
|
||||
</a>
|
||||
<div class="overlay img-rounded">
|
||||
<div class="btn btn-primary" data-href="deletedoc?id=${rattach[0]}" data-toggle="modal" data-docid="${rattach[0]}" data-target="#confirm-delete"><span class="glyphicon glyphicon-trash"></span></div>
|
||||
</div>
|
||||
</div>
|
||||
</c:forEach>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="FINANCIALS" class="tab-pane fade">
|
||||
<h3>Financials</h3>
|
||||
<div class="row">
|
||||
<div class="container col-sm-12 img-hover">
|
||||
<c:forEach items="${docTagger.financials}" var="rattach" varStatus="status">
|
||||
<div id="doc_${rattach[0]}_" class="col-sm-4 hovereffect" style="padding-left: 0px; padding-right: 0px;">
|
||||
<a href="${docTagger.dserver}${rattach[2]}" data-toggle="lightbox" data-gallery="example-gallery" data-type="image" data-title="${rattach[5]}" data-footer="Uploadedon: ${rattach[3]}, Uploaded by: ${rattach[4]}">
|
||||
<img src="${docTagger.dserver}${rattach[2]}" class="img-responsive img-thumbnail img-fluid">
|
||||
</a>
|
||||
<div class="overlay img-rounded">
|
||||
<div class="btn btn-primary" data-href="deletedoc?id=${rattach[0]}" data-toggle="modal" data-docid="${rattach[0]}" data-target="#confirm-delete"><span class="glyphicon glyphicon-trash"></span></div>
|
||||
</div>
|
||||
</div>
|
||||
</c:forEach>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="DIRECTORS" class="tab-pane fade">
|
||||
<h3>Directors</h3>
|
||||
<div class="row">
|
||||
<div class="container col-sm-12 img-hover">
|
||||
<c:forEach items="${docTagger.directors}" var="rattach" varStatus="status">
|
||||
<div id="doc_${rattach[0]}_" class="col-sm-4 hovereffect" style="padding-left: 0px; padding-right: 0px;">
|
||||
<a href="${docTagger.dserver}${rattach[2]}" data-toggle="lightbox" data-gallery="example-gallery" data-type="image" data-title="${rattach[5]}" data-footer="Uploadedon: ${rattach[3]}, Uploaded by: ${rattach[4]}">
|
||||
<img src="${docTagger.dserver}${rattach[2]}" class="img-responsive img-thumbnail img-fluid">
|
||||
</a>
|
||||
<div class="overlay img-rounded">
|
||||
<div class="btn btn-primary" data-href="deletedoc?id=${rattach[0]}" data-toggle="modal" data-docid="${rattach[0]}" data-target="#confirm-delete"><span class="glyphicon glyphicon-trash"></span></div>
|
||||
</div>
|
||||
</div>
|
||||
</c:forEach>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="INDEX" class="tab-pane fade">
|
||||
<h3>Index</h3>
|
||||
<div class="row">
|
||||
<div class="container col-sm-12 img-hover">
|
||||
<c:forEach items="${docTagger.index}" var="rattach" varStatus="status">
|
||||
<div id="doc_${rattach[0]}_" class="col-sm-4 hovereffect" style="padding-left: 0px; padding-right: 0px;">
|
||||
<a href="${docTagger.dserver}${rattach[2]}" data-toggle="lightbox" data-gallery="example-gallery" data-type="image" data-title="${rattach[5]}" data-footer="Uploadedon: ${rattach[3]}, Uploaded by: ${rattach[4]}">
|
||||
<img src="${docTagger.dserver}${rattach[2]}" class="img-responsive img-thumbnail img-fluid">
|
||||
</a>
|
||||
<div class="overlay img-rounded">
|
||||
<div class="btn btn-primary" data-href="deletedoc?id=${rattach[0]}" data-toggle="modal" data-docid="${rattach[0]}" data-target="#confirm-delete"><span class="glyphicon glyphicon-trash"></span></div>
|
||||
</div>
|
||||
</div>
|
||||
</c:forEach>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="OTHERS" class="tab-pane fade">
|
||||
<h3>Other Documents</h3>
|
||||
<div class="row">
|
||||
<div class="container col-sm-12 img-hover">
|
||||
<c:forEach items="${docTagger.others}" var="rattach" varStatus="status">
|
||||
<div id="doc_${rattach[0]}_" class="col-sm-4 hovereffect" style="padding-left: 0px; padding-right: 0px;">
|
||||
<a href="${docTagger.dserver}${rattach[2]}" data-toggle="lightbox" data-gallery="example-gallery" data-type="image" data-title="${rattach[5]}" data-footer="Uploadedon: ${rattach[3]}, Uploaded by: ${rattach[4]}">
|
||||
<img src="${docTagger.dserver}${rattach[2]}" class="img-responsive img-thumbnail img-fluid">
|
||||
</a>
|
||||
<div class="overlay img-rounded">
|
||||
<div id="btn-tag-untag-holder" class="btn btn-primary" data-href="deletedoc?id=${rattach[0]}" data-toggle="modal" data-docid="${rattach[0]}" data-target="#confirm-delete"><span class="glyphicon glyphicon-trash"></span></div>
|
||||
</div>
|
||||
</div>
|
||||
</c:forEach>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div> <!-- Container -->
|
||||
</div> <!-- DIV COL -->
|
||||
</div> <!-- DIV ROW -->
|
||||
</div>
|
||||
<div class="modal fade" id="confirm-delete" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
|
||||
<div class="modal-dialog">
|
||||
<div class="modal-content">
|
||||
<div class="modal-header">
|
||||
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
|
||||
<h4 class="modal-title" id="myModalLabel">Confirm</h4>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
<p>Do you want to proceed?</p>
|
||||
</div>
|
||||
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button>
|
||||
<a class="btn btn-danger btn-ok" data-doc_id="0" data-dismiss="modal">Yes</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="mask" id="mask">
|
||||
</div>
|
||||
<div id="uploadprogress" class="row row-centered">
|
||||
<div id="progbar">
|
||||
<div id="bar"></div>
|
||||
<div id="percent">0%</div >
|
||||
</div>
|
||||
</div>
|
||||
<div class="modal fade" id="imagePreviewIviewer" tabindex="-1" role="dialog" aria-labelledby="myPreivewModal" aria-hidden="true">
|
||||
<div class="modal-dialog">
|
||||
<div class="modal-content">
|
||||
<div class="modal-header">
|
||||
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
|
||||
<h4 class="modal-title" id="myPreivewLabel"></h4>
|
||||
</div>
|
||||
<div class="modal-body" style="align-content:center;width:590px">
|
||||
<div class="wrapper-prev">
|
||||
<div id="viewer-content" class="viewer-content"></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<h5 id="preivewFooterLabel"></h5>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript">
|
||||
var docid = 0;
|
||||
var docstatus = 0;
|
||||
$('#updoc').filestyle({
|
||||
buttonName : 'btn-success',
|
||||
buttonText : ' Upload'
|
||||
});
|
||||
$(document).on('click', '[data-toggle="lightbox"]', function(event) {
|
||||
event.preventDefault();
|
||||
$(this).ekkoLightbox();
|
||||
});
|
||||
|
||||
$('#confirm-delete').on('show.bs.modal', function(e) {
|
||||
docid=e.relatedTarget.dataset.docid;
|
||||
docstatus=e.relatedTarget.dataset.status;
|
||||
});
|
||||
|
||||
$('#imagePreviewIviewer').on('show.bs.modal', function(e) {
|
||||
$("#myPreivewLabel").html(e.relatedTarget.dataset.title);
|
||||
$("#preivewFooterLabel").html(e.relatedTarget.dataset.footer);
|
||||
initIviewer(e.relatedTarget.dataset.href);
|
||||
});
|
||||
|
||||
$( document ).on('click', '.btn-ok', function(event) {
|
||||
subFunction(docid,docstatus);
|
||||
});
|
||||
|
||||
function subFunction(docid,docstatus)
|
||||
{
|
||||
var saverequest = $.ajax({
|
||||
type: "POST",
|
||||
url: "untag-doc",
|
||||
data: "docid="+docid+"&usid="+$("#usid").val()
|
||||
});
|
||||
saverequest.done(function(msg)
|
||||
{
|
||||
if(msg=='success')
|
||||
{
|
||||
var btn = $("#btn-tag-untag-"+docid);
|
||||
var btnholder = $("#btn-tag-untag-holder-"+docid);
|
||||
|
||||
if(docstatus == 1){
|
||||
$(btn).removeClass('glyphicon-remove').addClass( "glyphicon-tag" );
|
||||
$(btnholder).attr("data-status","0");
|
||||
$(btnholder).removeClass('btn-danger').addClass('btn-primary');
|
||||
}else{
|
||||
$(btn).removeClass('glyphicon-tag').addClass( "glyphicon-remove" );
|
||||
$(btnholder).attr("data-status","1");
|
||||
$(btnholder).removeClass('btn-primary').addClass('btn-danger');
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
alert(msg);
|
||||
}
|
||||
});
|
||||
saverequest.fail(function(jqXHR, textStatus)
|
||||
{
|
||||
alert( "Unable to process your request (" + textStatus +"-"+ jqXHR.status+")." );
|
||||
});
|
||||
}
|
||||
function activaTab(tab){
|
||||
$('.nav-tabs a[href="#' + tab + '"]').tab('show');
|
||||
};
|
||||
function promptpath(pathtoimg)
|
||||
{
|
||||
$("#doctype").val("REP_ATTACH");
|
||||
window.prompt("Copy to clipboard: Ctrl+C, Enter", pathtoimg);
|
||||
}
|
||||
function startUpload(felem)
|
||||
{
|
||||
}
|
||||
</script>
|
||||
<script type="text/javascript">
|
||||
var $ = jQuery;
|
||||
function initIviewer(imgsrc){
|
||||
var iv1 = $("#viewer-content").iviewer({
|
||||
src: imgsrc,
|
||||
update_on_resize: true,
|
||||
zoom_animation: false,
|
||||
mousewheel: true
|
||||
});
|
||||
iv1.iviewer('loadImage', imgsrc);
|
||||
iv1.iviewer('fit');
|
||||
}
|
||||
</script>
|
||||
</html>
|
||||
@@ -1,27 +0,0 @@
|
||||
<%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%>
|
||||
<%@page language="java" session="true" %>
|
||||
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>Bootstrap Example</title>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
|
||||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
||||
<style>
|
||||
.carousel-inner > .item > img,
|
||||
.carousel-inner > .item > a > img {
|
||||
width: 70%;
|
||||
margin: auto;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div>
|
||||
<iframe src="${gpsloc}&key=AIzaSyACPO53GZZKKhrDNBU8H9Kyroivd91yMKk" width="900" height="800" frameborder="0" style="border:0" allowfullscreen></iframe>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,71 +0,0 @@
|
||||
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
|
||||
pageEncoding="ISO-8859-1"%>
|
||||
<%@page language="java" session="true" %>
|
||||
<%@taglib uri="http://www.springframework.org/tags/form" prefix="form"%>
|
||||
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
||||
<title>Nimble 1.0 | Office Verification Report</title>
|
||||
<link href="/matrix/css/div.css" rel="stylesheet" type="text/css" />
|
||||
<script language="javascript" src="/matrix/js/jquery1.7.2.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/jquery.multirotation.js" type="text/javascript"></script>
|
||||
<style type="text/css">
|
||||
div {
|
||||
text-align: center;
|
||||
margin: auto
|
||||
}
|
||||
div.container {
|
||||
position: relative;
|
||||
margin: auto;
|
||||
width: 300px;
|
||||
height: 350px;
|
||||
}
|
||||
div.rotable {
|
||||
position: absolute;
|
||||
left: 5px;
|
||||
top: 92px
|
||||
}
|
||||
img {
|
||||
border: none;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div id='PageFrame'>
|
||||
<div id="formcontainer" style="width:845px;margin-top:5px;position:absolute;z-index:-1">
|
||||
<!-- Case Details (Section1) Visible for all portfolios-->
|
||||
<div>
|
||||
<!-- Title -->
|
||||
<div id='title' class="title">
|
||||
<img id="icon" src="/matrix/images/commondet.png" align="absmiddle" />
|
||||
<span id="title" align="absmiddle">Photo Viewer</span>
|
||||
</div>
|
||||
<!-- -->
|
||||
<div id="divCase" class="FormPanel">
|
||||
<c:forEach items="${photolist}" var="photo" varStatus="status">
|
||||
<div class="widget" style="width:410px;border:1px solid #C3C3C3">
|
||||
<div class="lblcontainer" onclick="$('#preview').attr('src',$('#img-${status.index}').attr('src'));$('.container').show()">
|
||||
<img id="img-${status.index}" src="http://192.168.10.219:8383/${photo}" height="400" width="400" />
|
||||
</div>
|
||||
</div>
|
||||
</c:forEach>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="container" style="position:fixed;width:100%;top:0;background-color:#F1F1F1;margin:0 auto">
|
||||
<div id="img_test" class="rotable" >
|
||||
<img src="" id="preview" />
|
||||
</div>
|
||||
<div style="line-height:30px;background-color:#C3C3C3;text-align:center" onclick="$('.container').hide()">Close</div>
|
||||
</div>
|
||||
</body>
|
||||
<script type="text/javascript" language="javascript">
|
||||
$(".container").hide();
|
||||
$("#img_test").click(function () {
|
||||
$(this).rotate({ angle: 90,speed: 0.5 });
|
||||
});
|
||||
</script>
|
||||
</html>
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,140 +0,0 @@
|
||||
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
|
||||
pageEncoding="ISO-8859-1"%>
|
||||
<%@page language="java" session="true" %>
|
||||
<%@taglib uri="http://www.springframework.org/tags/form" prefix="form"%>
|
||||
<%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
|
||||
<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %>
|
||||
<%@taglib prefix="spring" uri="http://www.springframework.org/tags" %>
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
||||
<link href="/matrix/css/jquery-ui.css" rel="stylesheet" type="text/css" />
|
||||
|
||||
<script language="javascript" src="/matrix/js/lib/constants.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/jquery1.7.2.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/ui/jquery-ui.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/ui/uifuncs.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/lib/jsfuncs.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/ui/msgdialog.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/ui/select.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/appjs/portfolio.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/validator.js" type="text/javascript"></script>
|
||||
|
||||
<link href="/matrix/css/matrix.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/menu.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/button.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/div.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/textbox.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/select.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/table.css" rel="stylesheet" type="text/css" />
|
||||
|
||||
<title>Nimble 1.0 | Add EmailID</title>
|
||||
</head>
|
||||
<body>
|
||||
<div id='PageFrame'>
|
||||
<!-- Title Bar -->
|
||||
<div id='title' class="title">
|
||||
<img id="icon" src="/matrix/images/optmale.png" />
|
||||
<img id="close" src="/matrix/images/close.jpg" onclick="javascript:closewindow();" />
|
||||
<span id="title">Nimble 1.0 ${Sessvals.getCompanyCode() } (${Sessvals.getBranchLocation() }) ${Sessvals.getUserDisplayName()} (${Sessvals.getUserGroupName()}) </span>
|
||||
</div>
|
||||
<!-- -->
|
||||
<div id="formcontainer" style="width:450px;margin-top:5px;position:absolute;z-index:-1">
|
||||
<!-- Title -->
|
||||
<div id='title' class="title">
|
||||
<img id="icon" src="/matrix/images/add_email.png" align="absmiddle" />
|
||||
<span id="title" align="absmiddle">Add Email ID</span>
|
||||
</div>
|
||||
<!-- -->
|
||||
<div id="FormPanel" class="FormPanel">
|
||||
<form:form method="post" modelAttribute="addemail" >
|
||||
<table align="center" id="filtertab" style="width:98%;border:1px solid #a7abb4" cellspacing="0">
|
||||
<tr>
|
||||
<td>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="width:100px">
|
||||
Portfolio
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<div class="divselect" id="divver" style="width:300px;">
|
||||
<form:select path="portfolio" multiple="false" style="width:318px" onchange="fetchBranch(this.value)" onblur="validate(this,'t','')">
|
||||
<option value="-1" selected>---</option>
|
||||
<c:forEach items="${portlist}" var="port">
|
||||
<form:option value="${port[0]}" label="${port[1]}" />
|
||||
</c:forEach>
|
||||
</form:select>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="width:100px">
|
||||
Branch
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<div class="divselect" id="divsbelt" style="width:300px;">
|
||||
<form:select path="branch" multiple="false" style="width:318px" onblur="validate(this,'t','')">
|
||||
<option value="-1">---</option>
|
||||
<c:forEach items="${branchlist}" var="branch">
|
||||
<form:option value="${branch[0]}" label="${branch[1]}" />
|
||||
</c:forEach>
|
||||
</form:select>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="padding-top:7px;width:100px">
|
||||
Name
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<form:input path="contactperson" class="textbox" style="width:288px;" onblur="validate(this,'t','AlphaSpace');" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="padding-top:7px;width:100px">
|
||||
Email ID
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<form:input path="emailid" class="textbox" style="width:288px;" onblur="validate(this,'t','Email');" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="width:100px">
|
||||
Type
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<div class="divselect" id="divsbelt" style="width:300px">
|
||||
<form:select path="recipienttype" multiple="false" style="width:318px">
|
||||
<form:option value="2" label="CC" selected="selected" />
|
||||
<form:option value="1" label="TO" />
|
||||
</form:select>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<input type="button" class="button" name="btnsave" value="Save" style="margin-top:3px" id="btnsave" accesskey="S" title="Save email id" onclick="ValidateNAddEmail()" />
|
||||
<input type="button" class="button" name="btncancel" value="Close" style="margin-top:3px" id="btncancel" accesskey="C" title="Save email id" onclick='<c:if test="${not empty msg}">window.returnValue=1;</c:if> window.close();' />
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<input type="hidden" id="invalidfields" value="0" />
|
||||
</form:form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
<!-- Page Load Javascript -->
|
||||
<script language="javascript" type="text/javascript">
|
||||
centerDivBoth("formcontainer","H");
|
||||
InitPage();
|
||||
</script>
|
||||
<!-- -->
|
||||
<!-- Process Message -->
|
||||
<c:if test="${not empty msg}">
|
||||
<script language="javascript" type="text/javascript"> CallMessage('${msg}',5000,200,300); </script>
|
||||
</c:if>
|
||||
<!-- -->
|
||||
</html>
|
||||
@@ -1,117 +0,0 @@
|
||||
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
|
||||
pageEncoding="ISO-8859-1"%>
|
||||
<%@page language="java" session="true" %>
|
||||
<%@taglib uri="http://www.springframework.org/tags/form" prefix="form"%>
|
||||
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
||||
<title>Nimble 1.0 | Belt Information </title>
|
||||
<script language="javascript" src="/matrix/js/lib/constants.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/jquery1.7.2.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/ui/uifuncs.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/lib/jsfuncs.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/ui/msgdialog.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/ui/select.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/appjs/belt.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/validator.js" type="text/javascript"></script>
|
||||
|
||||
<link href="/matrix/css/button.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/div.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/textbox.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/select.css" rel="stylesheet" type="text/css" />
|
||||
</head>
|
||||
|
||||
<body style="font-family:Tahoma;background-color:#fff;font-size:10pt">
|
||||
<div id='PageFrame'>
|
||||
<div id="formcontainer" style="width:393px;margin-top:10px;position:absolute;z-index:-1">
|
||||
<form:form method="post" name="belt" id="belt" modelAttribute="belt" >
|
||||
<!-- Verifier Details (Section1) -->
|
||||
<div>
|
||||
<!-- Title -->
|
||||
<div id='title' class="title">
|
||||
<img id="icon" src="/matrix/images/route.png" align="absmiddle" />
|
||||
<span id="title" align="absmiddle">Belt Information</span>
|
||||
</div>
|
||||
<!-- -->
|
||||
<!-- Form (Section1) -->
|
||||
<div id="FormPanel1" class="FormPanel">
|
||||
<table align="center" id="FormControls" width="99%">
|
||||
<tr>
|
||||
<td>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="width:85px">
|
||||
<font color="red">*</font>Name
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<form:input path="beltname" maxlength="50" style="width:250px" onblur="validate(this,'t','Remarks')" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="width:85px">
|
||||
Description
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<form:input path="beltdesc" maxlength="50" style="width:250px" onblur="validate(this,'f','Remarks')" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="width:75px">
|
||||
<font color="red">*</font>Group
|
||||
</div>
|
||||
</div>
|
||||
<c:forEach items="${grouplist}" var="group">
|
||||
<div class="widget">
|
||||
<div class="lblcontainer">
|
||||
${group[0]}
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<div class="divselect" id="divgroup${group[0]}" style="width:50px;">
|
||||
<select id="groupopt${group[0]}" style="width:68px" onblur="validate(this,'t','');">
|
||||
<option value="${group[0]},-1" selected>NA</option>
|
||||
<c:forEach items="${verifierlist}" var="verlist">
|
||||
<option value="${group[0]},${verlist[0]}" >${verlist[1]}</option>
|
||||
</c:forEach>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</c:forEach>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<!-- -->
|
||||
</div>
|
||||
<!-- -->
|
||||
<form:hidden path="isactive" />
|
||||
<form:hidden path="groupver" />
|
||||
<form:hidden path="suuid" />
|
||||
<form:hidden path="beltid" />
|
||||
<!-- -->
|
||||
<input type="hidden" id="invalidfields" value="0" />
|
||||
<input type="button" class="button" name="btnsave" style="margin-top:5px;float:right" value="Save" id="btnsave" accesskey="S" onclick="ValidateSubmitBelt(1);" />
|
||||
<c:if test="${belt.isactive == 1}">
|
||||
<input type="button" class="button" name="btndelete" style="margin-top:5px;float:right" value="Delete" id="btndelete" accesskey="D" onclick="ValidateSubmitBelt(0);" />
|
||||
</c:if>
|
||||
</form:form>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
<!-- Page Load Javascript -->
|
||||
<script language="javascript" type="text/javascript">
|
||||
centerDivBoth("formcontainer","H");
|
||||
setVerifiers("${belt.getGroupver()}");
|
||||
document.getElementById("beltname").focus();
|
||||
</script>
|
||||
<!-- -->
|
||||
<!-- Process Message -->
|
||||
<c:if test="${not empty msg}">
|
||||
<script language="javascript" type="text/javascript"> CallMessage('${msg}',3000,200,300); </script>
|
||||
<c:if test="${stat==true}">
|
||||
<script language="javascript" type="text/javascript">window.returnValue='${retval}'; window.close(); </script>
|
||||
</c:if>
|
||||
</c:if>
|
||||
<!-- -->
|
||||
</html>
|
||||
@@ -1,158 +0,0 @@
|
||||
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
|
||||
pageEncoding="ISO-8859-1"%>
|
||||
<%@page language="java" session="true" %>
|
||||
<%@taglib uri="http://www.springframework.org/tags/form" prefix="form"%>
|
||||
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
||||
<title>Nimble 1.0 |
|
||||
<c:choose>
|
||||
<c:when test="${colony.colonyid eq 0}">
|
||||
ADD Colony
|
||||
</c:when>
|
||||
<c:otherwise>
|
||||
Edit Colony
|
||||
</c:otherwise>
|
||||
</c:choose>
|
||||
</title>
|
||||
<script language="javascript" src="/matrix/js/lib/constants.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/jquery1.7.2.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/ui/uifuncs.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/lib/jsfuncs.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/ui/msgdialog.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/ui/select.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/appjs/colony.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/validator.js" type="text/javascript"></script>
|
||||
|
||||
<link href="/matrix/css/button.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/div.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/textbox.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/select.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/table.css" rel="stylesheet" type="text/css" />
|
||||
</head>
|
||||
|
||||
<body style="font-family:Tahoma;background-color:#fff;font-size:10pt">
|
||||
<div id='PageFrame'>
|
||||
<div id="formcontainer" style="width:393px;margin-top:10px;position:absolute;z-index:-1">
|
||||
<form:form method="post" name="colony" id="colony" modelAttribute="colony" >
|
||||
<!-- Verifier Details (Section1) -->
|
||||
<div>
|
||||
<!-- Title -->
|
||||
<div id='title' class="title">
|
||||
<img id="icon" src="/matrix/images/city.png" align="absmiddle" />
|
||||
<span id="title" align="absmiddle">Colony Details</span>
|
||||
</div>
|
||||
<!-- -->
|
||||
<!-- Form (Section1) -->
|
||||
<div id="FormPanel1" class="FormPanel">
|
||||
<table align="center" id="FormControls" width="99%">
|
||||
<tr>
|
||||
<td>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="width:110px">
|
||||
<font color="red">*</font>Colony
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<form:input path="clocation" maxlength="33" style="width:200px" onblur="validate(this,'t','SplInstruction')" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="width:110px">
|
||||
Nearby Area
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<form:input path="carea" maxlength="13" style="width:200px" onblur="validate(this,'f','SplInstruction')" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="width:110px">
|
||||
<font color="red">*</font>Zone
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<form:input path="czone" maxlength="4" style="width:40px" onblur="validate(this,'t','AlphaNumeric')" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="width:110px">
|
||||
<font color="red">*</font>City
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<div class="divselect" id="divcity" style="width:120px;">
|
||||
<form:select path="ccity" style="width:138px" >
|
||||
<option value="" selected>NA</option>
|
||||
<c:forEach items="${citylist}" var="cityl">
|
||||
<form:option value="${cityl[0]}" label="${cityl[1]}" />
|
||||
</c:forEach>
|
||||
</form:select>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="width:110px">
|
||||
<font color="red">*</font>Pincode
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<form:input path="pincode" maxlength="6" style="width:100px" onkeypress="return NumberOnly(event)" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="width:110px">
|
||||
<font color="red">*</font>Belt
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<div class="divselect" id="divbelt" style="width:200px;">
|
||||
<form:select path="beltid" style="width:218px" >
|
||||
<option value="" selected>NA</option>
|
||||
<c:forEach items="${beltlist}" var="beltl">
|
||||
<form:option value="${beltl[0]}" label="${beltl[1]}" />
|
||||
</c:forEach>
|
||||
</form:select>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="width:110px">
|
||||
<font color="red">*</font>Status
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<div class="divselect" id="divactive" style="width:115px;">
|
||||
<form:select path="isactive" multiple="false" style="width:133px" onblur="validate(this,'t','');">
|
||||
<form:option value="-1" label="SELECT" selected="true"/>
|
||||
<form:option value="1" label="Active" />
|
||||
<form:option value="0" label="Left" />
|
||||
</form:select>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<br />
|
||||
<input type="button" class="button" name="btnsave" style="margin-top:5px;float:right" value="Save" id="btnsave" accesskey="S" onclick="ValidateSubmitColony();" />
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<!-- -->
|
||||
</div>
|
||||
<!-- -->
|
||||
<form:hidden path="colonyid" />
|
||||
<!-- -->
|
||||
<input type="hidden" id="invalidfields" value="0" />
|
||||
</form:form>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
<!-- Page Load Javascript -->
|
||||
<script language="javascript" type="text/javascript">
|
||||
centerDivBoth("formcontainer","H");
|
||||
</script>
|
||||
<!-- -->
|
||||
<!-- Process Message -->
|
||||
<c:if test="${not empty msg}">
|
||||
<script language="javascript" type="text/javascript"> CallMessage('${msg}',3000,200,300); </script>
|
||||
<c:if test="${stat==true}">
|
||||
<script language="javascript" type="text/javascript">CloseDialog();</script>
|
||||
</c:if>
|
||||
</c:if>
|
||||
<!-- -->
|
||||
</html>
|
||||
@@ -1,122 +0,0 @@
|
||||
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
|
||||
pageEncoding="ISO-8859-1"%>
|
||||
<%@page language="java" session="true" %>
|
||||
<%@taglib uri="http://www.springframework.org/tags/form" prefix="form"%>
|
||||
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
||||
<title>Nimble 1.0 | Verifier Information </title>
|
||||
<script language="javascript" src="/matrix/js/lib/constants.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/jquery1.7.2.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/ui/uifuncs.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/lib/jsfuncs.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/ui/msgdialog.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/ui/select.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/appjs/verifier.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/validator.js" type="text/javascript"></script>
|
||||
|
||||
<link href="/matrix/css/button.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/div.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/textbox.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/select.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/table.css" rel="stylesheet" type="text/css" />
|
||||
</head>
|
||||
|
||||
<body style="font-family:Tahoma;background-color:#fff;font-size:10pt">
|
||||
<div id='PageFrame'>
|
||||
<div id="formcontainer" style="width:393px;margin-top:10px;position:absolute;z-index:-1">
|
||||
<form:form method="post" name="holiday" id="holiday" modelAttribute="holiday" >
|
||||
<!-- Verifier Details (Section1) -->
|
||||
<div>
|
||||
<!-- Title -->
|
||||
<div id='title' class="title">
|
||||
<img id="icon" src="/matrix/images/cutlist.png" align="absmiddle" />
|
||||
<span id="title" align="absmiddle">Holiday Information</span>
|
||||
</div>
|
||||
<!-- -->
|
||||
<!-- Form (Section1) -->
|
||||
<div id="FormPanel1" class="FormPanel">
|
||||
<table align="center" id="FormControls" width="99%">
|
||||
<tr>
|
||||
<td>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="width:120px">
|
||||
<font color="red">*</font>Date
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<form:input path="date" maxlength="10" style="width:100px" onkeydown="return addSlashes(this,event)" onblur="validate(this,'t','Date')" />
|
||||
</div>
|
||||
</div>
|
||||
<br />
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="width:120px">
|
||||
<font color="red">*</font>Reason
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<form:input path="reason" maxlength="30" style="width:200px" onblur="validate(this,'t','SplInstruction')" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="width:120px">
|
||||
<font color="red">*</font>Use In Doc TAT
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<form:checkbox path="useintatcalcd" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="width:120px">
|
||||
<font color="red">*</font>Use In Ver TAT
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<form:checkbox path="useintatcalcv" />
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<!-- -->
|
||||
</div>
|
||||
<!-- -->
|
||||
<form:hidden path="suuid" />
|
||||
<form:hidden path="uid" />
|
||||
<input type="hidden" id="usid" value="${Sessvals.getUserID()}" />
|
||||
<!-- -->
|
||||
<input type="hidden" id="invalidfields" value="0" />
|
||||
<input type="button" class="button" name="btnsave" style="margin-top:5px;float:right" value="Save" id="btnsave" accesskey="S" onclick="ValidateSubmitHoliday();" />
|
||||
</form:form>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
<!-- Page Load Javascript -->
|
||||
<script language="javascript" type="text/javascript">
|
||||
centerDivBoth("formcontainer","H");
|
||||
document.getElementById("date").focus();
|
||||
function ValidateSubmitHoliday()
|
||||
{
|
||||
validate(document.getElementById("date"),'t','AlphaNumeric');
|
||||
validate(document.getElementById("reason"),'t','AlphaSpace');
|
||||
|
||||
if(checkForm())
|
||||
{
|
||||
SubmitForm('holidayupdate','_parent','holiday');
|
||||
}
|
||||
else
|
||||
{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<!-- -->
|
||||
<!-- Process Message -->
|
||||
<c:if test="${not empty msg}">
|
||||
<script language="javascript" type="text/javascript"> CallMessage('${msg}',3000,200,300); </script>
|
||||
<c:if test="${stat==true}">
|
||||
<script language="javascript" type="text/javascript">window.returnValue=1; window.close(); </script>
|
||||
</c:if>
|
||||
</c:if>
|
||||
<!-- -->
|
||||
</html>
|
||||
@@ -1,863 +0,0 @@
|
||||
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
|
||||
pageEncoding="ISO-8859-1"%>
|
||||
<%@page language="java" session="true" %>
|
||||
<%@taglib uri="http://www.springframework.org/tags/form" prefix="form"%>
|
||||
<%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
|
||||
<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %>
|
||||
<%@taglib prefix="spring" uri="http://www.springframework.org/tags" %>
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
||||
<link href="/matrix/css/jquery-ui.css" rel="stylesheet" type="text/css" />
|
||||
|
||||
<script language="javascript" src="/matrix/js/lib/constants.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/jquery1.7.2.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/ui/jquery-ui.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/ui/uifuncs.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/lib/jsfuncs.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/ui/msgdialog.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/ui/select.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/appjs/query.js?cid=2" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/appjs/common.js?ver=1" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/validator.js" type="text/javascript"></script>
|
||||
|
||||
<link href="/matrix/css/matrix.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/button.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/div.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/textbox.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/select.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/table.css" rel="stylesheet" type="text/css" />
|
||||
|
||||
<title>Nimble 1.0 | Matrix Query</title>
|
||||
</head>
|
||||
<body>
|
||||
<div id='PageFrame'>
|
||||
<!-- Title Bar -->
|
||||
<div id='title' class="title">
|
||||
<img id="icon" src="/matrix/images/optmale.png" />
|
||||
<img id="close" src="/matrix/images/close.jpg" onclick="javascript:closewindow();" />
|
||||
<span id="title">Nimble 1.0 ${Sessvals.getCompanyCode() } (${Sessvals.getBranchLocation() }) ${Sessvals.getUserDisplayName()} (${Sessvals.getUserGroupName()}) </span>
|
||||
</div>
|
||||
<!-- -->
|
||||
<div id="formcontainer" style="width:1000px;margin-top:5px;position:absolute;z-index:-1">
|
||||
<!-- Title -->
|
||||
<div id='title' class="title">
|
||||
<img id="icon" src="/matrix/images/query.png" align="absmiddle" />
|
||||
<span id="title" align="absmiddle">Matrix Query <span id='recfound'></span></span>
|
||||
<img id="close" src="/matrix/images/reload.png" title="Refresh Grid" onclick="SubmitForm('matrixquery','_parent','filterform')"/>
|
||||
</div>
|
||||
<!-- -->
|
||||
<div id="FormPanel" class="FormPanel">
|
||||
<form name="filterform" method="post" id="filterform">
|
||||
<table align="center" id="filtertab" style="width:98%;border:1px solid #a7abb4" cellspacing="0">
|
||||
<tr>
|
||||
<td>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer">
|
||||
Portfolio
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<div class="divselect" id="divport" style="width:172px;">
|
||||
<select name="portlist" id="portlist" style="width:190px" >
|
||||
<option value="-1" selected>SELECT</option>
|
||||
<c:forEach items="${portlist}" var="port">
|
||||
<option value="${port[0]}" >${port[1]}</option>
|
||||
</c:forEach>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer">
|
||||
MV Code
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<input type="text" class="textbox" name="mvcode" id="mvcode" value="" style="width:65px;" onblur="validate(this,'f','AlphaNumeric')" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer">
|
||||
Appl No.
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<input type="text" class="textbox" name="applno" id="applno" value="" style="width:105px;" onblur="validate(this,'f','AlphaNumeric')" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer">
|
||||
Name
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<input type="text" class="textbox" name="customername" id="customername" value="" style="width:185px;" onblur="validate(this,'f','AlphaSpace');" />
|
||||
</div>
|
||||
</div>
|
||||
<input type="button" class="button" name="btnfind" style="margin-top:3px;float:right" value="Search" id="btnfind" accesskey="S" onclick="ValidateSearch();" />
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
||||
<form name="queryrecs" id="queryrecs" method="get">
|
||||
<div id="divCase" class="FormPanel">
|
||||
<table align="center" id="FormControls" width="99%" style="text-transform: none">
|
||||
<tr id="linkdiv">
|
||||
<td style="border-bottom:1px dotted #000000;padding-bottom:3px">
|
||||
<!-- <div id="contnolink" class="linkbutton" style="float:left;display:inline" onclick="showContactInfo('Q')"><img src="/matrix/images/contact_info.png" align="absmiddle" /> Contact Numbers</div>-->
|
||||
<div id="fdlink" class="linkbutton" style="float:left;display:inline" onclick="showEditors('FD')"><img src="/matrix/images/fd_history.png" align="absmiddle" /> Final Done History</div>
|
||||
<div id="ddlink" class="linkbutton" style="float:left;display:inline" onclick="showEditors('DD')"><img src="/matrix/images/ded_history.png" align="absmiddle" /> Dedupe Checking History</div>
|
||||
<div id="chlink" class="linkbutton" style="float:left;display:inline" onclick="showEditors('ALL')"><img src="/matrix/images/case_history.png" align="absmiddle" /> Case History</div>
|
||||
<div id="rptlink" class="linkbutton" style="float:left;display:inline" onclick="showReport()"><img src="/matrix/images/report.png" align="absmiddle" /> Open Report</div>
|
||||
<div id="cplink" class="linkbutton" style="float:left;display:inline" onclick="CompletePending()"><img src="/matrix/images/undo_done.png" align="absmiddle" /> Complete Pending</div>
|
||||
<div id="cdlink" class="linkbutton" style="float:left;display:inline" onclick="UndoOperation(4,'','')"><img src="/matrix/images/undo_done.png" align="absmiddle" /> Complete Done</div>
|
||||
<div id="bplink" class="linkbutton" style="float:left;display:inline" onclick="UndoOperation(2,'','')"><img src="/matrix/images/undo_report.png" align="absmiddle" /> Bank Report Pending</div>
|
||||
<div id="bdlink" class="linkbutton" style="float:left;display:inline" onclick="UndoOperation(5,'','')"><img src="/matrix/images/undo_done.png" align="absmiddle" /> Bank Done</div>
|
||||
<div id="povlink" class="linkbutton" style="float:left;display:inline" onclick="FetchPOV('pov')"><img src="/matrix/images/undo_report.png" align="absmiddle" /> Update POV</div>
|
||||
<div id="hclink" class="linkbutton" style="float:left;display:inline" onclick="FetchPOV('hc')"><img src="/matrix/images/undo_report.png" align="absmiddle" /> Hard Copy</div>
|
||||
<c:if test="${Sessvals.getUserID()==21 || Sessvals.getUserID()==24 || Sessvals.getUserID()==81}">
|
||||
<div id="changelink" class="linkbutton" style="float:left;display:inline" onclick="FetchReportChange('ALL')"><img src="/matrix/images/report_history.png" align="absmiddle" /> Report Change History</div>
|
||||
</c:if>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td id="s1">
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="text-transform: none">
|
||||
Company Code
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<input readonly="readonly" id="ccode" name="ccode" style="width:60px" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="text-transform: none">
|
||||
Company Branch
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<input readonly="readonly" id="cbranch" name="cbranch" style="width:180px" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="text-transform: none">
|
||||
Portfolio and Branch
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<input readonly="readonly" id="portbranch" name="portbranch" style="width:320px" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="text-transform: none">
|
||||
MV Code
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<input readonly="readonly" id="mmvcode" name="mvcode" style="width:100px" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="text-transform: none">
|
||||
File No.
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<input readonly="readonly" id="mapplno" name="applno" style="width:157px" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="text-transform: none">
|
||||
Name
|
||||
</div>
|
||||
<div class="inputcontainer" style="text-transform: none">
|
||||
<input readonly="readonly" id="mcustomername" name="customername" style="width:310px" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="text-transform: none">
|
||||
Type
|
||||
</div>
|
||||
<div class="inputcontainer" style="text-transform: none">
|
||||
<input readonly="readonly" id="apptype" name="apptype" style="width:133px" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="text-transform: none">
|
||||
Category
|
||||
</div>
|
||||
<div class="inputcontainer" style="text-transform: none">
|
||||
<input readonly="readonly" id="category" name="category" style="width:129px" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="text-transform: none">
|
||||
Product
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<input readonly="readonly" id="product" id="product" style="width:120px" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="text-transform: none">
|
||||
Loan Amount
|
||||
</div>
|
||||
<div class="inputcontainer" style="text-transform: none">
|
||||
<input readonly="readonly" id="loanamount" name="loanamount" style="width:100px" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="text-transform: none">
|
||||
Contact Person
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<input readonly="readonly" id="contactpers" name="contactpers" style="width:230px" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="text-transform: none">
|
||||
Mobile No
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<input readonly="readonly" id="mmobile" name="mmobile" style="width:200px" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="text-transform: none">
|
||||
Special Instruction
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<input readonly="readonly" id="specialinst" name="specialinst" style="width:542px" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="text-transform: none">
|
||||
RV
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<input readonly="readonly" id="rv" name="rv" value="N" style="width:20px;text-align:center;" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="text-transform: none">
|
||||
OV
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<input readonly="readonly" id="ov" name="ov" value="N" style="width:20px;text-align:center;" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="text-transform: none">
|
||||
PV
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<input readonly="readonly" id="pv" name="pv" value="N" style="width:20px;text-align:center;" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="text-transform: none">
|
||||
RTV
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<input readonly="readonly" id="rtv" name="rtv" value="N" style="width:20px;text-align:center;" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="text-transform: none">
|
||||
OTV
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<input readonly="readonly" id="otv" name="otv" value="N" style="width:20px;text-align:center;" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="text-transform: none">
|
||||
RFV
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<input readonly="readonly" id="rfv" name="rfv" value="N" style="width:20px;text-align:center;" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="text-transform: none">
|
||||
EAR
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<input readonly="readonly" id="ear" name="ear" value="N" style="width:20px;text-align:center;" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="text-transform: none">
|
||||
NEG
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<input readonly="readonly" id="neg" name="neg" value="N" style="width:20px;text-align:center;" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="text-transform: none">
|
||||
Received Date
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<input readonly="readonly" id="recdate" name="recdate" style="width:198px" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="text-transform: none">
|
||||
Batch
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<input readonly="readonly" id="batch" name="batch" style="width:50px" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="color:blue">
|
||||
FINAL STATUS
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<input readonly="readonly" id="fstatus" name="fstatus" style="width:165px;font-weight:bold" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="text-transform: none">
|
||||
Done By
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<input readonly="readonly" id="doneby" name="doneby" style="width:150px" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="text-transform: none">
|
||||
Done Date
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<input readonly="readonly" id="soldate" name="soldate" style="width:140px" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="text-transform: none">
|
||||
Send Date
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<input readonly="readonly" id="senddate" name="senddate" style="width:140px" />
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td id="CaseSection">
|
||||
${resiDetails.casesec}
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<!-- Navigation Panel -->
|
||||
<div style="width:100%" class="buttonbar">
|
||||
<input type="button" class="button" name="btnfirst" style="margin-left:5px;margin-top:-2px;float:left;width:80px" value="" id="btnfirst" accesskey="F" onclick="findRecord(1)" />
|
||||
<input type="button" class="button" name="btnprev" style="margin-top:-2px;float:left;width:80px" value="" id="btnprev" accesskey="P" onclick="findRecord(2)" />
|
||||
<input type="button" class="button" name="btnnext" style="margin-top:-2px;float:left;width:80px" value="" id="btnnext" accesskey="N" onclick="findRecord(3)" />
|
||||
<input type="button" class="button" name="btnlast" style="margin-top:-2px;float:left;width:80px" value="" id="btnlast" accesskey="L" onclick="findRecord(4)" />
|
||||
<input type="button" class="button" name="btncancel" style="margin-top:-2px;float:right;margin-right:7px" value="Close" id="btncancel" accesskey="C" onclick="closewindow();" />
|
||||
</div>
|
||||
<!-- -->
|
||||
<div id="tabs" style="font-size:10pt;height:350px">
|
||||
<ul>
|
||||
<li><a href="#res">Residence</a></li>
|
||||
<li><a href="#off">Office</a></li>
|
||||
<li><a href="#prop">Property</a></li>
|
||||
<li><a href="#tel">Telecalling</a></li>
|
||||
<li><a href="#ref">Refrence</a></li>
|
||||
<li><a href="#ded">Dedupe</a></li>
|
||||
</ul>
|
||||
<div id="res">
|
||||
<div class="widget">
|
||||
<div class="lblcontainer">
|
||||
Address
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<input type="text" id="raddr" name="raddr" readonly="readonly" style="width:600px" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer">
|
||||
Phone No.
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<input type="text" id="rphone" name="rphone" readonly="readonly" style="width:170px" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="width:57px">
|
||||
Verifier
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<input type="text" id="rverifier" name="rverifier" readonly="readonly" style="width:40px" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" >
|
||||
Visit Date
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<input type="text" id="rvisdate" name="rvisdate" readonly="readonly" style="width:100px" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" >
|
||||
Visit Time
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<input type="text" id="rvistime" name="rvistime" readonly="readonly" style="width:150px" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" >
|
||||
<div id="tdrlink" class="linkbutton" style="float:left;display:inline" onclick="tagDocs('R')"><img src="/matrix/images/undo_report.png" align="absmiddle" /> Tag Docs</div>
|
||||
<div id="showphotor" class="linkbutton" style="float:right;background-color:#c3c3c3;border:1px solid black" onclick="tagDocs('R')">Show Photos</div>
|
||||
</div>
|
||||
</div>
|
||||
<br>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="width:57px">
|
||||
Status
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<input type="text" id="rstatus" name="rstatus" readonly="readonly" style="width:235px" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer">
|
||||
Negative Reason
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<input type="text" id="rnegres" name="rnegres" readonly="readonly" style="width:495px" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer">
|
||||
<b><i>Verifier Remarks</i></b>
|
||||
</div>
|
||||
<br>
|
||||
<div class="inputcontainer">
|
||||
<textarea id="vrremarks" readonly="readonly" name="vrremarks" style="width:450px;height:120px" ></textarea>
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer">
|
||||
<b><i>Supervisor Remarks</i></b>
|
||||
</div>
|
||||
<br>
|
||||
<div class="inputcontainer">
|
||||
<textarea id="srremarks" readonly="readonly" name="srremarks" style="width:450px;height:120px" ></textarea>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="off">
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="width:75px">
|
||||
Address
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<input type="text" id="oaddr" name="oaddr" readonly="readonly" style="width:855px" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="width:75px">
|
||||
Phone No.
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<input type="text" id="ophone" name="ophone" readonly="readonly" style="width:170px" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer">
|
||||
Extn.
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<input type="text" id="extn" name="extn" readonly="readonly" style="width:48px" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" >
|
||||
Designation
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<input type="text" id="design" name="design" readonly="readonly" style="width:192px" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" >
|
||||
Department
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<input type="text" id="dept" name="dept" readonly="readonly" style="width:165px" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="width:75px">
|
||||
Verifier
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<input type="text" id="overifier" name="overifier" readonly="readonly" style="width:40px" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" >
|
||||
Visit Date
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<input type="text" id="ovisdate" name="ovisdate" readonly="readonly" style="width:100px" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" >
|
||||
Visit Time
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<input type="text" id="ovistime" name="ovistime" readonly="readonly" style="width:80px" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" >
|
||||
<div id="tdolink" class="linkbutton" style="float:left;display:inline" onclick="tagDocs('O')"><img src="/matrix/images/undo_report.png" align="absmiddle" /> Tag Docs</div>
|
||||
<div id="showphotoo" class="linkbutton" style="float:right;background-color:#c3c3c3;border:1px solid black" onclick="tagDocs('O')">Show Photos</div>
|
||||
</div>
|
||||
</div>
|
||||
<br>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="width:75px">
|
||||
Status
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<input type="text" id="ostatus" name="ostatus" readonly="readonly" style="width:235px" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer">
|
||||
Negative Reason
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<input type="text" id="onegres" name="onegres" readonly="readonly" style="width:478px" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer">
|
||||
<b><i>Verifier Remarks</i></b>
|
||||
</div>
|
||||
<br>
|
||||
<div class="inputcontainer">
|
||||
<textarea id="voremarks" readonly="readonly" name="voremarks" style="width:450px;height:120px" ></textarea>
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer">
|
||||
<b><i>Supervisor Remarks</i></b>
|
||||
</div>
|
||||
<br>
|
||||
<div class="inputcontainer">
|
||||
<textarea id="soremarks" readonly="readonly" name="soremarks" style="width:450px;height:120px" ></textarea>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="prop">
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="width:75px">
|
||||
Address
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<input type="text" id="paddr" name="paddr" readonly="readonly" style="width:600px" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer">
|
||||
Verifier
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<input type="text" id="pverifier" name="pverifier" readonly="readonly" style="width:40px" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="width:75px">
|
||||
Visit Date
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<input type="text" id="pvisdate" name="pvisdate" readonly="readonly" style="width:100px" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" >
|
||||
Visit Time
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<input type="text" id="pvistime" name="pvistime" readonly="readonly" style="width:150px" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" >
|
||||
<div id="tdplink" class="linkbutton" style="float:left;display:inline" onclick="tagDocs('P')"><img src="/matrix/images/undo_report.png" align="absmiddle" /> Tag Docs</div>
|
||||
<div id="showphotop" class="linkbutton" style="float:right;background-color:#c3c3c3;border:1px solid black" onclick="tagDocs('P')">Show Photos</div>
|
||||
</div>
|
||||
</div>
|
||||
<br>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="width:75px">
|
||||
Status
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<input type="text" id="pstatus" name="rstatus" readonly="readonly" style="width:235px" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer">
|
||||
Negative Reason
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<input type="text" id="pnegres" name="pnegres" readonly="readonly" style="width:477px" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer">
|
||||
<b><i>Verifier Remarks</i></b>
|
||||
</div>
|
||||
<br>
|
||||
<div class="inputcontainer">
|
||||
<textarea id="vpremarks" readonly="readonly" name="vpremarks" style="width:450px;height:120px" ></textarea>
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer">
|
||||
<b><i>Supervisor Remarks</i></b>
|
||||
</div>
|
||||
<br>
|
||||
<div class="inputcontainer">
|
||||
<textarea id="spremarks" readonly="readonly" name="spremarks" style="width:450px;height:120px" ></textarea>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="tel">
|
||||
<div class="widget">
|
||||
<div class="lblcontainer">
|
||||
Residence Phone No.
|
||||
</div>
|
||||
<div class="inputcontainer" style="width:300px">
|
||||
<input type="text" id="trphone" name="trphone" readonly="readonly" style="width:170px" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="width:142px">
|
||||
Office Phone No.
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<input type="text" id="tophone" name="tophone" readonly="readonly" style="width:170px" /> -
|
||||
<input type="text" id="textn" name="textn" readonly="readonly" style="width:40px" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="width:142px">
|
||||
Mobile No.
|
||||
</div>
|
||||
<div class="inputcontainer" style="width:300px">
|
||||
<input type="text" id="tmobile" name="tmobile" readonly="readonly" style="width:170px" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="width:142px">
|
||||
Telecaller
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<input type="text" id="tcaller" name="tcaller" readonly="readonly" style="width:170px" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="width:142px">
|
||||
RTV Contacted No.
|
||||
</div>
|
||||
<div class="inputcontainer" style="width:300px">
|
||||
<input type="text" id="trcont" name="trcont" readonly="readonly" style="width:170px" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="width:142px">
|
||||
OTV Contacted No.
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<input type="text" id="tocont" name="tocont" readonly="readonly" style="width:170px" />
|
||||
</div>
|
||||
</div>
|
||||
<br>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="width:142px">
|
||||
RTV Status.
|
||||
</div>
|
||||
<div class="inputcontainer" style="width:300px">
|
||||
<input type="text" id="trstatus" name="trstatus" readonly="readonly" style="width:170px" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="width:142px">
|
||||
OTV Status.
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<input type="text" id="tostatus" name="tostatus" readonly="readonly" style="width:170px" />
|
||||
</div>
|
||||
</div>
|
||||
<br>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer">
|
||||
<b><i>RTV Remarks</i></b>
|
||||
</div>
|
||||
<br>
|
||||
<div class="inputcontainer">
|
||||
<textarea id="rtremarks" readonly="readonly" name="rtremarks" style="width:450px;height:80px" ></textarea>
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer">
|
||||
<b><i>OTV Remarks</i></b>
|
||||
</div>
|
||||
<br>
|
||||
<div class="inputcontainer">
|
||||
<textarea id="otremarks" readonly="readonly" name="otremarks" style="width:450px;height:80px" ></textarea>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="ref">
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="width:142px">
|
||||
1st Refree Name.
|
||||
</div>
|
||||
<div class="inputcontainer" style="width:300px">
|
||||
<input type="text" id="ref1name" name="ref1name" readonly="readonly" style="width:170px" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="width:142px">
|
||||
2nd Refree Name.
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<input type="text" id="ref2name" name="ref2name" readonly="readonly" style="width:170px" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="width:142px">
|
||||
Address
|
||||
</div>
|
||||
<div class="inputcontainer" style="width:300px">
|
||||
<textarea id="ref1addr" readonly="readonly" name="ref1addr" style="width:300px;height:40px" ></textarea>
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="width:142px">
|
||||
Address
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<textarea id="ref2addr" readonly="readonly" name="ref2addr" style="width:300px;height:40px" ></textarea>
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="width:142px">
|
||||
Contacted No.
|
||||
</div>
|
||||
<div class="inputcontainer" style="width:300px">
|
||||
<input type="text" id="ref1cont" name="ref1cont" readonly="readonly" style="width:170px" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="width:142px">
|
||||
Contacted No.
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<input type="text" id="ref2cont" name="ref2cont" readonly="readonly" style="width:170px" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="width:142px">
|
||||
Telecaller
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<input type="text" id="refcaller" name="refcaller" readonly="readonly" style="width:170px" />
|
||||
</div>
|
||||
</div>
|
||||
<br>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="width:142px">
|
||||
Status.
|
||||
</div>
|
||||
<div class="inputcontainer" style="width:300px">
|
||||
<input type="text" id="ref1status" name="ref1status" readonly="readonly" style="width:170px" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="width:142px">
|
||||
Status.
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<input type="text" id="ref2status" name="ref2status" readonly="readonly" style="width:170px" />
|
||||
</div>
|
||||
</div>
|
||||
<br>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer">
|
||||
<b><i>Remarks</i></b>
|
||||
</div>
|
||||
<br>
|
||||
<div class="inputcontainer">
|
||||
<textarea id="ref1remarks" readonly="readonly" name="ref1remarks" style="width:450px;height:80px" ></textarea>
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer">
|
||||
<b><i>Remarks</i></b>
|
||||
</div>
|
||||
<br>
|
||||
<div class="inputcontainer">
|
||||
<textarea id="ref2remarks" readonly="readonly" name="ref2remarks" style="width:450px;height:80px" ></textarea>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="ded">
|
||||
<div class="widget">
|
||||
<div class="lblcontainer">
|
||||
<b><i>Earlier</i></b>
|
||||
</div>
|
||||
<br>
|
||||
<div class="inputcontainer">
|
||||
<textarea id="earrem" readonly="readonly" name="earrem" style="width:940px;height:100px" ></textarea>
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer">
|
||||
<b><i>Negative</i></b>
|
||||
</div>
|
||||
<br>
|
||||
<div class="inputcontainer">
|
||||
<textarea id="negrem" readonly="readonly" name="negrem" style="width:940px;height:100px" ></textarea>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<input type="hidden" name="uuid" id="uuid" value="0" />
|
||||
<input type="hidden" name="fileclosed" id="fileclosed" value="0" />
|
||||
<input type="hidden" name="sdone" id="sdone" value="0" />
|
||||
<input type="hidden" name="portfolio_id" id="portfolio_id" value="0" />
|
||||
</form>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<input type="hidden" id="invalidfields" value="0" />
|
||||
<input type="hidden" id="cid" value="0" />
|
||||
<input type="hidden" id="coid" value="${Sessvals.getCompanyID()}" />
|
||||
<input type="hidden" id="ugid" value="${Sessvals.getUserGroupID()}" />
|
||||
<input type="hidden" id="bid" value="${Sessvals.getBranchID()}" />
|
||||
<input type="hidden" id="suuid" value="<%=session.getAttribute("UUID") %>" />
|
||||
<input type="hidden" id="usid" value="${Sessvals.getUserID()}" />
|
||||
</div>
|
||||
</body>
|
||||
<!-- Page Load Javascript -->
|
||||
<script language="javascript" type="text/javascript">
|
||||
centerDivBoth("formcontainer","H");
|
||||
$( "#tabs" ).tabs();
|
||||
HideControls(0);
|
||||
$("#linkdiv").hide();
|
||||
$("#showphotor").hide();
|
||||
$("#showphotoo").hide();
|
||||
$("#showphotop").hide();
|
||||
</script>
|
||||
<!-- -->
|
||||
</html>
|
||||
@@ -1,156 +0,0 @@
|
||||
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
|
||||
pageEncoding="ISO-8859-1"%>
|
||||
<%@page language="java" session="true" %>
|
||||
<%@taglib uri="http://www.springframework.org/tags/form" prefix="form"%>
|
||||
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
||||
<title>Nimble 1.0 | Verifier Information </title>
|
||||
<script language="javascript" src="/matrix/js/lib/constants.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/jquery1.7.2.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/ui/uifuncs.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/lib/jsfuncs.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/ui/msgdialog.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/ui/select.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/appjs/verifier.js" type="text/javascript"></script>
|
||||
<script language="javascript" src="/matrix/js/validator.js" type="text/javascript"></script>
|
||||
|
||||
<link href="/matrix/css/button.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/div.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/textbox.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/select.css" rel="stylesheet" type="text/css" />
|
||||
<link href="/matrix/css/table.css" rel="stylesheet" type="text/css" />
|
||||
</head>
|
||||
|
||||
<body style="font-family:Tahoma;background-color:#fff;font-size:10pt">
|
||||
<div id='PageFrame'>
|
||||
<div id="formcontainer" style="width:393px;margin-top:10px;position:absolute;z-index:-1">
|
||||
<form:form method="post" name="verifier" id="verifier" modelAttribute="verifier" >
|
||||
<!-- Verifier Details (Section1) -->
|
||||
<div>
|
||||
<!-- Title -->
|
||||
<div id='title' class="title">
|
||||
<img id="icon" src="/matrix/images/verifier_list.gif" align="absmiddle" />
|
||||
<span id="title" align="absmiddle">Verifier Information</span>
|
||||
</div>
|
||||
<!-- -->
|
||||
<!-- Form (Section1) -->
|
||||
<div id="FormPanel1" class="FormPanel">
|
||||
<table align="center" id="FormControls" width="99%">
|
||||
<tr>
|
||||
<td>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="width:85px">
|
||||
<font color="red">*</font>Code
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<form:input path="vcode" maxlength="3" style="width:50px" onblur="validate(this,'t','AlphaNumeric')" />
|
||||
</div>
|
||||
</div>
|
||||
<br />
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="width:85px">
|
||||
<font color="red">*</font>Name
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<form:input path="vname" maxlength="30" style="width:250px" onblur="validate(this,'t','AlphaSpace')" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="width:85px">
|
||||
<font color="red">*</font>Mobile No
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<form:input path="mobileno" maxlength="10" style="width:120px" onblur="validate(this,'t','MobileNo')" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="width:35px">
|
||||
<font color="red">*</font>Type
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<div class="divselect" id="divvtype" style="width:74px;">
|
||||
<form:select path="vtype" multiple="false" style="width:92px" onblur="validate(this,'t','');">
|
||||
<form:option value="-1" label="SELECT" selected="true"/>
|
||||
<form:option value="VER" label="VER" />
|
||||
</form:select>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="width:85px">
|
||||
<font color="red">*</font>Limit
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<form:input path="mlimit" maxlength="4" style="width:62px" onkeypress="return NumberOnly(event)" onblur="ZeroIfBlank(this)" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="width:125px">
|
||||
<font color="red">*</font>MNimble Access
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<div class="divselect" id="divmnimble" style="width:100px;">
|
||||
<form:select path="simserial" multiple="false" style="width:118px" onblur="validate(this,'t','');">
|
||||
<form:option value="-1" label="SELECT" selected="true"/>
|
||||
<form:option value="ACTIVATE" label="ACTIVATE" />
|
||||
<form:option value="DEACTIVATE" label="DEACTIVATE" />
|
||||
</form:select>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="lblcontainer" style="width:52px">
|
||||
<font color="red">*</font>Status
|
||||
</div>
|
||||
<div class="inputcontainer">
|
||||
<c:choose>
|
||||
<c:when test="${verifier.curalloc == 0 }">
|
||||
<div class="divselect" id="divactive" style="width:115px;">
|
||||
<form:select path="isactive" multiple="false" style="width:133px" onblur="validate(this,'t','');">
|
||||
<form:option value="-1" label="SELECT" selected="true"/>
|
||||
<form:option value="1" label="Active" />
|
||||
<form:option value="0" label="Left" />
|
||||
</form:select>
|
||||
</div>
|
||||
</c:when>
|
||||
<c:otherwise>
|
||||
<form:hidden path="isactive"/>
|
||||
<input type="text" readonly="readonly" style="width:103px" value="Active" />
|
||||
</c:otherwise>
|
||||
</c:choose>
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<!-- -->
|
||||
</div>
|
||||
<!-- -->
|
||||
<form:hidden path="suuid" />
|
||||
<form:hidden path="vid" />
|
||||
<!-- -->
|
||||
<input type="hidden" id="invalidfields" value="0" />
|
||||
<input type="button" class="button" name="btnsave" style="margin-top:5px;float:right" value="Save" id="btnsave" accesskey="S" onclick="ValidateSubmitVerifier();" />
|
||||
</form:form>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
<!-- Page Load Javascript -->
|
||||
<script language="javascript" type="text/javascript">
|
||||
centerDivBoth("formcontainer","H");
|
||||
document.getElementById("vcode").focus();
|
||||
</script>
|
||||
<!-- -->
|
||||
<!-- Process Message -->
|
||||
<c:if test="${not empty msg}">
|
||||
<script language="javascript" type="text/javascript"> CallMessage('${msg}',3000,200,300); </script>
|
||||
<c:if test="${stat==true}">
|
||||
<script language="javascript" type="text/javascript">window.returnValue=1; window.close(); </script>
|
||||
</c:if>
|
||||
</c:if>
|
||||
<!-- -->
|
||||
</html>
|
||||
@@ -1 +0,0 @@
|
||||
<div style='overflow:visible' id='MenuBar'><form method='post' name='MenuForm' id='MenuForm'><input type='hidden' id='pageval' name='pageval' value='' /><ul id='master_0'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Operations</a><ul id='master_4'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('optrreporting','_parent','MenuForm','')">Reporting</a><ul id='master_25'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">MIS</a><ul id='master_6'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Visit</a><ul id='master_59'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('oprdtrange','_parent','MenuForm','OPERATOR VISIT MIS!SPLT!259!SPLT!opdtmis!SPLT!opr')">Operatorwise</a><ul id='master_61'></ul></li></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Tools</a><ul id='master_8'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('mnimbleotp','_blank','MenuForm','')">Mnimble OTP</a><ul id='master_121'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Settings</a><ul id='master_9'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('loadcpass','_parent','MenuForm','')">Change Password</a><ul id='master_66'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitForm('logout','_parent','MenuForm')">Logout</a></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitForm('dashboard','_parent','MenuForm')">Dashboard</a></li></ul></form></div>
|
||||
@@ -1 +0,0 @@
|
||||
<div style='overflow:visible' id='MenuBar'><form method='post' name='MenuForm' id='MenuForm'><input type='hidden' id='pageval' name='pageval' value='' /><ul id='master_0'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Operations</a><ul id='master_4'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('scanreporting','_parent','MenuForm','')">Scanning</a><ul id='master_28'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Bank Reports</a><ul id='master_5'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('bankreport','_parent','MenuForm','')">Banklist</a><ul id='master_33'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('reportupload','_parent','MenuForm','')">Upload Reports</a><ul id='master_65'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">MIS</a><ul id='master_6'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Trackers</a><ul id='master_67'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('portdtoptrange','_parent','MenuForm','TRACKER GENERATOR!SPLT!214!SPLT!pdtomis')">Daily Trackers</a><ul id='master_68'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('portdtrange','_parent','MenuForm','POV TRACKER GENERATOR!SPLT!254!SPLT!pdtmis')">POV Trackers</a><ul id='master_79'></ul></li></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Tools</a><ul id='master_8'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('emails','_parent','MenuForm','bankreports')">Mailbox</a><ul id='master_39'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('matrixquery','_blank','MenuForm','')">Query</a><ul id='master_34'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('editgrid','_blank','MenuForm','')">Edit Cases</a><ul id='master_11'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Settings</a><ul id='master_9'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('loadcpass','_parent','MenuForm','')">Change Password</a><ul id='master_66'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitForm('logout','_parent','MenuForm')">Logout</a></li></ul></form></div>
|
||||
@@ -1 +0,0 @@
|
||||
<div style='overflow:visible' id='MenuBar'><form method='post' name='MenuForm' id='MenuForm'><input type='hidden' id='pageval' name='pageval' value='' /><ul id='master_0'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Operations</a><ul id='master_4'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('scanreporting','_parent','MenuForm','')">Scanning</a><ul id='master_28'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Bank Reports</a><ul id='master_5'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('bankreport','_parent','MenuForm','')">Banklist</a><ul id='master_33'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('reportupload','_parent','MenuForm','')">Upload Reports</a><ul id='master_65'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">MIS</a><ul id='master_6'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Trackers</a><ul id='master_67'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('portdtoptrange','_parent','MenuForm','TRACKER GENERATOR!SPLT!214!SPLT!pdtomis')">Daily Trackers</a><ul id='master_68'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('portdtrange','_parent','MenuForm','POV TRACKER GENERATOR!SPLT!254!SPLT!pdtmis')">POV Trackers</a><ul id='master_79'></ul></li></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Tools</a><ul id='master_8'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('emails','_parent','MenuForm','bankreports')">Mailbox</a><ul id='master_39'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('matrixquery','_blank','MenuForm','')">Query</a><ul id='master_34'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('editgrid','_blank','MenuForm','')">Edit Cases</a><ul id='master_11'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Portfolio</a><ul id='master_97'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('manageemailids','_parent','MenuForm','')">Manage Email IDs</a><ul id='master_99'></ul></li></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Settings</a><ul id='master_9'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('loadcpass','_parent','MenuForm','')">Change Password</a><ul id='master_66'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitForm('logout','_parent','MenuForm')">Logout</a></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitForm('dashboard','_parent','MenuForm')">Dashboard</a></li></ul></form></div>
|
||||
@@ -1 +0,0 @@
|
||||
<div style='overflow:visible' id='MenuBar'><form method='post' name='MenuForm' id='MenuForm'><input type='hidden' id='pageval' name='pageval' value='' /><ul id='master_0'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Punching</a><ul id='master_1'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('initview','_parent','MenuForm','')">Add Cases</a><ul id='master_10'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('caseupload','_parent','MenuForm','')">Upload Cases</a><ul id='master_12'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Cut Off</a><ul id='master_2'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('cutoff','_parent','MenuForm','')">Start Cut</a><ul id='master_13'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('allocation','_parent','MenuForm','')">Allocation</a><ul id='master_14'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('telesheet','_parent','MenuForm','')">Tele-Sheet</a><ul id='master_16'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('refsheet','_parent','MenuForm','')">Reference Sheet</a><ul id='master_69'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('sendtoopr','_parent','MenuForm','')">Send To Operation</a><ul id='master_19'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Dedupe</a><ul id='master_3'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('rundedupe','_parent','MenuForm','')">Run Dedupe</a><ul id='master_17'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('dodedupe','_parent','MenuForm','')">Do Dedupe</a><ul id='master_18'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('senddedupe','_parent','MenuForm','')">Send Dedupe</a><ul id='master_41'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">MIS</a><ul id='master_6'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Trackers</a><ul id='master_67'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('portdtoptrange','_parent','MenuForm','TRACKER GENERATOR!SPLT!214!SPLT!pdtomis')">Daily Trackers</a><ul id='master_68'></ul></li></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Tools</a><ul id='master_8'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('emails','_parent','MenuForm','dedupesend')">Mailbox</a><ul id='master_39'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('sms','_parent','MenuForm','37!SPLT!40')">SMS</a><ul id='master_15'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('photocases','_parent','MenuForm','')">MNimble List</a><ul id='master_84'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Settings</a><ul id='master_9'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('loadcpass','_parent','MenuForm','')">Change Password</a><ul id='master_66'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitForm('logout','_parent','MenuForm')">Logout</a></li></ul></form></div>
|
||||
@@ -1 +0,0 @@
|
||||
<div style='overflow:visible' id='MenuBar'><form method='post' name='MenuForm' id='MenuForm'><input type='hidden' id='pageval' name='pageval' value='' /><ul id='master_0'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Punching</a><ul id='master_1'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('initview','_parent','MenuForm','')">Add Cases</a><ul id='master_10'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('caseupload','_parent','MenuForm','')">Upload Cases</a><ul id='master_12'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Cut Off</a><ul id='master_2'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('cutoff','_parent','MenuForm','')">Start Cut</a><ul id='master_13'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('allocation','_parent','MenuForm','')">Allocation</a><ul id='master_14'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('telesheet','_parent','MenuForm','')">Tele-Sheet</a><ul id='master_16'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('refsheet','_parent','MenuForm','')">Reference Sheet</a><ul id='master_69'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('sendtoopr','_parent','MenuForm','')">Send To Operation</a><ul id='master_19'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Dedupe</a><ul id='master_3'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('rundedupe','_parent','MenuForm','')">Run Dedupe</a><ul id='master_17'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('dodedupe','_parent','MenuForm','')">Do Dedupe</a><ul id='master_18'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('senddedupe','_parent','MenuForm','')">Send Dedupe</a><ul id='master_41'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">MIS</a><ul id='master_6'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Trackers</a><ul id='master_67'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('portdtoptrange','_parent','MenuForm','TRACKER GENERATOR!SPLT!214!SPLT!pdtomis')">Daily Trackers</a><ul id='master_68'></ul></li></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Tools</a><ul id='master_8'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('emails','_parent','MenuForm','dedupesend')">Mailbox</a><ul id='master_39'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Settings</a><ul id='master_9'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('loadcpass','_parent','MenuForm','')">Change Password</a><ul id='master_66'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitForm('logout','_parent','MenuForm')">Logout</a></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitForm('dashboard','_parent','MenuForm')">Dashboard</a></li></ul></form></div>
|
||||
@@ -1 +0,0 @@
|
||||
<div style='overflow:visible' id='MenuBar'><form method='post' name='MenuForm' id='MenuForm'><input type='hidden' id='pageval' name='pageval' value='' /><ul id='master_0'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Operations</a><ul id='master_4'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('scanreporting','_parent','MenuForm','')">Scanning</a><ul id='master_28'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Bank Reports</a><ul id='master_5'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('bankreport','_parent','MenuForm','')">Banklist</a><ul id='master_33'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('reportupload','_parent','MenuForm','')">Upload Reports</a><ul id='master_65'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">MIS</a><ul id='master_6'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Received Cases</a><ul id='master_22'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('portdtrange','_parent','MenuForm','PORTFOLIOWISE RECEIVED CASES!SPLT!137!SPLT!pdtmis')">Portfoliowise</a><ul id='master_44'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Visit</a><ul id='master_59'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('portverdtrange','_parent','MenuForm','PORTFOLIOWISE VISIT MIS!SPLT!234!SPLT!pvdtvismis')">Portfoliowise</a><ul id='master_70'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('portdaterange','_parent','MenuForm','PORTFOLIOWISE PHOTO MIS!SPLT!355!SPLT!pdtmis')">Photo MIS</a><ul id='master_101'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Trackers</a><ul id='master_67'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('portdtoptrange','_parent','MenuForm','TRACKER GENERATOR!SPLT!214!SPLT!pdtomis')">Daily Trackers</a><ul id='master_68'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('portdtrange','_parent','MenuForm','POV TRACKER GENERATOR!SPLT!254!SPLT!pdtmis')">POV Trackers</a><ul id='master_79'></ul></li></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Tools</a><ul id='master_8'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('emails','_parent','MenuForm','bankreports')">Mailbox</a><ul id='master_39'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('matrixquery','_blank','MenuForm','')">Query</a><ul id='master_34'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('editgrid','_blank','MenuForm','')">Edit Cases</a><ul id='master_11'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Portfolio</a><ul id='master_97'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('manageemailids','_parent','MenuForm','')">Manage Email IDs</a><ul id='master_99'></ul></li></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Settings</a><ul id='master_9'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('loadcpass','_parent','MenuForm','')">Change Password</a><ul id='master_66'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitForm('logout','_parent','MenuForm')">Logout</a></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitForm('dashboard','_parent','MenuForm')">Dashboard</a></li></ul></form></div>
|
||||
@@ -1 +0,0 @@
|
||||
<div style='overflow:visible' id='MenuBar'><form method='post' name='MenuForm' id='MenuForm'><input type='hidden' id='pageval' name='pageval' value='' /><ul id='master_0'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Punching</a><ul id='master_1'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('initview','_parent','MenuForm','')">Add Cases</a><ul id='master_10'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Dedupe</a><ul id='master_3'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('rundedupe','_parent','MenuForm','')">Run Dedupe</a><ul id='master_17'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('dodedupe','_parent','MenuForm','')">Do Dedupe</a><ul id='master_18'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Settings</a><ul id='master_9'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('loadcpass','_parent','MenuForm','')">Change Password</a><ul id='master_66'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitForm('logout','_parent','MenuForm')">Logout</a></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitForm('dashboard','_parent','MenuForm')">Dashboard</a></li></ul></form></div>
|
||||
@@ -1 +0,0 @@
|
||||
<div style='overflow:visible' id='MenuBar'><form method='post' name='MenuForm' id='MenuForm'><input type='hidden' id='pageval' name='pageval' value='' /><ul id='master_0'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Employee</a><ul id='master_81'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('empdetform','_parent','MenuForm','')">Add Employee</a><ul id='master_82'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Settings</a><ul id='master_9'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('loadcpass','_parent','MenuForm','')">Change Password</a><ul id='master_66'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitForm('logout','_parent','MenuForm')">Logout</a></li></ul></form></div>
|
||||
@@ -1 +0,0 @@
|
||||
<div style='overflow:visible' id='MenuBar'><form method='post' name='MenuForm' id='MenuForm'><input type='hidden' id='pageval' name='pageval' value='' /><ul id='master_0'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Operations</a><ul id='master_4'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('optrreporting','_parent','MenuForm','')">Reporting</a><ul id='master_25'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">MIS</a><ul id='master_6'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Visit</a><ul id='master_59'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('oprdtrange','_parent','MenuForm','OPERATOR VISIT MIS!SPLT!259!SPLT!opdtmis!SPLT!opr')">Operatorwise</a><ul id='master_61'></ul></li></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Tools</a><ul id='master_8'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Settings</a><ul id='master_9'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('loadcpass','_parent','MenuForm','')">Change Password</a><ul id='master_66'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitForm('logout','_parent','MenuForm')">Logout</a></li></ul></form></div>
|
||||
@@ -1 +0,0 @@
|
||||
<div style='overflow:visible' id='MenuBar'><form method='post' name='MenuForm' id='MenuForm'><input type='hidden' id='pageval' name='pageval' value='' /><ul id='master_0'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Punching</a><ul id='master_1'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('initview','_parent','MenuForm','')">Add Cases</a><ul id='master_10'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('caseupload','_parent','MenuForm','')">Upload Cases</a><ul id='master_12'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Cut Off</a><ul id='master_2'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('cutoff','_parent','MenuForm','')">Start Cut</a><ul id='master_13'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('allocation','_parent','MenuForm','')">Allocation</a><ul id='master_14'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('telesheet','_parent','MenuForm','')">Tele-Sheet</a><ul id='master_16'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('refsheet','_parent','MenuForm','')">Reference Sheet</a><ul id='master_69'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('sendtoopr','_parent','MenuForm','')">Send To Operation</a><ul id='master_19'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Dedupe</a><ul id='master_3'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('rundedupe','_parent','MenuForm','')">Run Dedupe</a><ul id='master_17'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('dodedupe','_parent','MenuForm','')">Do Dedupe</a><ul id='master_18'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('senddedupe','_parent','MenuForm','')">Send Dedupe</a><ul id='master_41'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">MIS</a><ul id='master_6'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Trackers</a><ul id='master_67'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('portdtoptrange','_parent','MenuForm','TRACKER GENERATOR!SPLT!214!SPLT!pdtomis')">Daily Trackers</a><ul id='master_68'></ul></li></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Tools</a><ul id='master_8'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('emails','_parent','MenuForm','dedupesend')">Mailbox</a><ul id='master_39'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Settings</a><ul id='master_9'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('loadcpass','_parent','MenuForm','')">Change Password</a><ul id='master_66'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitForm('logout','_parent','MenuForm')">Logout</a></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitForm('dashboard','_parent','MenuForm')">Dashboard</a></li></ul></form></div>
|
||||
@@ -1 +0,0 @@
|
||||
<div style='overflow:visible' id='MenuBar'><form method='post' name='MenuForm' id='MenuForm'><input type='hidden' id='pageval' name='pageval' value='' /><ul id='master_0'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Operations</a><ul id='master_4'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('optrreporting','_parent','MenuForm','')">Reporting</a><ul id='master_25'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">MIS</a><ul id='master_6'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Visit</a><ul id='master_59'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('oprdtrange','_parent','MenuForm','OPERATOR VISIT MIS!SPLT!259!SPLT!opdtmis!SPLT!opr')">Operatorwise</a><ul id='master_61'></ul></li></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Tools</a><ul id='master_8'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('mnimbleotp','_blank','MenuForm','')">Mnimble OTP</a><ul id='master_121'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Settings</a><ul id='master_9'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('loadcpass','_parent','MenuForm','')">Change Password</a><ul id='master_66'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitForm('logout','_parent','MenuForm')">Logout</a></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitForm('dashboard','_parent','MenuForm')">Dashboard</a></li></ul></form></div>
|
||||
File diff suppressed because one or more lines are too long
@@ -1 +0,0 @@
|
||||
<div style='overflow:visible' id='MenuBar'><form method='post' name='MenuForm' id='MenuForm'><input type='hidden' id='pageval' name='pageval' value='' /><ul id='master_0'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Operations</a><ul id='master_4'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('telreporting','_parent','MenuForm','')">Telecalling</a><ul id='master_27'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Settings</a><ul id='master_9'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('loadcpass','_parent','MenuForm','')">Change Password</a><ul id='master_66'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitForm('logout','_parent','MenuForm')">Logout</a></li></ul></form></div>
|
||||
@@ -1 +0,0 @@
|
||||
<div style='overflow:visible' id='MenuBar'><form method='post' name='MenuForm' id='MenuForm'><input type='hidden' id='pageval' name='pageval' value='' /><ul id='master_0'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Punching</a><ul id='master_1'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('initview','_parent','MenuForm','')">Add Cases</a><ul id='master_10'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Dedupe</a><ul id='master_3'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('rundedupe','_parent','MenuForm','')">Run Dedupe</a><ul id='master_17'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('dodedupe','_parent','MenuForm','')">Do Dedupe</a><ul id='master_18'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Settings</a><ul id='master_9'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('loadcpass','_parent','MenuForm','')">Change Password</a><ul id='master_66'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitForm('logout','_parent','MenuForm')">Logout</a></li></ul></form></div>
|
||||
@@ -1 +0,0 @@
|
||||
<div style='overflow:visible' id='MenuBar'><form method='post' name='MenuForm' id='MenuForm'><input type='hidden' id='pageval' name='pageval' value='' /><ul id='master_0'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Punching</a><ul id='master_1'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('initview','_parent','MenuForm','')">Add Cases</a><ul id='master_10'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Dedupe</a><ul id='master_3'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('rundedupe','_parent','MenuForm','')">Run Dedupe</a><ul id='master_17'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('dodedupe','_parent','MenuForm','')">Do Dedupe</a><ul id='master_18'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Settings</a><ul id='master_9'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('loadcpass','_parent','MenuForm','')">Change Password</a><ul id='master_66'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitForm('logout','_parent','MenuForm')">Logout</a></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitForm('dashboard','_parent','MenuForm')">Dashboard</a></li></ul></form></div>
|
||||
File diff suppressed because one or more lines are too long
@@ -1 +0,0 @@
|
||||
<div style='overflow:visible' id='MenuBar'><form method='post' name='MenuForm' id='MenuForm'><input type='hidden' id='pageval' name='pageval' value='' /><ul id='master_0'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Operations</a><ul id='master_4'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('optrreporting','_parent','MenuForm','')">Reporting</a><ul id='master_25'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">MIS</a><ul id='master_6'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Visit</a><ul id='master_59'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('oprdtrange','_parent','MenuForm','OPERATOR VISIT MIS!SPLT!259!SPLT!opdtmis!SPLT!opr')">Operatorwise</a><ul id='master_61'></ul></li></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Tools</a><ul id='master_8'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('mnimbleotp','_blank','MenuForm','')">Mnimble OTP</a><ul id='master_121'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Settings</a><ul id='master_9'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('loadcpass','_parent','MenuForm','')">Change Password</a><ul id='master_66'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitForm('logout','_parent','MenuForm')">Logout</a></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitForm('dashboard','_parent','MenuForm')">Dashboard</a></li></ul></form></div>
|
||||
@@ -1 +0,0 @@
|
||||
<div style='overflow:visible' id='MenuBar'><form method='post' name='MenuForm' id='MenuForm'><input type='hidden' id='pageval' name='pageval' value='' /><ul id='master_0'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Operations</a><ul id='master_4'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('telreporting','_parent','MenuForm','')">Telecalling</a><ul id='master_27'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Settings</a><ul id='master_9'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('loadcpass','_parent','MenuForm','')">Change Password</a><ul id='master_66'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitForm('logout','_parent','MenuForm')">Logout</a></li></ul></form></div>
|
||||
@@ -1 +0,0 @@
|
||||
<div style='overflow:visible' id='MenuBar'><form method='post' name='MenuForm' id='MenuForm'><input type='hidden' id='pageval' name='pageval' value='' /><ul id='master_0'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Operations</a><ul id='master_4'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('scanreporting','_parent','MenuForm','')">Scanning</a><ul id='master_28'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Bank Reports</a><ul id='master_5'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('bankreport','_parent','MenuForm','')">Banklist</a><ul id='master_33'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('reportupload','_parent','MenuForm','')">Upload Reports</a><ul id='master_65'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">MIS</a><ul id='master_6'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Visit</a><ul id='master_59'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('portdaterange','_parent','MenuForm','PORTFOLIOWISE PHOTO MIS!SPLT!355!SPLT!pdtmis')">Photo MIS</a><ul id='master_101'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Trackers</a><ul id='master_67'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('portdtoptrange','_parent','MenuForm','TRACKER GENERATOR!SPLT!214!SPLT!pdtomis')">Daily Trackers</a><ul id='master_68'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('portdtrange','_parent','MenuForm','POV TRACKER GENERATOR!SPLT!254!SPLT!pdtmis')">POV Trackers</a><ul id='master_79'></ul></li></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Tools</a><ul id='master_8'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('emails','_parent','MenuForm','bankreports')">Mailbox</a><ul id='master_39'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('matrixquery','_blank','MenuForm','')">Query</a><ul id='master_34'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('editgrid','_blank','MenuForm','')">Edit Cases</a><ul id='master_11'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Portfolio</a><ul id='master_97'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('manageemailids','_parent','MenuForm','')">Manage Email IDs</a><ul id='master_99'></ul></li></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Settings</a><ul id='master_9'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('loadcpass','_parent','MenuForm','')">Change Password</a><ul id='master_66'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitForm('logout','_parent','MenuForm')">Logout</a></li></ul></form></div>
|
||||
@@ -1 +0,0 @@
|
||||
<div style='overflow:visible' id='MenuBar'><form method='post' name='MenuForm' id='MenuForm'><input type='hidden' id='pageval' name='pageval' value='' /><ul id='master_0'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Operations</a><ul id='master_4'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('scanreporting','_parent','MenuForm','')">Scanning</a><ul id='master_28'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Bank Reports</a><ul id='master_5'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('bankreport','_parent','MenuForm','')">Banklist</a><ul id='master_33'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('reportupload','_parent','MenuForm','')">Upload Reports</a><ul id='master_65'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">MIS</a><ul id='master_6'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Received Cases</a><ul id='master_22'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('portdtrange','_parent','MenuForm','PORTFOLIOWISE RECEIVED CASES!SPLT!137!SPLT!pdtmis')">Portfoliowise</a><ul id='master_44'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Visit</a><ul id='master_59'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('portverdtrange','_parent','MenuForm','PORTFOLIOWISE VISIT MIS!SPLT!234!SPLT!pvdtvismis')">Portfoliowise</a><ul id='master_70'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('portdaterange','_parent','MenuForm','PORTFOLIOWISE PHOTO MIS!SPLT!355!SPLT!pdtmis')">Photo MIS</a><ul id='master_101'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Trackers</a><ul id='master_67'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('portdtoptrange','_parent','MenuForm','TRACKER GENERATOR!SPLT!214!SPLT!pdtomis')">Daily Trackers</a><ul id='master_68'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('portdtrange','_parent','MenuForm','POV TRACKER GENERATOR!SPLT!254!SPLT!pdtmis')">POV Trackers</a><ul id='master_79'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('trackergenerator','_blank','MenuForm','')">Tracker V1</a><ul id='master_125'></ul></li></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Tools</a><ul id='master_8'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('emails','_parent','MenuForm','bankreports')">Mailbox</a><ul id='master_39'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('matrixquery','_blank','MenuForm','')">Query</a><ul id='master_34'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('editgrid','_blank','MenuForm','')">Edit Cases</a><ul id='master_11'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Portfolio</a><ul id='master_97'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('manageemailids','_parent','MenuForm','')">Manage Email IDs</a><ul id='master_99'></ul></li></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Settings</a><ul id='master_9'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('loadcpass','_parent','MenuForm','')">Change Password</a><ul id='master_66'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitForm('logout','_parent','MenuForm')">Logout</a></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitForm('dashboard','_parent','MenuForm')">Dashboard</a></li></ul></form></div>
|
||||
@@ -1 +0,0 @@
|
||||
<div style='overflow:visible' id='MenuBar'><form method='post' name='MenuForm' id='MenuForm'><input type='hidden' id='pageval' name='pageval' value='' /><ul id='master_0'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Operations</a><ul id='master_4'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('negupdrequests','_parent','MenuForm','')">Updation Requests</a><ul id='master_86'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">MIS</a><ul id='master_6'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Tools</a><ul id='master_8'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Settings</a><ul id='master_9'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('loadcpass','_parent','MenuForm','')">Change Password</a><ul id='master_66'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitForm('logout','_parent','MenuForm')">Logout</a></li></ul></form></div>
|
||||
@@ -1 +0,0 @@
|
||||
<div style='overflow:visible' id='MenuBar'><form method='post' name='MenuForm' id='MenuForm'><input type='hidden' id='pageval' name='pageval' value='' /><ul id='master_0'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Operations</a><ul id='master_4'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('scanreporting','_parent','MenuForm','')">Scanning</a><ul id='master_28'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Bank Reports</a><ul id='master_5'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('bankreport','_parent','MenuForm','')">Banklist</a><ul id='master_33'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('reportupload','_parent','MenuForm','')">Upload Reports</a><ul id='master_65'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">MIS</a><ul id='master_6'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Visit</a><ul id='master_59'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('portdaterange','_parent','MenuForm','PORTFOLIOWISE PHOTO MIS!SPLT!355!SPLT!pdtmis')">Photo MIS</a><ul id='master_101'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Trackers</a><ul id='master_67'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('portdtoptrange','_parent','MenuForm','TRACKER GENERATOR!SPLT!214!SPLT!pdtomis')">Daily Trackers</a><ul id='master_68'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('portdtrange','_parent','MenuForm','POV TRACKER GENERATOR!SPLT!254!SPLT!pdtmis')">POV Trackers</a><ul id='master_79'></ul></li></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Tools</a><ul id='master_8'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('emails','_parent','MenuForm','bankreports')">Mailbox</a><ul id='master_39'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('matrixquery','_blank','MenuForm','')">Query</a><ul id='master_34'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('editgrid','_blank','MenuForm','')">Edit Cases</a><ul id='master_11'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Portfolio</a><ul id='master_97'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('manageemailids','_parent','MenuForm','')">Manage Email IDs</a><ul id='master_99'></ul></li></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Settings</a><ul id='master_9'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('loadcpass','_parent','MenuForm','')">Change Password</a><ul id='master_66'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitForm('logout','_parent','MenuForm')">Logout</a></li></ul></form></div>
|
||||
@@ -1 +0,0 @@
|
||||
<div style='overflow:visible' id='MenuBar'><form method='post' name='MenuForm' id='MenuForm'><input type='hidden' id='pageval' name='pageval' value='' /><ul id='master_0'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Operations</a><ul id='master_4'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('optrreporting','_parent','MenuForm','')">Reporting</a><ul id='master_25'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">MIS</a><ul id='master_6'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Visit</a><ul id='master_59'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('oprdtrange','_parent','MenuForm','OPERATOR VISIT MIS!SPLT!259!SPLT!opdtmis!SPLT!opr')">Operatorwise</a><ul id='master_61'></ul></li></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Tools</a><ul id='master_8'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Settings</a><ul id='master_9'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('loadcpass','_parent','MenuForm','')">Change Password</a><ul id='master_66'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitForm('logout','_parent','MenuForm')">Logout</a></li></ul></form></div>
|
||||
@@ -1 +0,0 @@
|
||||
<div style='overflow:visible' id='MenuBar'><form method='post' name='MenuForm' id='MenuForm'><input type='hidden' id='pageval' name='pageval' value='' /><ul id='master_0'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Operations</a><ul id='master_4'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('telreporting','_parent','MenuForm','')">Telecalling</a><ul id='master_27'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Settings</a><ul id='master_9'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('loadcpass','_parent','MenuForm','')">Change Password</a><ul id='master_66'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitForm('logout','_parent','MenuForm')">Logout</a></li></ul></form></div>
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -1 +0,0 @@
|
||||
<div style='overflow:visible' id='MenuBar'><form method='post' name='MenuForm' id='MenuForm'><input type='hidden' id='pageval' name='pageval' value='' /><ul id='master_0'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Operations</a><ul id='master_4'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('scanreporting','_parent','MenuForm','')">Scanning</a><ul id='master_28'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Bank Reports</a><ul id='master_5'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('bankreport','_parent','MenuForm','')">Banklist</a><ul id='master_33'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('reportupload','_parent','MenuForm','')">Upload Reports</a><ul id='master_65'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">MIS</a><ul id='master_6'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Trackers</a><ul id='master_67'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('portdtoptrange','_parent','MenuForm','TRACKER GENERATOR!SPLT!214!SPLT!pdtomis')">Daily Trackers</a><ul id='master_68'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('portdtrange','_parent','MenuForm','POV TRACKER GENERATOR!SPLT!254!SPLT!pdtmis')">POV Trackers</a><ul id='master_79'></ul></li></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Tools</a><ul id='master_8'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('emails','_parent','MenuForm','bankreports')">Mailbox</a><ul id='master_39'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('matrixquery','_blank','MenuForm','')">Query</a><ul id='master_34'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('editgrid','_blank','MenuForm','')">Edit Cases</a><ul id='master_11'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Portfolio</a><ul id='master_97'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('manageemailids','_parent','MenuForm','')">Manage Email IDs</a><ul id='master_99'></ul></li></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Settings</a><ul id='master_9'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('loadcpass','_parent','MenuForm','')">Change Password</a><ul id='master_66'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitForm('logout','_parent','MenuForm')">Logout</a></li></ul></form></div>
|
||||
File diff suppressed because one or more lines are too long
@@ -1 +0,0 @@
|
||||
<div style='overflow:visible' id='MenuBar'><form method='post' name='MenuForm' id='MenuForm'><input type='hidden' id='pageval' name='pageval' value='' /><ul id='master_0'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Operations</a><ul id='master_4'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('optrreporting','_parent','MenuForm','')">Reporting</a><ul id='master_25'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">MIS</a><ul id='master_6'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Visit</a><ul id='master_59'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('oprdtrange','_parent','MenuForm','OPERATOR VISIT MIS!SPLT!259!SPLT!opdtmis!SPLT!opr')">Operatorwise</a><ul id='master_61'></ul></li></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Tools</a><ul id='master_8'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('mnimbleotp','_blank','MenuForm','')">Mnimble OTP</a><ul id='master_121'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Settings</a><ul id='master_9'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('loadcpass','_parent','MenuForm','')">Change Password</a><ul id='master_66'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitForm('logout','_parent','MenuForm')">Logout</a></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitForm('dashboard','_parent','MenuForm')">Dashboard</a></li></ul></form></div>
|
||||
File diff suppressed because one or more lines are too long
@@ -1 +0,0 @@
|
||||
<div style='overflow:visible' id='MenuBar'><form method='post' name='MenuForm' id='MenuForm'><input type='hidden' id='pageval' name='pageval' value='' /><ul id='master_0'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Punching</a><ul id='master_1'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('initview','_parent','MenuForm','')">Add Cases</a><ul id='master_10'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('caseupload','_parent','MenuForm','')">Upload Cases</a><ul id='master_12'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Cut Off</a><ul id='master_2'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('cutoff','_parent','MenuForm','')">Start Cut</a><ul id='master_13'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('allocation','_parent','MenuForm','')">Allocation</a><ul id='master_14'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('telesheet','_parent','MenuForm','')">Tele-Sheet</a><ul id='master_16'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('refsheet','_parent','MenuForm','')">Reference Sheet</a><ul id='master_69'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('sendtoopr','_parent','MenuForm','')">Send To Operation</a><ul id='master_19'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Dedupe</a><ul id='master_3'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('rundedupe','_parent','MenuForm','')">Run Dedupe</a><ul id='master_17'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('dodedupe','_parent','MenuForm','')">Do Dedupe</a><ul id='master_18'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('senddedupe','_parent','MenuForm','')">Send Dedupe</a><ul id='master_41'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">MIS</a><ul id='master_6'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Trackers</a><ul id='master_67'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('portdtoptrange','_parent','MenuForm','TRACKER GENERATOR!SPLT!214!SPLT!pdtomis')">Daily Trackers</a><ul id='master_68'></ul></li></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Tools</a><ul id='master_8'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('emails','_parent','MenuForm','dedupesend')">Mailbox</a><ul id='master_39'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('sms','_parent','MenuForm','37!SPLT!40')">SMS</a><ul id='master_15'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('photocases','_parent','MenuForm','')">MNimble List</a><ul id='master_84'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Settings</a><ul id='master_9'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('loadcpass','_parent','MenuForm','')">Change Password</a><ul id='master_66'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitForm('logout','_parent','MenuForm')">Logout</a></li></ul></form></div>
|
||||
@@ -1 +0,0 @@
|
||||
<div style='overflow:visible' id='MenuBar'><form method='post' name='MenuForm' id='MenuForm'><input type='hidden' id='pageval' name='pageval' value='' /><ul id='master_0'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Operations</a><ul id='master_4'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('telreporting','_parent','MenuForm','')">Telecalling</a><ul id='master_27'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Settings</a><ul id='master_9'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('loadcpass','_parent','MenuForm','')">Change Password</a><ul id='master_66'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitForm('logout','_parent','MenuForm')">Logout</a></li></ul></form></div>
|
||||
@@ -1 +0,0 @@
|
||||
<div style='overflow:visible' id='MenuBar'><form method='post' name='MenuForm' id='MenuForm'><input type='hidden' id='pageval' name='pageval' value='' /><ul id='master_0'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Operations</a><ul id='master_4'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('scanreporting','_parent','MenuForm','')">Scanning</a><ul id='master_28'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Bank Reports</a><ul id='master_5'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('bankreport','_parent','MenuForm','')">Banklist</a><ul id='master_33'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('reportupload','_parent','MenuForm','')">Upload Reports</a><ul id='master_65'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">MIS</a><ul id='master_6'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Received Cases</a><ul id='master_22'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('portdtrange','_parent','MenuForm','PORTFOLIOWISE RECEIVED CASES!SPLT!137!SPLT!pdtmis')">Portfoliowise</a><ul id='master_44'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Visit</a><ul id='master_59'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('portverdtrange','_parent','MenuForm','PORTFOLIOWISE VISIT MIS!SPLT!234!SPLT!pvdtvismis')">Portfoliowise</a><ul id='master_70'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('portdaterange','_parent','MenuForm','PORTFOLIOWISE PHOTO MIS!SPLT!355!SPLT!pdtmis')">Photo MIS</a><ul id='master_101'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Trackers</a><ul id='master_67'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('portdtoptrange','_parent','MenuForm','TRACKER GENERATOR!SPLT!214!SPLT!pdtomis')">Daily Trackers</a><ul id='master_68'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('portdtrange','_parent','MenuForm','POV TRACKER GENERATOR!SPLT!254!SPLT!pdtmis')">POV Trackers</a><ul id='master_79'></ul></li></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Tools</a><ul id='master_8'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('emails','_parent','MenuForm','bankreports')">Mailbox</a><ul id='master_39'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('matrixquery','_blank','MenuForm','')">Query</a><ul id='master_34'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('editgrid','_blank','MenuForm','')">Edit Cases</a><ul id='master_11'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Portfolio</a><ul id='master_97'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('manageemailids','_parent','MenuForm','')">Manage Email IDs</a><ul id='master_99'></ul></li></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Settings</a><ul id='master_9'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('loadcpass','_parent','MenuForm','')">Change Password</a><ul id='master_66'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitForm('logout','_parent','MenuForm')">Logout</a></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitForm('dashboard','_parent','MenuForm')">Dashboard</a></li></ul></form></div>
|
||||
@@ -1 +0,0 @@
|
||||
<div style='overflow:visible' id='MenuBar'><form method='post' name='MenuForm' id='MenuForm'><input type='hidden' id='pageval' name='pageval' value='' /><ul id='master_0'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Operations</a><ul id='master_4'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('optrreporting','_parent','MenuForm','')">Reporting</a><ul id='master_25'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">MIS</a><ul id='master_6'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Visit</a><ul id='master_59'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('oprdtrange','_parent','MenuForm','OPERATOR VISIT MIS!SPLT!259!SPLT!opdtmis!SPLT!opr')">Operatorwise</a><ul id='master_61'></ul></li></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Tools</a><ul id='master_8'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('casetransfer','_blank','MenuForm','')">Case Transfer</a><ul id='master_35'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Settings</a><ul id='master_9'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('loadcpass','_parent','MenuForm','')">Change Password</a><ul id='master_66'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitForm('logout','_parent','MenuForm')">Logout</a></li></ul></form></div>
|
||||
@@ -1 +0,0 @@
|
||||
<div style='overflow:visible' id='MenuBar'><form method='post' name='MenuForm' id='MenuForm'><input type='hidden' id='pageval' name='pageval' value='' /><ul id='master_0'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Operations</a><ul id='master_4'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('optrreporting','_parent','MenuForm','')">Reporting</a><ul id='master_25'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">MIS</a><ul id='master_6'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Visit</a><ul id='master_59'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('oprdtrange','_parent','MenuForm','OPERATOR VISIT MIS!SPLT!259!SPLT!opdtmis!SPLT!opr')">Operatorwise</a><ul id='master_61'></ul></li></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Tools</a><ul id='master_8'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('casetransfer','_blank','MenuForm','')">Case Transfer</a><ul id='master_35'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Settings</a><ul id='master_9'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('loadcpass','_parent','MenuForm','')">Change Password</a><ul id='master_66'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitForm('logout','_parent','MenuForm')">Logout</a></li></ul></form></div>
|
||||
@@ -1 +0,0 @@
|
||||
<div style='overflow:visible' id='MenuBar'><form method='post' name='MenuForm' id='MenuForm'><input type='hidden' id='pageval' name='pageval' value='' /><ul id='master_0'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Operations</a><ul id='master_4'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('optrreporting','_parent','MenuForm','')">Reporting</a><ul id='master_25'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">MIS</a><ul id='master_6'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Visit</a><ul id='master_59'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('oprdtrange','_parent','MenuForm','OPERATOR VISIT MIS!SPLT!259!SPLT!opdtmis!SPLT!opr')">Operatorwise</a><ul id='master_61'></ul></li></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Tools</a><ul id='master_8'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('casetransfer','_blank','MenuForm','')">Case Transfer</a><ul id='master_35'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Settings</a><ul id='master_9'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('loadcpass','_parent','MenuForm','')">Change Password</a><ul id='master_66'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitForm('logout','_parent','MenuForm')">Logout</a></li></ul></form></div>
|
||||
File diff suppressed because one or more lines are too long
@@ -1 +0,0 @@
|
||||
<div style='overflow:visible' id='MenuBar'><form method='post' name='MenuForm' id='MenuForm'><input type='hidden' id='pageval' name='pageval' value='' /><ul id='master_0'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Operations</a><ul id='master_4'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('bksoftreporting','_parent','MenuForm','')">Bank Updation</a><ul id='master_85'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Settings</a><ul id='master_9'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('loadcpass','_parent','MenuForm','')">Change Password</a><ul id='master_66'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitForm('logout','_parent','MenuForm')">Logout</a></li></ul></form></div>
|
||||
@@ -1 +0,0 @@
|
||||
<div style='overflow:visible' id='MenuBar'><form method='post' name='MenuForm' id='MenuForm'><input type='hidden' id='pageval' name='pageval' value='' /><ul id='master_0'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Operations</a><ul id='master_4'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('bksoftreporting','_parent','MenuForm','')">Bank Updation</a><ul id='master_85'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Settings</a><ul id='master_9'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('loadcpass','_parent','MenuForm','')">Change Password</a><ul id='master_66'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitForm('logout','_parent','MenuForm')">Logout</a></li></ul></form></div>
|
||||
@@ -1 +0,0 @@
|
||||
<div style='overflow:visible' id='MenuBar'><form method='post' name='MenuForm' id='MenuForm'><input type='hidden' id='pageval' name='pageval' value='' /><ul id='master_0'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Operations</a><ul id='master_4'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('bksoftreporting','_parent','MenuForm','')">Bank Updation</a><ul id='master_85'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Settings</a><ul id='master_9'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('loadcpass','_parent','MenuForm','')">Change Password</a><ul id='master_66'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitForm('logout','_parent','MenuForm')">Logout</a></li></ul></form></div>
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -1 +0,0 @@
|
||||
<div style='overflow:visible' id='MenuBar'><form method='post' name='MenuForm' id='MenuForm'><input type='hidden' id='pageval' name='pageval' value='' /><ul id='master_0'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Punching</a><ul id='master_1'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('initview','_parent','MenuForm','')">Add Cases</a><ul id='master_10'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('caseupload','_parent','MenuForm','')">Upload Cases</a><ul id='master_12'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Cut Off</a><ul id='master_2'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('cutoff','_parent','MenuForm','')">Start Cut</a><ul id='master_13'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('allocation','_parent','MenuForm','')">Allocation</a><ul id='master_14'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('telesheet','_parent','MenuForm','')">Tele-Sheet</a><ul id='master_16'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('refsheet','_parent','MenuForm','')">Reference Sheet</a><ul id='master_69'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('sendtoopr','_parent','MenuForm','')">Send To Operation</a><ul id='master_19'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Dedupe</a><ul id='master_3'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('rundedupe','_parent','MenuForm','')">Run Dedupe</a><ul id='master_17'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('dodedupe','_parent','MenuForm','')">Do Dedupe</a><ul id='master_18'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('senddedupe','_parent','MenuForm','')">Send Dedupe</a><ul id='master_41'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">MIS</a><ul id='master_6'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Trackers</a><ul id='master_67'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('portdtoptrange','_parent','MenuForm','TRACKER GENERATOR!SPLT!214!SPLT!pdtomis')">Daily Trackers</a><ul id='master_68'></ul></li></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Tools</a><ul id='master_8'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('emails','_parent','MenuForm','dedupesend')">Mailbox</a><ul id='master_39'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('sms','_parent','MenuForm','37!SPLT!40')">SMS</a><ul id='master_15'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('photocases','_parent','MenuForm','')">MNimble List</a><ul id='master_84'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Settings</a><ul id='master_9'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('loadcpass','_parent','MenuForm','')">Change Password</a><ul id='master_66'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitForm('logout','_parent','MenuForm')">Logout</a></li></ul></form></div>
|
||||
@@ -1 +0,0 @@
|
||||
<div style='overflow:visible' id='MenuBar'><form method='post' name='MenuForm' id='MenuForm'><input type='hidden' id='pageval' name='pageval' value='' /><ul id='master_0'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Punching</a><ul id='master_1'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('initview','_parent','MenuForm','')">Add Cases</a><ul id='master_10'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('caseupload','_parent','MenuForm','')">Upload Cases</a><ul id='master_12'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Cut Off</a><ul id='master_2'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('cutoff','_parent','MenuForm','')">Start Cut</a><ul id='master_13'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('allocation','_parent','MenuForm','')">Allocation</a><ul id='master_14'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('telesheet','_parent','MenuForm','')">Tele-Sheet</a><ul id='master_16'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('refsheet','_parent','MenuForm','')">Reference Sheet</a><ul id='master_69'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('sendtoopr','_parent','MenuForm','')">Send To Operation</a><ul id='master_19'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Dedupe</a><ul id='master_3'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('rundedupe','_parent','MenuForm','')">Run Dedupe</a><ul id='master_17'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('dodedupe','_parent','MenuForm','')">Do Dedupe</a><ul id='master_18'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('senddedupe','_parent','MenuForm','')">Send Dedupe</a><ul id='master_41'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">MIS</a><ul id='master_6'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Trackers</a><ul id='master_67'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('portdtoptrange','_parent','MenuForm','TRACKER GENERATOR!SPLT!214!SPLT!pdtomis')">Daily Trackers</a><ul id='master_68'></ul></li></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Tools</a><ul id='master_8'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('emails','_parent','MenuForm','dedupesend')">Mailbox</a><ul id='master_39'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('sms','_parent','MenuForm','37!SPLT!40')">SMS</a><ul id='master_15'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('photocases','_parent','MenuForm','')">MNimble List</a><ul id='master_84'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Settings</a><ul id='master_9'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('loadcpass','_parent','MenuForm','')">Change Password</a><ul id='master_66'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitForm('logout','_parent','MenuForm')">Logout</a></li></ul></form></div>
|
||||
@@ -1 +0,0 @@
|
||||
<div style='overflow:visible' id='MenuBar'><form method='post' name='MenuForm' id='MenuForm'><input type='hidden' id='pageval' name='pageval' value='' /><ul id='master_0'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Operations</a><ul id='master_4'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('scanreporting','_parent','MenuForm','')">Scanning</a><ul id='master_28'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Bank Reports</a><ul id='master_5'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('bankreport','_parent','MenuForm','')">Banklist</a><ul id='master_33'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('reportupload','_parent','MenuForm','')">Upload Reports</a><ul id='master_65'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">MIS</a><ul id='master_6'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Trackers</a><ul id='master_67'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('portdtoptrange','_parent','MenuForm','TRACKER GENERATOR!SPLT!214!SPLT!pdtomis')">Daily Trackers</a><ul id='master_68'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('portdtrange','_parent','MenuForm','POV TRACKER GENERATOR!SPLT!254!SPLT!pdtmis')">POV Trackers</a><ul id='master_79'></ul></li></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Tools</a><ul id='master_8'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('emails','_parent','MenuForm','bankreports')">Mailbox</a><ul id='master_39'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('matrixquery','_blank','MenuForm','')">Query</a><ul id='master_34'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('editgrid','_blank','MenuForm','')">Edit Cases</a><ul id='master_11'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Portfolio</a><ul id='master_97'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('manageemailids','_parent','MenuForm','')">Manage Email IDs</a><ul id='master_99'></ul></li></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Settings</a><ul id='master_9'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('loadcpass','_parent','MenuForm','')">Change Password</a><ul id='master_66'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitForm('logout','_parent','MenuForm')">Logout</a></li></ul></form></div>
|
||||
File diff suppressed because one or more lines are too long
@@ -1 +0,0 @@
|
||||
<div style='overflow:visible' id='MenuBar'><form method='post' name='MenuForm' id='MenuForm'><input type='hidden' id='pageval' name='pageval' value='' /><ul id='master_0'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Punching</a><ul id='master_1'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('initview','_parent','MenuForm','')">Add Cases</a><ul id='master_10'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Dedupe</a><ul id='master_3'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('rundedupe','_parent','MenuForm','')">Run Dedupe</a><ul id='master_17'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('dodedupe','_parent','MenuForm','')">Do Dedupe</a><ul id='master_18'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Settings</a><ul id='master_9'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('loadcpass','_parent','MenuForm','')">Change Password</a><ul id='master_66'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitForm('logout','_parent','MenuForm')">Logout</a></li></ul></form></div>
|
||||
@@ -1 +0,0 @@
|
||||
<div style='overflow:visible' id='MenuBar'><form method='post' name='MenuForm' id='MenuForm'><input type='hidden' id='pageval' name='pageval' value='' /><ul id='master_0'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Operations</a><ul id='master_4'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('bksoftreporting','_parent','MenuForm','')">Bank Updation</a><ul id='master_85'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Settings</a><ul id='master_9'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('loadcpass','_parent','MenuForm','')">Change Password</a><ul id='master_66'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitForm('logout','_parent','MenuForm')">Logout</a></li></ul></form></div>
|
||||
File diff suppressed because one or more lines are too long
@@ -1 +0,0 @@
|
||||
<div style='overflow:visible' id='MenuBar'><form method='post' name='MenuForm' id='MenuForm'><input type='hidden' id='pageval' name='pageval' value='' /><ul id='master_0'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Operations</a><ul id='master_4'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('optrreporting','_parent','MenuForm','')">Reporting</a><ul id='master_25'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">MIS</a><ul id='master_6'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Visit</a><ul id='master_59'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('oprdtrange','_parent','MenuForm','OPERATOR VISIT MIS!SPLT!259!SPLT!opdtmis!SPLT!opr')">Operatorwise</a><ul id='master_61'></ul></li></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Tools</a><ul id='master_8'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('casetransfer','_blank','MenuForm','')">Case Transfer</a><ul id='master_35'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Settings</a><ul id='master_9'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('loadcpass','_parent','MenuForm','')">Change Password</a><ul id='master_66'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitForm('logout','_parent','MenuForm')">Logout</a></li></ul></form></div>
|
||||
@@ -1 +0,0 @@
|
||||
<div style='overflow:visible' id='MenuBar'><form method='post' name='MenuForm' id='MenuForm'><input type='hidden' id='pageval' name='pageval' value='' /><ul id='master_0'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Operations</a><ul id='master_4'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('bksoftreporting','_parent','MenuForm','')">Bank Updation</a><ul id='master_85'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Settings</a><ul id='master_9'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('loadcpass','_parent','MenuForm','')">Change Password</a><ul id='master_66'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitForm('logout','_parent','MenuForm')">Logout</a></li></ul></form></div>
|
||||
@@ -1 +0,0 @@
|
||||
<div style='overflow:visible' id='MenuBar'><form method='post' name='MenuForm' id='MenuForm'><input type='hidden' id='pageval' name='pageval' value='' /><ul id='master_0'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Punching</a><ul id='master_1'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('initview','_parent','MenuForm','')">Add Cases</a><ul id='master_10'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Dedupe</a><ul id='master_3'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('rundedupe','_parent','MenuForm','')">Run Dedupe</a><ul id='master_17'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('dodedupe','_parent','MenuForm','')">Do Dedupe</a><ul id='master_18'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Settings</a><ul id='master_9'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('loadcpass','_parent','MenuForm','')">Change Password</a><ul id='master_66'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitForm('logout','_parent','MenuForm')">Logout</a></li></ul></form></div>
|
||||
@@ -1 +0,0 @@
|
||||
<div style='overflow:visible' id='MenuBar'><form method='post' name='MenuForm' id='MenuForm'><input type='hidden' id='pageval' name='pageval' value='' /><ul id='master_0'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Punching</a><ul id='master_1'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('initview','_parent','MenuForm','')">Add Cases</a><ul id='master_10'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Dedupe</a><ul id='master_3'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('rundedupe','_parent','MenuForm','')">Run Dedupe</a><ul id='master_17'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('dodedupe','_parent','MenuForm','')">Do Dedupe</a><ul id='master_18'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Settings</a><ul id='master_9'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('loadcpass','_parent','MenuForm','')">Change Password</a><ul id='master_66'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitForm('logout','_parent','MenuForm')">Logout</a></li></ul></form></div>
|
||||
File diff suppressed because one or more lines are too long
@@ -1 +0,0 @@
|
||||
<div style='overflow:visible' id='MenuBar'><form method='post' name='MenuForm' id='MenuForm'><input type='hidden' id='pageval' name='pageval' value='' /><ul id='master_0'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Punching</a><ul id='master_1'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('initview','_parent','MenuForm','')">Add Cases</a><ul id='master_10'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('caseupload','_parent','MenuForm','')">Upload Cases</a><ul id='master_12'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Cut Off</a><ul id='master_2'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('cutoff','_parent','MenuForm','')">Start Cut</a><ul id='master_13'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('allocation','_parent','MenuForm','')">Allocation</a><ul id='master_14'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('telesheet','_parent','MenuForm','')">Tele-Sheet</a><ul id='master_16'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('refsheet','_parent','MenuForm','')">Reference Sheet</a><ul id='master_69'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('sendtoopr','_parent','MenuForm','')">Send To Operation</a><ul id='master_19'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Dedupe</a><ul id='master_3'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('rundedupe','_parent','MenuForm','')">Run Dedupe</a><ul id='master_17'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('dodedupe','_parent','MenuForm','')">Do Dedupe</a><ul id='master_18'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('senddedupe','_parent','MenuForm','')">Send Dedupe</a><ul id='master_41'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">MIS</a><ul id='master_6'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Trackers</a><ul id='master_67'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('portdtoptrange','_parent','MenuForm','TRACKER GENERATOR!SPLT!214!SPLT!pdtomis')">Daily Trackers</a><ul id='master_68'></ul></li></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Tools</a><ul id='master_8'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('emails','_parent','MenuForm','dedupesend')">Mailbox</a><ul id='master_39'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Manage Users</a><ul id='master_105'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('inituser','_parent','MenuForm','')">Add/Edit Users</a><ul id='master_106'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Settings</a><ul id='master_9'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('loadcpass','_parent','MenuForm','')">Change Password</a><ul id='master_66'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitForm('logout','_parent','MenuForm')">Logout</a></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitForm('dashboard','_parent','MenuForm')">Dashboard</a></li></ul></form></div>
|
||||
@@ -1 +0,0 @@
|
||||
<div style='overflow:visible' id='MenuBar'><form method='post' name='MenuForm' id='MenuForm'><input type='hidden' id='pageval' name='pageval' value='' /><ul id='master_0'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Operations</a><ul id='master_4'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('scanreporting','_parent','MenuForm','')">Scanning</a><ul id='master_28'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Bank Reports</a><ul id='master_5'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('bankreport','_parent','MenuForm','')">Banklist</a><ul id='master_33'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('reportupload','_parent','MenuForm','')">Upload Reports</a><ul id='master_65'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">MIS</a><ul id='master_6'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Received Cases</a><ul id='master_22'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('portdtrange','_parent','MenuForm','PORTFOLIOWISE RECEIVED CASES!SPLT!137!SPLT!pdtmis')">Portfoliowise</a><ul id='master_44'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Visit</a><ul id='master_59'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('portverdtrange','_parent','MenuForm','PORTFOLIOWISE VISIT MIS!SPLT!234!SPLT!pvdtvismis')">Portfoliowise</a><ul id='master_70'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('portdaterange','_parent','MenuForm','PORTFOLIOWISE PHOTO MIS!SPLT!355!SPLT!pdtmis')">Photo MIS</a><ul id='master_101'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Trackers</a><ul id='master_67'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('portdtoptrange','_parent','MenuForm','TRACKER GENERATOR!SPLT!214!SPLT!pdtomis')">Daily Trackers</a><ul id='master_68'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('portdtrange','_parent','MenuForm','POV TRACKER GENERATOR!SPLT!254!SPLT!pdtmis')">POV Trackers</a><ul id='master_79'></ul></li></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Tools</a><ul id='master_8'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('emails','_parent','MenuForm','bankreports')">Mailbox</a><ul id='master_39'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('matrixquery','_blank','MenuForm','')">Query</a><ul id='master_34'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('editgrid','_blank','MenuForm','')">Edit Cases</a><ul id='master_11'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Portfolio</a><ul id='master_97'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('manageemailids','_parent','MenuForm','')">Manage Email IDs</a><ul id='master_99'></ul></li></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Settings</a><ul id='master_9'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('loadcpass','_parent','MenuForm','')">Change Password</a><ul id='master_66'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitForm('logout','_parent','MenuForm')">Logout</a></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitForm('dashboard','_parent','MenuForm')">Dashboard</a></li></ul></form></div>
|
||||
@@ -1 +0,0 @@
|
||||
<div style='overflow:visible' id='MenuBar'><form method='post' name='MenuForm' id='MenuForm'><input type='hidden' id='pageval' name='pageval' value='' /><ul id='master_0'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Operations</a><ul id='master_4'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('optrreporting','_parent','MenuForm','')">Reporting</a><ul id='master_25'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">MIS</a><ul id='master_6'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Visit</a><ul id='master_59'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('oprdtrange','_parent','MenuForm','OPERATOR VISIT MIS!SPLT!259!SPLT!opdtmis!SPLT!opr')">Operatorwise</a><ul id='master_61'></ul></li></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Tools</a><ul id='master_8'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('casetransfer','_blank','MenuForm','')">Case Transfer</a><ul id='master_35'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Mnimble</a><ul id='master_129'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('mnimbleotp','_blank','MenuForm','')">Mnimble OTP</a><ul id='master_121'></ul></li></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Settings</a><ul id='master_9'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('loadcpass','_parent','MenuForm','')">Change Password</a><ul id='master_66'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitForm('logout','_parent','MenuForm')">Logout</a></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitForm('dashboard','_parent','MenuForm')">Dashboard</a></li></ul></form></div>
|
||||
@@ -1 +0,0 @@
|
||||
<div style='overflow:visible' id='MenuBar'><form method='post' name='MenuForm' id='MenuForm'><input type='hidden' id='pageval' name='pageval' value='' /><ul id='master_0'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Operations</a><ul id='master_4'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('optrreporting','_parent','MenuForm','')">Reporting</a><ul id='master_25'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">MIS</a><ul id='master_6'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Visit</a><ul id='master_59'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('oprdtrange','_parent','MenuForm','OPERATOR VISIT MIS!SPLT!259!SPLT!opdtmis!SPLT!opr')">Operatorwise</a><ul id='master_61'></ul></li></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Tools</a><ul id='master_8'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('casetransfer','_blank','MenuForm','')">Case Transfer</a><ul id='master_35'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Settings</a><ul id='master_9'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('loadcpass','_parent','MenuForm','')">Change Password</a><ul id='master_66'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitForm('logout','_parent','MenuForm')">Logout</a></li></ul></form></div>
|
||||
@@ -1 +0,0 @@
|
||||
<div style='overflow:visible' id='MenuBar'><form method='post' name='MenuForm' id='MenuForm'><input type='hidden' id='pageval' name='pageval' value='' /><ul id='master_0'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Punching</a><ul id='master_1'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('initview','_parent','MenuForm','')">Add Cases</a><ul id='master_10'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Dedupe</a><ul id='master_3'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('rundedupe','_parent','MenuForm','')">Run Dedupe</a><ul id='master_17'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('dodedupe','_parent','MenuForm','')">Do Dedupe</a><ul id='master_18'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Settings</a><ul id='master_9'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('loadcpass','_parent','MenuForm','')">Change Password</a><ul id='master_66'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitForm('logout','_parent','MenuForm')">Logout</a></li></ul></form></div>
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -1 +0,0 @@
|
||||
<div style='overflow:visible' id='MenuBar'><form method='post' name='MenuForm' id='MenuForm'><input type='hidden' id='pageval' name='pageval' value='' /><ul id='master_0'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Punching</a><ul id='master_1'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('initview','_parent','MenuForm','')">Add Cases</a><ul id='master_10'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Dedupe</a><ul id='master_3'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('rundedupe','_parent','MenuForm','')">Run Dedupe</a><ul id='master_17'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('dodedupe','_parent','MenuForm','')">Do Dedupe</a><ul id='master_18'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Settings</a><ul id='master_9'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('loadcpass','_parent','MenuForm','')">Change Password</a><ul id='master_66'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitForm('logout','_parent','MenuForm')">Logout</a></li></ul></form></div>
|
||||
@@ -1 +0,0 @@
|
||||
<div style='overflow:visible' id='MenuBar'><form method='post' name='MenuForm' id='MenuForm'><input type='hidden' id='pageval' name='pageval' value='' /><ul id='master_0'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Punching</a><ul id='master_1'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('initview','_parent','MenuForm','')">Add Cases</a><ul id='master_10'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Dedupe</a><ul id='master_3'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('rundedupe','_parent','MenuForm','')">Run Dedupe</a><ul id='master_17'></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('dodedupe','_parent','MenuForm','')">Do Dedupe</a><ul id='master_18'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('#','_parent','MenuForm','')">Settings</a><ul id='master_9'><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitMenuCommand('loadcpass','_parent','MenuForm','')">Change Password</a><ul id='master_66'></ul></li></ul></li><li><a rel='nofollow' style='cursor:pointer' onclick="SubmitForm('logout','_parent','MenuForm')">Logout</a></li></ul></form></div>
|
||||
File diff suppressed because one or more lines are too long
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user