public void WcViewInformation(R2CoreTransportationAndLoadNotificationStandardLoadCapacitorLoadExtendedStructure YourNSS) { try { TxtnEstelamId.Text = YourNSS.nEstelamId.ToString(); TxtDateTimeofLoadRegistering.Text = YourNSS.dTimeElam + " - " + YourNSS.dDateElam; TxtLoadReciever.Text = YourNSS.StrBarName; TxtSearchTargetCity.Text = YourNSS.nCityCode + " # " + YourNSS.LoadTargetTitle.Trim(); TxtSearchLoad.Text = YourNSS.nBarCode + " # " + YourNSS.GoodTitle.Trim(); TxtSearchLoaderType.Text = YourNSS.nTruckType + " # " + YourNSS.LoaderTypeTitle.Trim(); TxtAddress.Text = YourNSS.StrAddress; TxtnCarNumKol.Text = YourNSS.nCarNumKol.ToString(); TxtTarrif.Text = R2CoreMClassPublicProcedures.ParseSignDigitToSignString(YourNSS.StrPriceSug); TxtDescription.Text = YourNSS.StrDescription; WcViewInformationCompleted?.Invoke(this, new EventArgs()); } catch (Exception ex) { throw new Exception(MethodBase.GetCurrentMethod().ReflectedType.FullName + "." + MethodBase.GetCurrentMethod().Name + "." + ex.Message); } }
public void WcViewNSS(Int64 YournEstelamId) { try { var NSS = R2CoreTransportationAndLoadNotificationMClassLoadCapacitorLoadManagement.GetNSSLoadCapacitorLoad(YournEstelamId); TxtnEstelamId.Text = NSS.nEstelamId.ToString(); LblDateTimeofLoadRegistering.Text = NSS.dDateElam + " - " + NSS.dTimeElam; LblLoadTitle.Text = NSS.GoodTitle; LblTargetCity.Text = NSS.LoadTargetTitle; LblLoaderType.Text = NSS.LoaderTypeTitle; LblnCarNumKol.Text = NSS.nCarNumKol.ToString(); LblnCarNum.Text = NSS.nCarNum.ToString(); LblTarrif.Text = R2CoreMClassPublicProcedures.ParseSignDigitToSignString(Convert.ToInt64(NSS.StrPriceSug.ToString())); LblDescription.Text = NSS.StrDescription; LblAddress.Text = NSS.StrAddress; LblLoadReceiver.Text = NSS.StrBarName; } catch (Exception ex) { throw new Exception(MethodBase.GetCurrentMethod().ReflectedType.FullName + "." + MethodBase.GetCurrentMethod().Name + "." + ex.Message); } }
public void WcViewInformation() { try { var InstanceLogin = new ATISWebMClassLoginManager(); var InstanceTransportCompanies = new R2CoreTransportationAndLoadNotificationInstanceTransportCompaniesManager(); var TCId = InstanceTransportCompanies.GetNSSTransportCompnay(InstanceLogin.GetNSSCurrentUser()).TCId; List <R2CoreTransportationAndLoadNotificationStandardLoadCapacitorLoadExtendedStructure> Lst = null; if (WcCurrentListType == LoadCapacitorLoadsListType.NotSedimented) { LblCaption.Text = "لیست بار موجود"; Lst = R2CoreTransportationAndLoadNotificationMClassLoadCapacitorLoadManagement.GetNotSedimentedLoadCapacitorLoads(TCId); } else if (WcCurrentListType == LoadCapacitorLoadsListType.Sedimented) { LblCaption.Text = "لیست بار رسوب شده"; Lst = R2CoreTransportationAndLoadNotificationMClassLoadCapacitorLoadManagement.GetSedimentedLoadCapacitorLoads(TCId); } else if (WcCurrentListType == LoadCapacitorLoadsListType.TommorowLoad) { LblCaption.Text = "لیست بار فردا"; Lst = R2CoreTransportationAndLoadNotificationMClassLoadCapacitorLoadManagement.GetTommorowLoadCapacitorLoads(TCId); } else if (WcCurrentListType == LoadCapacitorLoadsListType.None) { LblCaption.Text = "لیست بار"; Lst = R2CoreTransportationAndLoadNotificationMClassLoadCapacitorLoadManagement.GetAllLoadCapacitorLoads(TCId); } while (TblLoadCapacitorLoads.Rows.Count > 1) { TblLoadCapacitorLoads.Rows.RemoveAt(1); } for (int Loopx = 0; Loopx <= Lst.Count - 1; Loopx++) { TableRow tempRow = new TableRow(); TableCell tempCell = null; tempCell = new TableCell(); tempCell.Text = Lst[Loopx].StrAddress; tempCell.CssClass = "R2FontBHomaSmall"; tempRow.Cells.Add(tempCell); tempCell.HorizontalAlign = HorizontalAlign.Center; tempCell = new TableCell(); tempCell.Text = Lst[Loopx].StrBarName; tempCell.CssClass = "R2FontBHomaSmall"; tempRow.Cells.Add(tempCell); tempCell.HorizontalAlign = HorizontalAlign.Center; tempCell = new TableCell(); tempCell.Text = Lst[Loopx].StrDescription; tempCell.CssClass = "R2FontBHomaSmall"; tempRow.Cells.Add(tempCell); tempCell.HorizontalAlign = HorizontalAlign.Center; tempCell = new TableCell(); tempCell.Text = R2CoreMClassPublicProcedures.ParseSignDigitToSignString(Lst[Loopx].StrPriceSug); tempCell.CssClass = "R2FontBHomaSmall"; tempRow.Cells.Add(tempCell); tempCell.HorizontalAlign = HorizontalAlign.Center; tempCell = new TableCell(); tempCell.Text = Lst[Loopx].nCarNum.ToString(); tempCell.CssClass = "R2FontBHomaSmall"; tempRow.Cells.Add(tempCell); tempCell.HorizontalAlign = HorizontalAlign.Center; tempCell = new TableCell(); tempCell.Text = Lst[Loopx].nCarNumKol.ToString(); tempCell.CssClass = "R2FontBHomaSmall"; tempRow.Cells.Add(tempCell); tempCell.HorizontalAlign = HorizontalAlign.Center; tempCell = new TableCell(); tempCell.Text = Lst[Loopx].LoaderTypeTitle; tempCell.CssClass = "R2FontBHomaSmall"; tempRow.Cells.Add(tempCell); tempCell.HorizontalAlign = HorizontalAlign.Center; tempCell = new TableCell(); tempCell.Text = Lst[Loopx].LoadTargetTitle; tempCell.CssClass = "R2FontBHomaSmall"; tempRow.Cells.Add(tempCell); tempCell.HorizontalAlign = HorizontalAlign.Center; tempCell = new TableCell(); tempCell.Text = Lst[Loopx].GoodTitle; tempCell.CssClass = "R2FontBHomaSmall"; tempRow.Cells.Add(tempCell); tempCell.HorizontalAlign = HorizontalAlign.Center; tempCell = new TableCell(); tempCell.Text = Lst[Loopx].dDateElam + " - " + Lst[Loopx].dTimeElam; tempCell.CssClass = "R2FontBHomaSmall"; tempRow.Cells.Add(tempCell); tempCell.HorizontalAlign = HorizontalAlign.Center; tempCell = new TableCell(); tempCell.Text = Lst[Loopx].nEstelamId.ToString(); tempCell.CssClass = "R2FontBHomaSmall"; tempRow.Cells.Add(tempCell); tempCell.HorizontalAlign = HorizontalAlign.Center; TblLoadCapacitorLoads.Rows.Add(tempRow); } TableFooterRow tempFooterRow = new TableFooterRow(); tempFooterRow.BackColor = Color.LightBlue; tempFooterRow.BorderColor = Color.LightBlue; TblLoadCapacitorLoads.Rows.Add(tempFooterRow); } catch (PleaseReloginException ex) { Response.Redirect("/LoginManagement/Wflogin.aspx"); } catch (Exception ex) { throw new Exception(MethodBase.GetCurrentMethod().ReflectedType.FullName + "." + MethodBase.GetCurrentMethod().Name + "." + ex.Message); } }