Subversion Repositories SmartDukaan

Rev

Rev 33845 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
33882 tejus.loha 1
#*
31431 amit.gupta 2
#if($pob)
3
<td>$pob.getId()</td>
4
<td>$pob.getOutLetName()</td>
5
<td>$pob.getPhoneNumber()</td>
29088 tejbeer 6
 
31431 amit.gupta 7
    #if($pob.getCity())
8
    <td>$pob.getCity()</td>
9
    #else
10
    <td></td>
11
    #end
12
    #if($pob.getInvestmentDate())
13
    <td><i class="far fa-arrow-alt-circle-up" style="background:green"></i><input type="date"
14
                                                                                  placeholder="Investment Date(SM)"
15
                                                                                  disabled name="date1" id="bdDate"
16
                                                                                  value="$pob.getInvestmentDate().format($datehiphenFormatter)"
17
    ></td>
18
    #else
19
    <td><i class="far fa-arrow-alt-circle-down" style="background:pink;"></i><input type="date"
20
                                                                                    placeholder="Investment Date(SM)"
21
                                                                                    disabled name="bdDate"></td>
22
    #end
23
    #if($pob.getStockPayment()!= 0)
24
    <td><i class="far fa-arrow-alt-circle-up" style="background:green"></i><input type="text"
25
                                                                                  placeholder="Stock payment(kamini)"
26
                                                                                  disabled name="spayment1"
27
                                                                                  value="$pob.getStockPayment()"></td>
28
    #else
29
    <td><i class="far fa-arrow-alt-circle-down" style="background:pink;"></i><input type="text"
30
                                                                                    placeholder="Stock payment(kamini)"
33845 tejus.loha 31
                                                                                    disabled name="spayment1">
31431 amit.gupta 32
    </td>
33
    #end
29088 tejbeer 34
 
31431 amit.gupta 35
<td #if($pob.getBillingStatus()==0) style="background-color:pink"#else style="background-color:lime" #end>
36
    <input type="checkbox" disabled #if($pob.getBillingStatus()>0) checked #end >
37
 
38
</td>
39
 
40
<td>
41
    <button type="button" style="background:#008CBA; color:black;" data-id="$pob.getId()" name="submitOnboardingBilling"
42
            class="submitOnboardingBilling">
43
        Submit
44
    </button>
45
</td>
46
 
33882 tejus.loha 47
#end*#