how do I override the taxes applied to a line item...
# ask-stanley-ai
m
how do I override the taxes applied to a line item on a sales order?
c
AI generated answer (using internal Slack threads):
To override the taxes applied to a line item on a sales order in NetSuite, you would need to change the tax code associated with that line item. This can be done through scripting. However, it's important to note that you cannot directly edit or override the tax rate field in the Sales Order line by script. For line-level discounts and their tax calculations, NetSuite applies the tax after the discount has been applied. If you want to apply different percentage discounts on different line items on the Sales Order and calculate tax post-discount, you might need to create a custom solution. For overriding the shipping tax rate field on the sales order record, you can use the
setValue
method in SuiteScript. Here's a sample code snippet:
Copy code
javascript
trans_rec.setValue('shippingtax1rate', s_shiptaxrate_override)
Please note that
s_shiptaxrate_override
should be the new tax rate you want to apply. ****** Disclaimer: This response was generated by an artificial intelligence assistant based on previous conversations from multiple Slack channels, and may contain inaccuracies or mistakes. ******
Slack thread 1: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.85019058
Slack thread 2: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.849427581
Slack thread 3: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.846773326
Please provide your feedback on this answer.
128 Views