Subversion Repositories SmartDukaan

Rev

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

Rev 31272 Rev 31273
Line 25... Line 25...
25
	    			<tbody>
25
	    			<tbody>
26
	    				<tr>
26
	    				<tr>
27
	    					<th>Partner Category</th>
27
	    					<th>Partner Category</th>
28
	    					<th>MTD</th>
28
	    					<th>MTD</th>
29
	    					<th>LMTD</th>
29
	    					<th>LMTD</th>
-
 
30
	    					<th>LMS</th>
30
	    					<th>Avg 3 Month</th>
31
	    					<th>Avg 3 Month</th>
31
	    				
32
	    				
32
	    		     	</tr>
33
	    		     	</tr>
33
	    			
34
	    			
34
	    				#foreach( $milestone in $milestones )
35
	    				#foreach( $milestone in $milestones )
Line 48... Line 49...
48
			    					#else
49
			    					#else
49
			    						<td>0</td>
50
			    						<td>0</td>
50
			    				
51
			    				
51
			    					#end
52
			    					#end
52
			    					
53
			    					
-
 
54
			    							
53
			    					#if($lmsMap.get($milestone))
55
			    				    #if($lmsMap.get($milestone))
54
			    				
56
			    					
55
			    					<td>$lmsMap.get($milestone)</td>
57
			    					<td>$lmsMap.get($milestone)</td>
56
			    					#else
58
			    					#else
-
 
59
			    						<td>0</td>
-
 
60
			    				
-
 
61
			    					#end
-
 
62
			    					
-
 
63
			    					#if($avg3Monthlms.get($milestone))
-
 
64
			    				
-
 
65
			    					<td>$avg3Monthlms.get($milestone)</td>
-
 
66
			    					#else
57
			    					 <td>0</td>
67
			    					 <td>0</td>
58
			    					#end
68
			    					#end
59
			    			
69
			    			
60
			    				</tr>
70
			    				</tr>
61
			    			
71
			    			
Line 69... Line 79...
69
 
79
 
70
  function changeWarehouseMilestone() {
80
  function changeWarehouseMilestone() {
71
        var warehouseId = $('#warehousemilMap').val();
81
        var warehouseId = $('#warehousemilMap').val();
72
 
82
 
73
 
83
 
74
        doGetAjaxRequestHandler(context + "/getCountByCategory?warehouseId="
84
        doGetAjaxRequestHandler(context + "/getSaleCountByMilestone?warehouseId="
75
                + warehouseId, function (response) {
85
                + warehouseId, function (response) {
76
            $('.saleMilestoneContainer').html(response);
86
            $('.saleMilestoneContainer').html(response);
77
        });
87
        });
78
 
88
 
79
    }
89
    }