Subversion Repositories SmartDukaan

Rev

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

Rev 6380 Rev 9416
Line 37... Line 37...
37
            <table class="bordered" border="1">
37
            <table class="bordered" border="1">
38
                <thead >
38
                <thead >
39
                    <tr class="bordered">
39
                    <tr class="bordered">
40
                        <th >Item Id</th>
40
                        <th >Item Id</th>
41
                        <th >Product Name</th>
41
                        <th >Product Name</th>
-
 
42
						<th >MRP</th>
42
                        <th >Quantity ordered</th>
43
                        <th >Quantity ordered</th>
43
                        <th >Unfulfilled Quantity</th>
44
                        <th >Unfulfilled Quantity</th>
44
                    </tr>
45
                    </tr>
45
                </thead>
46
                </thead>
46
                <tbody >
47
                <tbody >
47
                    #foreach($lineitem in $action.getPurchaseOrder().getLineitems())
48
                    #foreach($lineitem in $action.getPurchaseOrder().getLineitems())
48
                        <tr class="bordered">
49
                        <tr class="bordered">
49
                            <td id="itemId">$lineitem.getItemId()</td>
50
                            <td id="itemId">$lineitem.getItemId()</td>
50
                            <td >$action.getName($lineitem)</td>
51
                            <td >$action.getName($lineitem)</td>
-
 
52
							<td >$lineitem.getMrp()</td>
51
                            <td >$lineitem.getQuantity()</td>
53
                            <td >$lineitem.getQuantity()</td>
52
                            <td >$lineitem.getUnfulfilledQuantity()</td>
54
                            <td >$lineitem.getUnfulfilledQuantity()</td>
53
                        </tr>
55
                        </tr>
54
                    #end
56
                    #end
55
                </tbody>
57
                </tbody>