Ejemplo n.º 1
0
 /// <summary>
 /// Function to add new standard rate for the purticular product
 /// </summary>
 /// <param name="decProductId"></param>
 /// <param name="frmStandardRate"></param>
 public void CallFromStandardRate(decimal decProductId, frmStandardRate frmStandardRate)
 {
     try
     {
         base.Show();
         StandardrateObj         = frmStandardRate;
         StandardrateObj.Enabled = false;
         ProductInfo infoProduct = new ProductInfo();
         ProductSP   spProduct   = new ProductSP();
         UnitSP      spUnit      = new UnitSP();
         UnitInfo    infoUnit    = new UnitInfo();
         infoProduct             = spProduct.ProductViewForStandardRate(decProductId);
         txtProductCode.Text     = infoProduct.ProductCode;
         txtProductName.Text     = infoProduct.ProductName;
         decProduct              = infoProduct.ProductId;
         infoUnit                = spUnit.unitVieWForStandardRate(decProductId);
         decUnitId               = infoUnit.UnitId;
         txtUnitName.Text        = infoUnit.UnitName;
         txtProductName.ReadOnly = true;
         txtProductCode.ReadOnly = true;
         txtUnitName.ReadOnly    = true;
         BatchUnderProductComboFill(decProductId);
         GridFill(decProductId);
     }
     catch (Exception ex)
     {
         formMDI.infoError.ErrorString = "SRP2" + ex.Message;
     }
 }