private void LoadData(bool GenerateExcel) { //DEFAULT TextBoxTanggalAwal.Text = ((DateTime)ViewState["TanggalAwal"]).ToString("d MMMM yyyy"); TextBoxTanggalAkhir.Text = ((DateTime)ViewState["TanggalAkhir"]).ToString("d MMMM yyyy"); using (DataClassesDatabaseDataContext db = new DataClassesDatabaseDataContext()) { Laporan_Class Laporan_Class = new Laporan_Class(db, (PenggunaLogin)Session["PenggunaLogin"], (DateTime)ViewState["TanggalAwal"], (DateTime)ViewState["TanggalAkhir"], GenerateExcel); var Result = Laporan_Class.POProduksiBahanBaku(DropDownListCariTempatPurchaseOrder.SelectedValue.ToInt(), TextBoxCariIDPOProduksiBahanBakuPurchaseOrder.Text, 0, DropDownListCariSupplierPurchaseOrder.SelectedValue.ToInt(), DropDownListCariPenggunaPurchaseOrder.SelectedValue.ToInt(), TextBoxCariKeteranganPurchaseOrder.Text); #region KONFIGURASI LAPORAN LabelPeriode.Text = Laporan_Class.Periode; //LinkDownload.Visible = GenerateExcel; //if (LinkDownload.Visible) // LinkDownload.HRef = Laporan_Class.LinkDownload; //ButtonPrintPurchaseOrder.OnClientClick = "return popitup('PurchaseOrderRawMaterialPrint.aspx" + Laporan_Class.TempPencarian + "')"; #endregion RepeaterPurchaseOrder.DataSource = Result["Data"]; RepeaterPurchaseOrder.DataBind(); LabelGrandTotalPurchaseOrderHeader.Text = Result["Grandtotal"]; LabelGrandTotalPurchaseOrderFooter.Text = LabelGrandTotalPurchaseOrderHeader.Text; } }