Subversion Repositories SmartDukaan

Rev

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

Rev 4754 Rev 5110
Line 39... Line 39...
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 >Quantity ordered</th>
42
                        <th >Quantity ordered</th>
43
                        <th >Unfulfilled Quantity</th>
43
                        <th >Unfulfilled Quantity</th>
44
##                        <th ></th>
-
 
45
                    </tr>
44
                    </tr>
46
                </thead>
45
                </thead>
47
                <tbody >
46
                <tbody >
48
                    #foreach($lineitem in $action.getPurchaseOrder().getLineitems())
47
                    #foreach($lineitem in $action.getPurchaseOrder().getLineitems())
49
                        <tr class="bordered">
48
                        <tr class="bordered">
50
                            <td id="itemId">$lineitem.getItemId()</td>
49
                            <td id="itemId">$lineitem.getItemId()</td>
51
                            <td >$action.getName($lineitem)</td>
50
                            <td >$action.getName($lineitem)</td>
52
                            <td >$lineitem.getQuantity()</td>
51
                            <td >$lineitem.getQuantity()</td>
53
                            <td >$lineitem.getUnfulfilledQuantity()</td>
52
                            <td >$lineitem.getUnfulfilledQuantity()</td>
54
##                            <td id="form-$lineitem.getItemId()"><input id="changeColor" type="button" value="Change color"/></td>
-
 
55
                        </tr>
53
                        </tr>
56
                    #end
54
                    #end
57
                </tbody>
55
                </tbody>
58
            </table>
56
            </table>
59
            <input type="hidden" id="poId" value="$action.getPurchaseOrder().getId()"/>
57
            <input type="hidden" id="poId" value="$action.getPurchaseOrder().getId()"/>