/* orders.data.js Data model for surge protector orders. :AUTHOR: James Green :CREATED: Feb. 11, 2009 :UPDATED: JG 02/11/2009 - Initial setup. JD 10/29/2009 - Add threshhold fields :DEPENDENCIES: */ var orders = { "shipping": { "method": "fixed", "rates": { "each": "6.00" }, "exclude": [ "software" ] }, "discount": false, "requiredAmt": "0", "taxRates": { "va": ".05", "nc": ".0775", "wv": ".06" }, "taxRateApplied": 0, // tax rate for selected state "totalQty": 0, // total quantity entered for this order "discountTotal": 0, // total amount needed for a discount, if applicable. "taxableCost": 0, // this "nonTaxableCost": 0, // + this "shippingAmt": 0, // + this "taxAmt": 0, // + this "totalCost": 0, // = this "threshholdAmt": "20.00", // = this "threshholdDesc": "" // = this }