Changeset 17517 for schedule/js


Ignore:
Timestamp:
01/17/14 13:20:08 (11 years ago)
Author:
tose
Message:
Implemented strict mode
File:
1 edited

Legend:

Unmodified
Added
Removed
  • schedule/js/function.js

    r17509 r17517  
    55var currentDate;
    66var transCount;
     7var transLoadPrev;
     8var Gdate;
    79
    810function GetDate(d,m,y)
    911{
    10         currentDate = y+'-'+m+'-'+d;
     12        currentDate = y+'-'+m+'-'+d;
    1113        transCount = 1;
     14        transLoadPrev = 1;
    1215        $('document').ready(function(){
    1316                        $('#save').click(function(){
     
    1922                                        $('.datalisting').each(function(){
    2023                                                var get_seq = 0;
    21                                                 get_time = $(this).find(".time").val();
    22                                                 countchild = $(this).find(".tr").length;
     24                                                var get_time = $(this).find(".time").val();
     25                                                var countchild = $(this).find(".tr").length;
    2326                                                        $(this).find(".tr").each(function(){
    24                                                                 get_measure   = $(this).find(".measure").val();         
    25                                                                 get_source    = $(this).find(".source").val();         
    26                                                                 get_selected  = $(this).find(".selected").val();
     27                                                                var get_measure   = $(this).find(".measure").val();             
     28                                                                var get_source    = $(this).find(".source").val();             
     29                                                                var get_selected  = $(this).find(".selected").val();
    2730                                                                GetSaveData(get_time, get_selected, get_source, get_measure, Gdate,get_seq);
    2831                                                                get_seq++;
     
    3841                                        $('.datalisting').each(function(){
    3942                                                var get_seq = 0;
    40                                                 get_time = $(this).find(".time").val();
    41                                                 countchild = $(this).find(".tr").length;
     43                                                var get_time = $(this).find(".time").val();
     44                                                var countchild = $(this).find(".tr").length;
    4245                                                        $(this).find(".tr").each(function(){
    4346                                                               
    44                                                                 get_measure   = $(this).find(".measure").val();         
    45                                                                 get_source    = $(this).find(".source").val();         
    46                                                                 get_selected  = $(this).find(".selected").val();
     47                                                                var get_measure   = $(this).find(".measure").val();             
     48                                                                var get_source    = $(this).find(".source").val();             
     49                                                                var get_selected  = $(this).find(".selected").val();
    4750                                                                GetUpdateData(get_time, get_selected, get_source, get_measure, Gdate, get_seq);
    4851                                                                get_seq++;
    4952                                                        });
    5053                                        });
    51                                 }
     54                               }
    5255
    53                        
    54                        
    55 });     
    56 
    57         function GetSaveData(Time,Data,Source,Measure,date,seq){
     56                        });     
     57        function GetSaveData(Time,Data,Source,Measure,date,seq){
    5858                //alert("Time:"+Time+" | Measure:"+Measure +" | Source:"+Source+" | Data:"+Data);
    5959                        $.ajax({
Note: See TracChangeset for help on using the changeset viewer.