Subversion Repositories SmartDukaan

Rev

Rev 2715 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2715 Rev 4142
Line 9... Line 9...
9
                <th>Estimate</th>
9
                <th>Estimate</th>
10
                <th>Created On</th>
10
                <th>Created On</th>
11
            </tr>
11
            </tr>
12
        </thead>
12
        </thead>
13
        <tbody>
13
        <tbody>
14
            #foreach($line in $action.getUserLines())
14
            #foreach($line in $action.getLines())
15
            <tr id="cart-row-$line.get("itemid")">
15
            <tr id="cart-row-$line.getId()">
16
                <td>
-
 
17
                    $line.get("itemname")
16
                <td>$action.getProductName($line)</td>
18
                    <!--<a alt="Show Line Details" title="Show Line Details" href="#" userId="$action.getUserId()" itemId="$line.get("itemid")" class="show-line-details">
-
 
19
                        $line.get("itemname")
-
 
20
                    </a-->                    
-
 
21
                </td>
-
 
22
                <td>$line.get("quantity")</td>
17
                <td>$action.convertDouble($line.getQuantity())</td>
23
                <td>$line.get("actualprice")</td>
18
                <td>$line.getActualPrice()</td>
24
                <td>$line.get("discountedprice")</td>
19
                <td>$line.getDiscountedPrice()</td>
25
                <td>$line.get("estimate")</td>
20
                <td>$line.getEstimate()</td>
26
                <td>$line.get("createdon")</td>
21
                <td>$action.convertDate($line.getCreatedOn())</td>
27
            </tr>
22
            </tr>
28
            #end
23
            #end
29
            </tbody>
24
            </tbody>
30
    </table>
25
    </table>
31
</div>
26
</div>
32
27