Subversion Repositories SmartDukaan

Rev

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

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