Subversion Repositories SmartDukaan

Rev

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

Rev 31268 Rev 31273
Line 481... Line 481...
481
          
481
          
482
 
482
 
483
                    <div class="col-lg-6">
483
                    <div class="col-lg-6">
484
 
484
 
485
 
485
 
-
 
486
                        <div class="row" style="margin-left:5px">
-
 
487
                            <h3 style="margin-top: -2px; margin-bottom: 24px">
-
 
488
                                <strong>Sale MileStone</strong>
-
 
489
                            </h3>
486
                       
490
                        </div>
487
 
491
 
488
                        <div class="row saleMilestoneContainer" style="margin: 5px"></div>
492
                        <div class="row saleMilestoneContainer" style="margin: 5px"></div>
489
 
493
 
-
 
494
       
-
 
495
 
-
 
496
                   </div>
490
                      
497
                        
-
 
498
                        
-
 
499
                    <div class="col-lg-6">
-
 
500
 
491
 
501
 
-
 
502
                        <div class="row" style="margin-left:5px">
-
 
503
                            <h3 style="margin-top: -2px; margin-bottom: 24px">
-
 
504
                                <strong>Purchase MileStone</strong>
-
 
505
                            </h3>
492
                        </div>
506
                        </div>
493
 
507
 
-
 
508
                        <div class="row purchaseMilestoneContainer" style="margin: 5px"></div>
-
 
509
 
-
 
510
       
-
 
511
 
-
 
512
                  </div>
-
 
513
 
494
 
514
 
495
             </div>
515
             </div>
496
                   
516
                   
497
             
517
             
498
            <div class="row">
518
            <div class="row">
Line 827... Line 847...
827
                        $('.reportContainer').html(response);
847
                        $('.reportContainer').html(response);
828
                    });
848
                    });
829
                });
849
                });
830
 
850
 
831
 
851
 
832
        doGetAjaxRequestHandler(context + "/getCountByCategory", function (response) {
852
        doGetAjaxRequestHandler(context + "/getSaleCountByMilestone", function (response) {
833
            $('.saleMilestoneContainer').html(response);
853
            $('.saleMilestoneContainer').html(response);
834
        });
854
        });
835
        
855
        
-
 
856
         doGetAjaxRequestHandler(context + "/getPurchaseCountByMileStone", function (response) {
-
 
857
            $('.purchaseMilestoneContainer').html(response);
-
 
858
        });
836
             doGetAjaxRequestHandler(context + "/getMobileLMSFilter", function (response) {
859
             doGetAjaxRequestHandler(context + "/getMobileLMSFilter", function (response) {
837
            $('.chartfilterlmsContainer').html(response);
860
            $('.chartfilterlmsContainer').html(response);
838
        });
861
        });
839
        
862
        
840
 
863