Subversion Repositories SmartDukaan

Rev

Rev 33882 | 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-->
35971 aman 3
     <div class="modal-content" style="width: 500px;">
4
         <div class="modal-header" style="background: #f5f5f5; border-bottom: 2px solid #ddd;">
33882 tejus.loha 5
             <button type="button" class="close" data-dismiss="modal">&times;</button>
35971 aman 6
             #if($welcomeCallMode)
7
                 <h4 class="modal-title" style="font-weight: 600;">Welcome Call - Explain Journey to Partner</h4>
8
                 <p style="margin: 5px 0 0 0; font-size: 12px; color: #888;">
9
                     Partner: <strong>$!pob.getOutLetName()</strong> | Code: <strong>$!pob.getCode()</strong>
10
                 </p>
11
             #else
12
                 <h4 class="modal-title" style="font-weight: 600;">Please explain the below journey to partner.</h4>
13
             #end
33882 tejus.loha 14
         </div>
35971 aman 15
         <div class="modal-body" style="padding: 20px;">
33882 tejus.loha 16
 
35971 aman 17
             #if($welcomeCallMode)
18
                 <div style="background: #fff3cd; border: 1px solid #ffc107; border-radius: 4px; padding: 8px 12px; margin-bottom: 15px;">
19
                     <strong style="color: #856404;">Status: Pending</strong>
20
                     <span style="color: #856404;"> - Please check all items explained to the partner and click "Mark Done"</span>
21
                 </div>
22
             #end
33882 tejus.loha 23
 
35971 aman 24
             <form>
25
                 <div style="padding: 5px 0;">
26
                     #set($cb = $partnerVerificationCheckboxMap.get($pob.getId()))
33882 tejus.loha 27
 
35971 aman 28
                     <div class="checkbox" style="padding: 6px 0; border-bottom: 1px solid #f0f0f0;">
29
                         <label style="font-size: 14px; cursor: pointer;">
30
                             <input type="checkbox" id="trainingVerifi" name="trainingVerifi" #if($cb.isTraining())
31
                                    checked #end>
32
                             Training
33
                         </label>
34
                     </div>
33882 tejus.loha 35
 
35971 aman 36
                     <div class="checkbox" style="padding: 6px 0; border-bottom: 1px solid #f0f0f0;">
37
                         <label style="font-size: 14px; cursor: pointer;">
38
                             <input type="checkbox" id="recceVerifi" name="recceVerifi" #if($cb.isRecce()) checked #end>
39
                             Recce
40
                         </label>
41
                     </div>
33882 tejus.loha 42
 
35971 aman 43
                     <div class="checkbox" style="padding: 6px 0; border-bottom: 1px solid #f0f0f0;">
44
                         <label style="font-size: 14px; cursor: pointer;">
45
                             <input type="checkbox" id="advStockPayment"
46
                                    name="advStockPayment" #if($cb.isAdvStockPayment()) checked #end>
47
                             Adv Stock Payment
48
                         </label>
49
                     </div>
33882 tejus.loha 50
 
35971 aman 51
                     <div class="checkbox" style="padding: 6px 0; border-bottom: 1px solid #f0f0f0;">
52
                         <label style="font-size: 14px; cursor: pointer;">
53
                             <input type="checkbox" id="brandingVerifi" name="brandingVerifi" #if($cb.isBranding())
54
                                    checked #end>
55
                             Branding
56
                         </label>
57
                     </div>
33882 tejus.loha 58
 
35971 aman 59
                     <div class="checkbox" style="padding: 6px 0; border-bottom: 1px solid #f0f0f0;">
60
                         <label style="font-size: 14px; cursor: pointer;">
61
                             <input type="checkbox" id="stockPay" name="stockPay" #if($cb.isStockPayment())
62
                                    checked #end>
63
                             Stock Payment
64
                         </label>
65
                     </div>
33882 tejus.loha 66
 
35971 aman 67
                     <div class="checkbox" style="padding: 6px 0; border-bottom: 1px solid #f0f0f0;">
68
                         <label style="font-size: 14px; cursor: pointer;">
69
                             <input type="checkbox" id="billingVerifi" name="billingVerifi" #if($cb.isBilling())
70
                                    checked #end>
71
                             Billing
72
                         </label>
73
                     </div>
33882 tejus.loha 74
 
35971 aman 75
                     <div class="checkbox" style="padding: 6px 0; border-bottom: 1px solid #f0f0f0;">
76
                         <label style="font-size: 14px; cursor: pointer;">
77
                             <input type="checkbox" id="inaugrationVerifi"
78
                                    name="inaugrationVerifi" #if($cb.isInaugration()) checked #end>
79
                             Inaugration
80
                         </label>
81
                     </div>
33882 tejus.loha 82
 
35971 aman 83
                     <div class="checkbox" style="padding: 6px 0; border-bottom: 1px solid #f0f0f0;">
84
                         <label style="font-size: 14px; cursor: pointer;">
85
                             <input type="checkbox" id="financialServices"
86
                                    name="financialServices" #if($cb.isFinanceServices()) checked #end>
87
                             Financial Services
88
                         </label>
89
                     </div>
33882 tejus.loha 90
 
35971 aman 91
                     <div class="checkbox" style="padding: 6px 0;">
92
                         <label style="font-size: 14px; cursor: pointer;">
93
                             <input type="checkbox" id="promotorVerifi" name="promotorVerifi" #if($cb.isPromotor())
94
                                    checked #end>
95
                             Promotor
96
                         </label>
97
                     </div>
98
                 </div>
33882 tejus.loha 99
 
35971 aman 100
                 <div style="margin-top: 12px;">
101
                     <textarea placeholder="Add comment..." id="verifiCommentCheckbox" name="verifiCommentCheckbox"
102
                               class="form-control" rows="3"
103
                               style="resize: vertical;">$!cb.getVerifiCheckboxComment()</textarea>
104
                 </div>
33882 tejus.loha 105
 
35971 aman 106
                 <div style="margin-top: 15px; text-align: right;">
107
                     #if($welcomeCallMode)
108
                         <button type="button" class="btn btn-default" data-dismiss="modal" style="margin-right: 8px;">
109
                             Cancel
110
                         </button>
111
                         <button type="submit" class="btn btn-success welcome-call-submit" data-dismiss="modal"
112
                                 data-id="$onboardingId">
113
                             Mark Done
114
                         </button>
115
                     #else
116
                         <button type="submit" class="btn btn-primary verification-checkbox-submit" data-dismiss="modal"
117
                                 data-id="$onboardingId">
118
                             Submit
119
                         </button>
120
                     #end
121
                 </div>
33882 tejus.loha 122
             </form>
123
         </div>
124
     </div>
125
 </div>