Subversion Repositories SmartDukaan

Rev

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

Rev 7150 Rev 7410
Line 3... Line 3...
3
    <head>
3
    <head>
4
        <title>
4
        <title>
5
            Inventory and Warehouse Management
5
            Inventory and Warehouse Management
6
        </title>
6
        </title>
7
        <link rel="stylesheet" href="/inventory/css/common.css" type="text/css" />
7
        <link rel="stylesheet" href="/inventory/css/common.css" type="text/css" />
-
 
8
		<link rel="stylesheet" href="/inventory/css/colorbox.css" type="text/css" />
-
 
9
		<script type="text/javascript" src="/inventory/js/jquery-1.4.2.js"></script>
-
 
10
		<script type="text/javascript" src="/inventory/js/common.js"></script>
-
 
11
		<script type="text/javascript" src="/inventory/js/jquery.colorbox-min.js"></script>
8
    </head>
12
    </head>
9
    <body>
13
    <body>
10
        <div class="right">
14
        <div class="right">
11
            <br />
15
            <br />
12
            <a href="/inventory/change-password.html">
16
            <a href="/inventory/change-password.html">
Line 18... Line 22...
18
            </a>
22
            </a>
19
        </div>
23
        </div>
20
        <div >
24
        <div >
21
            <h1 >Welcome to Saholic Inventory and Warehouse Management System</h1>
25
            <h1 >Welcome to Saholic Inventory and Warehouse Management System</h1>
22
            #if($action.isPermitted("po:create"))
26
            #if($action.isPermitted("po:create"))
23
            <a href="/inventory/purchase-order/new">Create new PO</a>
27
            <a href="/inventory/purchase-order/new" onclick="selectWarehouseForPOCreation()">Create new PO</a>
24
            <br />
28
            <br />
25
            #end
29
            #end
26
            #if($action.isPermitted("po:amend"))
30
            #if($action.isPermitted("po:amend"))
27
            <a href="/inventory/purchase-order">Amend existing PO</a>
31
            <a href="/inventory/purchase-order">Amend existing PO</a>
28
            <br />
32
            <br />
Line 34... Line 38...
34
            #if($action.isPermitted("invoice:receive"))
38
            #if($action.isPermitted("invoice:receive"))
35
            <a href="/inventory/invoice/new">Receive new Invoice</a>
39
            <a href="/inventory/invoice/new">Receive new Invoice</a>
36
            <br />
40
            <br />
37
            #end
41
            #end
38
            #if($action.isPermitted("po:receive"))
42
            #if($action.isPermitted("po:receive"))
39
            <a href="/inventory/purchase-order">Receive unfulfilled PO</a>
43
            <a href="/inventory/purchase-order" onclick="selectWarehouseForListingPO()">Receive unfulfilled PO</a>
40
            <br />
44
            <br />
41
            <a href="/inventory/doa-in">DOA items in warehouses</a>
45
            <a href="/inventory/doa-in">DOA items in warehouses</a>
42
            <br />
46
            <br />
43
            <a href="/inventory/doa-out">DOA items awaiting replacement</a>
47
            <a href="/inventory/doa-out">DOA items awaiting replacement</a>
44
            <br />
48
            <br />
Line 84... Line 88...
84
            <br />
88
            <br />
85
			#end
89
			#end
86
			#if($action.isPermitted("hotspot-indent:create"))
90
			#if($action.isPermitted("hotspot-indent:create"))
87
			<a href="/inventory/hotspot-indent">Create Hotspot Indent</a>
91
			<a href="/inventory/hotspot-indent">Create Hotspot Indent</a>
88
            <br />
92
            <br />
-
 
93
			#end
-
 
94
			#if($action.isPermitted("transfer-lot:view"))
-
 
95
			<a href="/inventory/transfer-lot">Transfer-Lot</a>
-
 
96
            <br />
89
			#end				
97
			#end
-
 
98
			#if($action.isPermitted("transfer-lot:create"))
-
 
99
			<a href="/inventory/transfer-lot/new">Create New Transfer-Lot</a>
-
 
100
            <br />
-
 
101
			#end
-
 
102
			#if($action.isPermitted("po:receive"))
-
 
103
			<a href="/inventory/transfer-lot-receive/0">Receive Inventory From Amazon</a>
-
 
104
            <br />
-
 
105
			#end
90
        </div>
106
        </div>
-
 
107
		
-
 
108
		<div id = "warehouse-selector-po-creation" class = "hidden" style = "text-align:center">
-
 
109
			<form>
-
 
110
    			<input type = "radio" name = "warehouse" value = "7">Mahipalpur</input>
-
 
111
    			<input type = "radio" name = "warehouse" value = "12">Goregaon</input>
-
 
112
				<input type = "radio" name = "warehouse" value = "13">Biwandi</input>
-
 
113
			</form>
-
 
114
            <input type = "button" onclick = "openPOCreationPage()" value = "Open PO Creation Dashboard"/>
-
 
115
			<label class = "warehouse-selection-error"></label>
-
 
116
		</div>
-
 
117
		
-
 
118
		<div id = "warehouse-selector-po-recieve" class = "hidden" style = "text-align:center">
-
 
119
			<form>
-
 
120
    			<input type = "radio" name = "warehouse" value = "7">Mahipalpur</input>
-
 
121
    			<input type = "radio" name = "warehouse" value = "12">Goregaon</input>
-
 
122
				<input type = "radio" name = "warehouse" value = "13">Biwandi</input>
-
 
123
			</form>
-
 
124
            <input type = "button" onclick = "showOpenPOpage()" value = "Show Open PO(s)"/>
-
 
125
			<label class = "warehouse-selection-error"></label>
-
 
126
		</div>
91
    </body>
127
    </body>
92
</html>
128
</html>