Subversion Repositories SmartDukaan

Rev

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

Rev 11936 Rev 11937
Line 13... Line 13...
13
        </thead>
13
        </thead>
14
        <tbody>
14
        <tbody>
15
	#set($items = $action.getPdData())
15
	#set($items = $action.getPdData())
16
    #foreach ( $item in $items )
16
    #foreach ( $item in $items )
17
            <tr style="border: 1px">
17
            <tr style="border: 1px">
18
                <td>$item.getItem_id()</td>
18
                <td style="text-align:center;">$item.getItem_id()</td>
19
				<td>$item.getProductName()</td>
19
				<td style="text-align:center;">$item.getProductName()</td>
20
				<td style="color:red;">$item.getDealPrice()</td>
20
				<td style="color:red;text-align:center;">$item.getDealPrice()</td>
21
				<td>$item.getSaholicPrice()</td>
21
				<td style="text-align:center;">$item.getSaholicPrice()</td>
22
				<td>$item.getSdPrice()</td>
22
				<td style="text-align:center;">$item.getSdPrice()</td>
23
				<td>$item.getFkPrice()</td>
23
				<td style="text-align:center;">$item.getFkPrice()</td>
24
				<td>$item.getAmazonPrice()</td>
24
				<td style="text-align:center;">$item.getAmazonPrice()</td>
25
				<td>#</td>
25
				<td style="text-align:center;">#</td>
26
            </tr>
26
            </tr>
27
    #end
27
    #end
28
        </tbody>
28
        </tbody>
29
    </table>
29
    </table>
30
30