Skip to content

Instantly share code, notes, and snippets.

@dlennox24
Created September 20, 2018 16:35
Show Gist options
  • Select an option

  • Save dlennox24/1a8c93c722594d89d55c1e20b7f84419 to your computer and use it in GitHub Desktop.

Select an option

Save dlennox24/1a8c93c722594d89d55c1e20b7f84419 to your computer and use it in GitHub Desktop.
// Line 640
if(this.getField("isTaxExempt") !== "Exempt") {
if(this.getField("ShipMeth") === "UPS") {
event.value = this.getField("UPSCalcTax").value;
} else {
event.value = this.getField("LocCalcTax").value;
}
} else {
event.value = 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment