Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
29007 manish 1
 <div class="modal-dialog">
33882 tejus.loha 2
     <!-- Modal content-->
3
     <div class="modal-content" style="width: 480px;">
4
         <div class="modal-header">
5
             <button type="button" class="close" data-dismiss="modal">&times;</button>
6
             <h4 class="modal-title">Please explain the below journey to partner.</h4>
7
         </div>
8
         <div class="modal-body" style="height: 370px;">
9
             <form>
10
                 #if($partnerVerificationCheckboxMap.get($pob.getId()).isTraining())
11
 
12
                     <input type="checkbox" id="trainingVerifi" name="trainingVerifi" value="" checked>
13
                     <label for="trainingVerifi">Training</label><br>
14
 
15
                 #else
16
                     <input type="checkbox" id="trainingVerifi" name="trainingVerifi" value="">
17
                     <label for="trainingVerifi">Training</label><br>
18
 
19
                 #end
20
 
21
                 #if($partnerVerificationCheckboxMap.get($pob.getId()).isRecce())
22
 
23
                     <input type="checkbox" id="recceVerifi" name="recceVerifi" value="" checked>
24
                     <label for="recceVerifi">Recce</label><br>
25
                 #else
26
 
27
                     <input type="checkbox" id="recceVerifi" name="recceVerifi" value="">
28
                     <label for="recceVerifi">Recce</label><br>
29
 
30
                 #end
31
 
32
                 #if($partnerVerificationCheckboxMap.get($pob.getId()).isAdvStockPayment())
33
 
34
                     <input type="checkbox" id="advStockPayment" name="advStockPayment" value="" checked>
35
                     <label for="advStockPayment"> Adv Stock Payment</label><br>
36
 
37
                 #else
38
 
39
                     <input type="checkbox" id="advStockPayment" name="advStockPayment" value="">
40
                     <label for="advStockPayment"> Adv Stock Payment</label><br>
41
 
42
                 #end
43
 
44
                 #if($partnerVerificationCheckboxMap.get($pob.getId()).isBranding())
45
 
46
                     <input type="checkbox" id="brandingVerifi" name="brandingVerifi" value="" checked>
47
                     <label for="brandingVerifi">Branding</label><br>
48
 
49
                 #else
50
                     <input type="checkbox" id="brandingVerifi" name="brandingVerifi" value="">
51
                     <label for="brandingVerifi">Branding</label><br>
52
                 #end
53
 
54
 
55
                 #if($partnerVerificationCheckboxMap.get($pob.getId()).isStockPayment())
56
 
57
                     <input type="checkbox" id="stockPay" name="stockPay" value="" checked>
58
                     <label for="stockPay">Stock payment</label><br>
59
 
60
                 #else
61
 
62
                     <input type="checkbox" id="stockPay" name="stockPay" value="">
63
                     <label for="stockPay">Stock payment</label><br>
64
 
65
                 #end
66
 
67
                 #if($partnerVerificationCheckboxMap.get($pob.getId()).isBilling())
68
 
69
                     <input type="checkbox" id="billingVerifi" name="billingVerifi" value="" checked>
70
                     <label for="vehibillingVerificle"> Billing</label><br>
71
 
72
                 #else
73
 
74
                     <input type="checkbox" id="billingVerifi" name="billingVerifi" value="">
75
                     <label for="vehibillingVerificle"> Billing</label><br>
76
 
77
                 #end
78
 
79
                 #if($partnerVerificationCheckboxMap.get($pob.getId()).isInaugration())
80
 
81
                     <input type="checkbox" id="inaugrationVerifi" name="inaugrationVerifi" value="" checked>
82
                     <label for="inaugrationVerifi">Inaugration</label><br>
83
 
84
                 #else
85
                     <input type="checkbox" id="inaugrationVerifi" name="inaugrationVerifi" value="">
86
                     <label for="inaugrationVerifi">Inaugration</label><br>
87
 
88
                 #end
89
 
90
                 #if($partnerVerificationCheckboxMap.get($pob.getId()).isFinanceServices())
91
                     <input type="checkbox" id="financialServices" name="financialServices" value="" checked>
92
                     <label for="financialServices">Financial Services</label><br>
93
 
94
                 #else
95
                     <input type="checkbox" id="financialServices" name="financialServices" value="">
96
                     <label for="financialServices">Financial Services</label><br>
97
 
98
                 #end
99
 
100
                 #if($partnerVerificationCheckboxMap.get($pob.getId()).isPromotor())
101
                     <input type="checkbox" id="promotorVerifi" name="promotorVerifi" value="" checked>
102
                     <label for="promotorVerifi">Promotor</label><br>
103
                 #else
104
                     <input type="checkbox" id="promotorVerifi" name="promotorVerifi" value="">
105
                     <label for="promotorVerifi">Promotor</label><br>
106
 
107
                 #end
108
 
109
 
110
                 #if($partnerVerificationCheckboxMap.get($pob.getId()).getVerifiCheckboxComment())
111
                     <input type="text" placeholder="comment" style="width: 282px; height: 83px;"
112
                            id="verifiCommentCheckbox" name="verifiCommentCheckbox"
113
                            value="$partnerVerificationCheckboxMap.get($pob.getId()).getVerifiCheckboxComment()">
114
                 #else
115
                     <input type="text" placeholder="comment" value="" id="verifiCommentCheckbox"
116
                            name="verifiCommentCheckbox" style="width: 282px; height: 83px;">
117
                 #end
118
 
119
                 <input type="submit" class="verification-checkbox-submit" data-dismiss="modal" data-id="$onboardingId"
120
                        value="Submit">
121
             </form>
122
         </div>
123
         <div class="modal-footer">
124
             <button type="submit" class="btn btn-default" data-dismiss="modal">Close</button>
125
         </div>
126
     </div>
127
 </div>
29007 manish 128
 
129
 
130