MSCRM Tax default to Zero

Posted by MarkPearl on Geeks with Blogs See other posts from Geeks with Blogs or by MarkPearl
Published on Wed, 07 Apr 2010 08:16:03 GMT Indexed on 2010/04/07 9:23 UTC
Read the original article Hit count: 568

Filed under:

 

I have been playing around with MSCRM4 lately. It has been interesting going. I had a problem getting the tax to reflect correctly, it was defaulting at zero. Eventually I found a solution after scouring the web for a while... see steps below…

 2010-04-07 11-05-28 AM

2010-04-07 11-06-25 AM 

 2010-04-07 11-06-50 AM

2010-04-07 11-07-12 AM

 2010-04-07 11-08-03 AM

 2010-04-07 11-08-14 AM

 2010-04-07 11-08-21 AM

 

 

Add the following code to OnSave and OnLoad events of quotedetails form

with (crmForm.all)
{
try
{
var dTax = (baseamount.DataValue - manualdiscountamount.DataValue) *15.5 /100;
        tax.DataValue = dTax;
        extendedamount.DataValue = baseamount.DataValue - manualdiscountamount.DataValue + tax.DataValue ;
}
catch(e)
{
        alert(e.message);
}
} // with

Don’t forget to publish your changes once you are done and to test.

© Geeks with Blogs or respective owner