Quantcast
Channel: CRM Development forum
Viewing all articles
Browse latest Browse all 8223

The price cannot be overridden while the entity is locked in mscrm 2013 through plugin

$
0
0

Dear all;

i am trying to update the order product through plugin but i am receiving the following error

The price cannot be overridden while the entity is locked

i tried  the below code but still not working

 bool check = (bool)quote_product.Attributes["salesorderispricelocked"];
                            if (check)
                            {
                                if (quote_product.Attributes.Contains("productid"))
                                {
                                    quote_product.Attributes.Remove("productid");
                                }
                                if (quote_product.Attributes.Contains("uomid"))
                                {
                                    quote_product.Attributes.Remove("uomid");
                                }
                                if (quote_product.Attributes.Contains("priceperunit_base"))
                                {
                                    quote_product.Attributes.Remove("priceperunit_base");
                                }
                                if (quote_product.Attributes.Contains("priceperunit"))
                                {
                                    quote_product.Attributes.Remove("priceperunit");
                                }
                                service.Update(quote_product);
                            }
                            else
                            {
                                service.Update(quote_product);
                            }

Viewing all articles
Browse latest Browse all 8223

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>