Pokaż
Ignoruj:
Data:
2008-12-23 12:28:18 (17 years ago)
Autor:
dorota
Opis:
 
Pliki:
1 zmodyfikowane

Legenda:

Bez zmian
Dodane
Usunięte
  • Baza Reklam 2 - Faktury/ProvisionForm.cs

    r2 r20  
    152152 
    153153            SqlCommand command = new SqlCommand(); 
    154  
    155154            command.Connection = new SqlConnection(ConnString.getConnString().Value); 
    156  
    157155            command.CommandType = CommandType.StoredProcedure; 
    158156 
     
    256254            command.CommandType = CommandType.StoredProcedure; 
    257255 
    258             command.CommandText = "PROC_WYLICZ_I_ZAPISZ_PROWIZJE_DO_REKLAM"; 
     256           // command.CommandText = "PROC_WYLICZ_I_ZAPISZ_PROWIZJE_DO_REKLAM"; 
     257            command.CommandText = "PROC_WYLICZ_I_ZAPISZ_PROWIZJE"; 
    259258            command.Parameters.AddWithValue("@rok", this.rok); 
    260259            command.Parameters.AddWithValue("@ms", this.miesiac); 
    261  
     260            command.Parameters.AddWithValue("@idAgencji", agencja); 
     261          
    262262            command.Connection.Open(); 
    263263