dgrant
Joined: 22 Sep 2005
Posts: 60
|
| Posted: Wed Jan 04, 2006 3:35 pm Post subject: PATCH: Allow negative adjustments in Quotes |
|
|
Quotes should allow Adjustments to be negative (reduce the price globally)
modules/Quotes/EditView.html
line 500
replace :
Code:
if (!numValidate("txtAdjustment","Adjustment","any")) return false
with this:
Code:
// DG 04 Jan 2006
// Adjustments are allowed to be negative - happily, the numValidate function allows this
if (!numValidate("txtAdjustment","Adjustment","any",1)) return false
DG |
|