本文整理汇总了C#中EFDal.kal_IstIddenFirmaAdiDon方法的典型用法代码示例。如果您正苦于以下问题:C# EFDal.kal_IstIddenFirmaAdiDon方法的具体用法?C# EFDal.kal_IstIddenFirmaAdiDon怎么用?C# EFDal.kal_IstIddenFirmaAdiDon使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类EFDal
的用法示例。
在下文中一共展示了EFDal.kal_IstIddenFirmaAdiDon方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Doldur
protected void Doldur(int IstId)
{
EFDal ed = new EFDal();
using (sfKalDataEntities ent = new sfKalDataEntities())
{
//istek oistek = istek.SingleOrDefault(x => x.ISTID == IstId);
var oistek = (from c in ent.istek where c.ISTID == IstId select c).First();
txtIstekNo.Text = oistek.ISTEKNO.ToString();
txtSERTNO.Text = oistek.SERTIFIKANO.ToString();
txtAYYIL.Text = AyYilDon(oistek.KALBITTAR.Value);
txtFIRMA.Text = ed.kal_IstIddenFirmaAdiDon(IstId);
txtCIHAZ.Text = oistek.CIHAZADI;
txtMARKA.Text = oistek.IMALATCI;
txtTIPMODEL.Text = oistek.MODEL;
txtSERINO.Text = oistek.SERINO;
txtKALTAR.Text = oistek.KALBITTAR.ToString().Replace(" 00:00:00", "");
txtONAYTAR.Text = DateTime.Today.ToString().Replace(" 00:00:00","");
txtSORUMLU.Enabled = false;
txtSORUMLU.Text = oistek.SORUMLU;
if (txtSORUMLU.Text != Context.User.Identity.Name)
{
btnSERKAPAKYAZ.Enabled = false;
btnSERKAPAKYAZ.ToolTip = "Yapmadığınız kalibrasyonlar için kapak yazdıramazsınız!";
}
else
{
btnSERKAPAKYAZ.Enabled = true;
btnSERKAPAKYAZ.ToolTip = "Sertifika kapağı yazdırmak için tıklayınız!";
}
txtMUDUR.Text = ed.SertifikaKapagiIcinIMzaYetkilisiDon(oistek.BOLGEKODU);
int FirmaId = oistek.FIRMAID;
var ofirma = (from c in ent.firma where c.FIRMAID == FirmaId select c).First();//firma.SingleOrDefault(x => x.FIRMAID == FirmaId);
txtAdres1.Text = ofirma.ADRESI;
txtAdres2.Text = ofirma.ADRESII;
txtIlIlce.Text = ofirma.IL_ILCE;
if (oistek.SERTIPI == "TURKAK")
{
rdbtnlstSerTipi.SelectedIndex = 1;
}
if (ed.ImzaliKapakSayfasiVarmi(IstId))
{
if (this.chkEImzaliOlacak.Checked)
{
lblUyari.ForeColor = System.Drawing.Color.Red;
btnSERKAPAKYAZ.Enabled = false;
btnSERKAPAKYAZ.ToolTip = btnSERKAPAKYAZ.ToolTip +
" Bu kalibrasyon işi için daha önce imzalanmış bir kapak sayfası bulunmakta. Bu nedenle ikinci bir sertifika kapağı düzenlenemez!";
lblUyari.Text = btnSERKAPAKYAZ.ToolTip.Replace("Sertifika kapağı yazdırmak için tıklayınız!", "");
}
}
}
}
示例2: Page_Load
protected void Page_Load(object sender, EventArgs e)
{
EFDal ed=new EFDal();
bool TumBolgelerdekiCihazlariGorebilir = ed.KullaniciBelirliBirRoleSahipMi(Context.User.Identity.Name, "TumBolgelerdekiCİhazlariGorebilir");
key = int.Parse(Request["IstId"].ToString());
if (!IsPostBack)
{
UserName = Context.User.Identity.Name;
intBolgeKodu = kal_BolgeKoduDon(UserName);
if (key != 0)//yeni kayıt yapılmıyorsa yani
{
DataSet ds = null;
using (Service1Client proxy = new Service1Client())
{
if (!TumBolgelerdekiCihazlariGorebilir)
{
ds = proxy.kal_IstIddenIstekDon(key, intBolgeKodu);
}
else
{
ds = ed.kal_IstIddenIstekDonBolgeKodsuz(key);
}
int IstIdyeAitIstekNo=int.Parse(ds.Tables[0].Rows[0]["ISTEKNO"].ToString());
int IstIdyeAitYil=int.Parse(ds.Tables[0].Rows[0]["YIL"].ToString());
lblUyari.ForeColor = System.Drawing.Color.Maroon;
lblUyari.Text = ed.kal_IstegeAitIlkCihazdakiNotuDon(intBolgeKodu,IstIdyeAitYil,IstIdyeAitIstekNo);
int FirmaId = proxy.IstekIddenFirmaIdDon(key);
KamuFirmasiMi = false;//proxy.FirmaKamuFirmasiMi(FirmaId);
}
}
ddlCihazDoldur();
ddlIndirimOranlariDoldur();
//chkbxlstTarifeDoldur();
if (key != 0)//Yeni bir istek kaydı için gelmemiş..varolan bir kayıt düzenlenmek için gelinmiş
{
Doldur(key);
}
if (key == 0)//Yeni bir istek kaydı için gelmiş
{
lblSertifikaNo.Visible = false;
txtSertifikaNo.Visible = false;
btnEkle.Visible = true;
btnGuncelle.Visible = false;
btnSil.Visible = false;
txtFirmaId.Text = Session["IstekleriGosterilecekFirmaId"].ToString();
txtYil.Text = DateTime.Now.Year.ToString();
int Yil = int.Parse(txtYil.Text.Trim());
txtIstekNo.Text = ed.kal_BolgeyeAitMaxIstekNoBul(Yil, intBolgeKodu).ToString();
txtAltIstekNo.Text = ed.kal_OYilinIsIdsininSiradakiAltIstekNosunuDon(Yil, intBolgeKodu, int.Parse(txtIstekNo.Text.Trim().ToString())).ToString();
txtMustNo.Text = Session["UzerineKayitYapilacakFirmaninMustNo"].ToString();
txtBolgeKodu.Text = intBolgeKodu.ToString();
raddtGelTar.SelectedDate = DateTime.Today;
// if (UserManager.Default.IsUserInRole(UserName, "LabPers"))//Cihaz kaydını yapmaya çalışan LabPers rolune sahip bir kullanıcı ise
//{
// txtSorumlu.Text = UserName;
//}
}
else//Yeni istek kaydı için gelmmemiş..güncelleme oluyor
{
btnEkle.Visible = false;
}
if (Session["UzerineKayitYapilacakFirmaAdi"] != null)
{
lblFirmaAdi.Text = Session["UzerineKayitYapilacakFirmaAdi"].ToString();
//Session["UzerineKayitYapilacakFirmaAdi"] = null;
}
else
{
lblFirmaAdi.Text =ed.kal_IstIddenFirmaAdiDon(key);
}
ddlSorumluDoldur(int.Parse(intBolgeKodu.ToString()), "LabPers");
ddlLablariDoldur();
RoleGoreGorunumAyarla();
}
}