/// <summary>
 /// Function to fill the pricelist details in datagridview
 /// </summary>
 public void PriceListPopupGridFill()
 {
     try
     {
         DataTable   dtbl        = new DataTable();
         PriceListSP spPriceList = new PriceListSP();
         dtbl = spPriceList.PriceListPopupGridFill(decPricingLevelMain, decProductMain);
         dgvProductGroup.DataSource = dtbl;
     }
     catch (Exception ex)
     {
         MessageBox.Show("PLP10" + ex.Message, "OpenMiracle", MessageBoxButtons.OK, MessageBoxIcon.Information);
     }
 }
Example #2
0
 /// <summary>
 /// Function to fill the pricelist details in datagridview
 /// </summary>
 public void PriceListPopupGridFill()
 {
     try
     {
         DataTable   dtbl        = new DataTable();
         PriceListSP spPriceList = new PriceListSP();
         dtbl = spPriceList.PriceListPopupGridFill(decPricingLevelMain, decProductMain);
         dgvProductGroup.DataSource = dtbl;
     }
     catch (Exception ex)
     {
         formMDI.infoError.ErrorString = "PLP11" + ex.Message + ex.Message;
     }
 }
Example #3
0
 /// <summary>
 /// Function to fill the pricelist details in datagridview 
 /// </summary>
 public void PriceListPopupGridFill()
 {
     try
     {
         DataTable dtbl = new DataTable();
         PriceListSP spPriceList = new PriceListSP();
         dtbl = spPriceList.PriceListPopupGridFill(decPricingLevelMain, decProductMain);
         dgvProductGroup.DataSource = dtbl;
     }
     catch (Exception ex)
     {
         MessageBox.Show("PLP10" + ex.Message, "OpenMiracle", MessageBoxButtons.OK, MessageBoxIcon.Information);
     }
 }