Subversion Repositories SmartDukaan

Rev

Rev 28631 | Rev 28901 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
28599 amit.gupta 1
<link href="https://cdn.datatables.net/fixedcolumns/3.3.0/css/fixedColumns.bootstrap.css" rel="stylesheet"/>
2
 
3
<section class="wrapper">
4
    <div class="row">
5
        <div class="col-lg-12">
6
            <h3 class="page-header"><i class="icon_document_alt"></i>DESIGN TAT</h3>
7
            <ol class="breadcrumb">
8
                <li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
9
                <li><i class="icon_document_alt"></i>Design TAT</li>
10
            </ol>
11
        </div>
12
    </div>
13
    <div class="col-lg-12">
14
        <table class="table table-border table-condensed table-bordered" id="OnboardingDesign" style="width:100%">
15
 
16
            <thead class="row htable" style="background:#F5F5F5;">
17
 
18
            <tr style="color:black;">
19
                <th>Id</th>
20
                <th>Outlet Name(SM)</th>
21
                <th>Created On</th>
22
                <th>Acquired Date()</th>
23
 
28610 amit.gupta 24
                <th>Phone </br>Number(SM)</th>
25
 
28599 amit.gupta 26
                <th>City (SM)</th>
27
                <th>State Head(SM)</th>
28
                <th>BDM (SM)</th>
29
                <th>Agreed Brand fees(SM)</th>
30
 
31
                <th>Inauguration Date(SM)</th>
32
                <th>LOI(legal)</th>
28610 amit.gupta 33
                <th>Kyc</th>
28599 amit.gupta 34
                <th>Code(legal)</th>
35
                <th>Recee </br> Planed(Sunil)</th>
36
                <th>Recee  </br> Actual(Sunil)</th>
28847 manish 37
                <th>Stock Payment(kamini)</th>
28599 amit.gupta 38
                <th>2D with BOQ Planed(Sunil)</th>
39
                <th>2D with BOQ Actual(Sunil)</th>
40
                <th>2D with BOQ(Sunil)</th>
41
                <th>3D with BOQ Planed (Sunil)</th>
42
                <th>3D with BOQ Actual (Sunil)</th>
43
                <th>3D with BOQ (Sunil)</th>
44
                <th>PO To Vendor Planed(Sunil)</th>
45
                <th>PO To Vendor Actual(Sunil)</th>
28613 amit.gupta 46
 
28599 amit.gupta 47
                <th>Briefing  Partner Date(Sunil)</th>
48
                <th>Briefing  Partner Actual Date (Sunil)</th>
49
                <th>Deployment Planed (Sunil)</th>
50
                <th>Deployment Actual (Sunil)</th>
51
                <th>Final Pics Of OutLets Planed(Sunil)</th>
52
                <th>Final Pics Of OutLets Actual(Sunil)</th>
53
                <th>Final Pics Of OutLets(Sunil)</th>
54
                <th>NOC Actual(Sunil)</th>
55
                 <th>NOC (Sunil)</th>
56
                <th>Submit</th>
57
                 <th>Designing Done</th>
58
            </tr>
59
            </thead>
60
            <tbody>
61
                #foreach($pob in $partnerOnBoardingPanel )
62
                <tr>
63
                   #parse("partner-onboarding-design-row-index.vm")
64
 
65
                </tr>
66
                #end
67
 
68
            </tbody>
69
 
70
        </table>
71
    </div>
72
</section>
73
 
74
 
75
<script type="text/javascript">
76
 
77
    $(document).ready(function () {
78
 
79
 
80
 
81
      var dtable = $('#OnboardingDesign').DataTable({
82
             "scrollX": true,
83
            "scrollY": "518px",
84
            scrollCollapse: true,
85
              "fixedHeader": true,
86
 
87
        fixedColumns:   {
88
            leftColumns: 2
89
        },
90
 
91
          "columnDefs": [
92
                   { "targets": 1, "orderDataType":  "dom-text", "type":"string" },
93
                   { "targets": 2, "orderDataType":  "date-dd-mmm-yyyy", "type":"string" },
94
 
95
                   { "targets": 3, "orderDataType": "date-dd-mmm-yyyy", "type": "string" },
96
                   { "targets": 4, "orderDataType": "dom-text-numeric", "type":"number"},
97
                  { "targets": 5, "orderDataType": "dom-text", "type": "string" },
98
                  { "targets": 6, "orderDataType": "dom-text", "type": "string" },
99
                  { "targets": 7, "orderDataType": "dom-text", "type": "string" },
28631 amit.gupta 100
 
101
 
28599 amit.gupta 102
 
28631 amit.gupta 103
                  { "targets": 8, "orderDataType": "dom-text-numeric", "type":"number"},
28599 amit.gupta 104
 
28631 amit.gupta 105
                  { "targets": 9, "orderDataType":  "date-dd-mmm-yyyy", "type":"string" },
28599 amit.gupta 106
 
107
                  { "targets": 12, "orderDataType": "dom-text", "type": "string" },
28631 amit.gupta 108
 
28599 amit.gupta 109
                  { "targets": 13, "orderDataType":  "date-dd-mmm-yyyy", "type":"string" },
110
                  { "targets": 14, "orderDataType":  "date-dd-mmm-yyyy", "type":"string" },
111
                     { "targets": 15, "orderDataType":  "date-dd-mmm-yyyy", "type":"string" },
112
                       { "targets": 16, "orderDataType":  "date-dd-mmm-yyyy", "type":"string" },
113
                  { "targets": 18, "orderDataType":  "date-dd-mmm-yyyy", "type":"string" },
114
                  { "targets": 19, "orderDataType":  "date-dd-mmm-yyyy", "type":"string" },
115
 
116
                  { "targets": 21, "orderDataType":  "date-dd-mmm-yyyy", "type":"string" },
117
                  { "targets": 22,"orderDataType":  "date-dd-mmm-yyyy", "type":"string" },
118
                 { "targets": 23, "orderDataType": "date-dd-mmm-yyyy", "type": "string" },
28631 amit.gupta 119
               { "targets": 24, "orderDataType":  "date-dd-mmm-yyyy", "type":"string" },
28599 amit.gupta 120
                 { "targets": 25, "orderDataType":  "date-dd-mmm-yyyy", "type":"string" },
121
                 { "targets": 26, "orderDataType":  "date-dd-mmm-yyyy", "type":"string" },
122
                { "targets": 27, "orderDataType":  "date-dd-mmm-yyyy", "type":"string" },
123
                  { "targets": 28, "orderDataType": "date-dd-mmm-yyyy", "type": "string" },
28631 amit.gupta 124
 
125
                { "targets": 30, "orderDataType":  "date-dd-mmm-yyyy", "type":"string" }
126
 
28599 amit.gupta 127
                        ], 
128
 
129
     });   
28631 amit.gupta 130
 
131
 
28599 amit.gupta 132
    });
133
 
134
 
135
</script>
136
 
137
 
138
<style>
139
</style>