protected void GetProductTransferOrderById(string transferOrderId) { ProductTransferOrderBLL productTransferOrder = new ProductTransferOrderBLL(); try { DataTable dt = productTransferOrder.GetProductTransferOrderById(transferOrderId); if (dt.Rows.Count > 0) { orderDateLabel.Text = dt.Rows[0]["OrderDate"].ToString(); transferTypeLabel.Text = dt.Rows[0]["TransferType"].ToString(); transferFromIdLabel.Text = dt.Rows[0]["TransferFrom"].ToString(); transferFromNameLabel.Text = dt.Rows[0]["TransferFromName"].ToString(); transferToIdLabel.Text = dt.Rows[0]["TransferTo"].ToString(); transferToNameLabel.Text = dt.Rows[0]["TransferToName"].ToString(); requisitionIdLabel.Text = dt.Rows[0]["RequisitionId"].ToString(); requisitionDateLabel.Text = dt.Rows[0]["RequisitionDate"].ToString(); transportDateLabel.Text = dt.Rows[0]["TransportDate"].ToString(); descriptionLabel.Text = dt.Rows[0]["Description"].ToString(); narrationLabel.Text = dt.Rows[0]["Narration"].ToString(); statusLabel.Text = dt.Rows[0]["Status"].ToString(); } else { msgbox.Visible = true; msgTitleLabel.Text = "Data Not Found!!!"; msgDetailLabel.Text = ""; } } catch (Exception ex) { msgbox.Visible = true; msgTitleLabel.Text = "Exception!!!"; msgDetailLabel.Text = ex.Message; } finally { productTransferOrder = null; } }
protected void GetProductTransferOrderById(string transferOrderId) { ProductTransferOrderBLL productTransferOrder = new ProductTransferOrderBLL(); try { DataTable dt = productTransferOrder.GetProductTransferOrderById(transferOrderId); if (dt.Rows.Count > 0 && dt.Rows[0]["TransferTo"].ToString() == transferToDropDownList.SelectedValue.Trim() && dt.Rows[0]["Status"].ToString() == "On Transport") { orderIdLabel.Text = dt.Rows[0]["TransferOrderId"].ToString(); orderDateLabel.Text = dt.Rows[0]["OrderDate"].ToString(); transferTypeLabel.Text = dt.Rows[0]["TransferType"].ToString(); transferFromIdLabel.Text = dt.Rows[0]["TransferFrom"].ToString(); transferFromNameLabel.Text = dt.Rows[0]["TransferFromName"].ToString(); transferToIdLabel.Text = dt.Rows[0]["TransferTo"].ToString(); transferToNameLabel.Text = dt.Rows[0]["TransferToName"].ToString(); requisitionIdLabel.Text = dt.Rows[0]["RequisitionId"].ToString(); requisitionDateLabel.Text = dt.Rows[0]["RequisitionDate"].ToString(); transportDateLabel.Text = dt.Rows[0]["TransportDate"].ToString(); descriptionLabel.Text = dt.Rows[0]["Description"].ToString(); narrationLabel.Text = dt.Rows[0]["Narration"].ToString(); statusLabel.Text = dt.Rows[0]["Status"].ToString(); GetProductTransferOrderProductListById(transferOrderIdTextBox.Text.Trim()); orderInfoContainer.Visible = true; saveButton.Enabled = true; } else { orderInfoContainer.Visible = false; saveButton.Enabled = false; msgbox.Visible = true; msgTitleLabel.Text = "Data Not Found!!!"; msgDetailLabel.Text = ""; } } catch (Exception ex) { msgbox.Visible = true; msgTitleLabel.Text = "Exception!!!"; msgDetailLabel.Text = ex.Message; } finally { productTransferOrder = null; } }