Subversion Repositories SmartDukaan

Rev

Rev 34256 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 34256 Rev 36895
Line 17... Line 17...
17
                        <th>Model Number</th>
17
                        <th>Model Number</th>
18
                        <th>Brand</th>
18
                        <th>Brand</th>
19
                        <th>Po Qty</th>
19
                        <th>Po Qty</th>
20
                        <th>Stock Qty</th>
20
                        <th>Stock Qty</th>
21
                        <th>Total Availability</th>
21
                        <th>Total Availability</th>
22
                        <th>Allocation</th>
22
                        <th>HID Qty</th>
23
                        <th>Purchase Limit</th>
23
                        <th>Purchase Limit</th>
-
 
24
                        <th>Requested Qty</th>
24
                        <th>Action</th>
25
                        <th>Action</th>
25
                    </tr>
26
                    </tr>
26
                    </thead>
27
                    </thead>
27
                    <tbody>
28
                    <tbody>
28
                        #if($hidAllocationModelBrandMap.containsKey($brand) && !$hidAllocationModelBrandMap.get($brand).isEmpty())
29
                        #if($hidAllocationModelBrandMap.containsKey($brand) && !$hidAllocationModelBrandMap.get($brand).isEmpty())
Line 34... Line 35...
34
                                <td> $model.getModelNumber() </td>
35
                                <td> $model.getModelNumber() </td>
35
                                <td> $model.getBrand() </td>
36
                                <td> $model.getBrand() </td>
36
                                <td> $model.getOrderedStock() </td>
37
                                <td> $model.getOrderedStock() </td>
37
                                <td> $model.getCurrentSnapshotStock() </td>
38
                                <td> $model.getCurrentSnapshotStock() </td>
38
                                <td> $model.getAvailableStock() </td>
39
                                <td> $model.getAvailableStock() </td>
39
                                <td><input value="$model.getHidAllocation()" disabled name="allocation-limit"></td>
40
                                <td> $model.getHidAllocation() </td>
40
                                <td> $model.getPurchaseLimit() </td>
41
                                <td> $model.getPurchaseLimit() </td>
-
 
42
                                <td><input value="$model.getPurchaseLimit()" disabled name="allocation-limit"></td>
41
                                <td>
43
                                <td>
42
                                    #if($isAdmin)
44
                                    #if($isAdmin)
43
                                        <button class="btn btn-sm btn-info generate-allocation-request"
45
                                        <button class="btn btn-sm btn-info generate-allocation-request"
44
                                                data-catalogid="$model.getCatalogId()">Generate Request
46
                                                data-catalogid="$model.getCatalogId()">Generate Request
45
                                        </button>
47
                                        </button>
Line 49... Line 51...
49
                                </td>
51
                                </td>
50
                            </tr>
52
                            </tr>
51
                            #end
53
                            #end
52
                        #else
54
                        #else
53
                        <tr>
55
                        <tr>
54
                            <td colspan="7"> No Data Available</td>
56
                            <td colspan="9"> No Data Available</td>
55
                        </tr>
57
                        </tr>
56
                        #end
58
                        #end
57
                    </tbody>
59
                    </tbody>
58
                </table>
60
                </table>
59
            </div>
61
            </div>